This is a range option.
        
        Accepted values:
        Normal range: {{ option.range_start }} - {{ option.range_end }}
        {% if option.special_range_names %}
            
            The following values have special meanings, and may fall outside the normal range.
            
                {% for name, value in option.special_range_names.items() %}
                    - {{ value }}: {{ name|replace("_", " ")|title }}{% endfor %}
        {% endif %}
        
            
            
        
    
        {% for group_name in world.location_name_groups.keys()|sort %}
            {% if group_name != "Everywhere" %}
                
                    
                    
                
            {% endif %}
        {% endfor %}
        {% if world.location_name_groups.keys()|length > 1 %}
            
 
        {% endif %}
        {% for location_name in (option.valid_keys|sort if (option.valid_keys|length > 0) else world.location_names|sort) %}
            
                
                
            
        {% endfor %}
    
        {% for group_name in world.item_name_groups.keys()|sort %}
            {% if group_name != "Everything" %}
                
                    
                    
                
            {% endif %}
        {% endfor %}
        {% if world.item_name_groups.keys()|length > 1 %}
            
 
        {% endif %}
        {% for item_name in (option.valid_keys|sort if (option.valid_keys|length > 0) else world.item_names|sort) %}
            
                
                
            
        {% endfor %}