def extract_target_data(target):
    """
    Extracts relevant data from a target.

    Parameters:
    target (tuple): Target data in the format (id, value, threshold1, threshold2)

    Returns:
    dict: A dictionary containing the extracted data.
    """
    return {
        'id': target[0],
        'value': target[1],
        'threshold1': target[2],
        'threshold2': target[3]
    }

# Example usage
targets = [('v5_1768236144', 108217.11959687909, 721, 15009.3),
           ('v5_1768235312', 89435.63603047856, 734, 12184.7),
           ('v5_1768235983', 98379.19963352643, 987, 9967.5)]

for target in targets:
    print(extract_target_data(target))