5901 lines
225 KiB
Python
5901 lines
225 KiB
Python
"""Database seeding script generated from current database."""
|
|
from sqlmodel import Session, select, create_engine
|
|
from uuid import UUID
|
|
from datetime import time
|
|
|
|
from app.core.config import settings
|
|
from app.models.route import Route, RouteStatus
|
|
from app.models.bus_stop import BusStop, StopType
|
|
from app.models.route_stop import RouteStop
|
|
from app.models.bus_schedule import BusSchedule, BusScheduleType
|
|
|
|
|
|
def seed_database():
|
|
"""Seed the database with exported data."""
|
|
# Use synchronous engine for seeding (replace asyncpg with psycopg2)
|
|
sync_database_url = settings.database_url.replace("+asyncpg", "+psycopg2")
|
|
sync_engine = create_engine(sync_database_url, echo=False)
|
|
|
|
with Session(sync_engine) as session:
|
|
# Check if data already exists
|
|
try:
|
|
existing_routes = session.exec(select(Route)).first()
|
|
if existing_routes:
|
|
print("Database already has data. Skipping seed.")
|
|
print("To reseed, drop the tables first or use: make db-reset")
|
|
return
|
|
except Exception as e:
|
|
# If tables don't exist yet, that's fine - we'll create the data
|
|
print(f"Note: {e}")
|
|
print("Proceeding with seed...")
|
|
|
|
# Insert Routes
|
|
routes = [
|
|
Route(
|
|
id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
name='Boquete>David',
|
|
description='Ruta desde Boquete hacia David con paradas principales',
|
|
origin_city='Boquete',
|
|
destination_city='David',
|
|
distance_km=38.5,
|
|
estimated_duration_minutes=45,
|
|
status=RouteStatus.ACTIVE,
|
|
),
|
|
Route(
|
|
id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
name='David>Boquete',
|
|
description='Ruta desde David hacia Boquete con paradas principales',
|
|
origin_city='David',
|
|
destination_city='Boquete',
|
|
distance_km=38.5,
|
|
estimated_duration_minutes=45,
|
|
status=RouteStatus.ACTIVE,
|
|
),
|
|
Route(
|
|
id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
name='Palmira>David',
|
|
description='Ruta desde Palmira hacia David',
|
|
origin_city='Palmira',
|
|
destination_city='David',
|
|
distance_km=25.2,
|
|
estimated_duration_minutes=35,
|
|
status=RouteStatus.ACTIVE,
|
|
),
|
|
Route(
|
|
id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
name='David>Palmira',
|
|
description='Ruta desde David hacia Palmira',
|
|
origin_city='David',
|
|
destination_city='Palmira',
|
|
distance_km=25.2,
|
|
estimated_duration_minutes=35,
|
|
status=RouteStatus.ACTIVE,
|
|
),
|
|
Route(
|
|
id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
name='Caldera>David',
|
|
description='Ruta desde Caldera hacia David',
|
|
origin_city='Caldera',
|
|
destination_city='David',
|
|
distance_km=42.8,
|
|
estimated_duration_minutes=50,
|
|
status=RouteStatus.ACTIVE,
|
|
),
|
|
Route(
|
|
id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
name='David>Caldera',
|
|
description='Ruta desde David hacia Caldera',
|
|
origin_city='David',
|
|
destination_city='Caldera',
|
|
distance_km=42.8,
|
|
estimated_duration_minutes=50,
|
|
status=RouteStatus.ACTIVE,
|
|
),
|
|
]
|
|
for route in routes:
|
|
session.add(route)
|
|
session.flush() # Flush routes so we can reference them in foreign keys
|
|
|
|
# Insert Bus Stops
|
|
bus_stops = [
|
|
BusStop(
|
|
id=UUID("12fc09fc-5e48-4c54-b414-4133f0f12a37"),
|
|
name='Parada Principal 1',
|
|
latitude=8.6589562,
|
|
longitude=-82.442055,
|
|
city='Ruta Caldera-David',
|
|
address='Parada Principal 1',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("39274b2b-7d5a-4c6e-b3e9-4f05a66f1c7e"),
|
|
name='Parada 18',
|
|
latitude=8.5746042,
|
|
longitude=-82.4212994,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 18',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("46588013-d616-4eae-8e50-c98bf38e050f"),
|
|
name='Parada 22',
|
|
latitude=8.5472523,
|
|
longitude=-82.419091,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 22',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("506e4aff-1cb6-47e9-a85f-3dafd2d49308"),
|
|
name='Parada Principal 4',
|
|
latitude=8.4445818,
|
|
longitude=-82.4221416,
|
|
city='Ruta Palmira-David',
|
|
address='Parada Principal 4',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("51043828-726d-4245-a975-59723eb2f08f"),
|
|
name='Parada 34',
|
|
latitude=8.4759182,
|
|
longitude=-82.4202329,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 34',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("05baf1ef-af1d-4f76-8027-2482b37b8c37"),
|
|
name='Parada 31',
|
|
latitude=8.4978514,
|
|
longitude=-82.4254706,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 31',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("10a60237-1189-49d6-8da3-54893f849212"),
|
|
name='Intersección 5',
|
|
latitude=8.5259111,
|
|
longitude=-82.4219091,
|
|
city='Ruta Palmira-David',
|
|
address='Intersección 5',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("1d74e1ef-e488-4fc9-9df8-9c88f007e204"),
|
|
name='Parada 13',
|
|
latitude=8.6006107,
|
|
longitude=-82.4211566,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 13',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("2050bc76-6534-4b6b-891f-33fe3bac8407"),
|
|
name='Parada 21',
|
|
latitude=8.5516692,
|
|
longitude=-82.4189188,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 21',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("29c3fa50-965a-47fc-9aa9-5216593fd863"),
|
|
name='Parada 36',
|
|
latitude=8.4552106,
|
|
longitude=-82.4207317,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 36',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("2c2ba744-3c20-4485-aca4-22b00b4f622f"),
|
|
name='Parada 8',
|
|
latitude=8.6234797,
|
|
longitude=-82.4254989,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 8',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("2c669c57-a164-4437-8114-85a7ec8b4e3c"),
|
|
name='Intersección 7',
|
|
latitude=8.475465,
|
|
longitude=-82.4204772,
|
|
city='Ruta Palmira-David',
|
|
address='Intersección 7',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("2e00b45d-9c28-4aac-b895-546f213e3309"),
|
|
name='Parada 27',
|
|
latitude=8.5116647,
|
|
longitude=-82.4237289,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 27',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("2f17114c-6bfc-45bf-a436-ed64860df62e"),
|
|
name='Parada 29',
|
|
latitude=8.5080045,
|
|
longitude=-82.4242084,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 29',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("3386ad96-9012-472f-a756-9093c602a416"),
|
|
name='Parada 32',
|
|
latitude=8.4948946,
|
|
longitude=-82.4254776,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 32',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("2a03ba34-5483-4783-bb78-e8c92c200fbe"),
|
|
name='Parada 58',
|
|
latitude=8.5097514,
|
|
longitude=-82.4239683,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 58',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("4d182cbe-c108-46ed-a9b3-4b6cdef33aa9"),
|
|
name='Parada 64',
|
|
latitude=8.4759182,
|
|
longitude=-82.4202329,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 64',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("51e94d40-56fb-4842-8cfe-8b76c46aa13b"),
|
|
name='Parada 59',
|
|
latitude=8.5080045,
|
|
longitude=-82.4242084,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 59',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("53d8b9b6-ef59-439e-97a5-39dacac56a24"),
|
|
name='Parada 52',
|
|
latitude=8.5472523,
|
|
longitude=-82.419091,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 52',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("5433c8d0-002a-45f0-a17a-c4fcf84e5169"),
|
|
name='Parada 62',
|
|
latitude=8.4948946,
|
|
longitude=-82.4254776,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 62',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("6d4aa16d-5683-48b1-8507-b0aba05d4aaa"),
|
|
name='Parada 53',
|
|
latitude=8.5344038,
|
|
longitude=-82.420778,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 53',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("6eabfea4-f0e8-4f8d-b97f-bc8febb39344"),
|
|
name='Parada 68',
|
|
latitude=8.450325,
|
|
longitude=-82.4213788,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 68',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("6eb8d5e3-4319-40d3-bd16-e3383cb113af"),
|
|
name='Parada 67',
|
|
latitude=8.4521084,
|
|
longitude=-82.4211461,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 67',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("707c8544-533f-4e42-8767-0490170cb083"),
|
|
name='Parada 56',
|
|
latitude=8.520598,
|
|
longitude=-82.4225716,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 56',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("8085a65b-18fd-439d-8fa6-760b3b26ea55"),
|
|
name='Parada 63',
|
|
latitude=8.4919557,
|
|
longitude=-82.4251941,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 63',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("81644bb0-0afb-4cd0-8496-f066a4bd1701"),
|
|
name='Parada Principal 5',
|
|
latitude=8.5584545,
|
|
longitude=-82.4151901,
|
|
city='Ruta Caldera-David',
|
|
address='Parada Principal 5',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("89d0f353-8316-4c22-ab4e-1006121ee23a"),
|
|
name='Parada 66',
|
|
latitude=8.4552106,
|
|
longitude=-82.4207317,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 66',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("8db9b2c9-769b-4ec6-aae7-8a43ef99b9bc"),
|
|
name='Parada 57',
|
|
latitude=8.5116647,
|
|
longitude=-82.4237289,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 57',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("9c9a32d7-1bef-4824-95db-3761b4688111"),
|
|
name='Intersección 13',
|
|
latitude=8.475465,
|
|
longitude=-82.4204772,
|
|
city='Ruta Caldera-David',
|
|
address='Intersección 13',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("a364477b-c104-4ec5-bc4e-67bc04d4fd84"),
|
|
name='Parada 61',
|
|
latitude=8.4978514,
|
|
longitude=-82.4254706,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 61',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("b5c4dbb3-3225-462e-b865-79216d8564f4"),
|
|
name='Parada 51',
|
|
latitude=8.5516692,
|
|
longitude=-82.4189188,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 51',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("b64f9a9a-0568-476f-b229-403e6a4cf448"),
|
|
name='Parada Principal 7',
|
|
latitude=8.4445818,
|
|
longitude=-82.4221416,
|
|
city='Ruta Caldera-David',
|
|
address='Parada Principal 7',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("bd0f3e38-f7f4-4d8f-a9d3-33191468a58d"),
|
|
name='Parada 69',
|
|
latitude=8.4462536,
|
|
longitude=-82.4213439,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 69',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("d3773f11-9393-40ab-9295-9305412d16ce"),
|
|
name='Intersección 11',
|
|
latitude=8.5259111,
|
|
longitude=-82.4219091,
|
|
city='Ruta Caldera-David',
|
|
address='Intersección 11',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("d5af00b9-9f40-4afd-a67f-abf98a06ed6a"),
|
|
name='Parada 71',
|
|
latitude=8.4426552,
|
|
longitude=-82.42181,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 71',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("dee5dc1b-5101-43f1-a322-b59cfdd18ed1"),
|
|
name='Parada 73',
|
|
latitude=8.4357775,
|
|
longitude=-82.4210319,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 73',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("e51839b2-1bb8-47c6-ab80-224cd5f17cb7"),
|
|
name='Parada 72',
|
|
latitude=8.4388768,
|
|
longitude=-82.4220722,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 72',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("eef5ca98-8a8d-42a6-9616-e3cabc7fcf0b"),
|
|
name='Parada 54',
|
|
latitude=8.5322854,
|
|
longitude=-82.421057,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 54',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("f475143d-f78b-4b27-87d9-5a8867673695"),
|
|
name='Parada Principal 6',
|
|
latitude=8.5040506,
|
|
longitude=-82.4246805,
|
|
city='Ruta Caldera-David',
|
|
address='Parada Principal 6',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("c9c1378e-19de-4730-9590-844df9bab1e5"),
|
|
name='Centro de David',
|
|
latitude=8.4194,
|
|
longitude=-82.4255,
|
|
city='David',
|
|
address='Parque Cervantes',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("20b52f70-0b6f-4932-a71e-4cb179a88f38"),
|
|
name='Hospital Chiriquí',
|
|
latitude=8.4156,
|
|
longitude=-82.4289,
|
|
city='David',
|
|
address='Complejo Hospitalario',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("0d277d0c-1069-45df-805c-ce59ef2dfd23"),
|
|
name='Chiriquí Mall',
|
|
latitude=8.4089,
|
|
longitude=-82.4178,
|
|
city='David',
|
|
address='Centro Comercial',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("c0c28ce0-88fa-4d01-a4e9-530101b35990"),
|
|
name='Escuela de Palmira',
|
|
latitude=8.3567,
|
|
longitude=-82.3598,
|
|
city='Palmira',
|
|
address='Zona Escolar',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("752e1079-4ae3-4345-8a03-05d58c63388a"),
|
|
name='Centro de Caldera',
|
|
latitude=8.2478,
|
|
longitude=-81.7198,
|
|
city='Caldera',
|
|
address='Centro del Pueblo',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("0666a01b-0055-4b3a-9756-5053690cfae5"),
|
|
name='Terminal de David',
|
|
latitude=8.4334255,
|
|
longitude=-82.4231136,
|
|
city='Ruta Boquete-David',
|
|
address='Terminal de David',
|
|
stop_type=StopType.TERMINAL,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("3d73312c-eba3-43d1-ba3d-2381cfe6abd8"),
|
|
name='Parada 56',
|
|
latitude=8.4445115,
|
|
longitude=-82.4221416,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 56',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("926d4e83-1f08-4504-95e3-71f4d2c9666c"),
|
|
name='Parada 49',
|
|
latitude=8.4919557,
|
|
longitude=-82.4251941,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 49',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("4d7a3281-563a-491d-bbde-3a5fc4b87198"),
|
|
name='Terminal de David',
|
|
latitude=8.4334255,
|
|
longitude=-82.4231136,
|
|
city='Ruta Caldera-David',
|
|
address='Terminal de David',
|
|
stop_type=StopType.TERMINAL,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("089afec3-6911-4c41-9d12-223b8607c4a9"),
|
|
name='Parada 34',
|
|
latitude=8.5746042,
|
|
longitude=-82.4212994,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 34',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("0948094e-1132-4a94-8873-4fbbb9bd25e5"),
|
|
name='Parada 6',
|
|
latitude=8.7275817,
|
|
longitude=-82.4348154,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 6',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("0b5970c0-343f-4c9d-972e-1ec6926f9807"),
|
|
name='Parada 22',
|
|
latitude=8.643388,
|
|
longitude=-82.4345935,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 22',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("0b660dd6-e935-4be8-b470-eea9bf995c75"),
|
|
name='Parada 51',
|
|
latitude=8.475465,
|
|
longitude=-82.4204772,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 51',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("18dabf19-4f52-4d92-be42-6bd3623b4f06"),
|
|
name='Parada 17',
|
|
latitude=8.6874249,
|
|
longitude=-82.4510803,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 17',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("24428491-2b6a-4ac0-9ca5-17df33138a18"),
|
|
name='Parada 11',
|
|
latitude=8.7179038,
|
|
longitude=-82.440164,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 11',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("2802d866-56d1-4200-9c41-402cc967f35b"),
|
|
name='Intersección 5',
|
|
latitude=8.6202619,
|
|
longitude=-82.4239767,
|
|
city='Ruta Boquete-David',
|
|
address='Intersección 5',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("00a14099-a862-455f-abfa-c2ec1489ab70"),
|
|
name='Parada 17',
|
|
latitude=8.6171078,
|
|
longitude=-82.4232463,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 17',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("21f322a7-ac14-4144-abad-7e7f2502eef6"),
|
|
name='Parada 22',
|
|
latitude=8.5912165,
|
|
longitude=-82.4217292,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 22',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("2b2e6858-be6d-4f18-a3a2-92373cfd9a9d"),
|
|
name='Parada 2',
|
|
latitude=8.6585931,
|
|
longitude=-82.3713713,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 2',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("3d769def-cf21-4560-be21-13b828aafe54"),
|
|
name='Parada 3',
|
|
latitude=8.6565684,
|
|
longitude=-82.3751424,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 3',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("682705d5-5413-4bd3-a31c-144832e7ec96"),
|
|
name='Parada 9',
|
|
latitude=8.6677249,
|
|
longitude=-82.4464655,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 9',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("69c374a2-a062-4b28-8308-6aff793cd631"),
|
|
name='Intersección 3',
|
|
latitude=8.6233007,
|
|
longitude=-82.425637,
|
|
city='Ruta Caldera-David',
|
|
address='Intersección 3',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("77f80a0a-450c-42c3-bb8a-b9a3b6e5758d"),
|
|
name='Parada 6',
|
|
latitude=8.6660748,
|
|
longitude=-82.4257239,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 6',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("788abd79-3d4b-4810-a5c0-7d8fec3d1a27"),
|
|
name='Parada 11',
|
|
latitude=8.657646,
|
|
longitude=-82.441363,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 11',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("7db160e3-05b2-4778-baee-789cea0f0bfd"),
|
|
name='Parada 4',
|
|
latitude=8.6559353,
|
|
longitude=-82.3772655,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 4',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("8ba33c36-303a-4182-8e08-065c2961e05d"),
|
|
name='Parada 16',
|
|
latitude=8.6201558,
|
|
longitude=-82.4242288,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 16',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("9bdf297b-6312-43fa-b945-bfaa01fd49bc"),
|
|
name='Parada 19',
|
|
latitude=8.6102291,
|
|
longitude=-82.4228095,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 19',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("9d9ffbcc-b4d8-427b-b5a3-add1c25f66a7"),
|
|
name='Parada Principal 2',
|
|
latitude=8.6005179,
|
|
longitude=-82.4214315,
|
|
city='Ruta Caldera-David',
|
|
address='Parada Principal 2',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("a20332a5-08f3-46f4-9dfd-f27e5539469e"),
|
|
name='Parada 1',
|
|
latitude=8.659617,
|
|
longitude=-82.3693378,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 1',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("b321b88d-5032-4383-85e1-ec99c3e3cb3f"),
|
|
name='Parada 12',
|
|
latitude=8.6471196,
|
|
longitude=-82.4365581,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 12',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("b95c7990-65ac-40db-bb49-b99ed3b9d8dd"),
|
|
name='Parada 18',
|
|
latitude=8.6144144,
|
|
longitude=-82.4230377,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 18',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("bd2f01ab-0406-4b6d-b4c5-052f8915fc30"),
|
|
name='Parada 14',
|
|
latitude=8.6277337,
|
|
longitude=-82.4276677,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 14',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("d86649cc-7286-46c3-933c-168716d1b304"),
|
|
name='Parada 13',
|
|
latitude=8.6431851,
|
|
longitude=-82.4347209,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 13',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("dc3e0510-7cdd-4521-8dc2-6181120b4f26"),
|
|
name='Intersección 1',
|
|
latitude=8.6528035,
|
|
longitude=-82.3823114,
|
|
city='Ruta Caldera-David',
|
|
address='Intersección 1',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("decf0e21-7488-4dc1-b5b6-9997e2437403"),
|
|
name='Parada 21',
|
|
latitude=8.5986961,
|
|
longitude=-82.4203193,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 21',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("df528e47-8fc2-49b7-81db-3c8f4f7a176a"),
|
|
name='Puerto de Caldera',
|
|
latitude=8.6623636,
|
|
longitude=-82.3643095,
|
|
city='Ruta Caldera-David',
|
|
address='Puerto de Caldera',
|
|
stop_type=StopType.TERMINAL,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("edfb904e-66be-4a8d-80f7-3a30403d3fca"),
|
|
name='Parada 7',
|
|
latitude=8.6668357,
|
|
longitude=-82.4271414,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 7',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("f7317833-9adc-40c0-9132-5c66c1822210"),
|
|
name='Parada 8',
|
|
latitude=8.667541,
|
|
longitude=-82.4288313,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 8',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("0512d2ed-abc0-4f95-b39f-515eac489d27"),
|
|
name='Parada 31',
|
|
latitude=8.667541,
|
|
longitude=-82.4288313,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 31',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("156ce6b5-1683-4654-aab5-17e6d55547e8"),
|
|
name='Parada 27',
|
|
latitude=8.6559353,
|
|
longitude=-82.3772655,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 27',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("1fb1faef-ae69-4875-8598-7839e6268741"),
|
|
name='Parada 46',
|
|
latitude=8.5842058,
|
|
longitude=-82.4229429,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 46',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("267afc65-88a6-4ac1-9be5-46d22bfec4d5"),
|
|
name='Parada 34',
|
|
latitude=8.6577004,
|
|
longitude=-82.4411605,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 34',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("f30ed3ab-b629-4320-b254-32d4d8341ee6"),
|
|
name='Intersección 3',
|
|
latitude=8.6969771,
|
|
longitude=-82.4484517,
|
|
city='Ruta Boquete-David',
|
|
address='Intersección 3',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("f38abc02-65e0-4a35-b19e-474359d7477e"),
|
|
name='Parada 26',
|
|
latitude=8.6169195,
|
|
longitude=-82.4229218,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 26',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("f63e9060-33e9-4263-9023-f37d0e848260"),
|
|
name='Parada 12',
|
|
latitude=8.7165669,
|
|
longitude=-82.4408624,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 12',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("fa9a49ee-146f-4ed2-8473-cc17da8dcab2"),
|
|
name='Parada 13',
|
|
latitude=8.7139392,
|
|
longitude=-82.4423294,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 13',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("fb9882db-bb01-46ad-bbb1-5cb8cf4f78f2"),
|
|
name='Parada 8',
|
|
latitude=8.7248711,
|
|
longitude=-82.4363221,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 8',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("29819fa8-f25e-4cb5-b142-c65a6f11baa9"),
|
|
name='Parada 29',
|
|
latitude=8.6660748,
|
|
longitude=-82.4257239,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 29',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("3211b00c-4c3a-41e9-a560-794d77c1cfab"),
|
|
name='Parada 42',
|
|
latitude=8.610253,
|
|
longitude=-82.4225976,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 42',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("8265275c-8f02-487b-a8d2-4a33a04515d2"),
|
|
name='Parada 16',
|
|
latitude=8.5842058,
|
|
longitude=-82.4229429,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 16',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("83f03e06-bb17-41ef-9760-565f7c6b7905"),
|
|
name='Parada 12',
|
|
latitude=8.610253,
|
|
longitude=-82.4225976,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 12',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("848e3f5c-0500-4ffa-a92f-5f56a339fda2"),
|
|
name='Parada 41',
|
|
latitude=8.4426552,
|
|
longitude=-82.42181,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 41',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("85b7e107-6d21-44cf-84c9-ddef2be9bbdb"),
|
|
name='Parada 28',
|
|
latitude=8.5097514,
|
|
longitude=-82.4239683,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 28',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("8b26bd01-f59e-40d4-9f5b-91eb86ae9d0f"),
|
|
name='Parada Principal 3',
|
|
latitude=8.5040506,
|
|
longitude=-82.4246805,
|
|
city='Ruta Palmira-David',
|
|
address='Parada Principal 3',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("8b5246b1-c4cb-4435-85a3-0330ac8db62e"),
|
|
name='Parada 38',
|
|
latitude=8.450325,
|
|
longitude=-82.4213788,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 38',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("9740fe20-cde6-467f-8de4-174426fcbc7f"),
|
|
name='Parada 7',
|
|
latitude=8.627808,
|
|
longitude=-82.4274531,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 7',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("9cc2dd3d-59fd-4a5f-a24e-c52082625190"),
|
|
name='Parada 2',
|
|
latitude=8.6678999,
|
|
longitude=-82.4462348,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 2',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("a324ca30-9831-48ce-a5cc-cfcf21d91ee0"),
|
|
name='Intersección 1',
|
|
latitude=8.6472681,
|
|
longitude=-82.4363596,
|
|
city='Ruta Palmira-David',
|
|
address='Intersección 1',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("a5704227-9658-4118-8566-19d7b5827fc6"),
|
|
name='Parada 19',
|
|
latitude=8.565803,
|
|
longitude=-82.4162278,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 19',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("acea0a34-f564-4f30-b97d-445c5c2f3864"),
|
|
name='Centro de Palmira',
|
|
latitude=8.6960095,
|
|
longitude=-82.4488575,
|
|
city='Ruta Palmira-David',
|
|
address='Centro de Palmira',
|
|
stop_type=StopType.TERMINAL,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("bf949ab0-c554-41ab-a852-917b6aed4251"),
|
|
name='Parada 1',
|
|
latitude=8.6874249,
|
|
longitude=-82.4510803,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 1',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("c01ee146-0148-4e5d-bff3-3db389de1dd8"),
|
|
name='Parada Principal 2',
|
|
latitude=8.5584545,
|
|
longitude=-82.4151901,
|
|
city='Ruta Palmira-David',
|
|
address='Parada Principal 2',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("d20f93f6-f187-47d3-b46a-9f067ca71258"),
|
|
name='Parada 39',
|
|
latitude=8.4462536,
|
|
longitude=-82.4213439,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 39',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("d649e756-a1a7-4b07-80a1-7040cffc5567"),
|
|
name='Parada 3',
|
|
latitude=8.6588979,
|
|
longitude=-82.4417667,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 3',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("d8e82b75-e2a3-47f7-ab91-299282456076"),
|
|
name='Parada 14',
|
|
latitude=8.5983885,
|
|
longitude=-82.4200162,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 14',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("d99779b3-07e4-4a53-bd87-1d3dec150346"),
|
|
name='Parada 24',
|
|
latitude=8.5322854,
|
|
longitude=-82.421057,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 24',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("378993ec-7689-475c-8f4a-21177bbf6b73"),
|
|
name='Parada 33',
|
|
latitude=8.6588979,
|
|
longitude=-82.4417667,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 33',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("37f0aeff-4345-4429-9c39-1a95be47d19f"),
|
|
name='Parada 36',
|
|
latitude=8.643388,
|
|
longitude=-82.4345935,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 36',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("432d38b5-4ef5-4ca0-ad06-cbb98abfcdc1"),
|
|
name='Parada 37',
|
|
latitude=8.627808,
|
|
longitude=-82.4274531,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 37',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("595f2ffe-2ab7-4cdb-9e49-087b3dddd12e"),
|
|
name='Parada 24',
|
|
latitude=8.6596151,
|
|
longitude=-82.3693519,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 24',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("5ac77ca0-882f-41be-b434-f95731b4f947"),
|
|
name='Parada 49',
|
|
latitude=8.565803,
|
|
longitude=-82.4162278,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 49',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("5b8ed1ee-43fe-4bf2-8baf-ba7fb046bb16"),
|
|
name='Parada 39',
|
|
latitude=8.6202619,
|
|
longitude=-82.4239767,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 39',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("5c1bdc42-ab43-42a1-a257-66e547df75ff"),
|
|
name='Intersección 5',
|
|
latitude=8.6585719,
|
|
longitude=-82.3713712,
|
|
city='Ruta Caldera-David',
|
|
address='Intersección 5',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("54a34108-7928-4ec9-944c-5bcf33d59147"),
|
|
name='Intersección 3',
|
|
latitude=8.5914154,
|
|
longitude=-82.4213832,
|
|
city='Ruta Palmira-David',
|
|
address='Intersección 3',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("54d3e908-e2c6-4a8c-90e3-694daefea995"),
|
|
name='Parada 11',
|
|
latitude=8.6144011,
|
|
longitude=-82.4228017,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 11',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("6ca67be5-7084-46ad-940d-277caeaebb9e"),
|
|
name='Parada 4',
|
|
latitude=8.6577004,
|
|
longitude=-82.4411605,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 4',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("78017d28-3996-4820-a033-034e7a20c9bf"),
|
|
name='Parada 23',
|
|
latitude=8.5344038,
|
|
longitude=-82.420778,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 23',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("54a8ce58-a383-48f2-8c58-d3c32c4878ef"),
|
|
name='Parada 39',
|
|
latitude=8.5344038,
|
|
longitude=-82.420778,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 39',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("5669e724-da62-42cc-8250-6d645d460e7b"),
|
|
name='Intersección 11',
|
|
latitude=8.4462536,
|
|
longitude=-82.4213439,
|
|
city='Ruta Boquete-David',
|
|
address='Intersección 11',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("56d12752-cb1e-448e-a54c-ac4ceb5b85c9"),
|
|
name='Parada 4',
|
|
latitude=8.7321499,
|
|
longitude=-82.4336354,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 4',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("5966ddf4-4ad1-47c0-962d-20d4a19438fc"),
|
|
name='Parada 27',
|
|
latitude=8.6144011,
|
|
longitude=-82.4228017,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 27',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("5eff88c8-be0a-40a6-81b7-050b0e660b2a"),
|
|
name='Parada 41',
|
|
latitude=8.5259111,
|
|
longitude=-82.4219091,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 41',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("652426c4-ba01-4191-8969-88701ad482a6"),
|
|
name='Terminal de Boquete',
|
|
latitude=8.7520024,
|
|
longitude=-82.4318432,
|
|
city='Ruta Boquete-David',
|
|
address='Terminal de Boquete',
|
|
stop_type=StopType.TERMINAL,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("680fb194-6f56-4f12-8042-4e97b477019c"),
|
|
name='Parada 54',
|
|
latitude=8.450325,
|
|
longitude=-82.4213788,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 54',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("70cb67c0-3ff5-45ce-812a-f996e0a7f44d"),
|
|
name='Parada 21',
|
|
latitude=8.6472681,
|
|
longitude=-82.4363596,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 21',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("71ce16ce-5aa5-4e39-a7fe-fa3272e75e41"),
|
|
name='Parada 9',
|
|
latitude=8.7218976,
|
|
longitude=-82.4379503,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 9',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("2bf338e4-3cf0-4815-aaa5-7e4aa4774863"),
|
|
name='Parada 57',
|
|
latitude=8.4426552,
|
|
longitude=-82.42181,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 57',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("30349a8c-65f4-481e-acd2-510efe0bbe78"),
|
|
name='Parada 32',
|
|
latitude=8.5842058,
|
|
longitude=-82.4229429,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 32',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("33f07c2b-1618-482d-92c7-8d56c0e44960"),
|
|
name='Parada 43',
|
|
latitude=8.5116647,
|
|
longitude=-82.4237289,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 43',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("358461df-1b48-4527-a457-f94277b47c60"),
|
|
name='Parada 24',
|
|
latitude=8.6234797,
|
|
longitude=-82.4254989,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 24',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("35f25575-b799-4167-b94c-912c66e525ce"),
|
|
name='Parada 52',
|
|
latitude=8.4552106,
|
|
longitude=-82.4207317,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 52',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("39e8a80a-cb67-464f-99e0-4c55602abc14"),
|
|
name='Parada 48',
|
|
latitude=8.4948946,
|
|
longitude=-82.4254776,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 48',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("39fc64f7-4630-4197-a0ca-436c18a6cc8a"),
|
|
name='Intersección 9',
|
|
latitude=8.5080045,
|
|
longitude=-82.4242084,
|
|
city='Ruta Boquete-David',
|
|
address='Intersección 9',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("3f34c52b-28f6-4afb-8284-7e287322e5bf"),
|
|
name='Parada 23',
|
|
latitude=8.627808,
|
|
longitude=-82.4274531,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 23',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("41bbb27f-5ee0-41a1-9cc4-98f491977023"),
|
|
name='Parada 33',
|
|
latitude=8.5785467,
|
|
longitude=-82.4231551,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 33',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("447d004f-2952-4a7d-becf-3502f3bb43f8"),
|
|
name='Parada Principal 3',
|
|
latitude=8.5983885,
|
|
longitude=-82.4200162,
|
|
city='Ruta Boquete-David',
|
|
address='Parada Principal 3',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("46b43a9d-a71d-4276-9252-86a143def245"),
|
|
name='Parada 1',
|
|
latitude=8.7500574,
|
|
longitude=-82.4320427,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 1',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("5250f47d-3885-4566-ad93-25d8a223e25b"),
|
|
name='Parada 53',
|
|
latitude=8.4521084,
|
|
longitude=-82.4211461,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 53',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("ffbe020d-97cb-4552-800a-1979bebcf3f9"),
|
|
name='Parada 17',
|
|
latitude=8.5785467,
|
|
longitude=-82.4231551,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 17',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("5dda8c4c-1134-4bef-a4d5-08de4234ccea"),
|
|
name='Intersección 9',
|
|
latitude=8.5914154,
|
|
longitude=-82.4213832,
|
|
city='Ruta Caldera-David',
|
|
address='Intersección 9',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("5e276d2f-6d8c-4e29-b14f-2088acb32ea0"),
|
|
name='Parada Principal 4',
|
|
latitude=8.6169195,
|
|
longitude=-82.4229218,
|
|
city='Ruta Caldera-David',
|
|
address='Parada Principal 4',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("62ba8246-ead0-49ad-ae56-e76afd35765e"),
|
|
name='Parada 23',
|
|
latitude=8.6623761,
|
|
longitude=-82.3642991,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 23',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("6837aea7-cf79-4fc5-9530-9a7d02db7662"),
|
|
name='Parada 47',
|
|
latitude=8.5785467,
|
|
longitude=-82.4231551,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 47',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("6ed29cc6-f1ad-407a-b27c-2a45ef50d506"),
|
|
name='Parada 41',
|
|
latitude=8.6144011,
|
|
longitude=-82.4228017,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 41',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("817b72ba-d4e6-4cc5-814c-7055dbcbeba5"),
|
|
name='Parada 43',
|
|
latitude=8.6006107,
|
|
longitude=-82.4211566,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 43',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("a1d2c520-d8dd-45e8-ad6e-16c1f8ecfe08"),
|
|
name='Parada 26',
|
|
latitude=8.6565959,
|
|
longitude=-82.3751945,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 26',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("a1df2b63-5a62-41fd-9f32-4c947d153d07"),
|
|
name='Parada 32',
|
|
latitude=8.6678999,
|
|
longitude=-82.4462348,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 32',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("a7996b81-206d-49af-bb42-e167f4f96a0a"),
|
|
name='Parada Principal 3',
|
|
latitude=8.6668438,
|
|
longitude=-82.4271677,
|
|
city='Ruta Caldera-David',
|
|
address='Parada Principal 3',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("bc19ef7d-7379-413e-bb2f-f32f224b0c64"),
|
|
name='Parada 44',
|
|
latitude=8.5983885,
|
|
longitude=-82.4200162,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 44',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("bf4a14b1-2c0a-4405-8653-9a7ad24cd9ba"),
|
|
name='Intersección 7',
|
|
latitude=8.6472681,
|
|
longitude=-82.4363596,
|
|
city='Ruta Caldera-David',
|
|
address='Intersección 7',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("e2246bb6-1f69-4550-9239-fca81114892c"),
|
|
name='Terminal de David',
|
|
latitude=8.4334255,
|
|
longitude=-82.4231136,
|
|
city='Ruta Palmira-David',
|
|
address='Terminal de David',
|
|
stop_type=StopType.TERMINAL,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("ea305b8a-bffe-42b1-948e-72c9dbc6752d"),
|
|
name='Parada 26',
|
|
latitude=8.520598,
|
|
longitude=-82.4225716,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 26',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("ecc0d404-bf6e-4266-bccd-4050e54a442a"),
|
|
name='Parada 9',
|
|
latitude=8.6202619,
|
|
longitude=-82.4239767,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 9',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("efb5c05b-d52c-4030-aa82-960e41894ec3"),
|
|
name='Parada Principal 1',
|
|
latitude=8.6169195,
|
|
longitude=-82.4229218,
|
|
city='Ruta Palmira-David',
|
|
address='Parada Principal 1',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("f184de4f-a708-4464-91a5-53e836c342fb"),
|
|
name='Parada 42',
|
|
latitude=8.4388768,
|
|
longitude=-82.4220722,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 42',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("f374aad0-549f-4754-859d-10465229c5fa"),
|
|
name='Parada 6',
|
|
latitude=8.643388,
|
|
longitude=-82.4345935,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 6',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("f42e378e-d63a-4747-aea9-1dfd179d9864"),
|
|
name='Parada 33',
|
|
latitude=8.4919557,
|
|
longitude=-82.4251941,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 33',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("f6d8d3d7-7209-40ad-bf35-7cf9cb4de1d3"),
|
|
name='Parada 43',
|
|
latitude=8.4357775,
|
|
longitude=-82.4210319,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 43',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("f6fc1c86-5b7e-4e83-86b1-4b999a33a2ba"),
|
|
name='Parada 37',
|
|
latitude=8.4521084,
|
|
longitude=-82.4211461,
|
|
city='Ruta Palmira-David',
|
|
address='Parada 37',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("84761977-665d-4b96-8c6b-766e7c8c779d"),
|
|
name='Parada Principal 1',
|
|
latitude=8.7197081,
|
|
longitude=-82.4391483,
|
|
city='Ruta Boquete-David',
|
|
address='Parada Principal 1',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("88e91734-fe05-4187-890f-b37c7c3d70ef"),
|
|
name='Parada 59',
|
|
latitude=8.4357775,
|
|
longitude=-82.4210319,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 59',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("8a40a5a0-acee-49e3-b07d-3923128e4908"),
|
|
name='Parada 18',
|
|
latitude=8.6678999,
|
|
longitude=-82.4462348,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 18',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("8e538436-3fba-478c-be7e-36d79e4c8e34"),
|
|
name='Parada 29',
|
|
latitude=8.6006107,
|
|
longitude=-82.4211566,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 29',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("91d641eb-5564-4f8f-957e-aa2851078d98"),
|
|
name='Intersección 1',
|
|
latitude=8.729323,
|
|
longitude=-82.4340776,
|
|
city='Ruta Boquete-David',
|
|
address='Intersección 1',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("9412a5db-85b7-4eb4-b51e-1052c84de4f6"),
|
|
name='Parada 46',
|
|
latitude=8.5040506,
|
|
longitude=-82.4246805,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 46',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("945f6bd5-5795-49d5-a874-b063e9611b5a"),
|
|
name='Parada 31',
|
|
latitude=8.5914154,
|
|
longitude=-82.4213832,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 31',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("96d1c7d3-a6a7-4b56-9cb4-6f23260bf0a7"),
|
|
name='Parada 38',
|
|
latitude=8.5472523,
|
|
longitude=-82.419091,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 38',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("9a773cda-fc7b-4020-8605-5a85b04a1049"),
|
|
name='Parada 16',
|
|
latitude=8.6960095,
|
|
longitude=-82.4488575,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 16',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("a23339b9-25b1-4219-b27e-ab153e2efcd7"),
|
|
name='Parada Principal 2',
|
|
latitude=8.6577004,
|
|
longitude=-82.4411605,
|
|
city='Ruta Boquete-David',
|
|
address='Parada Principal 2',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("a37b73a8-9436-4c57-bf84-83b51659ae0f"),
|
|
name='Parada 58',
|
|
latitude=8.4388768,
|
|
longitude=-82.4220722,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 58',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("a48906a3-459e-40cf-b3c7-06aa1261b75e"),
|
|
name='Parada 42',
|
|
latitude=8.520598,
|
|
longitude=-82.4225716,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 42',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("a8c62a6a-edf4-48ee-8fa7-6af9cf0165ed"),
|
|
name='Parada 14',
|
|
latitude=8.7122196,
|
|
longitude=-82.4433471,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 14',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("ad214625-1468-4bf5-bf8c-ef4c27d64c38"),
|
|
name='Parada 19',
|
|
latitude=8.6588979,
|
|
longitude=-82.4417667,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 19',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("ad39742d-5cc3-4288-a5ce-ec4fa132ae47"),
|
|
name='Parada 7',
|
|
latitude=8.7255787,
|
|
longitude=-82.4359451,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 7',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("b8eec28f-3d45-4a65-9bfc-6df0a6f525bd"),
|
|
name='Parada 28',
|
|
latitude=8.610253,
|
|
longitude=-82.4225976,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 28',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("c78c5f09-92da-4b82-a1db-c9e686c178b1"),
|
|
name='Parada 3',
|
|
latitude=8.7382538,
|
|
longitude=-82.4330994,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 3',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("d20c75b9-605f-4aa9-b6f6-da9244f00bbd"),
|
|
name='Parada 36',
|
|
latitude=8.5584545,
|
|
longitude=-82.4151901,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 36',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("d68fa99a-5e46-4db2-bc90-527addb6570b"),
|
|
name='Intersección 7',
|
|
latitude=8.565803,
|
|
longitude=-82.4162278,
|
|
city='Ruta Boquete-David',
|
|
address='Intersección 7',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("d982f3fc-8dca-4450-b932-7a975b6a6a86"),
|
|
name='Parada 44',
|
|
latitude=8.5097514,
|
|
longitude=-82.4239683,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 44',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("d9e3cda5-b5d1-4c16-a51b-532cdcb9904f"),
|
|
name='Parada Principal 5',
|
|
latitude=8.4759182,
|
|
longitude=-82.4202329,
|
|
city='Ruta Boquete-David',
|
|
address='Parada Principal 5',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("e1fb75a6-2e2a-44f0-adcf-cae892b5976b"),
|
|
name='Parada 37',
|
|
latitude=8.5516692,
|
|
longitude=-82.4189188,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 37',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("e6aa65fd-a2cb-4c83-b237-bc4ed6c31f57"),
|
|
name='Parada 47',
|
|
latitude=8.4978514,
|
|
longitude=-82.4254706,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 47',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=False,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("e7c404fe-6db7-4fa8-be3c-d20bfaea30b4"),
|
|
name='Parada 2',
|
|
latitude=8.7451912,
|
|
longitude=-82.4324671,
|
|
city='Ruta Boquete-David',
|
|
address='Parada 2',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("f10f4c8a-d04c-4ebe-a46d-ae3532867a4a"),
|
|
name='Parada Principal 4',
|
|
latitude=8.5322854,
|
|
longitude=-82.421057,
|
|
city='Ruta Boquete-David',
|
|
address='Parada Principal 4',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("d57a03ef-26ae-49b8-b0ab-a24701fecf8c"),
|
|
name='Parada 38',
|
|
latitude=8.6234797,
|
|
longitude=-82.4254989,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 38',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("dd5b1ddb-80ca-4709-801a-dd8376df0b4e"),
|
|
name='Parada 48',
|
|
latitude=8.5746042,
|
|
longitude=-82.4212994,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 48',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=True,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
BusStop(
|
|
id=UUID("eb875940-9aa6-42bc-bc9a-15fce44c4287"),
|
|
name='Parada 28',
|
|
latitude=8.6528035,
|
|
longitude=-82.3823114,
|
|
city='Ruta Caldera-David',
|
|
address='Parada 28',
|
|
stop_type=StopType.REGULAR,
|
|
has_shelter=False,
|
|
has_seating=True,
|
|
is_accessible=False,
|
|
),
|
|
]
|
|
for stop in bus_stops:
|
|
session.add(stop)
|
|
session.flush() # Flush stops so we can reference them in route_stops
|
|
|
|
# Insert Route Stops
|
|
route_stops = [
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("652426c4-ba01-4191-8969-88701ad482a6"),
|
|
stop_order=1,
|
|
travel_time_minutes=0,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=False,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("46b43a9d-a71d-4276-9252-86a143def245"),
|
|
stop_order=2,
|
|
travel_time_minutes=1,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("e7c404fe-6db7-4fa8-be3c-d20bfaea30b4"),
|
|
stop_order=3,
|
|
travel_time_minutes=2,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("c78c5f09-92da-4b82-a1db-c9e686c178b1"),
|
|
stop_order=4,
|
|
travel_time_minutes=2,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("56d12752-cb1e-448e-a54c-ac4ceb5b85c9"),
|
|
stop_order=5,
|
|
travel_time_minutes=3,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("91d641eb-5564-4f8f-957e-aa2851078d98"),
|
|
stop_order=6,
|
|
travel_time_minutes=4,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("0948094e-1132-4a94-8873-4fbbb9bd25e5"),
|
|
stop_order=7,
|
|
travel_time_minutes=4,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("ad39742d-5cc3-4288-a5ce-ec4fa132ae47"),
|
|
stop_order=8,
|
|
travel_time_minutes=5,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("fb9882db-bb01-46ad-bbb1-5cb8cf4f78f2"),
|
|
stop_order=9,
|
|
travel_time_minutes=6,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("71ce16ce-5aa5-4e39-a7fe-fa3272e75e41"),
|
|
stop_order=10,
|
|
travel_time_minutes=7,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("84761977-665d-4b96-8c6b-766e7c8c779d"),
|
|
stop_order=11,
|
|
travel_time_minutes=8,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("24428491-2b6a-4ac0-9ca5-17df33138a18"),
|
|
stop_order=12,
|
|
travel_time_minutes=8,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("f63e9060-33e9-4263-9023-f37d0e848260"),
|
|
stop_order=13,
|
|
travel_time_minutes=9,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("fa9a49ee-146f-4ed2-8473-cc17da8dcab2"),
|
|
stop_order=14,
|
|
travel_time_minutes=10,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("a8c62a6a-edf4-48ee-8fa7-6af9cf0165ed"),
|
|
stop_order=15,
|
|
travel_time_minutes=10,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("f30ed3ab-b629-4320-b254-32d4d8341ee6"),
|
|
stop_order=16,
|
|
travel_time_minutes=11,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("9a773cda-fc7b-4020-8605-5a85b04a1049"),
|
|
stop_order=17,
|
|
travel_time_minutes=12,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("18dabf19-4f52-4d92-be42-6bd3623b4f06"),
|
|
stop_order=18,
|
|
travel_time_minutes=13,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("8a40a5a0-acee-49e3-b07d-3923128e4908"),
|
|
stop_order=19,
|
|
travel_time_minutes=14,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("ad214625-1468-4bf5-bf8c-ef4c27d64c38"),
|
|
stop_order=20,
|
|
travel_time_minutes=14,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("a23339b9-25b1-4219-b27e-ab153e2efcd7"),
|
|
stop_order=21,
|
|
travel_time_minutes=15,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("70cb67c0-3ff5-45ce-812a-f996e0a7f44d"),
|
|
stop_order=22,
|
|
travel_time_minutes=16,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("0b5970c0-343f-4c9d-972e-1ec6926f9807"),
|
|
stop_order=23,
|
|
travel_time_minutes=16,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("3f34c52b-28f6-4afb-8284-7e287322e5bf"),
|
|
stop_order=24,
|
|
travel_time_minutes=17,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("358461df-1b48-4527-a457-f94277b47c60"),
|
|
stop_order=25,
|
|
travel_time_minutes=18,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("2802d866-56d1-4200-9c41-402cc967f35b"),
|
|
stop_order=26,
|
|
travel_time_minutes=19,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("f38abc02-65e0-4a35-b19e-474359d7477e"),
|
|
stop_order=27,
|
|
travel_time_minutes=20,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("5966ddf4-4ad1-47c0-962d-20d4a19438fc"),
|
|
stop_order=28,
|
|
travel_time_minutes=20,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("b8eec28f-3d45-4a65-9bfc-6df0a6f525bd"),
|
|
stop_order=29,
|
|
travel_time_minutes=21,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("8e538436-3fba-478c-be7e-36d79e4c8e34"),
|
|
stop_order=30,
|
|
travel_time_minutes=22,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("447d004f-2952-4a7d-becf-3502f3bb43f8"),
|
|
stop_order=31,
|
|
travel_time_minutes=22,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("945f6bd5-5795-49d5-a874-b063e9611b5a"),
|
|
stop_order=32,
|
|
travel_time_minutes=23,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("30349a8c-65f4-481e-acd2-510efe0bbe78"),
|
|
stop_order=33,
|
|
travel_time_minutes=24,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("41bbb27f-5ee0-41a1-9cc4-98f491977023"),
|
|
stop_order=34,
|
|
travel_time_minutes=25,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("089afec3-6911-4c41-9d12-223b8607c4a9"),
|
|
stop_order=35,
|
|
travel_time_minutes=26,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("d68fa99a-5e46-4db2-bc90-527addb6570b"),
|
|
stop_order=36,
|
|
travel_time_minutes=26,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("d20c75b9-605f-4aa9-b6f6-da9244f00bbd"),
|
|
stop_order=37,
|
|
travel_time_minutes=27,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("e1fb75a6-2e2a-44f0-adcf-cae892b5976b"),
|
|
stop_order=38,
|
|
travel_time_minutes=28,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("96d1c7d3-a6a7-4b56-9cb4-6f23260bf0a7"),
|
|
stop_order=39,
|
|
travel_time_minutes=28,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("54a8ce58-a383-48f2-8c58-d3c32c4878ef"),
|
|
stop_order=40,
|
|
travel_time_minutes=29,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("f10f4c8a-d04c-4ebe-a46d-ae3532867a4a"),
|
|
stop_order=41,
|
|
travel_time_minutes=30,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("5eff88c8-be0a-40a6-81b7-050b0e660b2a"),
|
|
stop_order=42,
|
|
travel_time_minutes=31,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("a48906a3-459e-40cf-b3c7-06aa1261b75e"),
|
|
stop_order=43,
|
|
travel_time_minutes=32,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("33f07c2b-1618-482d-92c7-8d56c0e44960"),
|
|
stop_order=44,
|
|
travel_time_minutes=32,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("d982f3fc-8dca-4450-b932-7a975b6a6a86"),
|
|
stop_order=45,
|
|
travel_time_minutes=33,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("39fc64f7-4630-4197-a0ca-436c18a6cc8a"),
|
|
stop_order=46,
|
|
travel_time_minutes=34,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("9412a5db-85b7-4eb4-b51e-1052c84de4f6"),
|
|
stop_order=47,
|
|
travel_time_minutes=34,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("e6aa65fd-a2cb-4c83-b237-bc4ed6c31f57"),
|
|
stop_order=48,
|
|
travel_time_minutes=35,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("39e8a80a-cb67-464f-99e0-4c55602abc14"),
|
|
stop_order=49,
|
|
travel_time_minutes=36,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("926d4e83-1f08-4504-95e3-71f4d2c9666c"),
|
|
stop_order=50,
|
|
travel_time_minutes=37,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("d9e3cda5-b5d1-4c16-a51b-532cdcb9904f"),
|
|
stop_order=51,
|
|
travel_time_minutes=38,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("0b660dd6-e935-4be8-b470-eea9bf995c75"),
|
|
stop_order=52,
|
|
travel_time_minutes=38,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("35f25575-b799-4167-b94c-912c66e525ce"),
|
|
stop_order=53,
|
|
travel_time_minutes=39,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("5250f47d-3885-4566-ad93-25d8a223e25b"),
|
|
stop_order=54,
|
|
travel_time_minutes=40,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("680fb194-6f56-4f12-8042-4e97b477019c"),
|
|
stop_order=55,
|
|
travel_time_minutes=40,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("5669e724-da62-42cc-8250-6d645d460e7b"),
|
|
stop_order=56,
|
|
travel_time_minutes=41,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("3d73312c-eba3-43d1-ba3d-2381cfe6abd8"),
|
|
stop_order=57,
|
|
travel_time_minutes=42,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("2bf338e4-3cf0-4815-aaa5-7e4aa4774863"),
|
|
stop_order=58,
|
|
travel_time_minutes=43,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("a37b73a8-9436-4c57-bf84-83b51659ae0f"),
|
|
stop_order=59,
|
|
travel_time_minutes=44,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("88e91734-fe05-4187-890f-b37c7c3d70ef"),
|
|
stop_order=60,
|
|
travel_time_minutes=44,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
stop_id=UUID("0666a01b-0055-4b3a-9756-5053690cfae5"),
|
|
stop_order=61,
|
|
travel_time_minutes=45,
|
|
is_pickup_point=False,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("0666a01b-0055-4b3a-9756-5053690cfae5"),
|
|
stop_order=1,
|
|
travel_time_minutes=0,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=False,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("88e91734-fe05-4187-890f-b37c7c3d70ef"),
|
|
stop_order=2,
|
|
travel_time_minutes=1,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("a37b73a8-9436-4c57-bf84-83b51659ae0f"),
|
|
stop_order=3,
|
|
travel_time_minutes=2,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("2bf338e4-3cf0-4815-aaa5-7e4aa4774863"),
|
|
stop_order=4,
|
|
travel_time_minutes=2,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("3d73312c-eba3-43d1-ba3d-2381cfe6abd8"),
|
|
stop_order=5,
|
|
travel_time_minutes=3,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("5669e724-da62-42cc-8250-6d645d460e7b"),
|
|
stop_order=6,
|
|
travel_time_minutes=4,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("680fb194-6f56-4f12-8042-4e97b477019c"),
|
|
stop_order=7,
|
|
travel_time_minutes=4,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("5250f47d-3885-4566-ad93-25d8a223e25b"),
|
|
stop_order=8,
|
|
travel_time_minutes=5,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("35f25575-b799-4167-b94c-912c66e525ce"),
|
|
stop_order=9,
|
|
travel_time_minutes=6,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("0b660dd6-e935-4be8-b470-eea9bf995c75"),
|
|
stop_order=10,
|
|
travel_time_minutes=7,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("d9e3cda5-b5d1-4c16-a51b-532cdcb9904f"),
|
|
stop_order=11,
|
|
travel_time_minutes=8,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("926d4e83-1f08-4504-95e3-71f4d2c9666c"),
|
|
stop_order=12,
|
|
travel_time_minutes=8,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("39e8a80a-cb67-464f-99e0-4c55602abc14"),
|
|
stop_order=13,
|
|
travel_time_minutes=9,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("e6aa65fd-a2cb-4c83-b237-bc4ed6c31f57"),
|
|
stop_order=14,
|
|
travel_time_minutes=10,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("9412a5db-85b7-4eb4-b51e-1052c84de4f6"),
|
|
stop_order=15,
|
|
travel_time_minutes=10,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("39fc64f7-4630-4197-a0ca-436c18a6cc8a"),
|
|
stop_order=16,
|
|
travel_time_minutes=11,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("d982f3fc-8dca-4450-b932-7a975b6a6a86"),
|
|
stop_order=17,
|
|
travel_time_minutes=12,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("33f07c2b-1618-482d-92c7-8d56c0e44960"),
|
|
stop_order=18,
|
|
travel_time_minutes=13,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("a48906a3-459e-40cf-b3c7-06aa1261b75e"),
|
|
stop_order=19,
|
|
travel_time_minutes=14,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("5eff88c8-be0a-40a6-81b7-050b0e660b2a"),
|
|
stop_order=20,
|
|
travel_time_minutes=14,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("f10f4c8a-d04c-4ebe-a46d-ae3532867a4a"),
|
|
stop_order=21,
|
|
travel_time_minutes=15,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("54a8ce58-a383-48f2-8c58-d3c32c4878ef"),
|
|
stop_order=22,
|
|
travel_time_minutes=16,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("96d1c7d3-a6a7-4b56-9cb4-6f23260bf0a7"),
|
|
stop_order=23,
|
|
travel_time_minutes=16,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("e1fb75a6-2e2a-44f0-adcf-cae892b5976b"),
|
|
stop_order=24,
|
|
travel_time_minutes=17,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("d20c75b9-605f-4aa9-b6f6-da9244f00bbd"),
|
|
stop_order=25,
|
|
travel_time_minutes=18,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("d68fa99a-5e46-4db2-bc90-527addb6570b"),
|
|
stop_order=26,
|
|
travel_time_minutes=19,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("089afec3-6911-4c41-9d12-223b8607c4a9"),
|
|
stop_order=27,
|
|
travel_time_minutes=20,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("41bbb27f-5ee0-41a1-9cc4-98f491977023"),
|
|
stop_order=28,
|
|
travel_time_minutes=20,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("30349a8c-65f4-481e-acd2-510efe0bbe78"),
|
|
stop_order=29,
|
|
travel_time_minutes=21,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("945f6bd5-5795-49d5-a874-b063e9611b5a"),
|
|
stop_order=30,
|
|
travel_time_minutes=22,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("447d004f-2952-4a7d-becf-3502f3bb43f8"),
|
|
stop_order=31,
|
|
travel_time_minutes=22,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("8e538436-3fba-478c-be7e-36d79e4c8e34"),
|
|
stop_order=32,
|
|
travel_time_minutes=23,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("b8eec28f-3d45-4a65-9bfc-6df0a6f525bd"),
|
|
stop_order=33,
|
|
travel_time_minutes=24,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("5966ddf4-4ad1-47c0-962d-20d4a19438fc"),
|
|
stop_order=34,
|
|
travel_time_minutes=25,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("f38abc02-65e0-4a35-b19e-474359d7477e"),
|
|
stop_order=35,
|
|
travel_time_minutes=26,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("2802d866-56d1-4200-9c41-402cc967f35b"),
|
|
stop_order=36,
|
|
travel_time_minutes=26,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("358461df-1b48-4527-a457-f94277b47c60"),
|
|
stop_order=37,
|
|
travel_time_minutes=27,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("3f34c52b-28f6-4afb-8284-7e287322e5bf"),
|
|
stop_order=38,
|
|
travel_time_minutes=28,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("0b5970c0-343f-4c9d-972e-1ec6926f9807"),
|
|
stop_order=39,
|
|
travel_time_minutes=28,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("70cb67c0-3ff5-45ce-812a-f996e0a7f44d"),
|
|
stop_order=40,
|
|
travel_time_minutes=29,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("a23339b9-25b1-4219-b27e-ab153e2efcd7"),
|
|
stop_order=41,
|
|
travel_time_minutes=30,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("ad214625-1468-4bf5-bf8c-ef4c27d64c38"),
|
|
stop_order=42,
|
|
travel_time_minutes=31,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("8a40a5a0-acee-49e3-b07d-3923128e4908"),
|
|
stop_order=43,
|
|
travel_time_minutes=32,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("18dabf19-4f52-4d92-be42-6bd3623b4f06"),
|
|
stop_order=44,
|
|
travel_time_minutes=32,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("9a773cda-fc7b-4020-8605-5a85b04a1049"),
|
|
stop_order=45,
|
|
travel_time_minutes=33,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("f30ed3ab-b629-4320-b254-32d4d8341ee6"),
|
|
stop_order=46,
|
|
travel_time_minutes=34,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("a8c62a6a-edf4-48ee-8fa7-6af9cf0165ed"),
|
|
stop_order=47,
|
|
travel_time_minutes=34,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("fa9a49ee-146f-4ed2-8473-cc17da8dcab2"),
|
|
stop_order=48,
|
|
travel_time_minutes=35,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("f63e9060-33e9-4263-9023-f37d0e848260"),
|
|
stop_order=49,
|
|
travel_time_minutes=36,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("24428491-2b6a-4ac0-9ca5-17df33138a18"),
|
|
stop_order=50,
|
|
travel_time_minutes=37,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("84761977-665d-4b96-8c6b-766e7c8c779d"),
|
|
stop_order=51,
|
|
travel_time_minutes=38,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("71ce16ce-5aa5-4e39-a7fe-fa3272e75e41"),
|
|
stop_order=52,
|
|
travel_time_minutes=38,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("fb9882db-bb01-46ad-bbb1-5cb8cf4f78f2"),
|
|
stop_order=53,
|
|
travel_time_minutes=39,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("ad39742d-5cc3-4288-a5ce-ec4fa132ae47"),
|
|
stop_order=54,
|
|
travel_time_minutes=40,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("0948094e-1132-4a94-8873-4fbbb9bd25e5"),
|
|
stop_order=55,
|
|
travel_time_minutes=40,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("91d641eb-5564-4f8f-957e-aa2851078d98"),
|
|
stop_order=56,
|
|
travel_time_minutes=41,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("56d12752-cb1e-448e-a54c-ac4ceb5b85c9"),
|
|
stop_order=57,
|
|
travel_time_minutes=42,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("c78c5f09-92da-4b82-a1db-c9e686c178b1"),
|
|
stop_order=58,
|
|
travel_time_minutes=43,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("e7c404fe-6db7-4fa8-be3c-d20bfaea30b4"),
|
|
stop_order=59,
|
|
travel_time_minutes=44,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("46b43a9d-a71d-4276-9252-86a143def245"),
|
|
stop_order=60,
|
|
travel_time_minutes=44,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
stop_id=UUID("652426c4-ba01-4191-8969-88701ad482a6"),
|
|
stop_order=61,
|
|
travel_time_minutes=45,
|
|
is_pickup_point=False,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("acea0a34-f564-4f30-b97d-445c5c2f3864"),
|
|
stop_order=1,
|
|
travel_time_minutes=0,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=False,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("bf949ab0-c554-41ab-a852-917b6aed4251"),
|
|
stop_order=2,
|
|
travel_time_minutes=1,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("9cc2dd3d-59fd-4a5f-a24e-c52082625190"),
|
|
stop_order=3,
|
|
travel_time_minutes=2,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("d649e756-a1a7-4b07-80a1-7040cffc5567"),
|
|
stop_order=4,
|
|
travel_time_minutes=2,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("6ca67be5-7084-46ad-940d-277caeaebb9e"),
|
|
stop_order=5,
|
|
travel_time_minutes=3,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("a324ca30-9831-48ce-a5cc-cfcf21d91ee0"),
|
|
stop_order=6,
|
|
travel_time_minutes=4,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("f374aad0-549f-4754-859d-10465229c5fa"),
|
|
stop_order=7,
|
|
travel_time_minutes=5,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("9740fe20-cde6-467f-8de4-174426fcbc7f"),
|
|
stop_order=8,
|
|
travel_time_minutes=6,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("2c2ba744-3c20-4485-aca4-22b00b4f622f"),
|
|
stop_order=9,
|
|
travel_time_minutes=6,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("ecc0d404-bf6e-4266-bccd-4050e54a442a"),
|
|
stop_order=10,
|
|
travel_time_minutes=7,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("efb5c05b-d52c-4030-aa82-960e41894ec3"),
|
|
stop_order=11,
|
|
travel_time_minutes=8,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("54d3e908-e2c6-4a8c-90e3-694daefea995"),
|
|
stop_order=12,
|
|
travel_time_minutes=9,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("83f03e06-bb17-41ef-9760-565f7c6b7905"),
|
|
stop_order=13,
|
|
travel_time_minutes=10,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("1d74e1ef-e488-4fc9-9df8-9c88f007e204"),
|
|
stop_order=14,
|
|
travel_time_minutes=10,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("d8e82b75-e2a3-47f7-ab91-299282456076"),
|
|
stop_order=15,
|
|
travel_time_minutes=11,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("54a34108-7928-4ec9-944c-5bcf33d59147"),
|
|
stop_order=16,
|
|
travel_time_minutes=12,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("8265275c-8f02-487b-a8d2-4a33a04515d2"),
|
|
stop_order=17,
|
|
travel_time_minutes=13,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("ffbe020d-97cb-4552-800a-1979bebcf3f9"),
|
|
stop_order=18,
|
|
travel_time_minutes=14,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("39274b2b-7d5a-4c6e-b3e9-4f05a66f1c7e"),
|
|
stop_order=19,
|
|
travel_time_minutes=14,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("a5704227-9658-4118-8566-19d7b5827fc6"),
|
|
stop_order=20,
|
|
travel_time_minutes=15,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("c01ee146-0148-4e5d-bff3-3db389de1dd8"),
|
|
stop_order=21,
|
|
travel_time_minutes=16,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("2050bc76-6534-4b6b-891f-33fe3bac8407"),
|
|
stop_order=22,
|
|
travel_time_minutes=17,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("46588013-d616-4eae-8e50-c98bf38e050f"),
|
|
stop_order=23,
|
|
travel_time_minutes=18,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("78017d28-3996-4820-a033-034e7a20c9bf"),
|
|
stop_order=24,
|
|
travel_time_minutes=18,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("d99779b3-07e4-4a53-bd87-1d3dec150346"),
|
|
stop_order=25,
|
|
travel_time_minutes=19,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("10a60237-1189-49d6-8da3-54893f849212"),
|
|
stop_order=26,
|
|
travel_time_minutes=20,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("ea305b8a-bffe-42b1-948e-72c9dbc6752d"),
|
|
stop_order=27,
|
|
travel_time_minutes=21,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("2e00b45d-9c28-4aac-b895-546f213e3309"),
|
|
stop_order=28,
|
|
travel_time_minutes=21,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("85b7e107-6d21-44cf-84c9-ddef2be9bbdb"),
|
|
stop_order=29,
|
|
travel_time_minutes=22,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("2f17114c-6bfc-45bf-a436-ed64860df62e"),
|
|
stop_order=30,
|
|
travel_time_minutes=23,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("8b26bd01-f59e-40d4-9f5b-91eb86ae9d0f"),
|
|
stop_order=31,
|
|
travel_time_minutes=24,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("05baf1ef-af1d-4f76-8027-2482b37b8c37"),
|
|
stop_order=32,
|
|
travel_time_minutes=25,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("3386ad96-9012-472f-a756-9093c602a416"),
|
|
stop_order=33,
|
|
travel_time_minutes=25,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("f42e378e-d63a-4747-aea9-1dfd179d9864"),
|
|
stop_order=34,
|
|
travel_time_minutes=26,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("51043828-726d-4245-a975-59723eb2f08f"),
|
|
stop_order=35,
|
|
travel_time_minutes=27,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("2c669c57-a164-4437-8114-85a7ec8b4e3c"),
|
|
stop_order=36,
|
|
travel_time_minutes=28,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("29c3fa50-965a-47fc-9aa9-5216593fd863"),
|
|
stop_order=37,
|
|
travel_time_minutes=29,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("f6fc1c86-5b7e-4e83-86b1-4b999a33a2ba"),
|
|
stop_order=38,
|
|
travel_time_minutes=29,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("8b5246b1-c4cb-4435-85a3-0330ac8db62e"),
|
|
stop_order=39,
|
|
travel_time_minutes=30,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("d20f93f6-f187-47d3-b46a-9f067ca71258"),
|
|
stop_order=40,
|
|
travel_time_minutes=31,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("506e4aff-1cb6-47e9-a85f-3dafd2d49308"),
|
|
stop_order=41,
|
|
travel_time_minutes=32,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("848e3f5c-0500-4ffa-a92f-5f56a339fda2"),
|
|
stop_order=42,
|
|
travel_time_minutes=33,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("f184de4f-a708-4464-91a5-53e836c342fb"),
|
|
stop_order=43,
|
|
travel_time_minutes=33,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("f6d8d3d7-7209-40ad-bf35-7cf9cb4de1d3"),
|
|
stop_order=44,
|
|
travel_time_minutes=34,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
stop_id=UUID("e2246bb6-1f69-4550-9239-fca81114892c"),
|
|
stop_order=45,
|
|
travel_time_minutes=35,
|
|
is_pickup_point=False,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("e2246bb6-1f69-4550-9239-fca81114892c"),
|
|
stop_order=1,
|
|
travel_time_minutes=0,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=False,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("f6d8d3d7-7209-40ad-bf35-7cf9cb4de1d3"),
|
|
stop_order=2,
|
|
travel_time_minutes=1,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("f184de4f-a708-4464-91a5-53e836c342fb"),
|
|
stop_order=3,
|
|
travel_time_minutes=2,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("848e3f5c-0500-4ffa-a92f-5f56a339fda2"),
|
|
stop_order=4,
|
|
travel_time_minutes=2,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("506e4aff-1cb6-47e9-a85f-3dafd2d49308"),
|
|
stop_order=5,
|
|
travel_time_minutes=3,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("d20f93f6-f187-47d3-b46a-9f067ca71258"),
|
|
stop_order=6,
|
|
travel_time_minutes=4,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("8b5246b1-c4cb-4435-85a3-0330ac8db62e"),
|
|
stop_order=7,
|
|
travel_time_minutes=5,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("f6fc1c86-5b7e-4e83-86b1-4b999a33a2ba"),
|
|
stop_order=8,
|
|
travel_time_minutes=6,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("29c3fa50-965a-47fc-9aa9-5216593fd863"),
|
|
stop_order=9,
|
|
travel_time_minutes=6,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("2c669c57-a164-4437-8114-85a7ec8b4e3c"),
|
|
stop_order=10,
|
|
travel_time_minutes=7,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("51043828-726d-4245-a975-59723eb2f08f"),
|
|
stop_order=11,
|
|
travel_time_minutes=8,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("f42e378e-d63a-4747-aea9-1dfd179d9864"),
|
|
stop_order=12,
|
|
travel_time_minutes=9,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("3386ad96-9012-472f-a756-9093c602a416"),
|
|
stop_order=13,
|
|
travel_time_minutes=10,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("05baf1ef-af1d-4f76-8027-2482b37b8c37"),
|
|
stop_order=14,
|
|
travel_time_minutes=10,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("8b26bd01-f59e-40d4-9f5b-91eb86ae9d0f"),
|
|
stop_order=15,
|
|
travel_time_minutes=11,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("2f17114c-6bfc-45bf-a436-ed64860df62e"),
|
|
stop_order=16,
|
|
travel_time_minutes=12,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("85b7e107-6d21-44cf-84c9-ddef2be9bbdb"),
|
|
stop_order=17,
|
|
travel_time_minutes=13,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("2e00b45d-9c28-4aac-b895-546f213e3309"),
|
|
stop_order=18,
|
|
travel_time_minutes=14,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("ea305b8a-bffe-42b1-948e-72c9dbc6752d"),
|
|
stop_order=19,
|
|
travel_time_minutes=14,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("10a60237-1189-49d6-8da3-54893f849212"),
|
|
stop_order=20,
|
|
travel_time_minutes=15,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("d99779b3-07e4-4a53-bd87-1d3dec150346"),
|
|
stop_order=21,
|
|
travel_time_minutes=16,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("78017d28-3996-4820-a033-034e7a20c9bf"),
|
|
stop_order=22,
|
|
travel_time_minutes=17,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("46588013-d616-4eae-8e50-c98bf38e050f"),
|
|
stop_order=23,
|
|
travel_time_minutes=18,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("2050bc76-6534-4b6b-891f-33fe3bac8407"),
|
|
stop_order=24,
|
|
travel_time_minutes=18,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("c01ee146-0148-4e5d-bff3-3db389de1dd8"),
|
|
stop_order=25,
|
|
travel_time_minutes=19,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("a5704227-9658-4118-8566-19d7b5827fc6"),
|
|
stop_order=26,
|
|
travel_time_minutes=20,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("39274b2b-7d5a-4c6e-b3e9-4f05a66f1c7e"),
|
|
stop_order=27,
|
|
travel_time_minutes=21,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("ffbe020d-97cb-4552-800a-1979bebcf3f9"),
|
|
stop_order=28,
|
|
travel_time_minutes=21,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("8265275c-8f02-487b-a8d2-4a33a04515d2"),
|
|
stop_order=29,
|
|
travel_time_minutes=22,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("54a34108-7928-4ec9-944c-5bcf33d59147"),
|
|
stop_order=30,
|
|
travel_time_minutes=23,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("d8e82b75-e2a3-47f7-ab91-299282456076"),
|
|
stop_order=31,
|
|
travel_time_minutes=24,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("1d74e1ef-e488-4fc9-9df8-9c88f007e204"),
|
|
stop_order=32,
|
|
travel_time_minutes=25,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("83f03e06-bb17-41ef-9760-565f7c6b7905"),
|
|
stop_order=33,
|
|
travel_time_minutes=25,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("54d3e908-e2c6-4a8c-90e3-694daefea995"),
|
|
stop_order=34,
|
|
travel_time_minutes=26,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("efb5c05b-d52c-4030-aa82-960e41894ec3"),
|
|
stop_order=35,
|
|
travel_time_minutes=27,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("ecc0d404-bf6e-4266-bccd-4050e54a442a"),
|
|
stop_order=36,
|
|
travel_time_minutes=28,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("2c2ba744-3c20-4485-aca4-22b00b4f622f"),
|
|
stop_order=37,
|
|
travel_time_minutes=29,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("9740fe20-cde6-467f-8de4-174426fcbc7f"),
|
|
stop_order=38,
|
|
travel_time_minutes=29,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("f374aad0-549f-4754-859d-10465229c5fa"),
|
|
stop_order=39,
|
|
travel_time_minutes=30,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("a324ca30-9831-48ce-a5cc-cfcf21d91ee0"),
|
|
stop_order=40,
|
|
travel_time_minutes=31,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("6ca67be5-7084-46ad-940d-277caeaebb9e"),
|
|
stop_order=41,
|
|
travel_time_minutes=32,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("d649e756-a1a7-4b07-80a1-7040cffc5567"),
|
|
stop_order=42,
|
|
travel_time_minutes=33,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("9cc2dd3d-59fd-4a5f-a24e-c52082625190"),
|
|
stop_order=43,
|
|
travel_time_minutes=33,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("bf949ab0-c554-41ab-a852-917b6aed4251"),
|
|
stop_order=44,
|
|
travel_time_minutes=34,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
stop_id=UUID("acea0a34-f564-4f30-b97d-445c5c2f3864"),
|
|
stop_order=45,
|
|
travel_time_minutes=35,
|
|
is_pickup_point=False,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("df528e47-8fc2-49b7-81db-3c8f4f7a176a"),
|
|
stop_order=1,
|
|
travel_time_minutes=0,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=False,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("a20332a5-08f3-46f4-9dfd-f27e5539469e"),
|
|
stop_order=2,
|
|
travel_time_minutes=1,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("2b2e6858-be6d-4f18-a3a2-92373cfd9a9d"),
|
|
stop_order=3,
|
|
travel_time_minutes=1,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("3d769def-cf21-4560-be21-13b828aafe54"),
|
|
stop_order=4,
|
|
travel_time_minutes=2,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("7db160e3-05b2-4778-baee-789cea0f0bfd"),
|
|
stop_order=5,
|
|
travel_time_minutes=3,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("dc3e0510-7cdd-4521-8dc2-6181120b4f26"),
|
|
stop_order=6,
|
|
travel_time_minutes=3,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("77f80a0a-450c-42c3-bb8a-b9a3b6e5758d"),
|
|
stop_order=7,
|
|
travel_time_minutes=4,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("edfb904e-66be-4a8d-80f7-3a30403d3fca"),
|
|
stop_order=8,
|
|
travel_time_minutes=5,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("f7317833-9adc-40c0-9132-5c66c1822210"),
|
|
stop_order=9,
|
|
travel_time_minutes=5,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("682705d5-5413-4bd3-a31c-144832e7ec96"),
|
|
stop_order=10,
|
|
travel_time_minutes=6,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("12fc09fc-5e48-4c54-b414-4133f0f12a37"),
|
|
stop_order=11,
|
|
travel_time_minutes=7,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("788abd79-3d4b-4810-a5c0-7d8fec3d1a27"),
|
|
stop_order=12,
|
|
travel_time_minutes=7,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("b321b88d-5032-4383-85e1-ec99c3e3cb3f"),
|
|
stop_order=13,
|
|
travel_time_minutes=8,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("d86649cc-7286-46c3-933c-168716d1b304"),
|
|
stop_order=14,
|
|
travel_time_minutes=9,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("bd2f01ab-0406-4b6d-b4c5-052f8915fc30"),
|
|
stop_order=15,
|
|
travel_time_minutes=9,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("69c374a2-a062-4b28-8308-6aff793cd631"),
|
|
stop_order=16,
|
|
travel_time_minutes=10,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("8ba33c36-303a-4182-8e08-065c2961e05d"),
|
|
stop_order=17,
|
|
travel_time_minutes=11,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("00a14099-a862-455f-abfa-c2ec1489ab70"),
|
|
stop_order=18,
|
|
travel_time_minutes=11,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("b95c7990-65ac-40db-bb49-b99ed3b9d8dd"),
|
|
stop_order=19,
|
|
travel_time_minutes=12,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("9bdf297b-6312-43fa-b945-bfaa01fd49bc"),
|
|
stop_order=20,
|
|
travel_time_minutes=13,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("9d9ffbcc-b4d8-427b-b5a3-add1c25f66a7"),
|
|
stop_order=21,
|
|
travel_time_minutes=14,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("decf0e21-7488-4dc1-b5b6-9997e2437403"),
|
|
stop_order=22,
|
|
travel_time_minutes=14,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("21f322a7-ac14-4144-abad-7e7f2502eef6"),
|
|
stop_order=23,
|
|
travel_time_minutes=15,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("62ba8246-ead0-49ad-ae56-e76afd35765e"),
|
|
stop_order=24,
|
|
travel_time_minutes=16,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("595f2ffe-2ab7-4cdb-9e49-087b3dddd12e"),
|
|
stop_order=25,
|
|
travel_time_minutes=16,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("5c1bdc42-ab43-42a1-a257-66e547df75ff"),
|
|
stop_order=26,
|
|
travel_time_minutes=17,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("a1d2c520-d8dd-45e8-ad6e-16c1f8ecfe08"),
|
|
stop_order=27,
|
|
travel_time_minutes=18,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("156ce6b5-1683-4654-aab5-17e6d55547e8"),
|
|
stop_order=28,
|
|
travel_time_minutes=18,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("eb875940-9aa6-42bc-bc9a-15fce44c4287"),
|
|
stop_order=29,
|
|
travel_time_minutes=19,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("29819fa8-f25e-4cb5-b142-c65a6f11baa9"),
|
|
stop_order=30,
|
|
travel_time_minutes=20,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("a7996b81-206d-49af-bb42-e167f4f96a0a"),
|
|
stop_order=31,
|
|
travel_time_minutes=20,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("0512d2ed-abc0-4f95-b39f-515eac489d27"),
|
|
stop_order=32,
|
|
travel_time_minutes=21,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("a1df2b63-5a62-41fd-9f32-4c947d153d07"),
|
|
stop_order=33,
|
|
travel_time_minutes=22,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("378993ec-7689-475c-8f4a-21177bbf6b73"),
|
|
stop_order=34,
|
|
travel_time_minutes=22,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("267afc65-88a6-4ac1-9be5-46d22bfec4d5"),
|
|
stop_order=35,
|
|
travel_time_minutes=23,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("bf4a14b1-2c0a-4405-8653-9a7ad24cd9ba"),
|
|
stop_order=36,
|
|
travel_time_minutes=24,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("37f0aeff-4345-4429-9c39-1a95be47d19f"),
|
|
stop_order=37,
|
|
travel_time_minutes=24,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("432d38b5-4ef5-4ca0-ad06-cbb98abfcdc1"),
|
|
stop_order=38,
|
|
travel_time_minutes=25,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("d57a03ef-26ae-49b8-b0ab-a24701fecf8c"),
|
|
stop_order=39,
|
|
travel_time_minutes=26,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("5b8ed1ee-43fe-4bf2-8baf-ba7fb046bb16"),
|
|
stop_order=40,
|
|
travel_time_minutes=26,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("5e276d2f-6d8c-4e29-b14f-2088acb32ea0"),
|
|
stop_order=41,
|
|
travel_time_minutes=27,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("6ed29cc6-f1ad-407a-b27c-2a45ef50d506"),
|
|
stop_order=42,
|
|
travel_time_minutes=28,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("3211b00c-4c3a-41e9-a560-794d77c1cfab"),
|
|
stop_order=43,
|
|
travel_time_minutes=28,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("817b72ba-d4e6-4cc5-814c-7055dbcbeba5"),
|
|
stop_order=44,
|
|
travel_time_minutes=29,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("bc19ef7d-7379-413e-bb2f-f32f224b0c64"),
|
|
stop_order=45,
|
|
travel_time_minutes=30,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("5dda8c4c-1134-4bef-a4d5-08de4234ccea"),
|
|
stop_order=46,
|
|
travel_time_minutes=30,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("1fb1faef-ae69-4875-8598-7839e6268741"),
|
|
stop_order=47,
|
|
travel_time_minutes=31,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("6837aea7-cf79-4fc5-9530-9a7d02db7662"),
|
|
stop_order=48,
|
|
travel_time_minutes=32,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("dd5b1ddb-80ca-4709-801a-dd8376df0b4e"),
|
|
stop_order=49,
|
|
travel_time_minutes=32,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("5ac77ca0-882f-41be-b434-f95731b4f947"),
|
|
stop_order=50,
|
|
travel_time_minutes=33,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("81644bb0-0afb-4cd0-8496-f066a4bd1701"),
|
|
stop_order=51,
|
|
travel_time_minutes=34,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("b5c4dbb3-3225-462e-b865-79216d8564f4"),
|
|
stop_order=52,
|
|
travel_time_minutes=34,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("53d8b9b6-ef59-439e-97a5-39dacac56a24"),
|
|
stop_order=53,
|
|
travel_time_minutes=35,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("6d4aa16d-5683-48b1-8507-b0aba05d4aaa"),
|
|
stop_order=54,
|
|
travel_time_minutes=36,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("eef5ca98-8a8d-42a6-9616-e3cabc7fcf0b"),
|
|
stop_order=55,
|
|
travel_time_minutes=36,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("d3773f11-9393-40ab-9295-9305412d16ce"),
|
|
stop_order=56,
|
|
travel_time_minutes=37,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("707c8544-533f-4e42-8767-0490170cb083"),
|
|
stop_order=57,
|
|
travel_time_minutes=38,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("8db9b2c9-769b-4ec6-aae7-8a43ef99b9bc"),
|
|
stop_order=58,
|
|
travel_time_minutes=39,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("2a03ba34-5483-4783-bb78-e8c92c200fbe"),
|
|
stop_order=59,
|
|
travel_time_minutes=39,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("51e94d40-56fb-4842-8cfe-8b76c46aa13b"),
|
|
stop_order=60,
|
|
travel_time_minutes=40,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("f475143d-f78b-4b27-87d9-5a8867673695"),
|
|
stop_order=61,
|
|
travel_time_minutes=41,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("a364477b-c104-4ec5-bc4e-67bc04d4fd84"),
|
|
stop_order=62,
|
|
travel_time_minutes=41,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("5433c8d0-002a-45f0-a17a-c4fcf84e5169"),
|
|
stop_order=63,
|
|
travel_time_minutes=42,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("8085a65b-18fd-439d-8fa6-760b3b26ea55"),
|
|
stop_order=64,
|
|
travel_time_minutes=43,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("4d182cbe-c108-46ed-a9b3-4b6cdef33aa9"),
|
|
stop_order=65,
|
|
travel_time_minutes=43,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("9c9a32d7-1bef-4824-95db-3761b4688111"),
|
|
stop_order=66,
|
|
travel_time_minutes=44,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("89d0f353-8316-4c22-ab4e-1006121ee23a"),
|
|
stop_order=67,
|
|
travel_time_minutes=45,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("6eb8d5e3-4319-40d3-bd16-e3383cb113af"),
|
|
stop_order=68,
|
|
travel_time_minutes=45,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("6eabfea4-f0e8-4f8d-b97f-bc8febb39344"),
|
|
stop_order=69,
|
|
travel_time_minutes=46,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("bd0f3e38-f7f4-4d8f-a9d3-33191468a58d"),
|
|
stop_order=70,
|
|
travel_time_minutes=47,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("b64f9a9a-0568-476f-b229-403e6a4cf448"),
|
|
stop_order=71,
|
|
travel_time_minutes=47,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("d5af00b9-9f40-4afd-a67f-abf98a06ed6a"),
|
|
stop_order=72,
|
|
travel_time_minutes=48,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("e51839b2-1bb8-47c6-ab80-224cd5f17cb7"),
|
|
stop_order=73,
|
|
travel_time_minutes=49,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("dee5dc1b-5101-43f1-a322-b59cfdd18ed1"),
|
|
stop_order=74,
|
|
travel_time_minutes=49,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
stop_id=UUID("4d7a3281-563a-491d-bbde-3a5fc4b87198"),
|
|
stop_order=75,
|
|
travel_time_minutes=50,
|
|
is_pickup_point=False,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("4d7a3281-563a-491d-bbde-3a5fc4b87198"),
|
|
stop_order=1,
|
|
travel_time_minutes=0,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=False,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("dee5dc1b-5101-43f1-a322-b59cfdd18ed1"),
|
|
stop_order=2,
|
|
travel_time_minutes=1,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("e51839b2-1bb8-47c6-ab80-224cd5f17cb7"),
|
|
stop_order=3,
|
|
travel_time_minutes=1,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("d5af00b9-9f40-4afd-a67f-abf98a06ed6a"),
|
|
stop_order=4,
|
|
travel_time_minutes=2,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("b64f9a9a-0568-476f-b229-403e6a4cf448"),
|
|
stop_order=5,
|
|
travel_time_minutes=3,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("bd0f3e38-f7f4-4d8f-a9d3-33191468a58d"),
|
|
stop_order=6,
|
|
travel_time_minutes=3,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("6eabfea4-f0e8-4f8d-b97f-bc8febb39344"),
|
|
stop_order=7,
|
|
travel_time_minutes=4,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("6eb8d5e3-4319-40d3-bd16-e3383cb113af"),
|
|
stop_order=8,
|
|
travel_time_minutes=5,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("89d0f353-8316-4c22-ab4e-1006121ee23a"),
|
|
stop_order=9,
|
|
travel_time_minutes=5,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("9c9a32d7-1bef-4824-95db-3761b4688111"),
|
|
stop_order=10,
|
|
travel_time_minutes=6,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("4d182cbe-c108-46ed-a9b3-4b6cdef33aa9"),
|
|
stop_order=11,
|
|
travel_time_minutes=7,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("8085a65b-18fd-439d-8fa6-760b3b26ea55"),
|
|
stop_order=12,
|
|
travel_time_minutes=7,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("5433c8d0-002a-45f0-a17a-c4fcf84e5169"),
|
|
stop_order=13,
|
|
travel_time_minutes=8,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("a364477b-c104-4ec5-bc4e-67bc04d4fd84"),
|
|
stop_order=14,
|
|
travel_time_minutes=9,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("f475143d-f78b-4b27-87d9-5a8867673695"),
|
|
stop_order=15,
|
|
travel_time_minutes=9,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("51e94d40-56fb-4842-8cfe-8b76c46aa13b"),
|
|
stop_order=16,
|
|
travel_time_minutes=10,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("2a03ba34-5483-4783-bb78-e8c92c200fbe"),
|
|
stop_order=17,
|
|
travel_time_minutes=11,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("8db9b2c9-769b-4ec6-aae7-8a43ef99b9bc"),
|
|
stop_order=18,
|
|
travel_time_minutes=11,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("707c8544-533f-4e42-8767-0490170cb083"),
|
|
stop_order=19,
|
|
travel_time_minutes=12,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("d3773f11-9393-40ab-9295-9305412d16ce"),
|
|
stop_order=20,
|
|
travel_time_minutes=13,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("eef5ca98-8a8d-42a6-9616-e3cabc7fcf0b"),
|
|
stop_order=21,
|
|
travel_time_minutes=14,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("6d4aa16d-5683-48b1-8507-b0aba05d4aaa"),
|
|
stop_order=22,
|
|
travel_time_minutes=14,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("53d8b9b6-ef59-439e-97a5-39dacac56a24"),
|
|
stop_order=23,
|
|
travel_time_minutes=15,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("b5c4dbb3-3225-462e-b865-79216d8564f4"),
|
|
stop_order=24,
|
|
travel_time_minutes=16,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("81644bb0-0afb-4cd0-8496-f066a4bd1701"),
|
|
stop_order=25,
|
|
travel_time_minutes=16,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("5ac77ca0-882f-41be-b434-f95731b4f947"),
|
|
stop_order=26,
|
|
travel_time_minutes=17,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("dd5b1ddb-80ca-4709-801a-dd8376df0b4e"),
|
|
stop_order=27,
|
|
travel_time_minutes=18,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("6837aea7-cf79-4fc5-9530-9a7d02db7662"),
|
|
stop_order=28,
|
|
travel_time_minutes=18,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("1fb1faef-ae69-4875-8598-7839e6268741"),
|
|
stop_order=29,
|
|
travel_time_minutes=19,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("5dda8c4c-1134-4bef-a4d5-08de4234ccea"),
|
|
stop_order=30,
|
|
travel_time_minutes=20,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("bc19ef7d-7379-413e-bb2f-f32f224b0c64"),
|
|
stop_order=31,
|
|
travel_time_minutes=20,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("817b72ba-d4e6-4cc5-814c-7055dbcbeba5"),
|
|
stop_order=32,
|
|
travel_time_minutes=21,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("3211b00c-4c3a-41e9-a560-794d77c1cfab"),
|
|
stop_order=33,
|
|
travel_time_minutes=22,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("6ed29cc6-f1ad-407a-b27c-2a45ef50d506"),
|
|
stop_order=34,
|
|
travel_time_minutes=22,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("5e276d2f-6d8c-4e29-b14f-2088acb32ea0"),
|
|
stop_order=35,
|
|
travel_time_minutes=23,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("5b8ed1ee-43fe-4bf2-8baf-ba7fb046bb16"),
|
|
stop_order=36,
|
|
travel_time_minutes=24,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("d57a03ef-26ae-49b8-b0ab-a24701fecf8c"),
|
|
stop_order=37,
|
|
travel_time_minutes=24,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("432d38b5-4ef5-4ca0-ad06-cbb98abfcdc1"),
|
|
stop_order=38,
|
|
travel_time_minutes=25,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("37f0aeff-4345-4429-9c39-1a95be47d19f"),
|
|
stop_order=39,
|
|
travel_time_minutes=26,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("bf4a14b1-2c0a-4405-8653-9a7ad24cd9ba"),
|
|
stop_order=40,
|
|
travel_time_minutes=26,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("267afc65-88a6-4ac1-9be5-46d22bfec4d5"),
|
|
stop_order=41,
|
|
travel_time_minutes=27,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("378993ec-7689-475c-8f4a-21177bbf6b73"),
|
|
stop_order=42,
|
|
travel_time_minutes=28,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("a1df2b63-5a62-41fd-9f32-4c947d153d07"),
|
|
stop_order=43,
|
|
travel_time_minutes=28,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("0512d2ed-abc0-4f95-b39f-515eac489d27"),
|
|
stop_order=44,
|
|
travel_time_minutes=29,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("a7996b81-206d-49af-bb42-e167f4f96a0a"),
|
|
stop_order=45,
|
|
travel_time_minutes=30,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("29819fa8-f25e-4cb5-b142-c65a6f11baa9"),
|
|
stop_order=46,
|
|
travel_time_minutes=30,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("eb875940-9aa6-42bc-bc9a-15fce44c4287"),
|
|
stop_order=47,
|
|
travel_time_minutes=31,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("156ce6b5-1683-4654-aab5-17e6d55547e8"),
|
|
stop_order=48,
|
|
travel_time_minutes=32,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("a1d2c520-d8dd-45e8-ad6e-16c1f8ecfe08"),
|
|
stop_order=49,
|
|
travel_time_minutes=32,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("5c1bdc42-ab43-42a1-a257-66e547df75ff"),
|
|
stop_order=50,
|
|
travel_time_minutes=33,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("595f2ffe-2ab7-4cdb-9e49-087b3dddd12e"),
|
|
stop_order=51,
|
|
travel_time_minutes=34,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("62ba8246-ead0-49ad-ae56-e76afd35765e"),
|
|
stop_order=52,
|
|
travel_time_minutes=34,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("21f322a7-ac14-4144-abad-7e7f2502eef6"),
|
|
stop_order=53,
|
|
travel_time_minutes=35,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("decf0e21-7488-4dc1-b5b6-9997e2437403"),
|
|
stop_order=54,
|
|
travel_time_minutes=36,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("9d9ffbcc-b4d8-427b-b5a3-add1c25f66a7"),
|
|
stop_order=55,
|
|
travel_time_minutes=36,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("9bdf297b-6312-43fa-b945-bfaa01fd49bc"),
|
|
stop_order=56,
|
|
travel_time_minutes=37,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("b95c7990-65ac-40db-bb49-b99ed3b9d8dd"),
|
|
stop_order=57,
|
|
travel_time_minutes=38,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("00a14099-a862-455f-abfa-c2ec1489ab70"),
|
|
stop_order=58,
|
|
travel_time_minutes=39,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("8ba33c36-303a-4182-8e08-065c2961e05d"),
|
|
stop_order=59,
|
|
travel_time_minutes=39,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("69c374a2-a062-4b28-8308-6aff793cd631"),
|
|
stop_order=60,
|
|
travel_time_minutes=40,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("bd2f01ab-0406-4b6d-b4c5-052f8915fc30"),
|
|
stop_order=61,
|
|
travel_time_minutes=41,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("d86649cc-7286-46c3-933c-168716d1b304"),
|
|
stop_order=62,
|
|
travel_time_minutes=41,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("b321b88d-5032-4383-85e1-ec99c3e3cb3f"),
|
|
stop_order=63,
|
|
travel_time_minutes=42,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("788abd79-3d4b-4810-a5c0-7d8fec3d1a27"),
|
|
stop_order=64,
|
|
travel_time_minutes=43,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("12fc09fc-5e48-4c54-b414-4133f0f12a37"),
|
|
stop_order=65,
|
|
travel_time_minutes=43,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("682705d5-5413-4bd3-a31c-144832e7ec96"),
|
|
stop_order=66,
|
|
travel_time_minutes=44,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("f7317833-9adc-40c0-9132-5c66c1822210"),
|
|
stop_order=67,
|
|
travel_time_minutes=45,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("edfb904e-66be-4a8d-80f7-3a30403d3fca"),
|
|
stop_order=68,
|
|
travel_time_minutes=45,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("77f80a0a-450c-42c3-bb8a-b9a3b6e5758d"),
|
|
stop_order=69,
|
|
travel_time_minutes=46,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("dc3e0510-7cdd-4521-8dc2-6181120b4f26"),
|
|
stop_order=70,
|
|
travel_time_minutes=47,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("7db160e3-05b2-4778-baee-789cea0f0bfd"),
|
|
stop_order=71,
|
|
travel_time_minutes=47,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("3d769def-cf21-4560-be21-13b828aafe54"),
|
|
stop_order=72,
|
|
travel_time_minutes=48,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("2b2e6858-be6d-4f18-a3a2-92373cfd9a9d"),
|
|
stop_order=73,
|
|
travel_time_minutes=49,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("a20332a5-08f3-46f4-9dfd-f27e5539469e"),
|
|
stop_order=74,
|
|
travel_time_minutes=49,
|
|
is_pickup_point=True,
|
|
is_dropoff_point=True,
|
|
),
|
|
RouteStop(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
stop_id=UUID("df528e47-8fc2-49b7-81db-3c8f4f7a176a"),
|
|
stop_order=75,
|
|
travel_time_minutes=50,
|
|
is_pickup_point=False,
|
|
is_dropoff_point=True,
|
|
),
|
|
]
|
|
for route_stop in route_stops:
|
|
session.add(route_stop)
|
|
session.flush() # Flush route_stops before adding schedules
|
|
|
|
# Insert Bus Schedules
|
|
bus_schedules = [
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(5, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(5, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(6, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(6, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(7, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(7, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(8, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(8, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(9, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(9, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(10, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(10, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(11, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(11, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(12, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(12, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(13, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(13, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(14, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(14, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(15, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(15, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(16, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(16, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(17, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(17, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(18, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(18, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(19, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(19, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(20, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("944457a8-7edd-42f4-9ff6-8018f4ec7e9c"),
|
|
departure_time=time(20, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(5, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(6, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(6, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(7, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(7, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(8, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(8, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(9, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(9, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(10, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(10, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(11, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(11, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(12, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(12, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(13, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(13, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(14, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(14, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(15, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(15, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(16, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(16, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(17, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(17, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(18, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(18, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(19, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(19, 0),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(20, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("5da1dfb6-760a-4f59-aa5b-667149eb9ae6"),
|
|
departure_time=time(20, 30),
|
|
frequency_minutes=30,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
departure_time=time(6, 0),
|
|
frequency_minutes=60,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
departure_time=time(7, 0),
|
|
frequency_minutes=60,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
departure_time=time(8, 0),
|
|
frequency_minutes=60,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
departure_time=time(12, 0),
|
|
frequency_minutes=60,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
departure_time=time(17, 0),
|
|
frequency_minutes=60,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("27ef54e9-196f-478f-ba56-9d46c0949098"),
|
|
departure_time=time(18, 0),
|
|
frequency_minutes=60,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
departure_time=time(8, 0),
|
|
frequency_minutes=60,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
departure_time=time(14, 0),
|
|
frequency_minutes=60,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("22dc631f-1f8c-4a34-9f3e-1dc450d9be9a"),
|
|
departure_time=time(18, 0),
|
|
frequency_minutes=60,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
departure_time=time(5, 30),
|
|
frequency_minutes=45,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
departure_time=time(6, 15),
|
|
frequency_minutes=45,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
departure_time=time(7, 0),
|
|
frequency_minutes=45,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
departure_time=time(7, 45),
|
|
frequency_minutes=45,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
departure_time=time(16, 0),
|
|
frequency_minutes=45,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("6239c83b-7466-476f-be54-df33977fc32e"),
|
|
departure_time=time(17, 0),
|
|
frequency_minutes=45,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
departure_time=time(9, 0),
|
|
frequency_minutes=45,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
departure_time=time(15, 0),
|
|
frequency_minutes=45,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
BusSchedule(
|
|
route_id=UUID("9d315fa5-f87e-4737-8013-9fe2617ffb23"),
|
|
departure_time=time(18, 30),
|
|
frequency_minutes=45,
|
|
schedule_type=BusScheduleType.WEEKDAY,
|
|
is_active=True,
|
|
notes=None,
|
|
),
|
|
]
|
|
for schedule in bus_schedules:
|
|
session.add(schedule)
|
|
|
|
session.commit()
|
|
print("Database seeded successfully!")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
seed_database()
|