Skip to content

Instantly share code, notes, and snippets.

@neoecos
Last active October 9, 2015 12:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save neoecos/8748091 to your computer and use it in GitHub Desktop.
Save neoecos/8748091 to your computer and use it in GitHub Desktop.
GraphGist For TransMilenio Bogotá

TransMilemio Bogota Bus Rapid Service

TransMilenio is a Bus Rapid Service wich serves Bogotá City in Colombia, Bogotá metropolitan area has about 9 million population, and have been famous in the country for the horrorific traffic jams. TransMilenio is used to move a massive amount of people every day to get from the suburbs to the centric areas, where people works and does everyday duties as going to bank.

Domain

The bus rapid service domain, is a very common route problem, there are 12 main lines, with 145 stations and 128 different bus routes. All dada can be found on www.transmilenio.gov.co on a non-structured way.

Using extensions like Neo4j Spatial is possible to calculate the distance between to stations.

TransMilenio Bogota Map

Nodes

The nodes represents the stations of the system, contains information about in which line is located, and the geolocatization of the station.

Relationships

Rels are the bus routes connecting two stations, in a directed way representing the actual bus path.

Setup

Because of the length of the query, setup is only for the index, please run the query 2 to populate data.

CREATE INDEX ON :STATION(id)
CREATE (station_1:STATION {id:1,name:"Tercer Milenio",description:"Av. Caracas entre calles 7bis y 6",latitude:4.597835,longitude:-74.084126,line:"A"})
CREATE (station_2:STATION {id:2,name:"AV. Jiménez",description:"Av. Caracas con Cll. 11",latitude:4.602789,longitude:-74.080508,line:"A"})
CREATE (station_3:STATION {id:3,name:"Calle 19",description:"Av. Caracas entre calles 17 y 19",latitude:4.607941,longitude:-74.076831,line:"A"})
CREATE (station_4:STATION {id:4,name:"Calle 22",description:"Av. Caracas entre calles 22 y 24",latitude:4.611759,longitude:-74.074679,line:"A"})
CREATE (station_5:STATION {id:5,name:"Calle 26",description:"Av. Caracas entre calles 26 y 28",latitude:4.616617,longitude:-74.072223,line:"A"})
CREATE (station_6:STATION {id:6,name:"Profamilia",description:"Av. Caracas entre calles 32 y 34",latitude:4.621504,longitude:-74.069811,line:"A"})
CREATE (station_7:STATION {id:7,name:"Av. 39",description:"Av. Caracas entre la Cll. 37 y la Av. 39",latitude:4.626937,longitude:-74.068712,line:"A"})
CREATE (station_8:STATION {id:8,name:"Calle 45",description:"Av. Caracas entre calles 42 y 45",latitude:4.631567,longitude:-74.067893,line:"A"})
CREATE (station_9:STATION {id:9,name:"Marly",description:"Av. Caracas entre calles 49 y 51",latitude:4.637553,longitude:-74.066783,line:"A"})
CREATE (station_10:STATION {id:10,name:"Calle 57",description:"Av. Caracas entre calles 54A y 57",latitude:4.643036,longitude:-74.065868,line:"A"})
CREATE (station_11:STATION {id:11,name:"Calle 63",description:"Av. Caracas entre calles 60 y 63",latitude:4.648268,longitude:-74.064927,line:"A"})
CREATE (station_12:STATION {id:12,name:"Flores",description:"Av. Caracas entre calles 67 y 69",latitude:4.654879,longitude:-74.063071,line:"A"})
CREATE (station_13:STATION {id:13,name:"Calle 72",description:"Av. Caracas entre calles 70A y 72",latitude:4.658221,longitude:-74.062121,line:"A"})
CREATE (station_14:STATION {id:14,name:"Calle 76",description:"Av. Caracas entre calles 74 y 76",latitude:4.663121,longitude:-74.061276,line:"A"})
CREATE (station_15:STATION {id:15,name:"Héroes",description:"Autopista Norte con Cll. 80",latitude:4.668438,longitude:-74.060276,line:"B"})
CREATE (station_16:STATION {id:16,name:"Calle 85",description:"Autopista Norte con Cll. 85",latitude:4.67174,longitude:-74.059791,line:"B"})
CREATE (station_17:STATION {id:17,name:"Virrey",description:"Autopista Norte con Cll. 90",latitude:4.676525,longitude:-74.058959,line:"B"})
CREATE (station_18:STATION {id:18,name:"Calle 100",description:"Autopista Norte con Cll. 100",latitude:4.684347,longitude:-74.057672,line:"B"})
CREATE (station_19:STATION {id:19,name:"Calle 106",description:"Autopista Norte con Cll. 106",latitude:4.691824,longitude:-74.056419,line:"B"})
CREATE (station_20:STATION {id:20,name:"Pepe Sierra",description:"Autopista Norte con Cll. 116",latitude:4.698202,longitude:-74.055317,line:"B"})
CREATE (station_21:STATION {id:21,name:"Calle 127",description:"Autopista Norte con Cll. 125-C",latitude:4.704642,longitude:-74.054273,line:"B"})
CREATE (station_22:STATION {id:22,name:"Prado",description:"Autopista Norte con Cll. 128-C",latitude:4.714519,longitude:-74.052589,line:"B"})
CREATE (station_23:STATION {id:23,name:"Alcalá",description:"Autopista Norte con Cll. 136",latitude:4.72113,longitude:-74.051508,line:"B"})
CREATE (station_24:STATION {id:24,name:"Calle 142",description:"Autopista Norte con Cll. 142",latitude:4.726377,longitude:-74.050615,line:"B"})
CREATE (station_25:STATION {id:25,name:"Calle 146",description:"Autopista Norte con Cll. 146",latitude:4.731574,longitude:-74.049738,line:"B"})
CREATE (station_26:STATION {id:26,name:"Mazuren",description:"Autopista Norte con Cll. 150",latitude:4.735442,longitude:-74.049083,line:"B"})
CREATE (station_27:STATION {id:27,name:"Cardio Infantil",description:"Autopista Norte con Cll. 161",latitude:4.742084,longitude:-74.047975,line:"B"})
CREATE (station_28:STATION {id:28,name:"Toberín",description:"Autopista Norte con Cll. 165",latitude:4.746877,longitude:-74.047184,line:"B"})
CREATE (station_29:STATION {id:29,name:"Portal Norte",description:"Autopista Norte con Cll. 172 / 176",latitude:4.754623,longitude:-74.046119,line:"B"})
CREATE (station_30:STATION {id:30,name:"C.C Santafé",description:"Autopista Norte con Cll. 183",latitude:4.761535,longitude:-74.045233,line:"B"})
CREATE (station_31:STATION {id:31,name:"San Martín",description:"Av. Suba con Cll. 82",latitude:4.676437,longitude:-74.067172,line:"C"})
CREATE (station_32:STATION {id:32,name:"Rionegro",description:"Av. Suba con Cll. 90",latitude:4.680409,longitude:-74.064817,line:"C"})
CREATE (station_33:STATION {id:33,name:"Suba - CL. 95",description:"Av. Suba con Cll. 95 y Cra. 38A",latitude:4.684641,longitude:-74.063232,line:"C"})
CREATE (station_34:STATION {id:34,name:"Suba - CL. 100",description:"Av. Suba con Cll. 100",latitude:4.690522,longitude:-74.065689,line:"C"})
CREATE (station_35:STATION {id:35,name:"Puentelargo",description:"Av. Suba con Cll. 106",latitude:4.693407,longitude:-74.067244,line:"C"})
CREATE (station_36:STATION {id:36,name:"Shaio",description:"Av. Suba con Cll. 110 (Av. Pepe Sierra)",latitude:4.699317,longitude:-74.069924,line:"C"})
CREATE (station_37:STATION {id:37,name:"Humedal Córdoba",description:"Av. Suba con Cll. 120",latitude:4.706559,longitude:-74.071152,line:"C"})
CREATE (station_38:STATION {id:38,name:"Niza - CL. 127",description:"Av. Suba con calles 125A Y 127A",latitude:4.711948,longitude:-74.072314,line:"C"})
CREATE (station_39:STATION {id:39,name:"Suba - Av. Boyacá",description:"Av. Suba con Dg. 129C",latitude:4.721266,longitude:-74.074795,line:"C"})
CREATE (station_40:STATION {id:40,name:"Gratamira",description:"Av. Suba con Cll. 136 A",latitude:4.727388,longitude:-74.074744,line:"C"})
CREATE (station_41:STATION {id:41,name:"21 Ángeles",description:"Av. Suba con Tv. 84A",latitude:4.735479,longitude:-74.080942,line:"C"})
CREATE (station_42:STATION {id:42,name:"Suba - Tv. 91",description:"Av. Suba entre Cra. 90 y 93",latitude:4.738957,longitude:-74.087034,line:"C"})
CREATE (station_43:STATION {id:43,name:"La Campiña",description:"Av. Suba entre Cra. 98A y Cll. 142",latitude:4.742643,longitude:-74.091197,line:"C"})
CREATE (station_44:STATION {id:44,name:"Portal Suba",description:"Av. Suba con Av. Ciudad de Cali",latitude:4.746813,longitude:-74.094096,line:"C"})
CREATE (station_45:STATION {id:45,name:"Polo",description:"Cll. 80 con Cra. 27",latitude:4.670622,longitude:-74.064756,line:"D"})
CREATE (station_46:STATION {id:46,name:"Esc. Militar",description:"Cll. 80 con Cra. 51",latitude:4.675215,longitude:-74.069348,line:"D"})
CREATE (station_47:STATION {id:47,name:"Carrera 47",description:"Cll. 80 con Cra. 58",latitude:4.677947,longitude:-74.073607,line:"D"})
CREATE (station_48:STATION {id:48,name:"Carrera 53",description:"Cll. 80 con Cra. 65",latitude:4.682101,longitude:-74.077716,line:"D"})
CREATE (station_49:STATION {id:49,name:"Avenida 68",description:"Cll. 80 con Cra. 68B",latitude:4.685812,longitude:-74.080559,line:"D"})
CREATE (station_50:STATION {id:50,name:"Ferias",description:"Cll. 80 con Tv. 69R",latitude:4.690747,longitude:-74.084529,line:"D"})
CREATE (station_51:STATION {id:51,name:"Boyacá",description:"Cll. 80 con Cra. 71",latitude:4.694168,longitude:-74.087372,line:"D"})
CREATE (station_52:STATION {id:52,name:"Minuto de Dios",description:"Cll. 80 con Cra. 73A",latitude:4.696574,longitude:-74.091401,line:"D"})
CREATE (station_53:STATION {id:53,name:"Granja - Carrera 77",description:"Cll. 80 entre Cra. 77 y 81",latitude:4.698323,longitude:-74.094705,line:"D"})
CREATE (station_54:STATION {id:54,name:"Avenida Cali",description:"Cll. 80 con Cra. 85A",latitude:4.702717,longitude:-74.100622,line:"D"})
CREATE (station_55:STATION {id:55,name:"Carrera 90",description:"Cll. 80 con Cra. 90",latitude:4.704562,longitude:-74.104377,line:"D"})
CREATE (station_56:STATION {id:56,name:"Quirigua",description:"Cll. 80 con Cra. 94",latitude:4.706599,longitude:-74.108583,line:"D"})
CREATE (station_57:STATION {id:57,name:"Portal de la 80",description:"Cll. 80 con Cra. 94",latitude:4.709315,longitude:-74.110418,line:"D"})
CREATE (station_58:STATION {id:58,name:"Ricaurte",description:"Cll. 13 con Cra. 27",latitude:4.611535,longitude:-74.094061,line:"E"})
CREATE (station_59:STATION {id:59,name:"Paloquemao",description:"NQS con Cll. 19",latitude:4.616807,longitude:-74.090252,line:"E"})
CREATE (station_60:STATION {id:60,name:"CAD",description:"NQS entre la Av. de Las Américas y Cll. 22B",latitude:4.622977,longitude:-74.084582,line:"E"})
CREATE (station_61:STATION {id:61,name:"AV. El Dorado",description:"NQS con Cll. 39",latitude:4.630524,longitude:-74.079888,line:"E"})
CREATE (station_62:STATION {id:62,name:"U. Nacional",description:"NQS entre calles 45 y 49",latitude:4.637029,longitude:-74.079355,line:"E"})
CREATE (station_63:STATION {id:63,name:"Campín",description:"NQS con Cll. 57",latitude:4.645445,longitude:-74.078727,line:"E"})
CREATE (station_64:STATION {id:64,name:"Coliseo",description:"NQS con Cll. 63",latitude:4.649957,longitude:-74.078368,line:"E"})
CREATE (station_65:STATION {id:65,name:"Simón Bolivar",description:"NQS con Cll. 63J",latitude:4.657331,longitude:-74.077705,line:"E"})
CREATE (station_66:STATION {id:66,name:"AV. Chile",description:"NQS entre calles 70A Y 72",latitude:4.666302,longitude:-74.074722,line:"E"})
CREATE (station_67:STATION {id:67,name:"NQS - Calle 75",description:"NQS con Cll. 75",latitude:4.669876,longitude:-74.071708,line:"E"})
CREATE (station_68:STATION {id:68,name:"La Castellana",description:"NQS con Cra. 28",latitude:4.675645,longitude:-74.064495,line:"E"})
CREATE (station_69:STATION {id:69,name:"AV. Jiménez",description:"Av. Caracas con Cll. 11",latitude:4.603118,longitude:-74.079207,line:"F"})
CREATE (station_70:STATION {id:70,name:"De la Sabana",description:"Cll. 13 con carreras 16 y 17",latitude:4.605367,longitude:-74.081868,line:"F"})
CREATE (station_71:STATION {id:71,name:"San Façon - KR. 22",description:"Cll. 13 con carreras 21 y 23",latitude:4.609652,longitude:-74.086725,line:"F"})
CREATE (station_72:STATION {id:72,name:"Ricaurte",description:"Cll. 13 con Cra. 27",latitude:4.612839,longitude:-74.090303,line:"F"})
CREATE (station_73:STATION {id:73,name:"CDS - Carrera 32",description:"Cll. 13 con carreras 32 y 33",latitude:4.616045,longitude:-74.093895,line:"F"})
CREATE (station_74:STATION {id:74,name:"Zona Industrial",description:"Cll. 13 con carreras 37 y 39",latitude:4.620314,longitude:-74.098709,line:"F"})
CREATE (station_75:STATION {id:75,name:"Carrera 43",description:"Cll. 13 con carreras 42A bis y 43",latitude:4.622795,longitude:-74.101485,line:"F"})
CREATE (station_76:STATION {id:76,name:"Puente Aranda",description:"Cll. 13 con Cra. 47",latitude:4.625798,longitude:-74.104836,line:"F"})
CREATE (station_77:STATION {id:77,name:"Américas - KR. 53A",description:"Av. de las Américas con Cra. 53A",latitude:4.627856,longitude:-74.111737,line:"F"})
CREATE (station_78:STATION {id:78,name:"Pradera",description:"Av. de las Américas con Cra. 65",latitude:4.628509,longitude:-74.118611,line:"F"})
CREATE (station_79:STATION {id:79,name:"Marsella",description:"Av. de las Américas con Cra. 69",latitude:4.629709,longitude:-74.130314,line:"F"})
CREATE (station_80:STATION {id:80,name:"Mundo Aventura",description:"Av. de las Américas con Tv. 71C",latitude:4.630097,longitude:-74.134265,line:"F"})
CREATE (station_81:STATION {id:81,name:"Mandalay",description:"Av. de las Américas con Cra. 73",latitude:4.630813,longitude:-74.141466,line:"F"})
CREATE (station_82:STATION {id:82,name:"Banderas",description:"Av. de las Américas con Cra. 78G",latitude:4.631324,longitude:-74.146048,line:"F"})
CREATE (station_83:STATION {id:83,name:"Transversal 86",description:"Av. de las Américas con Cra. 80G",latitude:4.634107,longitude:-74.152083,line:"F"})
CREATE (station_84:STATION {id:84,name:"Biblioteca Tintal",description:"Av. Ciudad de Cali con calles 30 y 33 sur",latitude:4.638053,longitude:-74.159225,line:"F"})
CREATE (station_85:STATION {id:85,name:"Patio Bonito",description:"Av. Ciudad de Cali con calles 38B sur y 40 B",latitude:4.632588,longitude:-74.165295,line:"F"})
CREATE (station_86:STATION {id:86,name:"Portal Américas",description:"Av. Ciudad de Cali con Av. Ciudad de Villavicencio",latitude:4.629244,longitude:-74.171969,line:"F"})
CREATE (station_87:STATION {id:87,name:"Comuneros",description:"NQS entre calles 3 y 5",latitude:4.604198,longitude:-74.100005,line:"G"})
CREATE (station_88:STATION {id:88,name:"Santa Isabel",description:"NQS con Cll. 2",latitude:4.601487,longitude:-74.102875,line:"G"})
CREATE (station_89:STATION {id:89,name:"SENA",description:"NQS con Dg. 17 sur",latitude:4.597311,longitude:-74.110804,line:"G"})
CREATE (station_90:STATION {id:90,name:"NQS-CL 30 S.",description:"NQS con Cll. 30 sur",latitude:4.594787,longitude:-74.117928,line:"G"})
CREATE (station_91:STATION {id:91,name:"NQS-CL 38A S.",description:"NQS con Cll. 41 sur",latitude:4.593782,longitude:-74.124011,line:"G"})
CREATE (station_92:STATION {id:92,name:"General Santander",description:"NQS con Cra. 42",latitude:4.593574,longitude:-74.129349,line:"G"})
CREATE (station_93:STATION {id:93,name:"Alquería",description:"Autopista Sur con Cra. 49",latitude:4.594269,longitude:-74.134359,line:"G"})
CREATE (station_94:STATION {id:94,name:"Venecia",description:"Autopista sur con Cra. 54",latitude:4.595552,longitude:-74.142776,line:"G"})
CREATE (station_95:STATION {id:95,name:"Sevillana",description:"Autopista Sur con Cra. 63",latitude:4.595156,longitude:-74.147888,line:"G"})
CREATE (station_96:STATION {id:96,name:"Madelena",description:"Autopista Sur con Cra. 67",latitude:4.596279,longitude:-74.156718,line:"G"})
CREATE (station_97:STATION {id:97,name:"Perdomo",description:"Autopista sur con Cra. 72",latitude:4.595739,longitude:-74.164507,line:"G"})
CREATE (station_98:STATION {id:98,name:"Portal Sur",description:"Autopista sur a la altura del Apogeo ",latitude:4.596841,longitude:-74.169115,line:"G"})
CREATE (station_99:STATION {id:99,name:"Hospital",description:"Av. Caracas con calles 3 y 4",latitude:4.594886,longitude:-74.086417,line:"H"})
CREATE (station_100:STATION {id:100,name:"Hortúa",description:"Av. Caracas con Dg. 1 sur y Cll. 2 sur",latitude:4.590769,longitude:-74.090325,line:"H"})
CREATE (station_101:STATION {id:101,name:"Nariño",description:"Av. Caracas con 11 sur",latitude:4.586309,longitude:-74.093957,line:"H"})
CREATE (station_102:STATION {id:102,name:"Fucha",description:"Av. Caracas con calles 17 sur y 19 sur",latitude:4.582895,longitude:-74.099549,line:"H"})
CREATE (station_103:STATION {id:103,name:"Restrepo",description:"Av. Caracas con calles 19 sur y 22 sur ",latitude:4.581796,longitude:-74.101528,line:"H"})
CREATE (station_104:STATION {id:104,name:"Olaya",description:"Av. Caracas con Cll. 27 sur",latitude:4.578863,longitude:-74.107545,line:"H"})
CREATE (station_105:STATION {id:105,name:"Quiroga",description:"Av. Caracas con Cll. 33 sur",latitude:4.576815,longitude:-74.114312,line:"H"})
CREATE (station_106:STATION {id:106,name:"Calle 40 S.",description:"Av. Caracas con Cll. 37B sur y 41B sur",latitude:4.575778,longitude:-74.120194,line:"H"})
CREATE (station_107:STATION {id:107,name:"Santa Lucía",description:"Av. Caracas entre Cll. 45B sur y Dg. 46",latitude:4.570898,longitude:-74.124759,line:"H"})
CREATE (station_108:STATION {id:108,name:"Socorro",description:"Av. Caracas con Cra. 15 y Cra. 16",latitude:4.564674,longitude:-74.125607,line:"H"})
CREATE (station_109:STATION {id:109,name:"Consuelo",description:"Av. Caracas con Cra. 12",latitude:4.560131,longitude:-74.123844,line:"H"})
CREATE (station_110:STATION {id:110,name:"Molinos",description:"Av. Caracas con Cra. 9 y Cll. 51 sur",latitude:4.557065,longitude:-74.121876,line:"H"})
CREATE (station_111:STATION {id:111,name:"Portal de Usme",description:"Av. Caracas con Cll. 65 sur y Cll. 68 sur",latitude:4.531618,longitude:-74.119488,line:"H"})
CREATE (station_112:STATION {id:112,name:"Biblioteca",description:"Av. Ciudad de Villavicencio con Dg. 48 Sur",latitude:4.570278,longitude:-74.130523,line:"H"})
CREATE (station_113:STATION {id:113,name:"Parque",description:"Av. Ciudad de Villavicencio con Dg. 53 sur",latitude:4.568348,longitude:-74.135592,line:"H"})
CREATE (station_114:STATION {id:114,name:"Portal del Tunal",description:"Av. Boyacá con Cra. 24",latitude:4.571324,longitude:-74.139757,line:"H"})
CREATE (station_117:STATION {id:117,name:"Centro Memoria",description:"Cll. 26 entre carreras 19B Y 23",latitude:4.620582,longitude:-74.076356,line:"K"})
CREATE (station_118:STATION {id:118,name:"Plaza de la Democracia",description:"Cll. 26 con NQS",latitude:4.626113,longitude:-74.080291,line:"K"})
CREATE (station_119:STATION {id:119,name:"Ciudad Universitaria",description:"Cll. 26 entre carreras 33 y 36",latitude:4.630877,longitude:-74.083606,line:"K"})
CREATE (station_120:STATION {id:120,name:"Corferias",description:"Cll. 26 con Cra. 40",latitude:4.634339,longitude:-74.089847,line:"K"})
CREATE (station_121:STATION {id:121,name:"Quinta Paredes",description:"Cll. 26 con Cra. 45",latitude:4.637564,longitude:-74.093011,line:"K"})
CREATE (station_122:STATION {id:122,name:"Gobernación",description:"Cll. 26 con Cra. 52",latitude:4.642493,longitude:-74.096197,line:"K"})
CREATE (station_123:STATION {id:123,name:"CAN",description:"Cll. 26 con Cra. 59",latitude:4.646364,longitude:-74.098676,line:"K"})
CREATE (station_124:STATION {id:124,name:"Salitre - El Greco",description:"Cll. 26 con Cra. 66",latitude:4.650588,longitude:-74.101379,line:"K"})
CREATE (station_125:STATION {id:125,name:"El Tiempo - Maloka",description:"Cll. 26 con Cra. 68B",latitude:4.656668,longitude:-74.105283,line:"K"})
CREATE (station_126:STATION {id:126,name:"AV. Rojas",description:"Cll. 26 con Cra. 69DBis",latitude:4.661627,longitude:-74.108945,line:"K"})
CREATE (station_127:STATION {id:127,name:"Normandía",description:"Cll. 26 con Cra. 73A",latitude:4.66896,longitude:-74.113095,line:"K"})
CREATE (station_128:STATION {id:128,name:"Modelia",description:"Cll. 26 con Cra. 82",latitude:4.675846,longitude:-74.117504,line:"K"})
CREATE (station_129:STATION {id:129,name:"Portal el Dorado",description:"Cll. 26 con Cra. 92",latitude:4.678936,longitude:-74.119781,line:"K"})
CREATE (station_130:STATION {id:130,name:"San Diego",description:"Cra. Décima entre calles 23 y 25",latitude:4.610845,longitude:-74.071391,line:"L"})
CREATE (station_131:STATION {id:131,name:"Las Nieves",description:"Cra. Décima entre calles 17 y 19",latitude:4.605942,longitude:-74.074312,line:"L"})
CREATE (station_132:STATION {id:132,name:"San Victorino",description:"San Victorino",latitude:4.600765,longitude:-74.077282,line:"L"})
CREATE (station_133:STATION {id:133,name:"Bicentenario",description:"Bicentenario",latitude:4.593739,longitude:-74.081895,line:"L"})
CREATE (station_134:STATION {id:134,name:"Hospitales",description:"Cra. Décima entre calles 1 y 2",latitude:4.590269,longitude:-74.084134,line:"L"})
CREATE (station_135:STATION {id:135,name:"Policarpa",description:"Cra. Décima entre calles 1 sur y 3 sur",latitude:4.586146,longitude:-74.086846,line:"L"})
CREATE (station_136:STATION {id:136,name:"Ciudad Jardín",description:"Cra. Décima con Cll. 11 sur",latitude:4.581398,longitude:-74.090247,line:"L"})
CREATE (station_137:STATION {id:137,name:"AV. 1a de Mayo",description:"Cra. Décima entre calles 17 sur y 20 sur",latitude:4.576591,longitude:-74.093788,line:"L"})
CREATE (station_138:STATION {id:138,name:"Country Sur",description:"Cra. Décima entre calles 27 sur y 28 sur",latitude:4.571227,longitude:-74.098637,line:"L"})
CREATE (station_139:STATION {id:139,name:"Portal 20 de Julio",description:"Cra. 5A con Cll. 31 sur",latitude:4.564885,longitude:-74.096862,line:"L"})
CREATE (station_140:STATION {id:140,name:"Museo Nacional",description:"Museo Nacional",latitude:4.615261,longitude:-74.069111,line:"M"})
CREATE (station_141:STATION {id:141,name:"La Despensa",description:"Tv. 7 con Cll. 12",latitude:4.59452,longitude:-74.188621,line:"G"})
CREATE (station_142:STATION {id:142,name:"León XIII",description:"Tv. 7 con Cll. 5",latitude:4.591654,longitude:-74.194157,line:"G"})
CREATE (station_143:STATION {id:143,name:"Terreros",description:"Cra. 7 con Cll. 35",latitude:4.589216,longitude:-74.198835,line:"G"})
CREATE (station_144:STATION {id:144,name:"San Mateo",description:"Cra. 4 con Cll. 30",latitude:4.585494,longitude:-74.206645,line:"G"})
CREATE (station_150:STATION {id:150,name:"Universidades",description:"Cra. tercera con calles 19 y 21",latitude:4.603896,longitude:-74.067733,line:"J"})
CREATE (station_151:STATION {id:151,name:"Las Aguas",description:"Cra. tercera con calles 18 y 19",latitude:4.602474,longitude:-74.068425,line:"J"})
CREATE (station_152:STATION {id:152,name:"Museo del Oro",description:"Av. Jiménez con carreras 6 y 7",latitude:4.601225,longitude:-74.072987,line:"J"})
MATCH (station_44:STATION {id:44}), (station_38:STATION {id:38}) CREATE UNIQUE (station_44)-[:A15 { line:"C", bus:"A15" } ]->(station_38)
MATCH (station_38:STATION {id:38}), (station_37:STATION {id:37}) CREATE UNIQUE (station_38)-[:A15 { line:"C", bus:"A15" } ]->(station_37)
MATCH (station_37:STATION {id:37}), (station_35:STATION {id:35}) CREATE UNIQUE (station_37)-[:A15 { line:"C", bus:"A15" } ]->(station_35)
MATCH (station_35:STATION {id:35}), (station_46:STATION {id:46}) CREATE UNIQUE (station_35)-[:A15 { line:"C", bus:"A15" } ]->(station_46)
MATCH (station_46:STATION {id:46}), (station_14:STATION {id:14}) CREATE UNIQUE (station_46)-[:A15 { line:"D", bus:"A15" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_9:STATION {id:9}) CREATE UNIQUE (station_14)-[:A15 { line:"A", bus:"A15" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_8:STATION {id:8}) CREATE UNIQUE (station_9)-[:A15 { line:"A", bus:"A15" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_7:STATION {id:7}) CREATE UNIQUE (station_8)-[:A15 { line:"A", bus:"A15" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_4:STATION {id:4}) CREATE UNIQUE (station_7)-[:A15 { line:"A", bus:"A15" } ]->(station_4)
MATCH (station_4:STATION {id:4}), (station_3:STATION {id:3}) CREATE UNIQUE (station_4)-[:A15 { line:"A", bus:"A15" } ]->(station_3)
MATCH (station_57:STATION {id:57}), (station_55:STATION {id:55}) CREATE UNIQUE (station_57)-[:A50 { line:"D", bus:"A50" } ]->(station_55)
MATCH (station_55:STATION {id:55}), (station_53:STATION {id:53}) CREATE UNIQUE (station_55)-[:A50 { line:"D", bus:"A50" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_52:STATION {id:52}) CREATE UNIQUE (station_53)-[:A50 { line:"D", bus:"A50" } ]->(station_52)
MATCH (station_52:STATION {id:52}), (station_14:STATION {id:14}) CREATE UNIQUE (station_52)-[:A50 { line:"D", bus:"A50" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_13:STATION {id:13}) CREATE UNIQUE (station_14)-[:A50 { line:"A", bus:"A50" } ]->(station_13)
MATCH (station_98:STATION {id:98}), (station_97:STATION {id:97}) CREATE UNIQUE (station_98)-[:A52 { line:"G", bus:"A52" } ]->(station_97)
MATCH (station_97:STATION {id:97}), (station_94:STATION {id:94}) CREATE UNIQUE (station_97)-[:A52 { line:"G", bus:"A52" } ]->(station_94)
MATCH (station_94:STATION {id:94}), (station_92:STATION {id:92}) CREATE UNIQUE (station_94)-[:A52 { line:"G", bus:"A52" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_90:STATION {id:90}) CREATE UNIQUE (station_92)-[:A52 { line:"G", bus:"A52" } ]->(station_90)
MATCH (station_90:STATION {id:90}), (station_88:STATION {id:88}) CREATE UNIQUE (station_90)-[:A52 { line:"G", bus:"A52" } ]->(station_88)
MATCH (station_88:STATION {id:88}), (station_67:STATION {id:67}) CREATE UNIQUE (station_88)-[:A52 { line:"G", bus:"A52" } ]->(station_67)
MATCH (station_67:STATION {id:67}), (station_14:STATION {id:14}) CREATE UNIQUE (station_67)-[:A52 { line:"E", bus:"A52" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_13:STATION {id:13}) CREATE UNIQUE (station_14)-[:A52 { line:"A", bus:"A52" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_12:STATION {id:12}) CREATE UNIQUE (station_13)-[:A52 { line:"A", bus:"A52" } ]->(station_12)
MATCH (station_28:STATION {id:28}), (station_25:STATION {id:25}) CREATE UNIQUE (station_28)-[:A70 { line:"B", bus:"A70" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_24:STATION {id:24}) CREATE UNIQUE (station_25)-[:A70 { line:"B", bus:"A70" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_23:STATION {id:23}) CREATE UNIQUE (station_24)-[:A70 { line:"B", bus:"A70" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_22:STATION {id:22}) CREATE UNIQUE (station_23)-[:A70 { line:"B", bus:"A70" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_21:STATION {id:21}) CREATE UNIQUE (station_22)-[:A70 { line:"B", bus:"A70" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_14:STATION {id:14}) CREATE UNIQUE (station_21)-[:A70 { line:"B", bus:"A70" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_13:STATION {id:13}) CREATE UNIQUE (station_14)-[:A70 { line:"A", bus:"A70" } ]->(station_13)
MATCH (station_86:STATION {id:86}), (station_85:STATION {id:85}) CREATE UNIQUE (station_86)-[:B1 { line:"F", bus:"B1" } ]->(station_85)
MATCH (station_85:STATION {id:85}), (station_84:STATION {id:84}) CREATE UNIQUE (station_85)-[:B1 { line:"F", bus:"B1" } ]->(station_84)
MATCH (station_84:STATION {id:84}), (station_83:STATION {id:83}) CREATE UNIQUE (station_84)-[:B1 { line:"F", bus:"B1" } ]->(station_83)
MATCH (station_83:STATION {id:83}), (station_82:STATION {id:82}) CREATE UNIQUE (station_83)-[:B1 { line:"F", bus:"B1" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_81:STATION {id:81}) CREATE UNIQUE (station_82)-[:B1 { line:"F", bus:"B1" } ]->(station_81)
MATCH (station_81:STATION {id:81}), (station_80:STATION {id:80}) CREATE UNIQUE (station_81)-[:B1 { line:"F", bus:"B1" } ]->(station_80)
MATCH (station_80:STATION {id:80}), (station_79:STATION {id:79}) CREATE UNIQUE (station_80)-[:B1 { line:"F", bus:"B1" } ]->(station_79)
MATCH (station_79:STATION {id:79}), (station_78:STATION {id:78}) CREATE UNIQUE (station_79)-[:B1 { line:"F", bus:"B1" } ]->(station_78)
MATCH (station_78:STATION {id:78}), (station_77:STATION {id:77}) CREATE UNIQUE (station_78)-[:B1 { line:"F", bus:"B1" } ]->(station_77)
MATCH (station_77:STATION {id:77}), (station_76:STATION {id:76}) CREATE UNIQUE (station_77)-[:B1 { line:"F", bus:"B1" } ]->(station_76)
MATCH (station_76:STATION {id:76}), (station_75:STATION {id:75}) CREATE UNIQUE (station_76)-[:B1 { line:"F", bus:"B1" } ]->(station_75)
MATCH (station_75:STATION {id:75}), (station_74:STATION {id:74}) CREATE UNIQUE (station_75)-[:B1 { line:"F", bus:"B1" } ]->(station_74)
MATCH (station_74:STATION {id:74}), (station_73:STATION {id:73}) CREATE UNIQUE (station_74)-[:B1 { line:"F", bus:"B1" } ]->(station_73)
MATCH (station_73:STATION {id:73}), (station_72:STATION {id:72}) CREATE UNIQUE (station_73)-[:B1 { line:"F", bus:"B1" } ]->(station_72)
MATCH (station_72:STATION {id:72}), (station_71:STATION {id:71}) CREATE UNIQUE (station_72)-[:B1 { line:"F", bus:"B1" } ]->(station_71)
MATCH (station_71:STATION {id:71}), (station_70:STATION {id:70}) CREATE UNIQUE (station_71)-[:B1 { line:"F", bus:"B1" } ]->(station_70)
MATCH (station_70:STATION {id:70}), (station_69:STATION {id:69}) CREATE UNIQUE (station_70)-[:B1 { line:"F", bus:"B1" } ]->(station_69)
MATCH (station_69:STATION {id:69}), (station_3:STATION {id:3}) CREATE UNIQUE (station_69)-[:B1 { line:"F", bus:"B1" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_4:STATION {id:4}) CREATE UNIQUE (station_3)-[:B1 { line:"A", bus:"B1" } ]->(station_4)
MATCH (station_4:STATION {id:4}), (station_5:STATION {id:5}) CREATE UNIQUE (station_4)-[:B1 { line:"A", bus:"B1" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_6:STATION {id:6}) CREATE UNIQUE (station_5)-[:B1 { line:"A", bus:"B1" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_7:STATION {id:7}) CREATE UNIQUE (station_6)-[:B1 { line:"A", bus:"B1" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_8:STATION {id:8}) CREATE UNIQUE (station_7)-[:B1 { line:"A", bus:"B1" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_9:STATION {id:9}) CREATE UNIQUE (station_8)-[:B1 { line:"A", bus:"B1" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_10:STATION {id:10}) CREATE UNIQUE (station_9)-[:B1 { line:"A", bus:"B1" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_11:STATION {id:11}) CREATE UNIQUE (station_10)-[:B1 { line:"A", bus:"B1" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_12:STATION {id:12}) CREATE UNIQUE (station_11)-[:B1 { line:"A", bus:"B1" } ]->(station_12)
MATCH (station_12:STATION {id:12}), (station_13:STATION {id:13}) CREATE UNIQUE (station_12)-[:B1 { line:"A", bus:"B1" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_14:STATION {id:14}) CREATE UNIQUE (station_13)-[:B1 { line:"A", bus:"B1" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_15:STATION {id:15}) CREATE UNIQUE (station_14)-[:B1 { line:"A", bus:"B1" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_16:STATION {id:16}) CREATE UNIQUE (station_15)-[:B1 { line:"B", bus:"B1" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_17:STATION {id:17}) CREATE UNIQUE (station_16)-[:B1 { line:"B", bus:"B1" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_18:STATION {id:18}) CREATE UNIQUE (station_17)-[:B1 { line:"B", bus:"B1" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_19:STATION {id:19}) CREATE UNIQUE (station_18)-[:B1 { line:"B", bus:"B1" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_20:STATION {id:20}) CREATE UNIQUE (station_19)-[:B1 { line:"B", bus:"B1" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_21:STATION {id:21}) CREATE UNIQUE (station_20)-[:B1 { line:"B", bus:"B1" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_22:STATION {id:22}) CREATE UNIQUE (station_21)-[:B1 { line:"B", bus:"B1" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_23:STATION {id:23}) CREATE UNIQUE (station_22)-[:B1 { line:"B", bus:"B1" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_24:STATION {id:24}) CREATE UNIQUE (station_23)-[:B1 { line:"B", bus:"B1" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_25:STATION {id:25}) CREATE UNIQUE (station_24)-[:B1 { line:"B", bus:"B1" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_26:STATION {id:26}) CREATE UNIQUE (station_25)-[:B1 { line:"B", bus:"B1" } ]->(station_26)
MATCH (station_26:STATION {id:26}), (station_27:STATION {id:27}) CREATE UNIQUE (station_26)-[:B1 { line:"B", bus:"B1" } ]->(station_27)
MATCH (station_27:STATION {id:27}), (station_28:STATION {id:28}) CREATE UNIQUE (station_27)-[:B1 { line:"B", bus:"B1" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_29:STATION {id:29}) CREATE UNIQUE (station_28)-[:B1 { line:"B", bus:"B1" } ]->(station_29)
MATCH (station_29:STATION {id:29}), (station_30:STATION {id:30}) CREATE UNIQUE (station_29)-[:B1 { line:"B", bus:"B1" } ]->(station_30)
MATCH (station_98:STATION {id:98}), (station_97:STATION {id:97}) CREATE UNIQUE (station_98)-[:B5 { line:"G", bus:"B5" } ]->(station_97)
MATCH (station_97:STATION {id:97}), (station_96:STATION {id:96}) CREATE UNIQUE (station_97)-[:B5 { line:"G", bus:"B5" } ]->(station_96)
MATCH (station_96:STATION {id:96}), (station_95:STATION {id:95}) CREATE UNIQUE (station_96)-[:B5 { line:"G", bus:"B5" } ]->(station_95)
MATCH (station_95:STATION {id:95}), (station_94:STATION {id:94}) CREATE UNIQUE (station_95)-[:B5 { line:"G", bus:"B5" } ]->(station_94)
MATCH (station_94:STATION {id:94}), (station_93:STATION {id:93}) CREATE UNIQUE (station_94)-[:B5 { line:"G", bus:"B5" } ]->(station_93)
MATCH (station_93:STATION {id:93}), (station_92:STATION {id:92}) CREATE UNIQUE (station_93)-[:B5 { line:"G", bus:"B5" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_91:STATION {id:91}) CREATE UNIQUE (station_92)-[:B5 { line:"G", bus:"B5" } ]->(station_91)
MATCH (station_91:STATION {id:91}), (station_90:STATION {id:90}) CREATE UNIQUE (station_91)-[:B5 { line:"G", bus:"B5" } ]->(station_90)
MATCH (station_90:STATION {id:90}), (station_89:STATION {id:89}) CREATE UNIQUE (station_90)-[:B5 { line:"G", bus:"B5" } ]->(station_89)
MATCH (station_89:STATION {id:89}), (station_88:STATION {id:88}) CREATE UNIQUE (station_89)-[:B5 { line:"G", bus:"B5" } ]->(station_88)
MATCH (station_88:STATION {id:88}), (station_87:STATION {id:87}) CREATE UNIQUE (station_88)-[:B5 { line:"G", bus:"B5" } ]->(station_87)
MATCH (station_87:STATION {id:87}), (station_58:STATION {id:58}) CREATE UNIQUE (station_87)-[:B5 { line:"G", bus:"B5" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_59:STATION {id:59}) CREATE UNIQUE (station_58)-[:B5 { line:"E", bus:"B5" } ]->(station_59)
MATCH (station_59:STATION {id:59}), (station_60:STATION {id:60}) CREATE UNIQUE (station_59)-[:B5 { line:"E", bus:"B5" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_61:STATION {id:61}) CREATE UNIQUE (station_60)-[:B5 { line:"E", bus:"B5" } ]->(station_61)
MATCH (station_61:STATION {id:61}), (station_62:STATION {id:62}) CREATE UNIQUE (station_61)-[:B5 { line:"E", bus:"B5" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_63:STATION {id:63}) CREATE UNIQUE (station_62)-[:B5 { line:"E", bus:"B5" } ]->(station_63)
MATCH (station_63:STATION {id:63}), (station_64:STATION {id:64}) CREATE UNIQUE (station_63)-[:B5 { line:"E", bus:"B5" } ]->(station_64)
MATCH (station_64:STATION {id:64}), (station_65:STATION {id:65}) CREATE UNIQUE (station_64)-[:B5 { line:"E", bus:"B5" } ]->(station_65)
MATCH (station_65:STATION {id:65}), (station_66:STATION {id:66}) CREATE UNIQUE (station_65)-[:B5 { line:"E", bus:"B5" } ]->(station_66)
MATCH (station_66:STATION {id:66}), (station_67:STATION {id:67}) CREATE UNIQUE (station_66)-[:B5 { line:"E", bus:"B5" } ]->(station_67)
MATCH (station_67:STATION {id:67}), (station_46:STATION {id:46}) CREATE UNIQUE (station_67)-[:B5 { line:"E", bus:"B5" } ]->(station_46)
MATCH (station_46:STATION {id:46}), (station_45:STATION {id:45}) CREATE UNIQUE (station_46)-[:B5 { line:"D", bus:"B5" } ]->(station_45)
MATCH (station_45:STATION {id:45}), (station_15:STATION {id:15}) CREATE UNIQUE (station_45)-[:B5 { line:"D", bus:"B5" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_16:STATION {id:16}) CREATE UNIQUE (station_15)-[:B5 { line:"B", bus:"B5" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_17:STATION {id:17}) CREATE UNIQUE (station_16)-[:B5 { line:"B", bus:"B5" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_18:STATION {id:18}) CREATE UNIQUE (station_17)-[:B5 { line:"B", bus:"B5" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_19:STATION {id:19}) CREATE UNIQUE (station_18)-[:B5 { line:"B", bus:"B5" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_20:STATION {id:20}) CREATE UNIQUE (station_19)-[:B5 { line:"B", bus:"B5" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_21:STATION {id:21}) CREATE UNIQUE (station_20)-[:B5 { line:"B", bus:"B5" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_22:STATION {id:22}) CREATE UNIQUE (station_21)-[:B5 { line:"B", bus:"B5" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_23:STATION {id:23}) CREATE UNIQUE (station_22)-[:B5 { line:"B", bus:"B5" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_24:STATION {id:24}) CREATE UNIQUE (station_23)-[:B5 { line:"B", bus:"B5" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_25:STATION {id:25}) CREATE UNIQUE (station_24)-[:B5 { line:"B", bus:"B5" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_26:STATION {id:26}) CREATE UNIQUE (station_25)-[:B5 { line:"B", bus:"B5" } ]->(station_26)
MATCH (station_26:STATION {id:26}), (station_27:STATION {id:27}) CREATE UNIQUE (station_26)-[:B5 { line:"B", bus:"B5" } ]->(station_27)
MATCH (station_27:STATION {id:27}), (station_28:STATION {id:28}) CREATE UNIQUE (station_27)-[:B5 { line:"B", bus:"B5" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_29:STATION {id:29}) CREATE UNIQUE (station_28)-[:B5 { line:"B", bus:"B5" } ]->(station_29)
MATCH (station_57:STATION {id:57}), (station_55:STATION {id:55}) CREATE UNIQUE (station_57)-[:B10 { line:"D", bus:"B10" } ]->(station_55)
MATCH (station_55:STATION {id:55}), (station_54:STATION {id:54}) CREATE UNIQUE (station_55)-[:B10 { line:"D", bus:"B10" } ]->(station_54)
MATCH (station_54:STATION {id:54}), (station_53:STATION {id:53}) CREATE UNIQUE (station_54)-[:B10 { line:"D", bus:"B10" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_48:STATION {id:48}) CREATE UNIQUE (station_53)-[:B10 { line:"D", bus:"B10" } ]->(station_48)
MATCH (station_48:STATION {id:48}), (station_47:STATION {id:47}) CREATE UNIQUE (station_48)-[:B10 { line:"D", bus:"B10" } ]->(station_47)
MATCH (station_47:STATION {id:47}), (station_16:STATION {id:16}) CREATE UNIQUE (station_47)-[:B10 { line:"D", bus:"B10" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_17:STATION {id:17}) CREATE UNIQUE (station_16)-[:B10 { line:"B", bus:"B10" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_18:STATION {id:18}) CREATE UNIQUE (station_17)-[:B10 { line:"B", bus:"B10" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_19:STATION {id:19}) CREATE UNIQUE (station_18)-[:B10 { line:"B", bus:"B10" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_20:STATION {id:20}) CREATE UNIQUE (station_19)-[:B10 { line:"B", bus:"B10" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_23:STATION {id:23}) CREATE UNIQUE (station_20)-[:B10 { line:"B", bus:"B10" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_25:STATION {id:25}) CREATE UNIQUE (station_23)-[:B10 { line:"B", bus:"B10" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_26:STATION {id:26}) CREATE UNIQUE (station_25)-[:B10 { line:"B", bus:"B10" } ]->(station_26)
MATCH (station_26:STATION {id:26}), (station_28:STATION {id:28}) CREATE UNIQUE (station_26)-[:B10 { line:"B", bus:"B10" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_29:STATION {id:29}) CREATE UNIQUE (station_28)-[:B10 { line:"B", bus:"B10" } ]->(station_29)
MATCH (station_98:STATION {id:98}), (station_94:STATION {id:94}) CREATE UNIQUE (station_98)-[:B11 { line:"G", bus:"B11" } ]->(station_94)
MATCH (station_94:STATION {id:94}), (station_93:STATION {id:93}) CREATE UNIQUE (station_94)-[:B11 { line:"G", bus:"B11" } ]->(station_93)
MATCH (station_93:STATION {id:93}), (station_89:STATION {id:89}) CREATE UNIQUE (station_93)-[:B11 { line:"G", bus:"B11" } ]->(station_89)
MATCH (station_89:STATION {id:89}), (station_58:STATION {id:58}) CREATE UNIQUE (station_89)-[:B11 { line:"G", bus:"B11" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_59:STATION {id:59}) CREATE UNIQUE (station_58)-[:B11 { line:"E", bus:"B11" } ]->(station_59)
MATCH (station_59:STATION {id:59}), (station_60:STATION {id:60}) CREATE UNIQUE (station_59)-[:B11 { line:"E", bus:"B11" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_62:STATION {id:62}) CREATE UNIQUE (station_60)-[:B11 { line:"E", bus:"B11" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_63:STATION {id:63}) CREATE UNIQUE (station_62)-[:B11 { line:"E", bus:"B11" } ]->(station_63)
MATCH (station_63:STATION {id:63}), (station_46:STATION {id:46}) CREATE UNIQUE (station_63)-[:B11 { line:"E", bus:"B11" } ]->(station_46)
MATCH (station_46:STATION {id:46}), (station_15:STATION {id:15}) CREATE UNIQUE (station_46)-[:B11 { line:"D", bus:"B11" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_16:STATION {id:16}) CREATE UNIQUE (station_15)-[:B11 { line:"B", bus:"B11" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_17:STATION {id:17}) CREATE UNIQUE (station_16)-[:B11 { line:"B", bus:"B11" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_19:STATION {id:19}) CREATE UNIQUE (station_17)-[:B11 { line:"B", bus:"B11" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_20:STATION {id:20}) CREATE UNIQUE (station_19)-[:B11 { line:"B", bus:"B11" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_25:STATION {id:25}) CREATE UNIQUE (station_20)-[:B11 { line:"B", bus:"B11" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_26:STATION {id:26}) CREATE UNIQUE (station_25)-[:B11 { line:"B", bus:"B11" } ]->(station_26)
MATCH (station_26:STATION {id:26}), (station_28:STATION {id:28}) CREATE UNIQUE (station_26)-[:B11 { line:"B", bus:"B11" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_30:STATION {id:30}) CREATE UNIQUE (station_28)-[:B11 { line:"B", bus:"B11" } ]->(station_30)
MATCH (station_98:STATION {id:98}), (station_97:STATION {id:97}) CREATE UNIQUE (station_98)-[:B12 { line:"G", bus:"B12" } ]->(station_97)
MATCH (station_97:STATION {id:97}), (station_96:STATION {id:96}) CREATE UNIQUE (station_97)-[:B12 { line:"G", bus:"B12" } ]->(station_96)
MATCH (station_96:STATION {id:96}), (station_92:STATION {id:92}) CREATE UNIQUE (station_96)-[:B12 { line:"G", bus:"B12" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_88:STATION {id:88}) CREATE UNIQUE (station_92)-[:B12 { line:"G", bus:"B12" } ]->(station_88)
MATCH (station_88:STATION {id:88}), (station_87:STATION {id:87}) CREATE UNIQUE (station_88)-[:B12 { line:"G", bus:"B12" } ]->(station_87)
MATCH (station_87:STATION {id:87}), (station_58:STATION {id:58}) CREATE UNIQUE (station_87)-[:B12 { line:"G", bus:"B12" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_61:STATION {id:61}) CREATE UNIQUE (station_58)-[:B12 { line:"E", bus:"B12" } ]->(station_61)
MATCH (station_61:STATION {id:61}), (station_62:STATION {id:62}) CREATE UNIQUE (station_61)-[:B12 { line:"E", bus:"B12" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_65:STATION {id:65}) CREATE UNIQUE (station_62)-[:B12 { line:"E", bus:"B12" } ]->(station_65)
MATCH (station_65:STATION {id:65}), (station_67:STATION {id:67}) CREATE UNIQUE (station_65)-[:B12 { line:"E", bus:"B12" } ]->(station_67)
MATCH (station_67:STATION {id:67}), (station_68:STATION {id:68}) CREATE UNIQUE (station_67)-[:B12 { line:"E", bus:"B12" } ]->(station_68)
MATCH (station_68:STATION {id:68}), (station_18:STATION {id:18}) CREATE UNIQUE (station_68)-[:B12 { line:"E", bus:"B12" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_21:STATION {id:21}) CREATE UNIQUE (station_18)-[:B12 { line:"B", bus:"B12" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_22:STATION {id:22}) CREATE UNIQUE (station_21)-[:B12 { line:"B", bus:"B12" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_24:STATION {id:24}) CREATE UNIQUE (station_22)-[:B12 { line:"B", bus:"B12" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_28:STATION {id:28}) CREATE UNIQUE (station_24)-[:B12 { line:"B", bus:"B12" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_29:STATION {id:29}) CREATE UNIQUE (station_28)-[:B12 { line:"B", bus:"B12" } ]->(station_29)
MATCH (station_114:STATION {id:114}), (station_106:STATION {id:106}) CREATE UNIQUE (station_114)-[:B13 { line:"H", bus:"B13" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_105:STATION {id:105}) CREATE UNIQUE (station_106)-[:B13 { line:"H", bus:"B13" } ]->(station_105)
MATCH (station_105:STATION {id:105}), (station_104:STATION {id:104}) CREATE UNIQUE (station_105)-[:B13 { line:"H", bus:"B13" } ]->(station_104)
MATCH (station_104:STATION {id:104}), (station_103:STATION {id:103}) CREATE UNIQUE (station_104)-[:B13 { line:"H", bus:"B13" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_100:STATION {id:100}) CREATE UNIQUE (station_103)-[:B13 { line:"H", bus:"B13" } ]->(station_100)
MATCH (station_100:STATION {id:100}), (station_1:STATION {id:1}) CREATE UNIQUE (station_100)-[:B13 { line:"H", bus:"B13" } ]->(station_1)
MATCH (station_1:STATION {id:1}), (station_4:STATION {id:4}) CREATE UNIQUE (station_1)-[:B13 { line:"A", bus:"B13" } ]->(station_4)
MATCH (station_4:STATION {id:4}), (station_11:STATION {id:11}) CREATE UNIQUE (station_4)-[:B13 { line:"A", bus:"B13" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_12:STATION {id:12}) CREATE UNIQUE (station_11)-[:B13 { line:"A", bus:"B13" } ]->(station_12)
MATCH (station_12:STATION {id:12}), (station_16:STATION {id:16}) CREATE UNIQUE (station_12)-[:B13 { line:"A", bus:"B13" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_18:STATION {id:18}) CREATE UNIQUE (station_16)-[:B13 { line:"B", bus:"B13" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_19:STATION {id:19}) CREATE UNIQUE (station_18)-[:B13 { line:"B", bus:"B13" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_24:STATION {id:24}) CREATE UNIQUE (station_19)-[:B13 { line:"B", bus:"B13" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_26:STATION {id:26}) CREATE UNIQUE (station_24)-[:B13 { line:"B", bus:"B13" } ]->(station_26)
MATCH (station_26:STATION {id:26}), (station_27:STATION {id:27}) CREATE UNIQUE (station_26)-[:B13 { line:"B", bus:"B13" } ]->(station_27)
MATCH (station_27:STATION {id:27}), (station_29:STATION {id:29}) CREATE UNIQUE (station_27)-[:B13 { line:"B", bus:"B13" } ]->(station_29)
MATCH (station_86:STATION {id:86}), (station_84:STATION {id:84}) CREATE UNIQUE (station_86)-[:B14 { line:"F", bus:"B14" } ]->(station_84)
MATCH (station_84:STATION {id:84}), (station_83:STATION {id:83}) CREATE UNIQUE (station_84)-[:B14 { line:"F", bus:"B14" } ]->(station_83)
MATCH (station_83:STATION {id:83}), (station_82:STATION {id:82}) CREATE UNIQUE (station_83)-[:B14 { line:"F", bus:"B14" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_78:STATION {id:78}) CREATE UNIQUE (station_82)-[:B14 { line:"F", bus:"B14" } ]->(station_78)
MATCH (station_78:STATION {id:78}), (station_73:STATION {id:73}) CREATE UNIQUE (station_78)-[:B14 { line:"F", bus:"B14" } ]->(station_73)
MATCH (station_73:STATION {id:73}), (station_5:STATION {id:5}) CREATE UNIQUE (station_73)-[:B14 { line:"F", bus:"B14" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_6:STATION {id:6}) CREATE UNIQUE (station_5)-[:B14 { line:"A", bus:"B14" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_8:STATION {id:8}) CREATE UNIQUE (station_6)-[:B14 { line:"A", bus:"B14" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_9:STATION {id:9}) CREATE UNIQUE (station_8)-[:B14 { line:"A", bus:"B14" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_15:STATION {id:15}) CREATE UNIQUE (station_9)-[:B14 { line:"A", bus:"B14" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_16:STATION {id:16}) CREATE UNIQUE (station_15)-[:B14 { line:"B", bus:"B14" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_18:STATION {id:18}) CREATE UNIQUE (station_16)-[:B14 { line:"B", bus:"B14" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_19:STATION {id:19}) CREATE UNIQUE (station_18)-[:B14 { line:"B", bus:"B14" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_21:STATION {id:21}) CREATE UNIQUE (station_19)-[:B14 { line:"B", bus:"B14" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_23:STATION {id:23}) CREATE UNIQUE (station_21)-[:B14 { line:"B", bus:"B14" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_25:STATION {id:25}) CREATE UNIQUE (station_23)-[:B14 { line:"B", bus:"B14" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_29:STATION {id:29}) CREATE UNIQUE (station_25)-[:B14 { line:"B", bus:"B14" } ]->(station_29)
MATCH (station_139:STATION {id:139}), (station_138:STATION {id:138}) CREATE UNIQUE (station_139)-[:B18 { line:"L", bus:"B18" } ]->(station_138)
MATCH (station_138:STATION {id:138}), (station_137:STATION {id:137}) CREATE UNIQUE (station_138)-[:B18 { line:"L", bus:"B18" } ]->(station_137)
MATCH (station_137:STATION {id:137}), (station_133:STATION {id:133}) CREATE UNIQUE (station_137)-[:B18 { line:"L", bus:"B18" } ]->(station_133)
MATCH (station_133:STATION {id:133}), (station_1:STATION {id:1}) CREATE UNIQUE (station_133)-[:B18 { line:"L", bus:"B18" } ]->(station_1)
MATCH (station_1:STATION {id:1}), (station_6:STATION {id:6}) CREATE UNIQUE (station_1)-[:B18 { line:"A", bus:"B18" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_8:STATION {id:8}) CREATE UNIQUE (station_6)-[:B18 { line:"A", bus:"B18" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_10:STATION {id:10}) CREATE UNIQUE (station_8)-[:B18 { line:"A", bus:"B18" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_11:STATION {id:11}) CREATE UNIQUE (station_10)-[:B18 { line:"A", bus:"B18" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_17:STATION {id:17}) CREATE UNIQUE (station_11)-[:B18 { line:"A", bus:"B18" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_19:STATION {id:19}) CREATE UNIQUE (station_17)-[:B18 { line:"B", bus:"B18" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_20:STATION {id:20}) CREATE UNIQUE (station_19)-[:B18 { line:"B", bus:"B18" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_21:STATION {id:21}) CREATE UNIQUE (station_20)-[:B18 { line:"B", bus:"B18" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_23:STATION {id:23}) CREATE UNIQUE (station_21)-[:B18 { line:"B", bus:"B18" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_30:STATION {id:30}) CREATE UNIQUE (station_23)-[:B18 { line:"B", bus:"B18" } ]->(station_30)
MATCH (station_129:STATION {id:129}), (station_126:STATION {id:126}) CREATE UNIQUE (station_129)-[:B23 { line:"K", bus:"B23" } ]->(station_126)
MATCH (station_126:STATION {id:126}), (station_125:STATION {id:125}) CREATE UNIQUE (station_126)-[:B23 { line:"K", bus:"B23" } ]->(station_125)
MATCH (station_125:STATION {id:125}), (station_124:STATION {id:124}) CREATE UNIQUE (station_125)-[:B23 { line:"K", bus:"B23" } ]->(station_124)
MATCH (station_124:STATION {id:124}), (station_123:STATION {id:123}) CREATE UNIQUE (station_124)-[:B23 { line:"K", bus:"B23" } ]->(station_123)
MATCH (station_123:STATION {id:123}), (station_122:STATION {id:122}) CREATE UNIQUE (station_123)-[:B23 { line:"K", bus:"B23" } ]->(station_122)
MATCH (station_122:STATION {id:122}), (station_119:STATION {id:119}) CREATE UNIQUE (station_122)-[:B23 { line:"K", bus:"B23" } ]->(station_119)
MATCH (station_119:STATION {id:119}), (station_118:STATION {id:118}) CREATE UNIQUE (station_119)-[:B23 { line:"K", bus:"B23" } ]->(station_118)
MATCH (station_118:STATION {id:118}), (station_5:STATION {id:5}) CREATE UNIQUE (station_118)-[:B23 { line:"K", bus:"B23" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_8:STATION {id:8}) CREATE UNIQUE (station_5)-[:B23 { line:"A", bus:"B23" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_10:STATION {id:10}) CREATE UNIQUE (station_8)-[:B23 { line:"A", bus:"B23" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_16:STATION {id:16}) CREATE UNIQUE (station_10)-[:B23 { line:"A", bus:"B23" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_21:STATION {id:21}) CREATE UNIQUE (station_16)-[:B23 { line:"B", bus:"B23" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_22:STATION {id:22}) CREATE UNIQUE (station_21)-[:B23 { line:"B", bus:"B23" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_23:STATION {id:23}) CREATE UNIQUE (station_22)-[:B23 { line:"B", bus:"B23" } ]->(station_23)
MATCH (station_114:STATION {id:114}), (station_106:STATION {id:106}) CREATE UNIQUE (station_114)-[:B27 { line:"H", bus:"B27" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_2:STATION {id:2}) CREATE UNIQUE (station_106)-[:B27 { line:"H", bus:"B27" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_9:STATION {id:9}) CREATE UNIQUE (station_2)-[:B27 { line:"A", bus:"B27" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_11:STATION {id:11}) CREATE UNIQUE (station_9)-[:B27 { line:"A", bus:"B27" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_12:STATION {id:12}) CREATE UNIQUE (station_11)-[:B27 { line:"A", bus:"B27" } ]->(station_12)
MATCH (station_12:STATION {id:12}), (station_13:STATION {id:13}) CREATE UNIQUE (station_12)-[:B27 { line:"A", bus:"B27" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_14:STATION {id:14}) CREATE UNIQUE (station_13)-[:B27 { line:"A", bus:"B27" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_16:STATION {id:16}) CREATE UNIQUE (station_14)-[:B27 { line:"A", bus:"B27" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_17:STATION {id:17}) CREATE UNIQUE (station_16)-[:B27 { line:"B", bus:"B27" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_29:STATION {id:29}) CREATE UNIQUE (station_17)-[:B27 { line:"B", bus:"B27" } ]->(station_29)
MATCH (station_86:STATION {id:86}), (station_84:STATION {id:84}) CREATE UNIQUE (station_86)-[:B28 { line:"F", bus:"B28" } ]->(station_84)
MATCH (station_84:STATION {id:84}), (station_82:STATION {id:82}) CREATE UNIQUE (station_84)-[:B28 { line:"F", bus:"B28" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_74:STATION {id:74}) CREATE UNIQUE (station_82)-[:B28 { line:"F", bus:"B28" } ]->(station_74)
MATCH (station_74:STATION {id:74}), (station_73:STATION {id:73}) CREATE UNIQUE (station_74)-[:B28 { line:"F", bus:"B28" } ]->(station_73)
MATCH (station_73:STATION {id:73}), (station_60:STATION {id:60}) CREATE UNIQUE (station_73)-[:B28 { line:"F", bus:"B28" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_62:STATION {id:62}) CREATE UNIQUE (station_60)-[:B28 { line:"E", bus:"B28" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_65:STATION {id:65}) CREATE UNIQUE (station_62)-[:B28 { line:"E", bus:"B28" } ]->(station_65)
MATCH (station_65:STATION {id:65}), (station_66:STATION {id:66}) CREATE UNIQUE (station_65)-[:B28 { line:"E", bus:"B28" } ]->(station_66)
MATCH (station_66:STATION {id:66}), (station_67:STATION {id:67}) CREATE UNIQUE (station_66)-[:B28 { line:"E", bus:"B28" } ]->(station_67)
MATCH (station_67:STATION {id:67}), (station_19:STATION {id:19}) CREATE UNIQUE (station_67)-[:B28 { line:"E", bus:"B28" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_20:STATION {id:20}) CREATE UNIQUE (station_19)-[:B28 { line:"B", bus:"B28" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_22:STATION {id:22}) CREATE UNIQUE (station_20)-[:B28 { line:"B", bus:"B28" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_29:STATION {id:29}) CREATE UNIQUE (station_22)-[:B28 { line:"B", bus:"B28" } ]->(station_29)
MATCH (station_44:STATION {id:44}), (station_43:STATION {id:43}) CREATE UNIQUE (station_44)-[:B50 { line:"C", bus:"B50" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_42:STATION {id:42}) CREATE UNIQUE (station_43)-[:B50 { line:"C", bus:"B50" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_41:STATION {id:41}) CREATE UNIQUE (station_42)-[:B50 { line:"C", bus:"B50" } ]->(station_41)
MATCH (station_41:STATION {id:41}), (station_36:STATION {id:36}) CREATE UNIQUE (station_41)-[:B50 { line:"C", bus:"B50" } ]->(station_36)
MATCH (station_36:STATION {id:36}), (station_32:STATION {id:32}) CREATE UNIQUE (station_36)-[:B50 { line:"C", bus:"B50" } ]->(station_32)
MATCH (station_32:STATION {id:32}), (station_15:STATION {id:15}) CREATE UNIQUE (station_32)-[:B50 { line:"C", bus:"B50" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_16:STATION {id:16}) CREATE UNIQUE (station_15)-[:B50 { line:"B", bus:"B50" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_17:STATION {id:17}) CREATE UNIQUE (station_16)-[:B50 { line:"B", bus:"B50" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_18:STATION {id:18}) CREATE UNIQUE (station_17)-[:B50 { line:"B", bus:"B50" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_19:STATION {id:19}) CREATE UNIQUE (station_18)-[:B50 { line:"B", bus:"B50" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_24:STATION {id:24}) CREATE UNIQUE (station_19)-[:B50 { line:"B", bus:"B50" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_27:STATION {id:27}) CREATE UNIQUE (station_24)-[:B50 { line:"B", bus:"B50" } ]->(station_27)
MATCH (station_27:STATION {id:27}), (station_29:STATION {id:29}) CREATE UNIQUE (station_27)-[:B50 { line:"B", bus:"B50" } ]->(station_29)
MATCH (station_86:STATION {id:86}), (station_84:STATION {id:84}) CREATE UNIQUE (station_86)-[:B52 { line:"F", bus:"B52" } ]->(station_84)
MATCH (station_84:STATION {id:84}), (station_82:STATION {id:82}) CREATE UNIQUE (station_84)-[:B52 { line:"F", bus:"B52" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_79:STATION {id:79}) CREATE UNIQUE (station_82)-[:B52 { line:"F", bus:"B52" } ]->(station_79)
MATCH (station_79:STATION {id:79}), (station_7:STATION {id:7}) CREATE UNIQUE (station_79)-[:B52 { line:"F", bus:"B52" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_14:STATION {id:14}) CREATE UNIQUE (station_7)-[:B52 { line:"A", bus:"B52" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_15:STATION {id:15}) CREATE UNIQUE (station_14)-[:B52 { line:"A", bus:"B52" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_17:STATION {id:17}) CREATE UNIQUE (station_15)-[:B52 { line:"B", bus:"B52" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_23:STATION {id:23}) CREATE UNIQUE (station_17)-[:B52 { line:"B", bus:"B52" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_29:STATION {id:29}) CREATE UNIQUE (station_23)-[:B52 { line:"B", bus:"B52" } ]->(station_29)
MATCH (station_114:STATION {id:114}), (station_107:STATION {id:107}) CREATE UNIQUE (station_114)-[:B53 { line:"H", bus:"B53" } ]->(station_107)
MATCH (station_107:STATION {id:107}), (station_100:STATION {id:100}) CREATE UNIQUE (station_107)-[:B53 { line:"H", bus:"B53" } ]->(station_100)
MATCH (station_100:STATION {id:100}), (station_18:STATION {id:18}) CREATE UNIQUE (station_100)-[:B53 { line:"H", bus:"B53" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_20:STATION {id:20}) CREATE UNIQUE (station_18)-[:B53 { line:"B", bus:"B53" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_21:STATION {id:21}) CREATE UNIQUE (station_20)-[:B53 { line:"B", bus:"B53" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_23:STATION {id:23}) CREATE UNIQUE (station_21)-[:B53 { line:"B", bus:"B53" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_25:STATION {id:25}) CREATE UNIQUE (station_23)-[:B53 { line:"B", bus:"B53" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_29:STATION {id:29}) CREATE UNIQUE (station_25)-[:B53 { line:"B", bus:"B53" } ]->(station_29)
MATCH (station_98:STATION {id:98}), (station_97:STATION {id:97}) CREATE UNIQUE (station_98)-[:B54 { line:"G", bus:"B54" } ]->(station_97)
MATCH (station_97:STATION {id:97}), (station_96:STATION {id:96}) CREATE UNIQUE (station_97)-[:B54 { line:"G", bus:"B54" } ]->(station_96)
MATCH (station_96:STATION {id:96}), (station_92:STATION {id:92}) CREATE UNIQUE (station_96)-[:B54 { line:"G", bus:"B54" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_15:STATION {id:15}) CREATE UNIQUE (station_92)-[:B54 { line:"G", bus:"B54" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_17:STATION {id:17}) CREATE UNIQUE (station_15)-[:B54 { line:"B", bus:"B54" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_19:STATION {id:19}) CREATE UNIQUE (station_17)-[:B54 { line:"B", bus:"B54" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_20:STATION {id:20}) CREATE UNIQUE (station_19)-[:B54 { line:"B", bus:"B54" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_24:STATION {id:24}) CREATE UNIQUE (station_20)-[:B54 { line:"B", bus:"B54" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_25:STATION {id:25}) CREATE UNIQUE (station_24)-[:B54 { line:"B", bus:"B54" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_26:STATION {id:26}) CREATE UNIQUE (station_25)-[:B54 { line:"B", bus:"B54" } ]->(station_26)
MATCH (station_57:STATION {id:57}), (station_53:STATION {id:53}) CREATE UNIQUE (station_57)-[:B55 { line:"D", bus:"B55" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_15:STATION {id:15}) CREATE UNIQUE (station_53)-[:B55 { line:"D", bus:"B55" } ]->(station_15)
MATCH (station_44:STATION {id:44}), (station_42:STATION {id:42}) CREATE UNIQUE (station_44)-[:B56 { line:"C", bus:"B56" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_15:STATION {id:15}) CREATE UNIQUE (station_42)-[:B56 { line:"C", bus:"B56" } ]->(station_15)
MATCH (station_114:STATION {id:114}), (station_103:STATION {id:103}) CREATE UNIQUE (station_114)-[:B61 { line:"H", bus:"B61" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_3:STATION {id:3}) CREATE UNIQUE (station_103)-[:B61 { line:"H", bus:"B61" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_5:STATION {id:5}) CREATE UNIQUE (station_3)-[:B61 { line:"A", bus:"B61" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_6:STATION {id:6}) CREATE UNIQUE (station_5)-[:B61 { line:"A", bus:"B61" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_7:STATION {id:7}) CREATE UNIQUE (station_6)-[:B61 { line:"A", bus:"B61" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_8:STATION {id:8}) CREATE UNIQUE (station_7)-[:B61 { line:"A", bus:"B61" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_15:STATION {id:15}) CREATE UNIQUE (station_8)-[:B61 { line:"A", bus:"B61" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_18:STATION {id:18}) CREATE UNIQUE (station_15)-[:B61 { line:"B", bus:"B61" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_23:STATION {id:23}) CREATE UNIQUE (station_18)-[:B61 { line:"B", bus:"B61" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_24:STATION {id:24}) CREATE UNIQUE (station_23)-[:B61 { line:"B", bus:"B61" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_29:STATION {id:29}) CREATE UNIQUE (station_24)-[:B61 { line:"B", bus:"B61" } ]->(station_29)
MATCH (station_111:STATION {id:111}), (station_110:STATION {id:110}) CREATE UNIQUE (station_111)-[:B70 { line:"H", bus:"B70" } ]->(station_110)
MATCH (station_110:STATION {id:110}), (station_109:STATION {id:109}) CREATE UNIQUE (station_110)-[:B70 { line:"H", bus:"B70" } ]->(station_109)
MATCH (station_109:STATION {id:109}), (station_108:STATION {id:108}) CREATE UNIQUE (station_109)-[:B70 { line:"H", bus:"B70" } ]->(station_108)
MATCH (station_108:STATION {id:108}), (station_106:STATION {id:106}) CREATE UNIQUE (station_108)-[:B70 { line:"H", bus:"B70" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_103:STATION {id:103}) CREATE UNIQUE (station_106)-[:B70 { line:"H", bus:"B70" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_101:STATION {id:101}) CREATE UNIQUE (station_103)-[:B70 { line:"H", bus:"B70" } ]->(station_101)
MATCH (station_101:STATION {id:101}), (station_100:STATION {id:100}) CREATE UNIQUE (station_101)-[:B70 { line:"H", bus:"B70" } ]->(station_100)
MATCH (station_100:STATION {id:100}), (station_2:STATION {id:2}) CREATE UNIQUE (station_100)-[:B70 { line:"H", bus:"B70" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_9:STATION {id:9}) CREATE UNIQUE (station_2)-[:B70 { line:"A", bus:"B70" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_11:STATION {id:11}) CREATE UNIQUE (station_9)-[:B70 { line:"A", bus:"B70" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_13:STATION {id:13}) CREATE UNIQUE (station_11)-[:B70 { line:"A", bus:"B70" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_14:STATION {id:14}) CREATE UNIQUE (station_13)-[:B70 { line:"A", bus:"B70" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_21:STATION {id:21}) CREATE UNIQUE (station_14)-[:B70 { line:"A", bus:"B70" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_22:STATION {id:22}) CREATE UNIQUE (station_21)-[:B70 { line:"B", bus:"B70" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_23:STATION {id:23}) CREATE UNIQUE (station_22)-[:B70 { line:"B", bus:"B70" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_24:STATION {id:24}) CREATE UNIQUE (station_23)-[:B70 { line:"B", bus:"B70" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_25:STATION {id:25}) CREATE UNIQUE (station_24)-[:B70 { line:"B", bus:"B70" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_28:STATION {id:28}) CREATE UNIQUE (station_25)-[:B70 { line:"B", bus:"B70" } ]->(station_28)
MATCH (station_114:STATION {id:114}), (station_106:STATION {id:106}) CREATE UNIQUE (station_114)-[:B71 { line:"H", bus:"B71" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_104:STATION {id:104}) CREATE UNIQUE (station_106)-[:B71 { line:"H", bus:"B71" } ]->(station_104)
MATCH (station_104:STATION {id:104}), (station_103:STATION {id:103}) CREATE UNIQUE (station_104)-[:B71 { line:"H", bus:"B71" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_15:STATION {id:15}) CREATE UNIQUE (station_103)-[:B71 { line:"H", bus:"B71" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_16:STATION {id:16}) CREATE UNIQUE (station_15)-[:B71 { line:"B", bus:"B71" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_17:STATION {id:17}) CREATE UNIQUE (station_16)-[:B71 { line:"B", bus:"B71" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_20:STATION {id:20}) CREATE UNIQUE (station_17)-[:B71 { line:"B", bus:"B71" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_22:STATION {id:22}) CREATE UNIQUE (station_20)-[:B71 { line:"B", bus:"B71" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_28:STATION {id:28}) CREATE UNIQUE (station_22)-[:B71 { line:"B", bus:"B71" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_29:STATION {id:29}) CREATE UNIQUE (station_28)-[:B71 { line:"B", bus:"B71" } ]->(station_29)
MATCH (station_111:STATION {id:111}), (station_110:STATION {id:110}) CREATE UNIQUE (station_111)-[:B72 { line:"H", bus:"B72" } ]->(station_110)
MATCH (station_110:STATION {id:110}), (station_101:STATION {id:101}) CREATE UNIQUE (station_110)-[:B72 { line:"H", bus:"B72" } ]->(station_101)
MATCH (station_101:STATION {id:101}), (station_15:STATION {id:15}) CREATE UNIQUE (station_101)-[:B72 { line:"H", bus:"B72" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_16:STATION {id:16}) CREATE UNIQUE (station_15)-[:B72 { line:"B", bus:"B72" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_18:STATION {id:18}) CREATE UNIQUE (station_16)-[:B72 { line:"B", bus:"B72" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_20:STATION {id:20}) CREATE UNIQUE (station_18)-[:B72 { line:"B", bus:"B72" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_21:STATION {id:21}) CREATE UNIQUE (station_20)-[:B72 { line:"B", bus:"B72" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_23:STATION {id:23}) CREATE UNIQUE (station_21)-[:B72 { line:"B", bus:"B72" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_29:STATION {id:29}) CREATE UNIQUE (station_23)-[:B72 { line:"B", bus:"B72" } ]->(station_29)
MATCH (station_111:STATION {id:111}), (station_110:STATION {id:110}) CREATE UNIQUE (station_111)-[:B73 { line:"H", bus:"B73" } ]->(station_110)
MATCH (station_110:STATION {id:110}), (station_109:STATION {id:109}) CREATE UNIQUE (station_110)-[:B73 { line:"H", bus:"B73" } ]->(station_109)
MATCH (station_109:STATION {id:109}), (station_108:STATION {id:108}) CREATE UNIQUE (station_109)-[:B73 { line:"H", bus:"B73" } ]->(station_108)
MATCH (station_108:STATION {id:108}), (station_107:STATION {id:107}) CREATE UNIQUE (station_108)-[:B73 { line:"H", bus:"B73" } ]->(station_107)
MATCH (station_107:STATION {id:107}), (station_106:STATION {id:106}) CREATE UNIQUE (station_107)-[:B73 { line:"H", bus:"B73" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_103:STATION {id:103}) CREATE UNIQUE (station_106)-[:B73 { line:"H", bus:"B73" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_101:STATION {id:101}) CREATE UNIQUE (station_103)-[:B73 { line:"H", bus:"B73" } ]->(station_101)
MATCH (station_101:STATION {id:101}), (station_100:STATION {id:100}) CREATE UNIQUE (station_101)-[:B73 { line:"H", bus:"B73" } ]->(station_100)
MATCH (station_100:STATION {id:100}), (station_2:STATION {id:2}) CREATE UNIQUE (station_100)-[:B73 { line:"H", bus:"B73" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_9:STATION {id:9}) CREATE UNIQUE (station_2)-[:B73 { line:"A", bus:"B73" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_10:STATION {id:10}) CREATE UNIQUE (station_9)-[:B73 { line:"A", bus:"B73" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_11:STATION {id:11}) CREATE UNIQUE (station_10)-[:B73 { line:"A", bus:"B73" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_13:STATION {id:13}) CREATE UNIQUE (station_11)-[:B73 { line:"A", bus:"B73" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_14:STATION {id:14}) CREATE UNIQUE (station_13)-[:B73 { line:"A", bus:"B73" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_15:STATION {id:15}) CREATE UNIQUE (station_14)-[:B73 { line:"A", bus:"B73" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_18:STATION {id:18}) CREATE UNIQUE (station_15)-[:B73 { line:"B", bus:"B73" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_21:STATION {id:21}) CREATE UNIQUE (station_18)-[:B73 { line:"B", bus:"B73" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_22:STATION {id:22}) CREATE UNIQUE (station_21)-[:B73 { line:"B", bus:"B73" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_23:STATION {id:23}) CREATE UNIQUE (station_22)-[:B73 { line:"B", bus:"B73" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_25:STATION {id:25}) CREATE UNIQUE (station_23)-[:B73 { line:"B", bus:"B73" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_28:STATION {id:28}) CREATE UNIQUE (station_25)-[:B73 { line:"B", bus:"B73" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_29:STATION {id:29}) CREATE UNIQUE (station_28)-[:B73 { line:"B", bus:"B73" } ]->(station_29)
MATCH (station_151:STATION {id:151}), (station_152:STATION {id:152}) CREATE UNIQUE (station_151)-[:B74 { line:"J", bus:"B74" } ]->(station_152)
MATCH (station_152:STATION {id:152}), (station_69:STATION {id:69}) CREATE UNIQUE (station_152)-[:B74 { line:"J", bus:"B74" } ]->(station_69)
MATCH (station_69:STATION {id:69}), (station_3:STATION {id:3}) CREATE UNIQUE (station_69)-[:B74 { line:"F", bus:"B74" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_7:STATION {id:7}) CREATE UNIQUE (station_3)-[:B74 { line:"A", bus:"B74" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_10:STATION {id:10}) CREATE UNIQUE (station_7)-[:B74 { line:"A", bus:"B74" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_13:STATION {id:13}) CREATE UNIQUE (station_10)-[:B74 { line:"A", bus:"B74" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_14:STATION {id:14}) CREATE UNIQUE (station_13)-[:B74 { line:"A", bus:"B74" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_15:STATION {id:15}) CREATE UNIQUE (station_14)-[:B74 { line:"A", bus:"B74" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_17:STATION {id:17}) CREATE UNIQUE (station_15)-[:B74 { line:"B", bus:"B74" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_18:STATION {id:18}) CREATE UNIQUE (station_17)-[:B74 { line:"B", bus:"B74" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_20:STATION {id:20}) CREATE UNIQUE (station_18)-[:B74 { line:"B", bus:"B74" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_22:STATION {id:22}) CREATE UNIQUE (station_20)-[:B74 { line:"B", bus:"B74" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_24:STATION {id:24}) CREATE UNIQUE (station_22)-[:B74 { line:"B", bus:"B74" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_28:STATION {id:28}) CREATE UNIQUE (station_24)-[:B74 { line:"B", bus:"B74" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_29:STATION {id:29}) CREATE UNIQUE (station_28)-[:B74 { line:"B", bus:"B74" } ]->(station_29)
MATCH (station_98:STATION {id:98}), (station_94:STATION {id:94}) CREATE UNIQUE (station_98)-[:B90 { line:"G", bus:"B90" } ]->(station_94)
MATCH (station_94:STATION {id:94}), (station_93:STATION {id:93}) CREATE UNIQUE (station_94)-[:B90 { line:"G", bus:"B90" } ]->(station_93)
MATCH (station_93:STATION {id:93}), (station_92:STATION {id:92}) CREATE UNIQUE (station_93)-[:B90 { line:"G", bus:"B90" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_89:STATION {id:89}) CREATE UNIQUE (station_92)-[:B90 { line:"G", bus:"B90" } ]->(station_89)
MATCH (station_89:STATION {id:89}), (station_88:STATION {id:88}) CREATE UNIQUE (station_89)-[:B90 { line:"G", bus:"B90" } ]->(station_88)
MATCH (station_88:STATION {id:88}), (station_58:STATION {id:58}) CREATE UNIQUE (station_88)-[:B90 { line:"G", bus:"B90" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_60:STATION {id:60}) CREATE UNIQUE (station_58)-[:B90 { line:"E", bus:"B90" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_61:STATION {id:61}) CREATE UNIQUE (station_60)-[:B90 { line:"E", bus:"B90" } ]->(station_61)
MATCH (station_61:STATION {id:61}), (station_63:STATION {id:63}) CREATE UNIQUE (station_61)-[:B90 { line:"E", bus:"B90" } ]->(station_63)
MATCH (station_63:STATION {id:63}), (station_67:STATION {id:67}) CREATE UNIQUE (station_63)-[:B90 { line:"E", bus:"B90" } ]->(station_67)
MATCH (station_67:STATION {id:67}), (station_68:STATION {id:68}) CREATE UNIQUE (station_67)-[:B90 { line:"E", bus:"B90" } ]->(station_68)
MATCH (station_68:STATION {id:68}), (station_18:STATION {id:18}) CREATE UNIQUE (station_68)-[:B90 { line:"E", bus:"B90" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_22:STATION {id:22}) CREATE UNIQUE (station_18)-[:B90 { line:"B", bus:"B90" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_23:STATION {id:23}) CREATE UNIQUE (station_22)-[:B90 { line:"B", bus:"B90" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_25:STATION {id:25}) CREATE UNIQUE (station_23)-[:B90 { line:"B", bus:"B90" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_29:STATION {id:29}) CREATE UNIQUE (station_25)-[:B90 { line:"B", bus:"B90" } ]->(station_29)
MATCH (station_29:STATION {id:29}), (station_30:STATION {id:30}) CREATE UNIQUE (station_29)-[:B90 { line:"B", bus:"B90" } ]->(station_30)
MATCH (station_111:STATION {id:111}), (station_110:STATION {id:110}) CREATE UNIQUE (station_111)-[:B92 { line:"H", bus:"B92" } ]->(station_110)
MATCH (station_110:STATION {id:110}), (station_109:STATION {id:109}) CREATE UNIQUE (station_110)-[:B92 { line:"H", bus:"B92" } ]->(station_109)
MATCH (station_109:STATION {id:109}), (station_108:STATION {id:108}) CREATE UNIQUE (station_109)-[:B92 { line:"H", bus:"B92" } ]->(station_108)
MATCH (station_108:STATION {id:108}), (station_107:STATION {id:107}) CREATE UNIQUE (station_108)-[:B92 { line:"H", bus:"B92" } ]->(station_107)
MATCH (station_107:STATION {id:107}), (station_106:STATION {id:106}) CREATE UNIQUE (station_107)-[:B92 { line:"H", bus:"B92" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_103:STATION {id:103}) CREATE UNIQUE (station_106)-[:B92 { line:"H", bus:"B92" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_2:STATION {id:2}) CREATE UNIQUE (station_103)-[:B92 { line:"H", bus:"B92" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_3:STATION {id:3}) CREATE UNIQUE (station_2)-[:B92 { line:"A", bus:"B92" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_8:STATION {id:8}) CREATE UNIQUE (station_3)-[:B92 { line:"A", bus:"B92" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_9:STATION {id:9}) CREATE UNIQUE (station_8)-[:B92 { line:"A", bus:"B92" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_11:STATION {id:11}) CREATE UNIQUE (station_9)-[:B92 { line:"A", bus:"B92" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_13:STATION {id:13}) CREATE UNIQUE (station_11)-[:B92 { line:"A", bus:"B92" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_14:STATION {id:14}) CREATE UNIQUE (station_13)-[:B92 { line:"A", bus:"B92" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_15:STATION {id:15}) CREATE UNIQUE (station_14)-[:B92 { line:"A", bus:"B92" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_16:STATION {id:16}) CREATE UNIQUE (station_15)-[:B92 { line:"B", bus:"B92" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_18:STATION {id:18}) CREATE UNIQUE (station_16)-[:B92 { line:"B", bus:"B92" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_21:STATION {id:21}) CREATE UNIQUE (station_18)-[:B92 { line:"B", bus:"B92" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_23:STATION {id:23}) CREATE UNIQUE (station_21)-[:B92 { line:"B", bus:"B92" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_24:STATION {id:24}) CREATE UNIQUE (station_23)-[:B92 { line:"B", bus:"B92" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_28:STATION {id:28}) CREATE UNIQUE (station_24)-[:B92 { line:"B", bus:"B92" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_29:STATION {id:29}) CREATE UNIQUE (station_28)-[:B92 { line:"B", bus:"B92" } ]->(station_29)
MATCH (station_114:STATION {id:114}), (station_107:STATION {id:107}) CREATE UNIQUE (station_114)-[:B93 { line:"H", bus:"B93" } ]->(station_107)
MATCH (station_107:STATION {id:107}), (station_106:STATION {id:106}) CREATE UNIQUE (station_107)-[:B93 { line:"H", bus:"B93" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_104:STATION {id:104}) CREATE UNIQUE (station_106)-[:B93 { line:"H", bus:"B93" } ]->(station_104)
MATCH (station_104:STATION {id:104}), (station_103:STATION {id:103}) CREATE UNIQUE (station_104)-[:B93 { line:"H", bus:"B93" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_102:STATION {id:102}) CREATE UNIQUE (station_103)-[:B93 { line:"H", bus:"B93" } ]->(station_102)
MATCH (station_102:STATION {id:102}), (station_101:STATION {id:101}) CREATE UNIQUE (station_102)-[:B93 { line:"H", bus:"B93" } ]->(station_101)
MATCH (station_101:STATION {id:101}), (station_1:STATION {id:1}) CREATE UNIQUE (station_101)-[:B93 { line:"H", bus:"B93" } ]->(station_1)
MATCH (station_1:STATION {id:1}), (station_2:STATION {id:2}) CREATE UNIQUE (station_1)-[:B93 { line:"A", bus:"B93" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_3:STATION {id:3}) CREATE UNIQUE (station_2)-[:B93 { line:"A", bus:"B93" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_4:STATION {id:4}) CREATE UNIQUE (station_3)-[:B93 { line:"A", bus:"B93" } ]->(station_4)
MATCH (station_4:STATION {id:4}), (station_11:STATION {id:11}) CREATE UNIQUE (station_4)-[:B93 { line:"A", bus:"B93" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_12:STATION {id:12}) CREATE UNIQUE (station_11)-[:B93 { line:"A", bus:"B93" } ]->(station_12)
MATCH (station_12:STATION {id:12}), (station_13:STATION {id:13}) CREATE UNIQUE (station_12)-[:B93 { line:"A", bus:"B93" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_16:STATION {id:16}) CREATE UNIQUE (station_13)-[:B93 { line:"A", bus:"B93" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_17:STATION {id:17}) CREATE UNIQUE (station_16)-[:B93 { line:"B", bus:"B93" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_20:STATION {id:20}) CREATE UNIQUE (station_17)-[:B93 { line:"B", bus:"B93" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_25:STATION {id:25}) CREATE UNIQUE (station_20)-[:B93 { line:"B", bus:"B93" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_28:STATION {id:28}) CREATE UNIQUE (station_25)-[:B93 { line:"B", bus:"B93" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_29:STATION {id:29}) CREATE UNIQUE (station_28)-[:B93 { line:"B", bus:"B93" } ]->(station_29)
MATCH (station_57:STATION {id:57}), (station_53:STATION {id:53}) CREATE UNIQUE (station_57)-[:B94 { line:"D", bus:"B94" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_52:STATION {id:52}) CREATE UNIQUE (station_53)-[:B94 { line:"D", bus:"B94" } ]->(station_52)
MATCH (station_52:STATION {id:52}), (station_50:STATION {id:50}) CREATE UNIQUE (station_52)-[:B94 { line:"D", bus:"B94" } ]->(station_50)
MATCH (station_50:STATION {id:50}), (station_49:STATION {id:49}) CREATE UNIQUE (station_50)-[:B94 { line:"D", bus:"B94" } ]->(station_49)
MATCH (station_49:STATION {id:49}), (station_48:STATION {id:48}) CREATE UNIQUE (station_49)-[:B94 { line:"D", bus:"B94" } ]->(station_48)
MATCH (station_48:STATION {id:48}), (station_15:STATION {id:15}) CREATE UNIQUE (station_48)-[:B94 { line:"D", bus:"B94" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_18:STATION {id:18}) CREATE UNIQUE (station_15)-[:B94 { line:"B", bus:"B94" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_23:STATION {id:23}) CREATE UNIQUE (station_18)-[:B94 { line:"B", bus:"B94" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_25:STATION {id:25}) CREATE UNIQUE (station_23)-[:B94 { line:"B", bus:"B94" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_28:STATION {id:28}) CREATE UNIQUE (station_25)-[:B94 { line:"B", bus:"B94" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_29:STATION {id:29}) CREATE UNIQUE (station_28)-[:B94 { line:"B", bus:"B94" } ]->(station_29)
MATCH (station_111:STATION {id:111}), (station_110:STATION {id:110}) CREATE UNIQUE (station_111)-[:C4 { line:"H", bus:"C4" } ]->(station_110)
MATCH (station_110:STATION {id:110}), (station_109:STATION {id:109}) CREATE UNIQUE (station_110)-[:C4 { line:"H", bus:"C4" } ]->(station_109)
MATCH (station_109:STATION {id:109}), (station_108:STATION {id:108}) CREATE UNIQUE (station_109)-[:C4 { line:"H", bus:"C4" } ]->(station_108)
MATCH (station_108:STATION {id:108}), (station_107:STATION {id:107}) CREATE UNIQUE (station_108)-[:C4 { line:"H", bus:"C4" } ]->(station_107)
MATCH (station_107:STATION {id:107}), (station_106:STATION {id:106}) CREATE UNIQUE (station_107)-[:C4 { line:"H", bus:"C4" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_105:STATION {id:105}) CREATE UNIQUE (station_106)-[:C4 { line:"H", bus:"C4" } ]->(station_105)
MATCH (station_105:STATION {id:105}), (station_104:STATION {id:104}) CREATE UNIQUE (station_105)-[:C4 { line:"H", bus:"C4" } ]->(station_104)
MATCH (station_104:STATION {id:104}), (station_103:STATION {id:103}) CREATE UNIQUE (station_104)-[:C4 { line:"H", bus:"C4" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_102:STATION {id:102}) CREATE UNIQUE (station_103)-[:C4 { line:"H", bus:"C4" } ]->(station_102)
MATCH (station_102:STATION {id:102}), (station_101:STATION {id:101}) CREATE UNIQUE (station_102)-[:C4 { line:"H", bus:"C4" } ]->(station_101)
MATCH (station_101:STATION {id:101}), (station_100:STATION {id:100}) CREATE UNIQUE (station_101)-[:C4 { line:"H", bus:"C4" } ]->(station_100)
MATCH (station_100:STATION {id:100}), (station_99:STATION {id:99}) CREATE UNIQUE (station_100)-[:C4 { line:"H", bus:"C4" } ]->(station_99)
MATCH (station_99:STATION {id:99}), (station_1:STATION {id:1}) CREATE UNIQUE (station_99)-[:C4 { line:"H", bus:"C4" } ]->(station_1)
MATCH (station_1:STATION {id:1}), (station_2:STATION {id:2}) CREATE UNIQUE (station_1)-[:C4 { line:"A", bus:"C4" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_3:STATION {id:3}) CREATE UNIQUE (station_2)-[:C4 { line:"A", bus:"C4" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_4:STATION {id:4}) CREATE UNIQUE (station_3)-[:C4 { line:"A", bus:"C4" } ]->(station_4)
MATCH (station_4:STATION {id:4}), (station_5:STATION {id:5}) CREATE UNIQUE (station_4)-[:C4 { line:"A", bus:"C4" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_6:STATION {id:6}) CREATE UNIQUE (station_5)-[:C4 { line:"A", bus:"C4" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_7:STATION {id:7}) CREATE UNIQUE (station_6)-[:C4 { line:"A", bus:"C4" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_8:STATION {id:8}) CREATE UNIQUE (station_7)-[:C4 { line:"A", bus:"C4" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_9:STATION {id:9}) CREATE UNIQUE (station_8)-[:C4 { line:"A", bus:"C4" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_10:STATION {id:10}) CREATE UNIQUE (station_9)-[:C4 { line:"A", bus:"C4" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_11:STATION {id:11}) CREATE UNIQUE (station_10)-[:C4 { line:"A", bus:"C4" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_12:STATION {id:12}) CREATE UNIQUE (station_11)-[:C4 { line:"A", bus:"C4" } ]->(station_12)
MATCH (station_12:STATION {id:12}), (station_13:STATION {id:13}) CREATE UNIQUE (station_12)-[:C4 { line:"A", bus:"C4" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_14:STATION {id:14}) CREATE UNIQUE (station_13)-[:C4 { line:"A", bus:"C4" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_45:STATION {id:45}) CREATE UNIQUE (station_14)-[:C4 { line:"A", bus:"C4" } ]->(station_45)
MATCH (station_45:STATION {id:45}), (station_46:STATION {id:46}) CREATE UNIQUE (station_45)-[:C4 { line:"D", bus:"C4" } ]->(station_46)
MATCH (station_46:STATION {id:46}), (station_31:STATION {id:31}) CREATE UNIQUE (station_46)-[:C4 { line:"D", bus:"C4" } ]->(station_31)
MATCH (station_31:STATION {id:31}), (station_32:STATION {id:32}) CREATE UNIQUE (station_31)-[:C4 { line:"C", bus:"C4" } ]->(station_32)
MATCH (station_32:STATION {id:32}), (station_33:STATION {id:33}) CREATE UNIQUE (station_32)-[:C4 { line:"C", bus:"C4" } ]->(station_33)
MATCH (station_33:STATION {id:33}), (station_34:STATION {id:34}) CREATE UNIQUE (station_33)-[:C4 { line:"C", bus:"C4" } ]->(station_34)
MATCH (station_34:STATION {id:34}), (station_35:STATION {id:35}) CREATE UNIQUE (station_34)-[:C4 { line:"C", bus:"C4" } ]->(station_35)
MATCH (station_35:STATION {id:35}), (station_36:STATION {id:36}) CREATE UNIQUE (station_35)-[:C4 { line:"C", bus:"C4" } ]->(station_36)
MATCH (station_36:STATION {id:36}), (station_37:STATION {id:37}) CREATE UNIQUE (station_36)-[:C4 { line:"C", bus:"C4" } ]->(station_37)
MATCH (station_37:STATION {id:37}), (station_38:STATION {id:38}) CREATE UNIQUE (station_37)-[:C4 { line:"C", bus:"C4" } ]->(station_38)
MATCH (station_38:STATION {id:38}), (station_39:STATION {id:39}) CREATE UNIQUE (station_38)-[:C4 { line:"C", bus:"C4" } ]->(station_39)
MATCH (station_39:STATION {id:39}), (station_40:STATION {id:40}) CREATE UNIQUE (station_39)-[:C4 { line:"C", bus:"C4" } ]->(station_40)
MATCH (station_40:STATION {id:40}), (station_41:STATION {id:41}) CREATE UNIQUE (station_40)-[:C4 { line:"C", bus:"C4" } ]->(station_41)
MATCH (station_41:STATION {id:41}), (station_42:STATION {id:42}) CREATE UNIQUE (station_41)-[:C4 { line:"C", bus:"C4" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_43:STATION {id:43}) CREATE UNIQUE (station_42)-[:C4 { line:"C", bus:"C4" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_44:STATION {id:44}) CREATE UNIQUE (station_43)-[:C4 { line:"C", bus:"C4" } ]->(station_44)
MATCH (station_114:STATION {id:114}), (station_112:STATION {id:112}) CREATE UNIQUE (station_114)-[:C15 { line:"H", bus:"C15" } ]->(station_112)
MATCH (station_112:STATION {id:112}), (station_106:STATION {id:106}) CREATE UNIQUE (station_112)-[:C15 { line:"H", bus:"C15" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_104:STATION {id:104}) CREATE UNIQUE (station_106)-[:C15 { line:"H", bus:"C15" } ]->(station_104)
MATCH (station_104:STATION {id:104}), (station_101:STATION {id:101}) CREATE UNIQUE (station_104)-[:C15 { line:"H", bus:"C15" } ]->(station_101)
MATCH (station_101:STATION {id:101}), (station_1:STATION {id:1}) CREATE UNIQUE (station_101)-[:C15 { line:"H", bus:"C15" } ]->(station_1)
MATCH (station_1:STATION {id:1}), (station_2:STATION {id:2}) CREATE UNIQUE (station_1)-[:C15 { line:"A", bus:"C15" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_3:STATION {id:3}) CREATE UNIQUE (station_2)-[:C15 { line:"A", bus:"C15" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_4:STATION {id:4}) CREATE UNIQUE (station_3)-[:C15 { line:"A", bus:"C15" } ]->(station_4)
MATCH (station_4:STATION {id:4}), (station_7:STATION {id:7}) CREATE UNIQUE (station_4)-[:C15 { line:"A", bus:"C15" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_8:STATION {id:8}) CREATE UNIQUE (station_7)-[:C15 { line:"A", bus:"C15" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_9:STATION {id:9}) CREATE UNIQUE (station_8)-[:C15 { line:"A", bus:"C15" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_14:STATION {id:14}) CREATE UNIQUE (station_9)-[:C15 { line:"A", bus:"C15" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_46:STATION {id:46}) CREATE UNIQUE (station_14)-[:C15 { line:"A", bus:"C15" } ]->(station_46)
MATCH (station_46:STATION {id:46}), (station_35:STATION {id:35}) CREATE UNIQUE (station_46)-[:C15 { line:"D", bus:"C15" } ]->(station_35)
MATCH (station_35:STATION {id:35}), (station_37:STATION {id:37}) CREATE UNIQUE (station_35)-[:C15 { line:"C", bus:"C15" } ]->(station_37)
MATCH (station_37:STATION {id:37}), (station_38:STATION {id:38}) CREATE UNIQUE (station_37)-[:C15 { line:"C", bus:"C15" } ]->(station_38)
MATCH (station_38:STATION {id:38}), (station_41:STATION {id:41}) CREATE UNIQUE (station_38)-[:C15 { line:"C", bus:"C15" } ]->(station_41)
MATCH (station_41:STATION {id:41}), (station_44:STATION {id:44}) CREATE UNIQUE (station_41)-[:C15 { line:"C", bus:"C15" } ]->(station_44)
MATCH (station_111:STATION {id:111}), (station_110:STATION {id:110}) CREATE UNIQUE (station_111)-[:C17 { line:"H", bus:"C17" } ]->(station_110)
MATCH (station_110:STATION {id:110}), (station_109:STATION {id:109}) CREATE UNIQUE (station_110)-[:C17 { line:"H", bus:"C17" } ]->(station_109)
MATCH (station_109:STATION {id:109}), (station_108:STATION {id:108}) CREATE UNIQUE (station_109)-[:C17 { line:"H", bus:"C17" } ]->(station_108)
MATCH (station_108:STATION {id:108}), (station_107:STATION {id:107}) CREATE UNIQUE (station_108)-[:C17 { line:"H", bus:"C17" } ]->(station_107)
MATCH (station_107:STATION {id:107}), (station_106:STATION {id:106}) CREATE UNIQUE (station_107)-[:C17 { line:"H", bus:"C17" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_103:STATION {id:103}) CREATE UNIQUE (station_106)-[:C17 { line:"H", bus:"C17" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_100:STATION {id:100}) CREATE UNIQUE (station_103)-[:C17 { line:"H", bus:"C17" } ]->(station_100)
MATCH (station_100:STATION {id:100}), (station_99:STATION {id:99}) CREATE UNIQUE (station_100)-[:C17 { line:"H", bus:"C17" } ]->(station_99)
MATCH (station_99:STATION {id:99}), (station_2:STATION {id:2}) CREATE UNIQUE (station_99)-[:C17 { line:"H", bus:"C17" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_9:STATION {id:9}) CREATE UNIQUE (station_2)-[:C17 { line:"A", bus:"C17" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_10:STATION {id:10}) CREATE UNIQUE (station_9)-[:C17 { line:"A", bus:"C17" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_12:STATION {id:12}) CREATE UNIQUE (station_10)-[:C17 { line:"A", bus:"C17" } ]->(station_12)
MATCH (station_12:STATION {id:12}), (station_13:STATION {id:13}) CREATE UNIQUE (station_12)-[:C17 { line:"A", bus:"C17" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_14:STATION {id:14}) CREATE UNIQUE (station_13)-[:C17 { line:"A", bus:"C17" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_45:STATION {id:45}) CREATE UNIQUE (station_14)-[:C17 { line:"A", bus:"C17" } ]->(station_45)
MATCH (station_45:STATION {id:45}), (station_31:STATION {id:31}) CREATE UNIQUE (station_45)-[:C17 { line:"D", bus:"C17" } ]->(station_31)
MATCH (station_31:STATION {id:31}), (station_35:STATION {id:35}) CREATE UNIQUE (station_31)-[:C17 { line:"C", bus:"C17" } ]->(station_35)
MATCH (station_35:STATION {id:35}), (station_36:STATION {id:36}) CREATE UNIQUE (station_35)-[:C17 { line:"C", bus:"C17" } ]->(station_36)
MATCH (station_36:STATION {id:36}), (station_39:STATION {id:39}) CREATE UNIQUE (station_36)-[:C17 { line:"C", bus:"C17" } ]->(station_39)
MATCH (station_39:STATION {id:39}), (station_43:STATION {id:43}) CREATE UNIQUE (station_39)-[:C17 { line:"C", bus:"C17" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_44:STATION {id:44}) CREATE UNIQUE (station_43)-[:C17 { line:"C", bus:"C17" } ]->(station_44)
MATCH (station_82:STATION {id:82}), (station_81:STATION {id:81}) CREATE UNIQUE (station_82)-[:C19 { line:"F", bus:"C19" } ]->(station_81)
MATCH (station_81:STATION {id:81}), (station_79:STATION {id:79}) CREATE UNIQUE (station_81)-[:C19 { line:"F", bus:"C19" } ]->(station_79)
MATCH (station_79:STATION {id:79}), (station_77:STATION {id:77}) CREATE UNIQUE (station_79)-[:C19 { line:"F", bus:"C19" } ]->(station_77)
MATCH (station_77:STATION {id:77}), (station_74:STATION {id:74}) CREATE UNIQUE (station_77)-[:C19 { line:"F", bus:"C19" } ]->(station_74)
MATCH (station_74:STATION {id:74}), (station_72:STATION {id:72}) CREATE UNIQUE (station_74)-[:C19 { line:"F", bus:"C19" } ]->(station_72)
MATCH (station_72:STATION {id:72}), (station_3:STATION {id:3}) CREATE UNIQUE (station_72)-[:C19 { line:"F", bus:"C19" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_5:STATION {id:5}) CREATE UNIQUE (station_3)-[:C19 { line:"A", bus:"C19" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_6:STATION {id:6}) CREATE UNIQUE (station_5)-[:C19 { line:"A", bus:"C19" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_8:STATION {id:8}) CREATE UNIQUE (station_6)-[:C19 { line:"A", bus:"C19" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_9:STATION {id:9}) CREATE UNIQUE (station_8)-[:C19 { line:"A", bus:"C19" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_11:STATION {id:11}) CREATE UNIQUE (station_9)-[:C19 { line:"A", bus:"C19" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_13:STATION {id:13}) CREATE UNIQUE (station_11)-[:C19 { line:"A", bus:"C19" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_34:STATION {id:34}) CREATE UNIQUE (station_13)-[:C19 { line:"A", bus:"C19" } ]->(station_34)
MATCH (station_34:STATION {id:34}), (station_35:STATION {id:35}) CREATE UNIQUE (station_34)-[:C19 { line:"C", bus:"C19" } ]->(station_35)
MATCH (station_35:STATION {id:35}), (station_40:STATION {id:40}) CREATE UNIQUE (station_35)-[:C19 { line:"C", bus:"C19" } ]->(station_40)
MATCH (station_40:STATION {id:40}), (station_42:STATION {id:42}) CREATE UNIQUE (station_40)-[:C19 { line:"C", bus:"C19" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_43:STATION {id:43}) CREATE UNIQUE (station_42)-[:C19 { line:"C", bus:"C19" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_44:STATION {id:44}) CREATE UNIQUE (station_43)-[:C19 { line:"C", bus:"C19" } ]->(station_44)
MATCH (station_86:STATION {id:86}), (station_85:STATION {id:85}) CREATE UNIQUE (station_86)-[:C29 { line:"F", bus:"C29" } ]->(station_85)
MATCH (station_85:STATION {id:85}), (station_84:STATION {id:84}) CREATE UNIQUE (station_85)-[:C29 { line:"F", bus:"C29" } ]->(station_84)
MATCH (station_84:STATION {id:84}), (station_82:STATION {id:82}) CREATE UNIQUE (station_84)-[:C29 { line:"F", bus:"C29" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_5:STATION {id:5}) CREATE UNIQUE (station_82)-[:C29 { line:"F", bus:"C29" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_6:STATION {id:6}) CREATE UNIQUE (station_5)-[:C29 { line:"A", bus:"C29" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_9:STATION {id:9}) CREATE UNIQUE (station_6)-[:C29 { line:"A", bus:"C29" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_11:STATION {id:11}) CREATE UNIQUE (station_9)-[:C29 { line:"A", bus:"C29" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_13:STATION {id:13}) CREATE UNIQUE (station_11)-[:C29 { line:"A", bus:"C29" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_42:STATION {id:42}) CREATE UNIQUE (station_13)-[:C29 { line:"A", bus:"C29" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_43:STATION {id:43}) CREATE UNIQUE (station_42)-[:C29 { line:"C", bus:"C29" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_44:STATION {id:44}) CREATE UNIQUE (station_43)-[:C29 { line:"C", bus:"C29" } ]->(station_44)
MATCH (station_98:STATION {id:98}), (station_91:STATION {id:91}) CREATE UNIQUE (station_98)-[:C30 { line:"G", bus:"C30" } ]->(station_91)
MATCH (station_91:STATION {id:91}), (station_88:STATION {id:88}) CREATE UNIQUE (station_91)-[:C30 { line:"G", bus:"C30" } ]->(station_88)
MATCH (station_88:STATION {id:88}), (station_58:STATION {id:58}) CREATE UNIQUE (station_88)-[:C30 { line:"G", bus:"C30" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_60:STATION {id:60}) CREATE UNIQUE (station_58)-[:C30 { line:"E", bus:"C30" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_62:STATION {id:62}) CREATE UNIQUE (station_60)-[:C30 { line:"E", bus:"C30" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_64:STATION {id:64}) CREATE UNIQUE (station_62)-[:C30 { line:"E", bus:"C30" } ]->(station_64)
MATCH (station_64:STATION {id:64}), (station_67:STATION {id:67}) CREATE UNIQUE (station_64)-[:C30 { line:"E", bus:"C30" } ]->(station_67)
MATCH (station_67:STATION {id:67}), (station_33:STATION {id:33}) CREATE UNIQUE (station_67)-[:C30 { line:"E", bus:"C30" } ]->(station_33)
MATCH (station_33:STATION {id:33}), (station_35:STATION {id:35}) CREATE UNIQUE (station_33)-[:C30 { line:"C", bus:"C30" } ]->(station_35)
MATCH (station_35:STATION {id:35}), (station_39:STATION {id:39}) CREATE UNIQUE (station_35)-[:C30 { line:"C", bus:"C30" } ]->(station_39)
MATCH (station_39:STATION {id:39}), (station_42:STATION {id:42}) CREATE UNIQUE (station_39)-[:C30 { line:"C", bus:"C30" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_43:STATION {id:43}) CREATE UNIQUE (station_42)-[:C30 { line:"C", bus:"C30" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_44:STATION {id:44}) CREATE UNIQUE (station_43)-[:C30 { line:"C", bus:"C30" } ]->(station_44)
MATCH (station_98:STATION {id:98}), (station_94:STATION {id:94}) CREATE UNIQUE (station_98)-[:C31 { line:"G", bus:"C31" } ]->(station_94)
MATCH (station_94:STATION {id:94}), (station_92:STATION {id:92}) CREATE UNIQUE (station_94)-[:C31 { line:"G", bus:"C31" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_90:STATION {id:90}) CREATE UNIQUE (station_92)-[:C31 { line:"G", bus:"C31" } ]->(station_90)
MATCH (station_90:STATION {id:90}), (station_58:STATION {id:58}) CREATE UNIQUE (station_90)-[:C31 { line:"G", bus:"C31" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_62:STATION {id:62}) CREATE UNIQUE (station_58)-[:C31 { line:"E", bus:"C31" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_63:STATION {id:63}) CREATE UNIQUE (station_62)-[:C31 { line:"E", bus:"C31" } ]->(station_63)
MATCH (station_63:STATION {id:63}), (station_65:STATION {id:65}) CREATE UNIQUE (station_63)-[:C31 { line:"E", bus:"C31" } ]->(station_65)
MATCH (station_65:STATION {id:65}), (station_66:STATION {id:66}) CREATE UNIQUE (station_65)-[:C31 { line:"E", bus:"C31" } ]->(station_66)
MATCH (station_66:STATION {id:66}), (station_31:STATION {id:31}) CREATE UNIQUE (station_66)-[:C31 { line:"E", bus:"C31" } ]->(station_31)
MATCH (station_31:STATION {id:31}), (station_32:STATION {id:32}) CREATE UNIQUE (station_31)-[:C31 { line:"C", bus:"C31" } ]->(station_32)
MATCH (station_32:STATION {id:32}), (station_36:STATION {id:36}) CREATE UNIQUE (station_32)-[:C31 { line:"C", bus:"C31" } ]->(station_36)
MATCH (station_36:STATION {id:36}), (station_42:STATION {id:42}) CREATE UNIQUE (station_36)-[:C31 { line:"C", bus:"C31" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_43:STATION {id:43}) CREATE UNIQUE (station_42)-[:C31 { line:"C", bus:"C31" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_44:STATION {id:44}) CREATE UNIQUE (station_43)-[:C31 { line:"C", bus:"C31" } ]->(station_44)
MATCH (station_29:STATION {id:29}), (station_27:STATION {id:27}) CREATE UNIQUE (station_29)-[:C61 { line:"B", bus:"C61" } ]->(station_27)
MATCH (station_27:STATION {id:27}), (station_24:STATION {id:24}) CREATE UNIQUE (station_27)-[:C61 { line:"B", bus:"C61" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_19:STATION {id:19}) CREATE UNIQUE (station_24)-[:C61 { line:"B", bus:"C61" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_18:STATION {id:18}) CREATE UNIQUE (station_19)-[:C61 { line:"B", bus:"C61" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_17:STATION {id:17}) CREATE UNIQUE (station_18)-[:C61 { line:"B", bus:"C61" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_16:STATION {id:16}) CREATE UNIQUE (station_17)-[:C61 { line:"B", bus:"C61" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_15:STATION {id:15}) CREATE UNIQUE (station_16)-[:C61 { line:"B", bus:"C61" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_32:STATION {id:32}) CREATE UNIQUE (station_15)-[:C61 { line:"B", bus:"C61" } ]->(station_32)
MATCH (station_32:STATION {id:32}), (station_36:STATION {id:36}) CREATE UNIQUE (station_32)-[:C61 { line:"C", bus:"C61" } ]->(station_36)
MATCH (station_36:STATION {id:36}), (station_41:STATION {id:41}) CREATE UNIQUE (station_36)-[:C61 { line:"C", bus:"C61" } ]->(station_41)
MATCH (station_41:STATION {id:41}), (station_42:STATION {id:42}) CREATE UNIQUE (station_41)-[:C61 { line:"C", bus:"C61" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_43:STATION {id:43}) CREATE UNIQUE (station_42)-[:C61 { line:"C", bus:"C61" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_44:STATION {id:44}) CREATE UNIQUE (station_43)-[:C61 { line:"C", bus:"C61" } ]->(station_44)
MATCH (station_88:STATION {id:88}), (station_58:STATION {id:58}) CREATE UNIQUE (station_88)-[:C71 { line:"G", bus:"C71" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_60:STATION {id:60}) CREATE UNIQUE (station_58)-[:C71 { line:"E", bus:"C71" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_62:STATION {id:62}) CREATE UNIQUE (station_60)-[:C71 { line:"E", bus:"C71" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_63:STATION {id:63}) CREATE UNIQUE (station_62)-[:C71 { line:"E", bus:"C71" } ]->(station_63)
MATCH (station_63:STATION {id:63}), (station_64:STATION {id:64}) CREATE UNIQUE (station_63)-[:C71 { line:"E", bus:"C71" } ]->(station_64)
MATCH (station_64:STATION {id:64}), (station_65:STATION {id:65}) CREATE UNIQUE (station_64)-[:C71 { line:"E", bus:"C71" } ]->(station_65)
MATCH (station_65:STATION {id:65}), (station_66:STATION {id:66}) CREATE UNIQUE (station_65)-[:C71 { line:"E", bus:"C71" } ]->(station_66)
MATCH (station_66:STATION {id:66}), (station_67:STATION {id:67}) CREATE UNIQUE (station_66)-[:C71 { line:"E", bus:"C71" } ]->(station_67)
MATCH (station_67:STATION {id:67}), (station_31:STATION {id:31}) CREATE UNIQUE (station_67)-[:C71 { line:"E", bus:"C71" } ]->(station_31)
MATCH (station_31:STATION {id:31}), (station_32:STATION {id:32}) CREATE UNIQUE (station_31)-[:C71 { line:"C", bus:"C71" } ]->(station_32)
MATCH (station_32:STATION {id:32}), (station_33:STATION {id:33}) CREATE UNIQUE (station_32)-[:C71 { line:"C", bus:"C71" } ]->(station_33)
MATCH (station_33:STATION {id:33}), (station_35:STATION {id:35}) CREATE UNIQUE (station_33)-[:C71 { line:"C", bus:"C71" } ]->(station_35)
MATCH (station_35:STATION {id:35}), (station_36:STATION {id:36}) CREATE UNIQUE (station_35)-[:C71 { line:"C", bus:"C71" } ]->(station_36)
MATCH (station_36:STATION {id:36}), (station_39:STATION {id:39}) CREATE UNIQUE (station_36)-[:C71 { line:"C", bus:"C71" } ]->(station_39)
MATCH (station_39:STATION {id:39}), (station_42:STATION {id:42}) CREATE UNIQUE (station_39)-[:C71 { line:"C", bus:"C71" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_43:STATION {id:43}) CREATE UNIQUE (station_42)-[:C71 { line:"C", bus:"C71" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_44:STATION {id:44}) CREATE UNIQUE (station_43)-[:C71 { line:"C", bus:"C71" } ]->(station_44)
MATCH (station_150:STATION {id:150}), (station_119:STATION {id:119}) CREATE UNIQUE (station_150)-[:C73 { line:"J", bus:"C73" } ]->(station_119)
MATCH (station_119:STATION {id:119}), (station_31:STATION {id:31}) CREATE UNIQUE (station_119)-[:C73 { line:"K", bus:"C73" } ]->(station_31)
MATCH (station_31:STATION {id:31}), (station_35:STATION {id:35}) CREATE UNIQUE (station_31)-[:C73 { line:"C", bus:"C73" } ]->(station_35)
MATCH (station_35:STATION {id:35}), (station_38:STATION {id:38}) CREATE UNIQUE (station_35)-[:C73 { line:"C", bus:"C73" } ]->(station_38)
MATCH (station_38:STATION {id:38}), (station_39:STATION {id:39}) CREATE UNIQUE (station_38)-[:C73 { line:"C", bus:"C73" } ]->(station_39)
MATCH (station_39:STATION {id:39}), (station_42:STATION {id:42}) CREATE UNIQUE (station_39)-[:C73 { line:"C", bus:"C73" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_43:STATION {id:43}) CREATE UNIQUE (station_42)-[:C73 { line:"C", bus:"C73" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_44:STATION {id:44}) CREATE UNIQUE (station_43)-[:C73 { line:"C", bus:"C73" } ]->(station_44)
MATCH (station_86:STATION {id:86}), (station_84:STATION {id:84}) CREATE UNIQUE (station_86)-[:C91 { line:"F", bus:"C91" } ]->(station_84)
MATCH (station_84:STATION {id:84}), (station_82:STATION {id:82}) CREATE UNIQUE (station_84)-[:C91 { line:"F", bus:"C91" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_78:STATION {id:78}) CREATE UNIQUE (station_82)-[:C91 { line:"F", bus:"C91" } ]->(station_78)
MATCH (station_78:STATION {id:78}), (station_74:STATION {id:74}) CREATE UNIQUE (station_78)-[:C91 { line:"F", bus:"C91" } ]->(station_74)
MATCH (station_74:STATION {id:74}), (station_72:STATION {id:72}) CREATE UNIQUE (station_74)-[:C91 { line:"F", bus:"C91" } ]->(station_72)
MATCH (station_72:STATION {id:72}), (station_71:STATION {id:71}) CREATE UNIQUE (station_72)-[:C91 { line:"F", bus:"C91" } ]->(station_71)
MATCH (station_71:STATION {id:71}), (station_69:STATION {id:69}) CREATE UNIQUE (station_71)-[:C91 { line:"F", bus:"C91" } ]->(station_69)
MATCH (station_69:STATION {id:69}), (station_3:STATION {id:3}) CREATE UNIQUE (station_69)-[:C91 { line:"F", bus:"C91" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_8:STATION {id:8}) CREATE UNIQUE (station_3)-[:C91 { line:"A", bus:"C91" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_9:STATION {id:9}) CREATE UNIQUE (station_8)-[:C91 { line:"A", bus:"C91" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_11:STATION {id:11}) CREATE UNIQUE (station_9)-[:C91 { line:"A", bus:"C91" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_12:STATION {id:12}) CREATE UNIQUE (station_11)-[:C91 { line:"A", bus:"C91" } ]->(station_12)
MATCH (station_12:STATION {id:12}), (station_13:STATION {id:13}) CREATE UNIQUE (station_12)-[:C91 { line:"A", bus:"C91" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_14:STATION {id:14}) CREATE UNIQUE (station_13)-[:C91 { line:"A", bus:"C91" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_46:STATION {id:46}) CREATE UNIQUE (station_14)-[:C91 { line:"A", bus:"C91" } ]->(station_46)
MATCH (station_46:STATION {id:46}), (station_33:STATION {id:33}) CREATE UNIQUE (station_46)-[:C91 { line:"D", bus:"C91" } ]->(station_33)
MATCH (station_33:STATION {id:33}), (station_35:STATION {id:35}) CREATE UNIQUE (station_33)-[:C91 { line:"C", bus:"C91" } ]->(station_35)
MATCH (station_35:STATION {id:35}), (station_36:STATION {id:36}) CREATE UNIQUE (station_35)-[:C91 { line:"C", bus:"C91" } ]->(station_36)
MATCH (station_36:STATION {id:36}), (station_42:STATION {id:42}) CREATE UNIQUE (station_36)-[:C91 { line:"C", bus:"C91" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_43:STATION {id:43}) CREATE UNIQUE (station_42)-[:C91 { line:"C", bus:"C91" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_44:STATION {id:44}) CREATE UNIQUE (station_43)-[:C91 { line:"C", bus:"C91" } ]->(station_44)
MATCH (station_98:STATION {id:98}), (station_97:STATION {id:97}) CREATE UNIQUE (station_98)-[:C96 { line:"G", bus:"C96" } ]->(station_97)
MATCH (station_97:STATION {id:97}), (station_94:STATION {id:94}) CREATE UNIQUE (station_97)-[:C96 { line:"G", bus:"C96" } ]->(station_94)
MATCH (station_94:STATION {id:94}), (station_91:STATION {id:91}) CREATE UNIQUE (station_94)-[:C96 { line:"G", bus:"C96" } ]->(station_91)
MATCH (station_91:STATION {id:91}), (station_89:STATION {id:89}) CREATE UNIQUE (station_91)-[:C96 { line:"G", bus:"C96" } ]->(station_89)
MATCH (station_89:STATION {id:89}), (station_88:STATION {id:88}) CREATE UNIQUE (station_89)-[:C96 { line:"G", bus:"C96" } ]->(station_88)
MATCH (station_88:STATION {id:88}), (station_87:STATION {id:87}) CREATE UNIQUE (station_88)-[:C96 { line:"G", bus:"C96" } ]->(station_87)
MATCH (station_87:STATION {id:87}), (station_58:STATION {id:58}) CREATE UNIQUE (station_87)-[:C96 { line:"G", bus:"C96" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_60:STATION {id:60}) CREATE UNIQUE (station_58)-[:C96 { line:"E", bus:"C96" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_63:STATION {id:63}) CREATE UNIQUE (station_60)-[:C96 { line:"E", bus:"C96" } ]->(station_63)
MATCH (station_63:STATION {id:63}), (station_64:STATION {id:64}) CREATE UNIQUE (station_63)-[:C96 { line:"E", bus:"C96" } ]->(station_64)
MATCH (station_64:STATION {id:64}), (station_66:STATION {id:66}) CREATE UNIQUE (station_64)-[:C96 { line:"E", bus:"C96" } ]->(station_66)
MATCH (station_66:STATION {id:66}), (station_34:STATION {id:34}) CREATE UNIQUE (station_66)-[:C96 { line:"E", bus:"C96" } ]->(station_34)
MATCH (station_34:STATION {id:34}), (station_35:STATION {id:35}) CREATE UNIQUE (station_34)-[:C96 { line:"C", bus:"C96" } ]->(station_35)
MATCH (station_35:STATION {id:35}), (station_36:STATION {id:36}) CREATE UNIQUE (station_35)-[:C96 { line:"C", bus:"C96" } ]->(station_36)
MATCH (station_36:STATION {id:36}), (station_38:STATION {id:38}) CREATE UNIQUE (station_36)-[:C96 { line:"C", bus:"C96" } ]->(station_38)
MATCH (station_38:STATION {id:38}), (station_39:STATION {id:39}) CREATE UNIQUE (station_38)-[:C96 { line:"C", bus:"C96" } ]->(station_39)
MATCH (station_39:STATION {id:39}), (station_42:STATION {id:42}) CREATE UNIQUE (station_39)-[:C96 { line:"C", bus:"C96" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_44:STATION {id:44}) CREATE UNIQUE (station_42)-[:C96 { line:"C", bus:"C96" } ]->(station_44)
MATCH (station_114:STATION {id:114}), (station_113:STATION {id:113}) CREATE UNIQUE (station_114)-[:D3 { line:"H", bus:"D3" } ]->(station_113)
MATCH (station_113:STATION {id:113}), (station_112:STATION {id:112}) CREATE UNIQUE (station_113)-[:D3 { line:"H", bus:"D3" } ]->(station_112)
MATCH (station_112:STATION {id:112}), (station_107:STATION {id:107}) CREATE UNIQUE (station_112)-[:D3 { line:"H", bus:"D3" } ]->(station_107)
MATCH (station_107:STATION {id:107}), (station_106:STATION {id:106}) CREATE UNIQUE (station_107)-[:D3 { line:"H", bus:"D3" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_105:STATION {id:105}) CREATE UNIQUE (station_106)-[:D3 { line:"H", bus:"D3" } ]->(station_105)
MATCH (station_105:STATION {id:105}), (station_104:STATION {id:104}) CREATE UNIQUE (station_105)-[:D3 { line:"H", bus:"D3" } ]->(station_104)
MATCH (station_104:STATION {id:104}), (station_103:STATION {id:103}) CREATE UNIQUE (station_104)-[:D3 { line:"H", bus:"D3" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_102:STATION {id:102}) CREATE UNIQUE (station_103)-[:D3 { line:"H", bus:"D3" } ]->(station_102)
MATCH (station_102:STATION {id:102}), (station_101:STATION {id:101}) CREATE UNIQUE (station_102)-[:D3 { line:"H", bus:"D3" } ]->(station_101)
MATCH (station_101:STATION {id:101}), (station_100:STATION {id:100}) CREATE UNIQUE (station_101)-[:D3 { line:"H", bus:"D3" } ]->(station_100)
MATCH (station_100:STATION {id:100}), (station_99:STATION {id:99}) CREATE UNIQUE (station_100)-[:D3 { line:"H", bus:"D3" } ]->(station_99)
MATCH (station_99:STATION {id:99}), (station_1:STATION {id:1}) CREATE UNIQUE (station_99)-[:D3 { line:"H", bus:"D3" } ]->(station_1)
MATCH (station_1:STATION {id:1}), (station_2:STATION {id:2}) CREATE UNIQUE (station_1)-[:D3 { line:"A", bus:"D3" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_3:STATION {id:3}) CREATE UNIQUE (station_2)-[:D3 { line:"A", bus:"D3" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_4:STATION {id:4}) CREATE UNIQUE (station_3)-[:D3 { line:"A", bus:"D3" } ]->(station_4)
MATCH (station_4:STATION {id:4}), (station_5:STATION {id:5}) CREATE UNIQUE (station_4)-[:D3 { line:"A", bus:"D3" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_6:STATION {id:6}) CREATE UNIQUE (station_5)-[:D3 { line:"A", bus:"D3" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_7:STATION {id:7}) CREATE UNIQUE (station_6)-[:D3 { line:"A", bus:"D3" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_8:STATION {id:8}) CREATE UNIQUE (station_7)-[:D3 { line:"A", bus:"D3" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_9:STATION {id:9}) CREATE UNIQUE (station_8)-[:D3 { line:"A", bus:"D3" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_10:STATION {id:10}) CREATE UNIQUE (station_9)-[:D3 { line:"A", bus:"D3" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_11:STATION {id:11}) CREATE UNIQUE (station_10)-[:D3 { line:"A", bus:"D3" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_12:STATION {id:12}) CREATE UNIQUE (station_11)-[:D3 { line:"A", bus:"D3" } ]->(station_12)
MATCH (station_12:STATION {id:12}), (station_13:STATION {id:13}) CREATE UNIQUE (station_12)-[:D3 { line:"A", bus:"D3" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_14:STATION {id:14}) CREATE UNIQUE (station_13)-[:D3 { line:"A", bus:"D3" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_45:STATION {id:45}) CREATE UNIQUE (station_14)-[:D3 { line:"A", bus:"D3" } ]->(station_45)
MATCH (station_45:STATION {id:45}), (station_46:STATION {id:46}) CREATE UNIQUE (station_45)-[:D3 { line:"D", bus:"D3" } ]->(station_46)
MATCH (station_46:STATION {id:46}), (station_47:STATION {id:47}) CREATE UNIQUE (station_46)-[:D3 { line:"D", bus:"D3" } ]->(station_47)
MATCH (station_47:STATION {id:47}), (station_48:STATION {id:48}) CREATE UNIQUE (station_47)-[:D3 { line:"D", bus:"D3" } ]->(station_48)
MATCH (station_48:STATION {id:48}), (station_49:STATION {id:49}) CREATE UNIQUE (station_48)-[:D3 { line:"D", bus:"D3" } ]->(station_49)
MATCH (station_49:STATION {id:49}), (station_50:STATION {id:50}) CREATE UNIQUE (station_49)-[:D3 { line:"D", bus:"D3" } ]->(station_50)
MATCH (station_50:STATION {id:50}), (station_51:STATION {id:51}) CREATE UNIQUE (station_50)-[:D3 { line:"D", bus:"D3" } ]->(station_51)
MATCH (station_51:STATION {id:51}), (station_52:STATION {id:52}) CREATE UNIQUE (station_51)-[:D3 { line:"D", bus:"D3" } ]->(station_52)
MATCH (station_52:STATION {id:52}), (station_53:STATION {id:53}) CREATE UNIQUE (station_52)-[:D3 { line:"D", bus:"D3" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_54:STATION {id:54}) CREATE UNIQUE (station_53)-[:D3 { line:"D", bus:"D3" } ]->(station_54)
MATCH (station_54:STATION {id:54}), (station_55:STATION {id:55}) CREATE UNIQUE (station_54)-[:D3 { line:"D", bus:"D3" } ]->(station_55)
MATCH (station_55:STATION {id:55}), (station_56:STATION {id:56}) CREATE UNIQUE (station_55)-[:D3 { line:"D", bus:"D3" } ]->(station_56)
MATCH (station_56:STATION {id:56}), (station_57:STATION {id:57}) CREATE UNIQUE (station_56)-[:D3 { line:"D", bus:"D3" } ]->(station_57)
MATCH (station_29:STATION {id:29}), (station_28:STATION {id:28}) CREATE UNIQUE (station_29)-[:D10 { line:"B", bus:"D10" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_26:STATION {id:26}) CREATE UNIQUE (station_28)-[:D10 { line:"B", bus:"D10" } ]->(station_26)
MATCH (station_26:STATION {id:26}), (station_25:STATION {id:25}) CREATE UNIQUE (station_26)-[:D10 { line:"B", bus:"D10" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_23:STATION {id:23}) CREATE UNIQUE (station_25)-[:D10 { line:"B", bus:"D10" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_20:STATION {id:20}) CREATE UNIQUE (station_23)-[:D10 { line:"B", bus:"D10" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_19:STATION {id:19}) CREATE UNIQUE (station_20)-[:D10 { line:"B", bus:"D10" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_18:STATION {id:18}) CREATE UNIQUE (station_19)-[:D10 { line:"B", bus:"D10" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_17:STATION {id:17}) CREATE UNIQUE (station_18)-[:D10 { line:"B", bus:"D10" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_16:STATION {id:16}) CREATE UNIQUE (station_17)-[:D10 { line:"B", bus:"D10" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_47:STATION {id:47}) CREATE UNIQUE (station_16)-[:D10 { line:"B", bus:"D10" } ]->(station_47)
MATCH (station_47:STATION {id:47}), (station_48:STATION {id:48}) CREATE UNIQUE (station_47)-[:D10 { line:"D", bus:"D10" } ]->(station_48)
MATCH (station_48:STATION {id:48}), (station_53:STATION {id:53}) CREATE UNIQUE (station_48)-[:D10 { line:"D", bus:"D10" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_54:STATION {id:54}) CREATE UNIQUE (station_53)-[:D10 { line:"D", bus:"D10" } ]->(station_54)
MATCH (station_54:STATION {id:54}), (station_55:STATION {id:55}) CREATE UNIQUE (station_54)-[:D10 { line:"D", bus:"D10" } ]->(station_55)
MATCH (station_55:STATION {id:55}), (station_57:STATION {id:57}) CREATE UNIQUE (station_55)-[:D10 { line:"D", bus:"D10" } ]->(station_57)
MATCH (station_111:STATION {id:111}), (station_110:STATION {id:110}) CREATE UNIQUE (station_111)-[:D20 { line:"H", bus:"D20" } ]->(station_110)
MATCH (station_110:STATION {id:110}), (station_107:STATION {id:107}) CREATE UNIQUE (station_110)-[:D20 { line:"H", bus:"D20" } ]->(station_107)
MATCH (station_107:STATION {id:107}), (station_106:STATION {id:106}) CREATE UNIQUE (station_107)-[:D20 { line:"H", bus:"D20" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_2:STATION {id:2}) CREATE UNIQUE (station_106)-[:D20 { line:"H", bus:"D20" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_3:STATION {id:3}) CREATE UNIQUE (station_2)-[:D20 { line:"A", bus:"D20" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_5:STATION {id:5}) CREATE UNIQUE (station_3)-[:D20 { line:"A", bus:"D20" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_6:STATION {id:6}) CREATE UNIQUE (station_5)-[:D20 { line:"A", bus:"D20" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_8:STATION {id:8}) CREATE UNIQUE (station_6)-[:D20 { line:"A", bus:"D20" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_45:STATION {id:45}) CREATE UNIQUE (station_8)-[:D20 { line:"A", bus:"D20" } ]->(station_45)
MATCH (station_45:STATION {id:45}), (station_49:STATION {id:49}) CREATE UNIQUE (station_45)-[:D20 { line:"D", bus:"D20" } ]->(station_49)
MATCH (station_49:STATION {id:49}), (station_50:STATION {id:50}) CREATE UNIQUE (station_49)-[:D20 { line:"D", bus:"D20" } ]->(station_50)
MATCH (station_50:STATION {id:50}), (station_51:STATION {id:51}) CREATE UNIQUE (station_50)-[:D20 { line:"D", bus:"D20" } ]->(station_51)
MATCH (station_51:STATION {id:51}), (station_53:STATION {id:53}) CREATE UNIQUE (station_51)-[:D20 { line:"D", bus:"D20" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_54:STATION {id:54}) CREATE UNIQUE (station_53)-[:D20 { line:"D", bus:"D20" } ]->(station_54)
MATCH (station_54:STATION {id:54}), (station_57:STATION {id:57}) CREATE UNIQUE (station_54)-[:D20 { line:"D", bus:"D20" } ]->(station_57)
MATCH (station_114:STATION {id:114}), (station_113:STATION {id:113}) CREATE UNIQUE (station_114)-[:D21 { line:"H", bus:"D21" } ]->(station_113)
MATCH (station_113:STATION {id:113}), (station_107:STATION {id:107}) CREATE UNIQUE (station_113)-[:D21 { line:"H", bus:"D21" } ]->(station_107)
MATCH (station_107:STATION {id:107}), (station_106:STATION {id:106}) CREATE UNIQUE (station_107)-[:D21 { line:"H", bus:"D21" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_104:STATION {id:104}) CREATE UNIQUE (station_106)-[:D21 { line:"H", bus:"D21" } ]->(station_104)
MATCH (station_104:STATION {id:104}), (station_102:STATION {id:102}) CREATE UNIQUE (station_104)-[:D21 { line:"H", bus:"D21" } ]->(station_102)
MATCH (station_102:STATION {id:102}), (station_101:STATION {id:101}) CREATE UNIQUE (station_102)-[:D21 { line:"H", bus:"D21" } ]->(station_101)
MATCH (station_101:STATION {id:101}), (station_9:STATION {id:9}) CREATE UNIQUE (station_101)-[:D21 { line:"H", bus:"D21" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_10:STATION {id:10}) CREATE UNIQUE (station_9)-[:D21 { line:"A", bus:"D21" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_11:STATION {id:11}) CREATE UNIQUE (station_10)-[:D21 { line:"A", bus:"D21" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_12:STATION {id:12}) CREATE UNIQUE (station_11)-[:D21 { line:"A", bus:"D21" } ]->(station_12)
MATCH (station_12:STATION {id:12}), (station_13:STATION {id:13}) CREATE UNIQUE (station_12)-[:D21 { line:"A", bus:"D21" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_14:STATION {id:14}) CREATE UNIQUE (station_13)-[:D21 { line:"A", bus:"D21" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_53:STATION {id:53}) CREATE UNIQUE (station_14)-[:D21 { line:"A", bus:"D21" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_54:STATION {id:54}) CREATE UNIQUE (station_53)-[:D21 { line:"D", bus:"D21" } ]->(station_54)
MATCH (station_54:STATION {id:54}), (station_56:STATION {id:56}) CREATE UNIQUE (station_54)-[:D21 { line:"D", bus:"D21" } ]->(station_56)
MATCH (station_56:STATION {id:56}), (station_57:STATION {id:57}) CREATE UNIQUE (station_56)-[:D21 { line:"D", bus:"D21" } ]->(station_57)
MATCH (station_98:STATION {id:98}), (station_95:STATION {id:95}) CREATE UNIQUE (station_98)-[:D22 { line:"G", bus:"D22" } ]->(station_95)
MATCH (station_95:STATION {id:95}), (station_92:STATION {id:92}) CREATE UNIQUE (station_95)-[:D22 { line:"G", bus:"D22" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_89:STATION {id:89}) CREATE UNIQUE (station_92)-[:D22 { line:"G", bus:"D22" } ]->(station_89)
MATCH (station_89:STATION {id:89}), (station_58:STATION {id:58}) CREATE UNIQUE (station_89)-[:D22 { line:"G", bus:"D22" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_59:STATION {id:59}) CREATE UNIQUE (station_58)-[:D22 { line:"E", bus:"D22" } ]->(station_59)
MATCH (station_59:STATION {id:59}), (station_61:STATION {id:61}) CREATE UNIQUE (station_59)-[:D22 { line:"E", bus:"D22" } ]->(station_61)
MATCH (station_61:STATION {id:61}), (station_62:STATION {id:62}) CREATE UNIQUE (station_61)-[:D22 { line:"E", bus:"D22" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_66:STATION {id:66}) CREATE UNIQUE (station_62)-[:D22 { line:"E", bus:"D22" } ]->(station_66)
MATCH (station_66:STATION {id:66}), (station_67:STATION {id:67}) CREATE UNIQUE (station_66)-[:D22 { line:"E", bus:"D22" } ]->(station_67)
MATCH (station_67:STATION {id:67}), (station_47:STATION {id:47}) CREATE UNIQUE (station_67)-[:D22 { line:"E", bus:"D22" } ]->(station_47)
MATCH (station_47:STATION {id:47}), (station_49:STATION {id:49}) CREATE UNIQUE (station_47)-[:D22 { line:"D", bus:"D22" } ]->(station_49)
MATCH (station_49:STATION {id:49}), (station_52:STATION {id:52}) CREATE UNIQUE (station_49)-[:D22 { line:"D", bus:"D22" } ]->(station_52)
MATCH (station_52:STATION {id:52}), (station_53:STATION {id:53}) CREATE UNIQUE (station_52)-[:D22 { line:"D", bus:"D22" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_57:STATION {id:57}) CREATE UNIQUE (station_53)-[:D22 { line:"D", bus:"D22" } ]->(station_57)
MATCH (station_61:STATION {id:61}), (station_62:STATION {id:62}) CREATE UNIQUE (station_61)-[:D26 { line:"E", bus:"D26" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_66:STATION {id:66}) CREATE UNIQUE (station_62)-[:D26 { line:"E", bus:"D26" } ]->(station_66)
MATCH (station_66:STATION {id:66}), (station_67:STATION {id:67}) CREATE UNIQUE (station_66)-[:D26 { line:"E", bus:"D26" } ]->(station_67)
MATCH (station_67:STATION {id:67}), (station_47:STATION {id:47}) CREATE UNIQUE (station_67)-[:D26 { line:"E", bus:"D26" } ]->(station_47)
MATCH (station_47:STATION {id:47}), (station_49:STATION {id:49}) CREATE UNIQUE (station_47)-[:D26 { line:"D", bus:"D26" } ]->(station_49)
MATCH (station_49:STATION {id:49}), (station_52:STATION {id:52}) CREATE UNIQUE (station_49)-[:D26 { line:"D", bus:"D26" } ]->(station_52)
MATCH (station_52:STATION {id:52}), (station_53:STATION {id:53}) CREATE UNIQUE (station_52)-[:D26 { line:"D", bus:"D26" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_57:STATION {id:57}) CREATE UNIQUE (station_53)-[:D26 { line:"D", bus:"D26" } ]->(station_57)
MATCH (station_86:STATION {id:86}), (station_5:STATION {id:5}) CREATE UNIQUE (station_86)-[:D50 { line:"F", bus:"D50" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_6:STATION {id:6}) CREATE UNIQUE (station_5)-[:D50 { line:"A", bus:"D50" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_8:STATION {id:8}) CREATE UNIQUE (station_6)-[:D50 { line:"A", bus:"D50" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_9:STATION {id:9}) CREATE UNIQUE (station_8)-[:D50 { line:"A", bus:"D50" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_10:STATION {id:10}) CREATE UNIQUE (station_9)-[:D50 { line:"A", bus:"D50" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_11:STATION {id:11}) CREATE UNIQUE (station_10)-[:D50 { line:"A", bus:"D50" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_13:STATION {id:13}) CREATE UNIQUE (station_11)-[:D50 { line:"A", bus:"D50" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_14:STATION {id:14}) CREATE UNIQUE (station_13)-[:D50 { line:"A", bus:"D50" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_52:STATION {id:52}) CREATE UNIQUE (station_14)-[:D50 { line:"A", bus:"D50" } ]->(station_52)
MATCH (station_52:STATION {id:52}), (station_53:STATION {id:53}) CREATE UNIQUE (station_52)-[:D50 { line:"D", bus:"D50" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_57:STATION {id:57}) CREATE UNIQUE (station_53)-[:D50 { line:"D", bus:"D50" } ]->(station_57)
MATCH (station_111:STATION {id:111}), (station_2:STATION {id:2}) CREATE UNIQUE (station_111)-[:D51 { line:"H", bus:"D51" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_3:STATION {id:3}) CREATE UNIQUE (station_2)-[:D51 { line:"A", bus:"D51" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_5:STATION {id:5}) CREATE UNIQUE (station_3)-[:D51 { line:"A", bus:"D51" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_6:STATION {id:6}) CREATE UNIQUE (station_5)-[:D51 { line:"A", bus:"D51" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_7:STATION {id:7}) CREATE UNIQUE (station_6)-[:D51 { line:"A", bus:"D51" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_8:STATION {id:8}) CREATE UNIQUE (station_7)-[:D51 { line:"A", bus:"D51" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_52:STATION {id:52}) CREATE UNIQUE (station_8)-[:D51 { line:"A", bus:"D51" } ]->(station_52)
MATCH (station_52:STATION {id:52}), (station_57:STATION {id:57}) CREATE UNIQUE (station_52)-[:D51 { line:"D", bus:"D51" } ]->(station_57)
MATCH (station_111:STATION {id:111}), (station_103:STATION {id:103}) CREATE UNIQUE (station_111)-[:D60 { line:"H", bus:"D60" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_100:STATION {id:100}) CREATE UNIQUE (station_103)-[:D60 { line:"H", bus:"D60" } ]->(station_100)
MATCH (station_100:STATION {id:100}), (station_7:STATION {id:7}) CREATE UNIQUE (station_100)-[:D60 { line:"H", bus:"D60" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_9:STATION {id:9}) CREATE UNIQUE (station_7)-[:D60 { line:"A", bus:"D60" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_10:STATION {id:10}) CREATE UNIQUE (station_9)-[:D60 { line:"A", bus:"D60" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_13:STATION {id:13}) CREATE UNIQUE (station_10)-[:D60 { line:"A", bus:"D60" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_14:STATION {id:14}) CREATE UNIQUE (station_13)-[:D60 { line:"A", bus:"D60" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_52:STATION {id:52}) CREATE UNIQUE (station_14)-[:D60 { line:"A", bus:"D60" } ]->(station_52)
MATCH (station_52:STATION {id:52}), (station_53:STATION {id:53}) CREATE UNIQUE (station_52)-[:D60 { line:"D", bus:"D60" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_55:STATION {id:55}) CREATE UNIQUE (station_53)-[:D60 { line:"D", bus:"D60" } ]->(station_55)
MATCH (station_55:STATION {id:55}), (station_57:STATION {id:57}) CREATE UNIQUE (station_55)-[:D60 { line:"D", bus:"D60" } ]->(station_57)
MATCH (station_150:STATION {id:150}), (station_5:STATION {id:5}) CREATE UNIQUE (station_150)-[:D70 { line:"J", bus:"D70" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_7:STATION {id:7}) CREATE UNIQUE (station_5)-[:D70 { line:"A", bus:"D70" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_10:STATION {id:10}) CREATE UNIQUE (station_7)-[:D70 { line:"A", bus:"D70" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_45:STATION {id:45}) CREATE UNIQUE (station_10)-[:D70 { line:"A", bus:"D70" } ]->(station_45)
MATCH (station_45:STATION {id:45}), (station_46:STATION {id:46}) CREATE UNIQUE (station_45)-[:D70 { line:"D", bus:"D70" } ]->(station_46)
MATCH (station_46:STATION {id:46}), (station_49:STATION {id:49}) CREATE UNIQUE (station_46)-[:D70 { line:"D", bus:"D70" } ]->(station_49)
MATCH (station_49:STATION {id:49}), (station_53:STATION {id:53}) CREATE UNIQUE (station_49)-[:D70 { line:"D", bus:"D70" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_57:STATION {id:57}) CREATE UNIQUE (station_53)-[:D70 { line:"D", bus:"D70" } ]->(station_57)
MATCH (station_29:STATION {id:29}), (station_28:STATION {id:28}) CREATE UNIQUE (station_29)-[:D94 { line:"B", bus:"D94" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_25:STATION {id:25}) CREATE UNIQUE (station_28)-[:D94 { line:"B", bus:"D94" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_23:STATION {id:23}) CREATE UNIQUE (station_25)-[:D94 { line:"B", bus:"D94" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_18:STATION {id:18}) CREATE UNIQUE (station_23)-[:D94 { line:"B", bus:"D94" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_15:STATION {id:15}) CREATE UNIQUE (station_18)-[:D94 { line:"B", bus:"D94" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_48:STATION {id:48}) CREATE UNIQUE (station_15)-[:D94 { line:"B", bus:"D94" } ]->(station_48)
MATCH (station_48:STATION {id:48}), (station_49:STATION {id:49}) CREATE UNIQUE (station_48)-[:D94 { line:"D", bus:"D94" } ]->(station_49)
MATCH (station_49:STATION {id:49}), (station_50:STATION {id:50}) CREATE UNIQUE (station_49)-[:D94 { line:"D", bus:"D94" } ]->(station_50)
MATCH (station_50:STATION {id:50}), (station_52:STATION {id:52}) CREATE UNIQUE (station_50)-[:D94 { line:"D", bus:"D94" } ]->(station_52)
MATCH (station_52:STATION {id:52}), (station_53:STATION {id:53}) CREATE UNIQUE (station_52)-[:D94 { line:"D", bus:"D94" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_57:STATION {id:57}) CREATE UNIQUE (station_53)-[:D94 { line:"D", bus:"D94" } ]->(station_57)
MATCH (station_151:STATION {id:151}), (station_152:STATION {id:152}) CREATE UNIQUE (station_151)-[:D95 { line:"J", bus:"D95" } ]->(station_152)
MATCH (station_152:STATION {id:152}), (station_69:STATION {id:69}) CREATE UNIQUE (station_152)-[:D95 { line:"J", bus:"D95" } ]->(station_69)
MATCH (station_69:STATION {id:69}), (station_3:STATION {id:3}) CREATE UNIQUE (station_69)-[:D95 { line:"F", bus:"D95" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_9:STATION {id:9}) CREATE UNIQUE (station_3)-[:D95 { line:"A", bus:"D95" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_10:STATION {id:10}) CREATE UNIQUE (station_9)-[:D95 { line:"A", bus:"D95" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_11:STATION {id:11}) CREATE UNIQUE (station_10)-[:D95 { line:"A", bus:"D95" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_13:STATION {id:13}) CREATE UNIQUE (station_11)-[:D95 { line:"A", bus:"D95" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_14:STATION {id:14}) CREATE UNIQUE (station_13)-[:D95 { line:"A", bus:"D95" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_46:STATION {id:46}) CREATE UNIQUE (station_14)-[:D95 { line:"A", bus:"D95" } ]->(station_46)
MATCH (station_46:STATION {id:46}), (station_51:STATION {id:51}) CREATE UNIQUE (station_46)-[:D95 { line:"D", bus:"D95" } ]->(station_51)
MATCH (station_51:STATION {id:51}), (station_53:STATION {id:53}) CREATE UNIQUE (station_51)-[:D95 { line:"D", bus:"D95" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_54:STATION {id:54}) CREATE UNIQUE (station_53)-[:D95 { line:"D", bus:"D95" } ]->(station_54)
MATCH (station_54:STATION {id:54}), (station_56:STATION {id:56}) CREATE UNIQUE (station_54)-[:D95 { line:"D", bus:"D95" } ]->(station_56)
MATCH (station_56:STATION {id:56}), (station_57:STATION {id:57}) CREATE UNIQUE (station_56)-[:D95 { line:"D", bus:"D95" } ]->(station_57)
MATCH (station_111:STATION {id:111}), (station_110:STATION {id:110}) CREATE UNIQUE (station_111)-[:E25 { line:"H", bus:"E25" } ]->(station_110)
MATCH (station_110:STATION {id:110}), (station_114:STATION {id:114}) CREATE UNIQUE (station_110)-[:E25 { line:"H", bus:"E25" } ]->(station_114)
MATCH (station_114:STATION {id:114}), (station_95:STATION {id:95}) CREATE UNIQUE (station_114)-[:E25 { line:"H", bus:"E25" } ]->(station_95)
MATCH (station_95:STATION {id:95}), (station_92:STATION {id:92}) CREATE UNIQUE (station_95)-[:E25 { line:"G", bus:"E25" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_89:STATION {id:89}) CREATE UNIQUE (station_92)-[:E25 { line:"G", bus:"E25" } ]->(station_89)
MATCH (station_89:STATION {id:89}), (station_58:STATION {id:58}) CREATE UNIQUE (station_89)-[:E25 { line:"G", bus:"E25" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_59:STATION {id:59}) CREATE UNIQUE (station_58)-[:E25 { line:"E", bus:"E25" } ]->(station_59)
MATCH (station_59:STATION {id:59}), (station_60:STATION {id:60}) CREATE UNIQUE (station_59)-[:E25 { line:"E", bus:"E25" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_62:STATION {id:62}) CREATE UNIQUE (station_60)-[:E25 { line:"E", bus:"E25" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_65:STATION {id:65}) CREATE UNIQUE (station_62)-[:E25 { line:"E", bus:"E25" } ]->(station_65)
MATCH (station_57:STATION {id:57}), (station_53:STATION {id:53}) CREATE UNIQUE (station_57)-[:E26 { line:"D", bus:"E26" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_52:STATION {id:52}) CREATE UNIQUE (station_53)-[:E26 { line:"D", bus:"E26" } ]->(station_52)
MATCH (station_52:STATION {id:52}), (station_49:STATION {id:49}) CREATE UNIQUE (station_52)-[:E26 { line:"D", bus:"E26" } ]->(station_49)
MATCH (station_49:STATION {id:49}), (station_47:STATION {id:47}) CREATE UNIQUE (station_49)-[:E26 { line:"D", bus:"E26" } ]->(station_47)
MATCH (station_47:STATION {id:47}), (station_67:STATION {id:67}) CREATE UNIQUE (station_47)-[:E26 { line:"D", bus:"E26" } ]->(station_67)
MATCH (station_67:STATION {id:67}), (station_66:STATION {id:66}) CREATE UNIQUE (station_67)-[:E26 { line:"E", bus:"E26" } ]->(station_66)
MATCH (station_66:STATION {id:66}), (station_62:STATION {id:62}) CREATE UNIQUE (station_66)-[:E26 { line:"E", bus:"E26" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_61:STATION {id:61}) CREATE UNIQUE (station_62)-[:E26 { line:"E", bus:"E26" } ]->(station_61)
MATCH (station_86:STATION {id:86}), (station_82:STATION {id:82}) CREATE UNIQUE (station_86)-[:E32 { line:"F", bus:"E32" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_60:STATION {id:60}) CREATE UNIQUE (station_82)-[:E32 { line:"F", bus:"E32" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_62:STATION {id:62}) CREATE UNIQUE (station_60)-[:E32 { line:"E", bus:"E32" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_65:STATION {id:65}) CREATE UNIQUE (station_62)-[:E32 { line:"E", bus:"E32" } ]->(station_65)
MATCH (station_65:STATION {id:65}), (station_66:STATION {id:66}) CREATE UNIQUE (station_65)-[:E32 { line:"E", bus:"E32" } ]->(station_66)
MATCH (station_66:STATION {id:66}), (station_67:STATION {id:67}) CREATE UNIQUE (station_66)-[:E32 { line:"E", bus:"E32" } ]->(station_67)
MATCH (station_144:STATION {id:144}), (station_143:STATION {id:143}) CREATE UNIQUE (station_144)-[:E44 { line:"G", bus:"E44" } ]->(station_143)
MATCH (station_143:STATION {id:143}), (station_88:STATION {id:88}) CREATE UNIQUE (station_143)-[:E44 { line:"G", bus:"E44" } ]->(station_88)
MATCH (station_88:STATION {id:88}), (station_87:STATION {id:87}) CREATE UNIQUE (station_88)-[:E44 { line:"G", bus:"E44" } ]->(station_87)
MATCH (station_87:STATION {id:87}), (station_58:STATION {id:58}) CREATE UNIQUE (station_87)-[:E44 { line:"G", bus:"E44" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_59:STATION {id:59}) CREATE UNIQUE (station_58)-[:E44 { line:"E", bus:"E44" } ]->(station_59)
MATCH (station_59:STATION {id:59}), (station_62:STATION {id:62}) CREATE UNIQUE (station_59)-[:E44 { line:"E", bus:"E44" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_65:STATION {id:65}) CREATE UNIQUE (station_62)-[:E44 { line:"E", bus:"E44" } ]->(station_65)
MATCH (station_30:STATION {id:30}), (station_29:STATION {id:29}) CREATE UNIQUE (station_30)-[:F1 { line:"B", bus:"F1" } ]->(station_29)
MATCH (station_29:STATION {id:29}), (station_28:STATION {id:28}) CREATE UNIQUE (station_29)-[:F1 { line:"B", bus:"F1" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_27:STATION {id:27}) CREATE UNIQUE (station_28)-[:F1 { line:"B", bus:"F1" } ]->(station_27)
MATCH (station_27:STATION {id:27}), (station_26:STATION {id:26}) CREATE UNIQUE (station_27)-[:F1 { line:"B", bus:"F1" } ]->(station_26)
MATCH (station_26:STATION {id:26}), (station_25:STATION {id:25}) CREATE UNIQUE (station_26)-[:F1 { line:"B", bus:"F1" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_24:STATION {id:24}) CREATE UNIQUE (station_25)-[:F1 { line:"B", bus:"F1" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_23:STATION {id:23}) CREATE UNIQUE (station_24)-[:F1 { line:"B", bus:"F1" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_22:STATION {id:22}) CREATE UNIQUE (station_23)-[:F1 { line:"B", bus:"F1" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_21:STATION {id:21}) CREATE UNIQUE (station_22)-[:F1 { line:"B", bus:"F1" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_20:STATION {id:20}) CREATE UNIQUE (station_21)-[:F1 { line:"B", bus:"F1" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_19:STATION {id:19}) CREATE UNIQUE (station_20)-[:F1 { line:"B", bus:"F1" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_18:STATION {id:18}) CREATE UNIQUE (station_19)-[:F1 { line:"B", bus:"F1" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_17:STATION {id:17}) CREATE UNIQUE (station_18)-[:F1 { line:"B", bus:"F1" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_16:STATION {id:16}) CREATE UNIQUE (station_17)-[:F1 { line:"B", bus:"F1" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_15:STATION {id:15}) CREATE UNIQUE (station_16)-[:F1 { line:"B", bus:"F1" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_14:STATION {id:14}) CREATE UNIQUE (station_15)-[:F1 { line:"B", bus:"F1" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_13:STATION {id:13}) CREATE UNIQUE (station_14)-[:F1 { line:"A", bus:"F1" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_12:STATION {id:12}) CREATE UNIQUE (station_13)-[:F1 { line:"A", bus:"F1" } ]->(station_12)
MATCH (station_12:STATION {id:12}), (station_11:STATION {id:11}) CREATE UNIQUE (station_12)-[:F1 { line:"A", bus:"F1" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_10:STATION {id:10}) CREATE UNIQUE (station_11)-[:F1 { line:"A", bus:"F1" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_9:STATION {id:9}) CREATE UNIQUE (station_10)-[:F1 { line:"A", bus:"F1" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_8:STATION {id:8}) CREATE UNIQUE (station_9)-[:F1 { line:"A", bus:"F1" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_7:STATION {id:7}) CREATE UNIQUE (station_8)-[:F1 { line:"A", bus:"F1" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_6:STATION {id:6}) CREATE UNIQUE (station_7)-[:F1 { line:"A", bus:"F1" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_5:STATION {id:5}) CREATE UNIQUE (station_6)-[:F1 { line:"A", bus:"F1" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_4:STATION {id:4}) CREATE UNIQUE (station_5)-[:F1 { line:"A", bus:"F1" } ]->(station_4)
MATCH (station_4:STATION {id:4}), (station_3:STATION {id:3}) CREATE UNIQUE (station_4)-[:F1 { line:"A", bus:"F1" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_69:STATION {id:69}) CREATE UNIQUE (station_3)-[:F1 { line:"A", bus:"F1" } ]->(station_69)
MATCH (station_69:STATION {id:69}), (station_70:STATION {id:70}) CREATE UNIQUE (station_69)-[:F1 { line:"F", bus:"F1" } ]->(station_70)
MATCH (station_70:STATION {id:70}), (station_71:STATION {id:71}) CREATE UNIQUE (station_70)-[:F1 { line:"F", bus:"F1" } ]->(station_71)
MATCH (station_71:STATION {id:71}), (station_72:STATION {id:72}) CREATE UNIQUE (station_71)-[:F1 { line:"F", bus:"F1" } ]->(station_72)
MATCH (station_72:STATION {id:72}), (station_73:STATION {id:73}) CREATE UNIQUE (station_72)-[:F1 { line:"F", bus:"F1" } ]->(station_73)
MATCH (station_73:STATION {id:73}), (station_74:STATION {id:74}) CREATE UNIQUE (station_73)-[:F1 { line:"F", bus:"F1" } ]->(station_74)
MATCH (station_74:STATION {id:74}), (station_75:STATION {id:75}) CREATE UNIQUE (station_74)-[:F1 { line:"F", bus:"F1" } ]->(station_75)
MATCH (station_75:STATION {id:75}), (station_76:STATION {id:76}) CREATE UNIQUE (station_75)-[:F1 { line:"F", bus:"F1" } ]->(station_76)
MATCH (station_76:STATION {id:76}), (station_77:STATION {id:77}) CREATE UNIQUE (station_76)-[:F1 { line:"F", bus:"F1" } ]->(station_77)
MATCH (station_77:STATION {id:77}), (station_78:STATION {id:78}) CREATE UNIQUE (station_77)-[:F1 { line:"F", bus:"F1" } ]->(station_78)
MATCH (station_78:STATION {id:78}), (station_79:STATION {id:79}) CREATE UNIQUE (station_78)-[:F1 { line:"F", bus:"F1" } ]->(station_79)
MATCH (station_79:STATION {id:79}), (station_80:STATION {id:80}) CREATE UNIQUE (station_79)-[:F1 { line:"F", bus:"F1" } ]->(station_80)
MATCH (station_80:STATION {id:80}), (station_81:STATION {id:81}) CREATE UNIQUE (station_80)-[:F1 { line:"F", bus:"F1" } ]->(station_81)
MATCH (station_81:STATION {id:81}), (station_82:STATION {id:82}) CREATE UNIQUE (station_81)-[:F1 { line:"F", bus:"F1" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_83:STATION {id:83}) CREATE UNIQUE (station_82)-[:F1 { line:"F", bus:"F1" } ]->(station_83)
MATCH (station_83:STATION {id:83}), (station_84:STATION {id:84}) CREATE UNIQUE (station_83)-[:F1 { line:"F", bus:"F1" } ]->(station_84)
MATCH (station_84:STATION {id:84}), (station_85:STATION {id:85}) CREATE UNIQUE (station_84)-[:F1 { line:"F", bus:"F1" } ]->(station_85)
MATCH (station_85:STATION {id:85}), (station_86:STATION {id:86}) CREATE UNIQUE (station_85)-[:F1 { line:"F", bus:"F1" } ]->(station_86)
MATCH (station_29:STATION {id:29}), (station_25:STATION {id:25}) CREATE UNIQUE (station_29)-[:F14 { line:"B", bus:"F14" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_23:STATION {id:23}) CREATE UNIQUE (station_25)-[:F14 { line:"B", bus:"F14" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_21:STATION {id:21}) CREATE UNIQUE (station_23)-[:F14 { line:"B", bus:"F14" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_19:STATION {id:19}) CREATE UNIQUE (station_21)-[:F14 { line:"B", bus:"F14" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_18:STATION {id:18}) CREATE UNIQUE (station_19)-[:F14 { line:"B", bus:"F14" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_16:STATION {id:16}) CREATE UNIQUE (station_18)-[:F14 { line:"B", bus:"F14" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_15:STATION {id:15}) CREATE UNIQUE (station_16)-[:F14 { line:"B", bus:"F14" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_9:STATION {id:9}) CREATE UNIQUE (station_15)-[:F14 { line:"B", bus:"F14" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_8:STATION {id:8}) CREATE UNIQUE (station_9)-[:F14 { line:"A", bus:"F14" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_6:STATION {id:6}) CREATE UNIQUE (station_8)-[:F14 { line:"A", bus:"F14" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_5:STATION {id:5}) CREATE UNIQUE (station_6)-[:F14 { line:"A", bus:"F14" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_73:STATION {id:73}) CREATE UNIQUE (station_5)-[:F14 { line:"A", bus:"F14" } ]->(station_73)
MATCH (station_73:STATION {id:73}), (station_78:STATION {id:78}) CREATE UNIQUE (station_73)-[:F14 { line:"F", bus:"F14" } ]->(station_78)
MATCH (station_78:STATION {id:78}), (station_82:STATION {id:82}) CREATE UNIQUE (station_78)-[:F14 { line:"F", bus:"F14" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_83:STATION {id:83}) CREATE UNIQUE (station_82)-[:F14 { line:"F", bus:"F14" } ]->(station_83)
MATCH (station_83:STATION {id:83}), (station_84:STATION {id:84}) CREATE UNIQUE (station_83)-[:F14 { line:"F", bus:"F14" } ]->(station_84)
MATCH (station_84:STATION {id:84}), (station_86:STATION {id:86}) CREATE UNIQUE (station_84)-[:F14 { line:"F", bus:"F14" } ]->(station_86)
MATCH (station_44:STATION {id:44}), (station_43:STATION {id:43}) CREATE UNIQUE (station_44)-[:F19 { line:"C", bus:"F19" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_42:STATION {id:42}) CREATE UNIQUE (station_43)-[:F19 { line:"C", bus:"F19" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_40:STATION {id:40}) CREATE UNIQUE (station_42)-[:F19 { line:"C", bus:"F19" } ]->(station_40)
MATCH (station_40:STATION {id:40}), (station_35:STATION {id:35}) CREATE UNIQUE (station_40)-[:F19 { line:"C", bus:"F19" } ]->(station_35)
MATCH (station_35:STATION {id:35}), (station_34:STATION {id:34}) CREATE UNIQUE (station_35)-[:F19 { line:"C", bus:"F19" } ]->(station_34)
MATCH (station_34:STATION {id:34}), (station_13:STATION {id:13}) CREATE UNIQUE (station_34)-[:F19 { line:"C", bus:"F19" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_11:STATION {id:11}) CREATE UNIQUE (station_13)-[:F19 { line:"A", bus:"F19" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_9:STATION {id:9}) CREATE UNIQUE (station_11)-[:F19 { line:"A", bus:"F19" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_8:STATION {id:8}) CREATE UNIQUE (station_9)-[:F19 { line:"A", bus:"F19" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_6:STATION {id:6}) CREATE UNIQUE (station_8)-[:F19 { line:"A", bus:"F19" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_5:STATION {id:5}) CREATE UNIQUE (station_6)-[:F19 { line:"A", bus:"F19" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_3:STATION {id:3}) CREATE UNIQUE (station_5)-[:F19 { line:"A", bus:"F19" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_72:STATION {id:72}) CREATE UNIQUE (station_3)-[:F19 { line:"A", bus:"F19" } ]->(station_72)
MATCH (station_72:STATION {id:72}), (station_74:STATION {id:74}) CREATE UNIQUE (station_72)-[:F19 { line:"F", bus:"F19" } ]->(station_74)
MATCH (station_74:STATION {id:74}), (station_77:STATION {id:77}) CREATE UNIQUE (station_74)-[:F19 { line:"F", bus:"F19" } ]->(station_77)
MATCH (station_77:STATION {id:77}), (station_79:STATION {id:79}) CREATE UNIQUE (station_77)-[:F19 { line:"F", bus:"F19" } ]->(station_79)
MATCH (station_79:STATION {id:79}), (station_81:STATION {id:81}) CREATE UNIQUE (station_79)-[:F19 { line:"F", bus:"F19" } ]->(station_81)
MATCH (station_81:STATION {id:81}), (station_82:STATION {id:82}) CREATE UNIQUE (station_81)-[:F19 { line:"F", bus:"F19" } ]->(station_82)
MATCH (station_151:STATION {id:151}), (station_152:STATION {id:152}) CREATE UNIQUE (station_151)-[:F23 { line:"J", bus:"F23" } ]->(station_152)
MATCH (station_152:STATION {id:152}), (station_69:STATION {id:69}) CREATE UNIQUE (station_152)-[:F23 { line:"J", bus:"F23" } ]->(station_69)
MATCH (station_69:STATION {id:69}), (station_71:STATION {id:71}) CREATE UNIQUE (station_69)-[:F23 { line:"F", bus:"F23" } ]->(station_71)
MATCH (station_71:STATION {id:71}), (station_72:STATION {id:72}) CREATE UNIQUE (station_71)-[:F23 { line:"F", bus:"F23" } ]->(station_72)
MATCH (station_72:STATION {id:72}), (station_80:STATION {id:80}) CREATE UNIQUE (station_72)-[:F23 { line:"F", bus:"F23" } ]->(station_80)
MATCH (station_80:STATION {id:80}), (station_82:STATION {id:82}) CREATE UNIQUE (station_80)-[:F23 { line:"F", bus:"F23" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_85:STATION {id:85}) CREATE UNIQUE (station_82)-[:F23 { line:"F", bus:"F23" } ]->(station_85)
MATCH (station_85:STATION {id:85}), (station_86:STATION {id:86}) CREATE UNIQUE (station_85)-[:F23 { line:"F", bus:"F23" } ]->(station_86)
MATCH (station_29:STATION {id:29}), (station_22:STATION {id:22}) CREATE UNIQUE (station_29)-[:F28 { line:"B", bus:"F28" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_20:STATION {id:20}) CREATE UNIQUE (station_22)-[:F28 { line:"B", bus:"F28" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_19:STATION {id:19}) CREATE UNIQUE (station_20)-[:F28 { line:"B", bus:"F28" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_67:STATION {id:67}) CREATE UNIQUE (station_19)-[:F28 { line:"B", bus:"F28" } ]->(station_67)
MATCH (station_67:STATION {id:67}), (station_66:STATION {id:66}) CREATE UNIQUE (station_67)-[:F28 { line:"E", bus:"F28" } ]->(station_66)
MATCH (station_66:STATION {id:66}), (station_65:STATION {id:65}) CREATE UNIQUE (station_66)-[:F28 { line:"E", bus:"F28" } ]->(station_65)
MATCH (station_65:STATION {id:65}), (station_62:STATION {id:62}) CREATE UNIQUE (station_65)-[:F28 { line:"E", bus:"F28" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_60:STATION {id:60}) CREATE UNIQUE (station_62)-[:F28 { line:"E", bus:"F28" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_73:STATION {id:73}) CREATE UNIQUE (station_60)-[:F28 { line:"E", bus:"F28" } ]->(station_73)
MATCH (station_73:STATION {id:73}), (station_74:STATION {id:74}) CREATE UNIQUE (station_73)-[:F28 { line:"F", bus:"F28" } ]->(station_74)
MATCH (station_74:STATION {id:74}), (station_82:STATION {id:82}) CREATE UNIQUE (station_74)-[:F28 { line:"F", bus:"F28" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_84:STATION {id:84}) CREATE UNIQUE (station_82)-[:F28 { line:"F", bus:"F28" } ]->(station_84)
MATCH (station_84:STATION {id:84}), (station_86:STATION {id:86}) CREATE UNIQUE (station_84)-[:F28 { line:"F", bus:"F28" } ]->(station_86)
MATCH (station_44:STATION {id:44}), (station_43:STATION {id:43}) CREATE UNIQUE (station_44)-[:F29 { line:"C", bus:"F29" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_42:STATION {id:42}) CREATE UNIQUE (station_43)-[:F29 { line:"C", bus:"F29" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_13:STATION {id:13}) CREATE UNIQUE (station_42)-[:F29 { line:"C", bus:"F29" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_11:STATION {id:11}) CREATE UNIQUE (station_13)-[:F29 { line:"A", bus:"F29" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_9:STATION {id:9}) CREATE UNIQUE (station_11)-[:F29 { line:"A", bus:"F29" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_6:STATION {id:6}) CREATE UNIQUE (station_9)-[:F29 { line:"A", bus:"F29" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_5:STATION {id:5}) CREATE UNIQUE (station_6)-[:F29 { line:"A", bus:"F29" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_82:STATION {id:82}) CREATE UNIQUE (station_5)-[:F29 { line:"A", bus:"F29" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_84:STATION {id:84}) CREATE UNIQUE (station_82)-[:F29 { line:"F", bus:"F29" } ]->(station_84)
MATCH (station_84:STATION {id:84}), (station_85:STATION {id:85}) CREATE UNIQUE (station_84)-[:F29 { line:"F", bus:"F29" } ]->(station_85)
MATCH (station_85:STATION {id:85}), (station_86:STATION {id:86}) CREATE UNIQUE (station_85)-[:F29 { line:"F", bus:"F29" } ]->(station_86)
MATCH (station_67:STATION {id:67}), (station_66:STATION {id:66}) CREATE UNIQUE (station_67)-[:F32 { line:"E", bus:"F32" } ]->(station_66)
MATCH (station_66:STATION {id:66}), (station_65:STATION {id:65}) CREATE UNIQUE (station_66)-[:F32 { line:"E", bus:"F32" } ]->(station_65)
MATCH (station_65:STATION {id:65}), (station_62:STATION {id:62}) CREATE UNIQUE (station_65)-[:F32 { line:"E", bus:"F32" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_60:STATION {id:60}) CREATE UNIQUE (station_62)-[:F32 { line:"E", bus:"F32" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_82:STATION {id:82}) CREATE UNIQUE (station_60)-[:F32 { line:"E", bus:"F32" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_86:STATION {id:86}) CREATE UNIQUE (station_82)-[:F32 { line:"F", bus:"F32" } ]->(station_86)
MATCH (station_140:STATION {id:140}), (station_130:STATION {id:130}) CREATE UNIQUE (station_140)-[:F51 { line:"M", bus:"F51" } ]->(station_130)
MATCH (station_130:STATION {id:130}), (station_131:STATION {id:131}) CREATE UNIQUE (station_130)-[:F51 { line:"L", bus:"F51" } ]->(station_131)
MATCH (station_131:STATION {id:131}), (station_72:STATION {id:72}) CREATE UNIQUE (station_131)-[:F51 { line:"L", bus:"F51" } ]->(station_72)
MATCH (station_72:STATION {id:72}), (station_77:STATION {id:77}) CREATE UNIQUE (station_72)-[:F51 { line:"F", bus:"F51" } ]->(station_77)
MATCH (station_77:STATION {id:77}), (station_78:STATION {id:78}) CREATE UNIQUE (station_77)-[:F51 { line:"F", bus:"F51" } ]->(station_78)
MATCH (station_78:STATION {id:78}), (station_79:STATION {id:79}) CREATE UNIQUE (station_78)-[:F51 { line:"F", bus:"F51" } ]->(station_79)
MATCH (station_79:STATION {id:79}), (station_80:STATION {id:80}) CREATE UNIQUE (station_79)-[:F51 { line:"F", bus:"F51" } ]->(station_80)
MATCH (station_80:STATION {id:80}), (station_81:STATION {id:81}) CREATE UNIQUE (station_80)-[:F51 { line:"F", bus:"F51" } ]->(station_81)
MATCH (station_81:STATION {id:81}), (station_82:STATION {id:82}) CREATE UNIQUE (station_81)-[:F51 { line:"F", bus:"F51" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_84:STATION {id:84}) CREATE UNIQUE (station_82)-[:F51 { line:"F", bus:"F51" } ]->(station_84)
MATCH (station_84:STATION {id:84}), (station_85:STATION {id:85}) CREATE UNIQUE (station_84)-[:F51 { line:"F", bus:"F51" } ]->(station_85)
MATCH (station_85:STATION {id:85}), (station_86:STATION {id:86}) CREATE UNIQUE (station_85)-[:F51 { line:"F", bus:"F51" } ]->(station_86)
MATCH (station_69:STATION {id:69}), (station_70:STATION {id:70}) CREATE UNIQUE (station_69)-[:F60 { line:"F", bus:"F60" } ]->(station_70)
MATCH (station_70:STATION {id:70}), (station_72:STATION {id:72}) CREATE UNIQUE (station_70)-[:F60 { line:"F", bus:"F60" } ]->(station_72)
MATCH (station_72:STATION {id:72}), (station_75:STATION {id:75}) CREATE UNIQUE (station_72)-[:F60 { line:"F", bus:"F60" } ]->(station_75)
MATCH (station_75:STATION {id:75}), (station_76:STATION {id:76}) CREATE UNIQUE (station_75)-[:F60 { line:"F", bus:"F60" } ]->(station_76)
MATCH (station_76:STATION {id:76}), (station_78:STATION {id:78}) CREATE UNIQUE (station_76)-[:F60 { line:"F", bus:"F60" } ]->(station_78)
MATCH (station_78:STATION {id:78}), (station_82:STATION {id:82}) CREATE UNIQUE (station_78)-[:F60 { line:"F", bus:"F60" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_84:STATION {id:84}) CREATE UNIQUE (station_82)-[:F60 { line:"F", bus:"F60" } ]->(station_84)
MATCH (station_84:STATION {id:84}), (station_86:STATION {id:86}) CREATE UNIQUE (station_84)-[:F60 { line:"F", bus:"F60" } ]->(station_86)
MATCH (station_29:STATION {id:29}), (station_23:STATION {id:23}) CREATE UNIQUE (station_29)-[:F61 { line:"B", bus:"F61" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_17:STATION {id:17}) CREATE UNIQUE (station_23)-[:F61 { line:"B", bus:"F61" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_15:STATION {id:15}) CREATE UNIQUE (station_17)-[:F61 { line:"B", bus:"F61" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_14:STATION {id:14}) CREATE UNIQUE (station_15)-[:F61 { line:"B", bus:"F61" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_7:STATION {id:7}) CREATE UNIQUE (station_14)-[:F61 { line:"A", bus:"F61" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_79:STATION {id:79}) CREATE UNIQUE (station_7)-[:F61 { line:"A", bus:"F61" } ]->(station_79)
MATCH (station_79:STATION {id:79}), (station_82:STATION {id:82}) CREATE UNIQUE (station_79)-[:F61 { line:"F", bus:"F61" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_84:STATION {id:84}) CREATE UNIQUE (station_82)-[:F61 { line:"F", bus:"F61" } ]->(station_84)
MATCH (station_84:STATION {id:84}), (station_86:STATION {id:86}) CREATE UNIQUE (station_84)-[:F61 { line:"F", bus:"F61" } ]->(station_86)
MATCH (station_57:STATION {id:57}), (station_53:STATION {id:53}) CREATE UNIQUE (station_57)-[:F62 { line:"D", bus:"F62" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_52:STATION {id:52}) CREATE UNIQUE (station_53)-[:F62 { line:"D", bus:"F62" } ]->(station_52)
MATCH (station_52:STATION {id:52}), (station_14:STATION {id:14}) CREATE UNIQUE (station_52)-[:F62 { line:"D", bus:"F62" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_13:STATION {id:13}) CREATE UNIQUE (station_14)-[:F62 { line:"A", bus:"F62" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_11:STATION {id:11}) CREATE UNIQUE (station_13)-[:F62 { line:"A", bus:"F62" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_10:STATION {id:10}) CREATE UNIQUE (station_11)-[:F62 { line:"A", bus:"F62" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_9:STATION {id:9}) CREATE UNIQUE (station_10)-[:F62 { line:"A", bus:"F62" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_8:STATION {id:8}) CREATE UNIQUE (station_9)-[:F62 { line:"A", bus:"F62" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_6:STATION {id:6}) CREATE UNIQUE (station_8)-[:F62 { line:"A", bus:"F62" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_5:STATION {id:5}) CREATE UNIQUE (station_6)-[:F62 { line:"A", bus:"F62" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_86:STATION {id:86}) CREATE UNIQUE (station_5)-[:F62 { line:"A", bus:"F62" } ]->(station_86)
MATCH (station_86:STATION {id:86}), (station_84:STATION {id:84}) CREATE UNIQUE (station_86)-[:F70 { line:"F", bus:"F70" } ]->(station_84)
MATCH (station_84:STATION {id:84}), (station_82:STATION {id:82}) CREATE UNIQUE (station_84)-[:F70 { line:"F", bus:"F70" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_78:STATION {id:78}) CREATE UNIQUE (station_82)-[:F70 { line:"F", bus:"F70" } ]->(station_78)
MATCH (station_78:STATION {id:78}), (station_76:STATION {id:76}) CREATE UNIQUE (station_78)-[:F70 { line:"F", bus:"F70" } ]->(station_76)
MATCH (station_76:STATION {id:76}), (station_75:STATION {id:75}) CREATE UNIQUE (station_76)-[:F70 { line:"F", bus:"F70" } ]->(station_75)
MATCH (station_75:STATION {id:75}), (station_72:STATION {id:72}) CREATE UNIQUE (station_75)-[:F70 { line:"F", bus:"F70" } ]->(station_72)
MATCH (station_72:STATION {id:72}), (station_70:STATION {id:70}) CREATE UNIQUE (station_72)-[:F70 { line:"F", bus:"F70" } ]->(station_70)
MATCH (station_70:STATION {id:70}), (station_69:STATION {id:69}) CREATE UNIQUE (station_70)-[:F70 { line:"F", bus:"F70" } ]->(station_69)
MATCH (station_44:STATION {id:44}), (station_43:STATION {id:43}) CREATE UNIQUE (station_44)-[:F91 { line:"C", bus:"F91" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_42:STATION {id:42}) CREATE UNIQUE (station_43)-[:F91 { line:"C", bus:"F91" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_36:STATION {id:36}) CREATE UNIQUE (station_42)-[:F91 { line:"C", bus:"F91" } ]->(station_36)
MATCH (station_36:STATION {id:36}), (station_35:STATION {id:35}) CREATE UNIQUE (station_36)-[:F91 { line:"C", bus:"F91" } ]->(station_35)
MATCH (station_35:STATION {id:35}), (station_33:STATION {id:33}) CREATE UNIQUE (station_35)-[:F91 { line:"C", bus:"F91" } ]->(station_33)
MATCH (station_33:STATION {id:33}), (station_46:STATION {id:46}) CREATE UNIQUE (station_33)-[:F91 { line:"C", bus:"F91" } ]->(station_46)
MATCH (station_46:STATION {id:46}), (station_14:STATION {id:14}) CREATE UNIQUE (station_46)-[:F91 { line:"D", bus:"F91" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_13:STATION {id:13}) CREATE UNIQUE (station_14)-[:F91 { line:"A", bus:"F91" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_12:STATION {id:12}) CREATE UNIQUE (station_13)-[:F91 { line:"A", bus:"F91" } ]->(station_12)
MATCH (station_12:STATION {id:12}), (station_11:STATION {id:11}) CREATE UNIQUE (station_12)-[:F91 { line:"A", bus:"F91" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_9:STATION {id:9}) CREATE UNIQUE (station_11)-[:F91 { line:"A", bus:"F91" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_8:STATION {id:8}) CREATE UNIQUE (station_9)-[:F91 { line:"A", bus:"F91" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_3:STATION {id:3}) CREATE UNIQUE (station_8)-[:F91 { line:"A", bus:"F91" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_69:STATION {id:69}) CREATE UNIQUE (station_3)-[:F91 { line:"A", bus:"F91" } ]->(station_69)
MATCH (station_69:STATION {id:69}), (station_71:STATION {id:71}) CREATE UNIQUE (station_69)-[:F91 { line:"F", bus:"F91" } ]->(station_71)
MATCH (station_71:STATION {id:71}), (station_72:STATION {id:72}) CREATE UNIQUE (station_71)-[:F91 { line:"F", bus:"F91" } ]->(station_72)
MATCH (station_72:STATION {id:72}), (station_74:STATION {id:74}) CREATE UNIQUE (station_72)-[:F91 { line:"F", bus:"F91" } ]->(station_74)
MATCH (station_74:STATION {id:74}), (station_78:STATION {id:78}) CREATE UNIQUE (station_74)-[:F91 { line:"F", bus:"F91" } ]->(station_78)
MATCH (station_78:STATION {id:78}), (station_82:STATION {id:82}) CREATE UNIQUE (station_78)-[:F91 { line:"F", bus:"F91" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_84:STATION {id:84}) CREATE UNIQUE (station_82)-[:F91 { line:"F", bus:"F91" } ]->(station_84)
MATCH (station_84:STATION {id:84}), (station_86:STATION {id:86}) CREATE UNIQUE (station_84)-[:F91 { line:"F", bus:"F91" } ]->(station_86)
MATCH (station_29:STATION {id:29}), (station_28:STATION {id:28}) CREATE UNIQUE (station_29)-[:G5 { line:"B", bus:"G5" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_27:STATION {id:27}) CREATE UNIQUE (station_28)-[:G5 { line:"B", bus:"G5" } ]->(station_27)
MATCH (station_27:STATION {id:27}), (station_26:STATION {id:26}) CREATE UNIQUE (station_27)-[:G5 { line:"B", bus:"G5" } ]->(station_26)
MATCH (station_26:STATION {id:26}), (station_25:STATION {id:25}) CREATE UNIQUE (station_26)-[:G5 { line:"B", bus:"G5" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_24:STATION {id:24}) CREATE UNIQUE (station_25)-[:G5 { line:"B", bus:"G5" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_23:STATION {id:23}) CREATE UNIQUE (station_24)-[:G5 { line:"B", bus:"G5" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_22:STATION {id:22}) CREATE UNIQUE (station_23)-[:G5 { line:"B", bus:"G5" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_21:STATION {id:21}) CREATE UNIQUE (station_22)-[:G5 { line:"B", bus:"G5" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_20:STATION {id:20}) CREATE UNIQUE (station_21)-[:G5 { line:"B", bus:"G5" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_19:STATION {id:19}) CREATE UNIQUE (station_20)-[:G5 { line:"B", bus:"G5" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_18:STATION {id:18}) CREATE UNIQUE (station_19)-[:G5 { line:"B", bus:"G5" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_17:STATION {id:17}) CREATE UNIQUE (station_18)-[:G5 { line:"B", bus:"G5" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_16:STATION {id:16}) CREATE UNIQUE (station_17)-[:G5 { line:"B", bus:"G5" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_15:STATION {id:15}) CREATE UNIQUE (station_16)-[:G5 { line:"B", bus:"G5" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_45:STATION {id:45}) CREATE UNIQUE (station_15)-[:G5 { line:"B", bus:"G5" } ]->(station_45)
MATCH (station_45:STATION {id:45}), (station_46:STATION {id:46}) CREATE UNIQUE (station_45)-[:G5 { line:"D", bus:"G5" } ]->(station_46)
MATCH (station_46:STATION {id:46}), (station_67:STATION {id:67}) CREATE UNIQUE (station_46)-[:G5 { line:"D", bus:"G5" } ]->(station_67)
MATCH (station_67:STATION {id:67}), (station_66:STATION {id:66}) CREATE UNIQUE (station_67)-[:G5 { line:"E", bus:"G5" } ]->(station_66)
MATCH (station_66:STATION {id:66}), (station_65:STATION {id:65}) CREATE UNIQUE (station_66)-[:G5 { line:"E", bus:"G5" } ]->(station_65)
MATCH (station_65:STATION {id:65}), (station_64:STATION {id:64}) CREATE UNIQUE (station_65)-[:G5 { line:"E", bus:"G5" } ]->(station_64)
MATCH (station_64:STATION {id:64}), (station_63:STATION {id:63}) CREATE UNIQUE (station_64)-[:G5 { line:"E", bus:"G5" } ]->(station_63)
MATCH (station_63:STATION {id:63}), (station_62:STATION {id:62}) CREATE UNIQUE (station_63)-[:G5 { line:"E", bus:"G5" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_61:STATION {id:61}) CREATE UNIQUE (station_62)-[:G5 { line:"E", bus:"G5" } ]->(station_61)
MATCH (station_61:STATION {id:61}), (station_60:STATION {id:60}) CREATE UNIQUE (station_61)-[:G5 { line:"E", bus:"G5" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_59:STATION {id:59}) CREATE UNIQUE (station_60)-[:G5 { line:"E", bus:"G5" } ]->(station_59)
MATCH (station_59:STATION {id:59}), (station_58:STATION {id:58}) CREATE UNIQUE (station_59)-[:G5 { line:"E", bus:"G5" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_87:STATION {id:87}) CREATE UNIQUE (station_58)-[:G5 { line:"E", bus:"G5" } ]->(station_87)
MATCH (station_87:STATION {id:87}), (station_88:STATION {id:88}) CREATE UNIQUE (station_87)-[:G5 { line:"G", bus:"G5" } ]->(station_88)
MATCH (station_88:STATION {id:88}), (station_89:STATION {id:89}) CREATE UNIQUE (station_88)-[:G5 { line:"G", bus:"G5" } ]->(station_89)
MATCH (station_89:STATION {id:89}), (station_90:STATION {id:90}) CREATE UNIQUE (station_89)-[:G5 { line:"G", bus:"G5" } ]->(station_90)
MATCH (station_90:STATION {id:90}), (station_91:STATION {id:91}) CREATE UNIQUE (station_90)-[:G5 { line:"G", bus:"G5" } ]->(station_91)
MATCH (station_91:STATION {id:91}), (station_92:STATION {id:92}) CREATE UNIQUE (station_91)-[:G5 { line:"G", bus:"G5" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_93:STATION {id:93}) CREATE UNIQUE (station_92)-[:G5 { line:"G", bus:"G5" } ]->(station_93)
MATCH (station_93:STATION {id:93}), (station_94:STATION {id:94}) CREATE UNIQUE (station_93)-[:G5 { line:"G", bus:"G5" } ]->(station_94)
MATCH (station_94:STATION {id:94}), (station_95:STATION {id:95}) CREATE UNIQUE (station_94)-[:G5 { line:"G", bus:"G5" } ]->(station_95)
MATCH (station_95:STATION {id:95}), (station_96:STATION {id:96}) CREATE UNIQUE (station_95)-[:G5 { line:"G", bus:"G5" } ]->(station_96)
MATCH (station_96:STATION {id:96}), (station_97:STATION {id:97}) CREATE UNIQUE (station_96)-[:G5 { line:"G", bus:"G5" } ]->(station_97)
MATCH (station_97:STATION {id:97}), (station_98:STATION {id:98}) CREATE UNIQUE (station_97)-[:G5 { line:"G", bus:"G5" } ]->(station_98)
MATCH (station_30:STATION {id:30}), (station_28:STATION {id:28}) CREATE UNIQUE (station_30)-[:G11 { line:"B", bus:"G11" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_26:STATION {id:26}) CREATE UNIQUE (station_28)-[:G11 { line:"B", bus:"G11" } ]->(station_26)
MATCH (station_26:STATION {id:26}), (station_25:STATION {id:25}) CREATE UNIQUE (station_26)-[:G11 { line:"B", bus:"G11" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_20:STATION {id:20}) CREATE UNIQUE (station_25)-[:G11 { line:"B", bus:"G11" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_19:STATION {id:19}) CREATE UNIQUE (station_20)-[:G11 { line:"B", bus:"G11" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_17:STATION {id:17}) CREATE UNIQUE (station_19)-[:G11 { line:"B", bus:"G11" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_16:STATION {id:16}) CREATE UNIQUE (station_17)-[:G11 { line:"B", bus:"G11" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_15:STATION {id:15}) CREATE UNIQUE (station_16)-[:G11 { line:"B", bus:"G11" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_46:STATION {id:46}) CREATE UNIQUE (station_15)-[:G11 { line:"B", bus:"G11" } ]->(station_46)
MATCH (station_46:STATION {id:46}), (station_63:STATION {id:63}) CREATE UNIQUE (station_46)-[:G11 { line:"D", bus:"G11" } ]->(station_63)
MATCH (station_63:STATION {id:63}), (station_62:STATION {id:62}) CREATE UNIQUE (station_63)-[:G11 { line:"E", bus:"G11" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_60:STATION {id:60}) CREATE UNIQUE (station_62)-[:G11 { line:"E", bus:"G11" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_59:STATION {id:59}) CREATE UNIQUE (station_60)-[:G11 { line:"E", bus:"G11" } ]->(station_59)
MATCH (station_59:STATION {id:59}), (station_58:STATION {id:58}) CREATE UNIQUE (station_59)-[:G11 { line:"E", bus:"G11" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_89:STATION {id:89}) CREATE UNIQUE (station_58)-[:G11 { line:"E", bus:"G11" } ]->(station_89)
MATCH (station_89:STATION {id:89}), (station_93:STATION {id:93}) CREATE UNIQUE (station_89)-[:G11 { line:"G", bus:"G11" } ]->(station_93)
MATCH (station_93:STATION {id:93}), (station_94:STATION {id:94}) CREATE UNIQUE (station_93)-[:G11 { line:"G", bus:"G11" } ]->(station_94)
MATCH (station_94:STATION {id:94}), (station_98:STATION {id:98}) CREATE UNIQUE (station_94)-[:G11 { line:"G", bus:"G11" } ]->(station_98)
MATCH (station_29:STATION {id:29}), (station_28:STATION {id:28}) CREATE UNIQUE (station_29)-[:G12 { line:"B", bus:"G12" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_24:STATION {id:24}) CREATE UNIQUE (station_28)-[:G12 { line:"B", bus:"G12" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_22:STATION {id:22}) CREATE UNIQUE (station_24)-[:G12 { line:"B", bus:"G12" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_21:STATION {id:21}) CREATE UNIQUE (station_22)-[:G12 { line:"B", bus:"G12" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_18:STATION {id:18}) CREATE UNIQUE (station_21)-[:G12 { line:"B", bus:"G12" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_68:STATION {id:68}) CREATE UNIQUE (station_18)-[:G12 { line:"B", bus:"G12" } ]->(station_68)
MATCH (station_68:STATION {id:68}), (station_67:STATION {id:67}) CREATE UNIQUE (station_68)-[:G12 { line:"E", bus:"G12" } ]->(station_67)
MATCH (station_67:STATION {id:67}), (station_65:STATION {id:65}) CREATE UNIQUE (station_67)-[:G12 { line:"E", bus:"G12" } ]->(station_65)
MATCH (station_65:STATION {id:65}), (station_62:STATION {id:62}) CREATE UNIQUE (station_65)-[:G12 { line:"E", bus:"G12" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_61:STATION {id:61}) CREATE UNIQUE (station_62)-[:G12 { line:"E", bus:"G12" } ]->(station_61)
MATCH (station_61:STATION {id:61}), (station_58:STATION {id:58}) CREATE UNIQUE (station_61)-[:G12 { line:"E", bus:"G12" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_87:STATION {id:87}) CREATE UNIQUE (station_58)-[:G12 { line:"E", bus:"G12" } ]->(station_87)
MATCH (station_87:STATION {id:87}), (station_88:STATION {id:88}) CREATE UNIQUE (station_87)-[:G12 { line:"G", bus:"G12" } ]->(station_88)
MATCH (station_88:STATION {id:88}), (station_92:STATION {id:92}) CREATE UNIQUE (station_88)-[:G12 { line:"G", bus:"G12" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_96:STATION {id:96}) CREATE UNIQUE (station_92)-[:G12 { line:"G", bus:"G12" } ]->(station_96)
MATCH (station_96:STATION {id:96}), (station_97:STATION {id:97}) CREATE UNIQUE (station_96)-[:G12 { line:"G", bus:"G12" } ]->(station_97)
MATCH (station_97:STATION {id:97}), (station_98:STATION {id:98}) CREATE UNIQUE (station_97)-[:G12 { line:"G", bus:"G12" } ]->(station_98)
MATCH (station_57:STATION {id:57}), (station_53:STATION {id:53}) CREATE UNIQUE (station_57)-[:G22 { line:"D", bus:"G22" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_52:STATION {id:52}) CREATE UNIQUE (station_53)-[:G22 { line:"D", bus:"G22" } ]->(station_52)
MATCH (station_52:STATION {id:52}), (station_49:STATION {id:49}) CREATE UNIQUE (station_52)-[:G22 { line:"D", bus:"G22" } ]->(station_49)
MATCH (station_49:STATION {id:49}), (station_47:STATION {id:47}) CREATE UNIQUE (station_49)-[:G22 { line:"D", bus:"G22" } ]->(station_47)
MATCH (station_47:STATION {id:47}), (station_67:STATION {id:67}) CREATE UNIQUE (station_47)-[:G22 { line:"D", bus:"G22" } ]->(station_67)
MATCH (station_67:STATION {id:67}), (station_66:STATION {id:66}) CREATE UNIQUE (station_67)-[:G22 { line:"E", bus:"G22" } ]->(station_66)
MATCH (station_66:STATION {id:66}), (station_62:STATION {id:62}) CREATE UNIQUE (station_66)-[:G22 { line:"E", bus:"G22" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_61:STATION {id:61}) CREATE UNIQUE (station_62)-[:G22 { line:"E", bus:"G22" } ]->(station_61)
MATCH (station_61:STATION {id:61}), (station_59:STATION {id:59}) CREATE UNIQUE (station_61)-[:G22 { line:"E", bus:"G22" } ]->(station_59)
MATCH (station_59:STATION {id:59}), (station_58:STATION {id:58}) CREATE UNIQUE (station_59)-[:G22 { line:"E", bus:"G22" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_89:STATION {id:89}) CREATE UNIQUE (station_58)-[:G22 { line:"E", bus:"G22" } ]->(station_89)
MATCH (station_89:STATION {id:89}), (station_92:STATION {id:92}) CREATE UNIQUE (station_89)-[:G22 { line:"G", bus:"G22" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_95:STATION {id:95}) CREATE UNIQUE (station_92)-[:G22 { line:"G", bus:"G22" } ]->(station_95)
MATCH (station_95:STATION {id:95}), (station_98:STATION {id:98}) CREATE UNIQUE (station_95)-[:G22 { line:"G", bus:"G22" } ]->(station_98)
MATCH (station_44:STATION {id:44}), (station_43:STATION {id:43}) CREATE UNIQUE (station_44)-[:G30 { line:"C", bus:"G30" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_42:STATION {id:42}) CREATE UNIQUE (station_43)-[:G30 { line:"C", bus:"G30" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_39:STATION {id:39}) CREATE UNIQUE (station_42)-[:G30 { line:"C", bus:"G30" } ]->(station_39)
MATCH (station_39:STATION {id:39}), (station_35:STATION {id:35}) CREATE UNIQUE (station_39)-[:G30 { line:"C", bus:"G30" } ]->(station_35)
MATCH (station_35:STATION {id:35}), (station_33:STATION {id:33}) CREATE UNIQUE (station_35)-[:G30 { line:"C", bus:"G30" } ]->(station_33)
MATCH (station_33:STATION {id:33}), (station_67:STATION {id:67}) CREATE UNIQUE (station_33)-[:G30 { line:"C", bus:"G30" } ]->(station_67)
MATCH (station_67:STATION {id:67}), (station_64:STATION {id:64}) CREATE UNIQUE (station_67)-[:G30 { line:"E", bus:"G30" } ]->(station_64)
MATCH (station_64:STATION {id:64}), (station_62:STATION {id:62}) CREATE UNIQUE (station_64)-[:G30 { line:"E", bus:"G30" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_60:STATION {id:60}) CREATE UNIQUE (station_62)-[:G30 { line:"E", bus:"G30" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_58:STATION {id:58}) CREATE UNIQUE (station_60)-[:G30 { line:"E", bus:"G30" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_88:STATION {id:88}) CREATE UNIQUE (station_58)-[:G30 { line:"E", bus:"G30" } ]->(station_88)
MATCH (station_88:STATION {id:88}), (station_91:STATION {id:91}) CREATE UNIQUE (station_88)-[:G30 { line:"G", bus:"G30" } ]->(station_91)
MATCH (station_91:STATION {id:91}), (station_98:STATION {id:98}) CREATE UNIQUE (station_91)-[:G30 { line:"G", bus:"G30" } ]->(station_98)
MATCH (station_44:STATION {id:44}), (station_43:STATION {id:43}) CREATE UNIQUE (station_44)-[:G31 { line:"C", bus:"G31" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_42:STATION {id:42}) CREATE UNIQUE (station_43)-[:G31 { line:"C", bus:"G31" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_36:STATION {id:36}) CREATE UNIQUE (station_42)-[:G31 { line:"C", bus:"G31" } ]->(station_36)
MATCH (station_36:STATION {id:36}), (station_32:STATION {id:32}) CREATE UNIQUE (station_36)-[:G31 { line:"C", bus:"G31" } ]->(station_32)
MATCH (station_32:STATION {id:32}), (station_31:STATION {id:31}) CREATE UNIQUE (station_32)-[:G31 { line:"C", bus:"G31" } ]->(station_31)
MATCH (station_31:STATION {id:31}), (station_66:STATION {id:66}) CREATE UNIQUE (station_31)-[:G31 { line:"C", bus:"G31" } ]->(station_66)
MATCH (station_66:STATION {id:66}), (station_65:STATION {id:65}) CREATE UNIQUE (station_66)-[:G31 { line:"E", bus:"G31" } ]->(station_65)
MATCH (station_65:STATION {id:65}), (station_63:STATION {id:63}) CREATE UNIQUE (station_65)-[:G31 { line:"E", bus:"G31" } ]->(station_63)
MATCH (station_63:STATION {id:63}), (station_62:STATION {id:62}) CREATE UNIQUE (station_63)-[:G31 { line:"E", bus:"G31" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_58:STATION {id:58}) CREATE UNIQUE (station_62)-[:G31 { line:"E", bus:"G31" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_90:STATION {id:90}) CREATE UNIQUE (station_58)-[:G31 { line:"E", bus:"G31" } ]->(station_90)
MATCH (station_90:STATION {id:90}), (station_92:STATION {id:92}) CREATE UNIQUE (station_90)-[:G31 { line:"G", bus:"G31" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_94:STATION {id:94}) CREATE UNIQUE (station_92)-[:G31 { line:"G", bus:"G31" } ]->(station_94)
MATCH (station_94:STATION {id:94}), (station_98:STATION {id:98}) CREATE UNIQUE (station_94)-[:G31 { line:"G", bus:"G31" } ]->(station_98)
MATCH (station_120:STATION {id:120}), (station_60:STATION {id:60}) CREATE UNIQUE (station_120)-[:G43 { line:"K", bus:"G43" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_58:STATION {id:58}) CREATE UNIQUE (station_60)-[:G43 { line:"E", bus:"G43" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_89:STATION {id:89}) CREATE UNIQUE (station_58)-[:G43 { line:"E", bus:"G43" } ]->(station_89)
MATCH (station_89:STATION {id:89}), (station_92:STATION {id:92}) CREATE UNIQUE (station_89)-[:G43 { line:"G", bus:"G43" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_94:STATION {id:94}) CREATE UNIQUE (station_92)-[:G43 { line:"G", bus:"G43" } ]->(station_94)
MATCH (station_94:STATION {id:94}), (station_141:STATION {id:141}) CREATE UNIQUE (station_94)-[:G43 { line:"G", bus:"G43" } ]->(station_141)
MATCH (station_141:STATION {id:141}), (station_142:STATION {id:142}) CREATE UNIQUE (station_141)-[:G43 { line:"G", bus:"G43" } ]->(station_142)
MATCH (station_142:STATION {id:142}), (station_143:STATION {id:143}) CREATE UNIQUE (station_142)-[:G43 { line:"G", bus:"G43" } ]->(station_143)
MATCH (station_143:STATION {id:143}), (station_144:STATION {id:144}) CREATE UNIQUE (station_143)-[:G43 { line:"G", bus:"G43" } ]->(station_144)
MATCH (station_65:STATION {id:65}), (station_62:STATION {id:62}) CREATE UNIQUE (station_65)-[:G44 { line:"E", bus:"G44" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_59:STATION {id:59}) CREATE UNIQUE (station_62)-[:G44 { line:"E", bus:"G44" } ]->(station_59)
MATCH (station_59:STATION {id:59}), (station_58:STATION {id:58}) CREATE UNIQUE (station_59)-[:G44 { line:"E", bus:"G44" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_87:STATION {id:87}) CREATE UNIQUE (station_58)-[:G44 { line:"E", bus:"G44" } ]->(station_87)
MATCH (station_87:STATION {id:87}), (station_88:STATION {id:88}) CREATE UNIQUE (station_87)-[:G44 { line:"G", bus:"G44" } ]->(station_88)
MATCH (station_88:STATION {id:88}), (station_143:STATION {id:143}) CREATE UNIQUE (station_88)-[:G44 { line:"G", bus:"G44" } ]->(station_143)
MATCH (station_143:STATION {id:143}), (station_144:STATION {id:144}) CREATE UNIQUE (station_143)-[:G44 { line:"G", bus:"G44" } ]->(station_144)
MATCH (station_12:STATION {id:12}), (station_13:STATION {id:13}) CREATE UNIQUE (station_12)-[:G52 { line:"A", bus:"G52" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_14:STATION {id:14}) CREATE UNIQUE (station_13)-[:G52 { line:"A", bus:"G52" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_67:STATION {id:67}) CREATE UNIQUE (station_14)-[:G52 { line:"A", bus:"G52" } ]->(station_67)
MATCH (station_67:STATION {id:67}), (station_88:STATION {id:88}) CREATE UNIQUE (station_67)-[:G52 { line:"E", bus:"G52" } ]->(station_88)
MATCH (station_88:STATION {id:88}), (station_90:STATION {id:90}) CREATE UNIQUE (station_88)-[:G52 { line:"G", bus:"G52" } ]->(station_90)
MATCH (station_90:STATION {id:90}), (station_92:STATION {id:92}) CREATE UNIQUE (station_90)-[:G52 { line:"G", bus:"G52" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_94:STATION {id:94}) CREATE UNIQUE (station_92)-[:G52 { line:"G", bus:"G52" } ]->(station_94)
MATCH (station_94:STATION {id:94}), (station_97:STATION {id:97}) CREATE UNIQUE (station_94)-[:G52 { line:"G", bus:"G52" } ]->(station_97)
MATCH (station_97:STATION {id:97}), (station_98:STATION {id:98}) CREATE UNIQUE (station_97)-[:G52 { line:"G", bus:"G52" } ]->(station_98)
MATCH (station_29:STATION {id:29}), (station_26:STATION {id:26}) CREATE UNIQUE (station_29)-[:G61 { line:"B", bus:"G61" } ]->(station_26)
MATCH (station_26:STATION {id:26}), (station_25:STATION {id:25}) CREATE UNIQUE (station_26)-[:G61 { line:"B", bus:"G61" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_24:STATION {id:24}) CREATE UNIQUE (station_25)-[:G61 { line:"B", bus:"G61" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_20:STATION {id:20}) CREATE UNIQUE (station_24)-[:G61 { line:"B", bus:"G61" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_19:STATION {id:19}) CREATE UNIQUE (station_20)-[:G61 { line:"B", bus:"G61" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_17:STATION {id:17}) CREATE UNIQUE (station_19)-[:G61 { line:"B", bus:"G61" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_15:STATION {id:15}) CREATE UNIQUE (station_17)-[:G61 { line:"B", bus:"G61" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_92:STATION {id:92}) CREATE UNIQUE (station_15)-[:G61 { line:"B", bus:"G61" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_96:STATION {id:96}) CREATE UNIQUE (station_92)-[:G61 { line:"G", bus:"G61" } ]->(station_96)
MATCH (station_96:STATION {id:96}), (station_97:STATION {id:97}) CREATE UNIQUE (station_96)-[:G61 { line:"G", bus:"G61" } ]->(station_97)
MATCH (station_97:STATION {id:97}), (station_98:STATION {id:98}) CREATE UNIQUE (station_97)-[:G61 { line:"G", bus:"G61" } ]->(station_98)
MATCH (station_44:STATION {id:44}), (station_43:STATION {id:43}) CREATE UNIQUE (station_44)-[:G71 { line:"C", bus:"G71" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_42:STATION {id:42}) CREATE UNIQUE (station_43)-[:G71 { line:"C", bus:"G71" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_39:STATION {id:39}) CREATE UNIQUE (station_42)-[:G71 { line:"C", bus:"G71" } ]->(station_39)
MATCH (station_39:STATION {id:39}), (station_36:STATION {id:36}) CREATE UNIQUE (station_39)-[:G71 { line:"C", bus:"G71" } ]->(station_36)
MATCH (station_36:STATION {id:36}), (station_35:STATION {id:35}) CREATE UNIQUE (station_36)-[:G71 { line:"C", bus:"G71" } ]->(station_35)
MATCH (station_35:STATION {id:35}), (station_33:STATION {id:33}) CREATE UNIQUE (station_35)-[:G71 { line:"C", bus:"G71" } ]->(station_33)
MATCH (station_33:STATION {id:33}), (station_32:STATION {id:32}) CREATE UNIQUE (station_33)-[:G71 { line:"C", bus:"G71" } ]->(station_32)
MATCH (station_32:STATION {id:32}), (station_31:STATION {id:31}) CREATE UNIQUE (station_32)-[:G71 { line:"C", bus:"G71" } ]->(station_31)
MATCH (station_31:STATION {id:31}), (station_67:STATION {id:67}) CREATE UNIQUE (station_31)-[:G71 { line:"C", bus:"G71" } ]->(station_67)
MATCH (station_67:STATION {id:67}), (station_66:STATION {id:66}) CREATE UNIQUE (station_67)-[:G71 { line:"E", bus:"G71" } ]->(station_66)
MATCH (station_66:STATION {id:66}), (station_65:STATION {id:65}) CREATE UNIQUE (station_66)-[:G71 { line:"E", bus:"G71" } ]->(station_65)
MATCH (station_65:STATION {id:65}), (station_64:STATION {id:64}) CREATE UNIQUE (station_65)-[:G71 { line:"E", bus:"G71" } ]->(station_64)
MATCH (station_64:STATION {id:64}), (station_63:STATION {id:63}) CREATE UNIQUE (station_64)-[:G71 { line:"E", bus:"G71" } ]->(station_63)
MATCH (station_63:STATION {id:63}), (station_62:STATION {id:62}) CREATE UNIQUE (station_63)-[:G71 { line:"E", bus:"G71" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_60:STATION {id:60}) CREATE UNIQUE (station_62)-[:G71 { line:"E", bus:"G71" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_58:STATION {id:58}) CREATE UNIQUE (station_60)-[:G71 { line:"E", bus:"G71" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_88:STATION {id:88}) CREATE UNIQUE (station_58)-[:G71 { line:"E", bus:"G71" } ]->(station_88)
MATCH (station_30:STATION {id:30}), (station_29:STATION {id:29}) CREATE UNIQUE (station_30)-[:G90 { line:"B", bus:"G90" } ]->(station_29)
MATCH (station_29:STATION {id:29}), (station_25:STATION {id:25}) CREATE UNIQUE (station_29)-[:G90 { line:"B", bus:"G90" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_23:STATION {id:23}) CREATE UNIQUE (station_25)-[:G90 { line:"B", bus:"G90" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_22:STATION {id:22}) CREATE UNIQUE (station_23)-[:G90 { line:"B", bus:"G90" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_18:STATION {id:18}) CREATE UNIQUE (station_22)-[:G90 { line:"B", bus:"G90" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_68:STATION {id:68}) CREATE UNIQUE (station_18)-[:G90 { line:"B", bus:"G90" } ]->(station_68)
MATCH (station_68:STATION {id:68}), (station_67:STATION {id:67}) CREATE UNIQUE (station_68)-[:G90 { line:"E", bus:"G90" } ]->(station_67)
MATCH (station_67:STATION {id:67}), (station_63:STATION {id:63}) CREATE UNIQUE (station_67)-[:G90 { line:"E", bus:"G90" } ]->(station_63)
MATCH (station_63:STATION {id:63}), (station_61:STATION {id:61}) CREATE UNIQUE (station_63)-[:G90 { line:"E", bus:"G90" } ]->(station_61)
MATCH (station_61:STATION {id:61}), (station_60:STATION {id:60}) CREATE UNIQUE (station_61)-[:G90 { line:"E", bus:"G90" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_58:STATION {id:58}) CREATE UNIQUE (station_60)-[:G90 { line:"E", bus:"G90" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_88:STATION {id:88}) CREATE UNIQUE (station_58)-[:G90 { line:"E", bus:"G90" } ]->(station_88)
MATCH (station_88:STATION {id:88}), (station_89:STATION {id:89}) CREATE UNIQUE (station_88)-[:G90 { line:"G", bus:"G90" } ]->(station_89)
MATCH (station_89:STATION {id:89}), (station_92:STATION {id:92}) CREATE UNIQUE (station_89)-[:G90 { line:"G", bus:"G90" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_93:STATION {id:93}) CREATE UNIQUE (station_92)-[:G90 { line:"G", bus:"G90" } ]->(station_93)
MATCH (station_93:STATION {id:93}), (station_94:STATION {id:94}) CREATE UNIQUE (station_93)-[:G90 { line:"G", bus:"G90" } ]->(station_94)
MATCH (station_94:STATION {id:94}), (station_98:STATION {id:98}) CREATE UNIQUE (station_94)-[:G90 { line:"G", bus:"G90" } ]->(station_98)
MATCH (station_44:STATION {id:44}), (station_42:STATION {id:42}) CREATE UNIQUE (station_44)-[:G96 { line:"C", bus:"G96" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_39:STATION {id:39}) CREATE UNIQUE (station_42)-[:G96 { line:"C", bus:"G96" } ]->(station_39)
MATCH (station_39:STATION {id:39}), (station_38:STATION {id:38}) CREATE UNIQUE (station_39)-[:G96 { line:"C", bus:"G96" } ]->(station_38)
MATCH (station_38:STATION {id:38}), (station_36:STATION {id:36}) CREATE UNIQUE (station_38)-[:G96 { line:"C", bus:"G96" } ]->(station_36)
MATCH (station_36:STATION {id:36}), (station_35:STATION {id:35}) CREATE UNIQUE (station_36)-[:G96 { line:"C", bus:"G96" } ]->(station_35)
MATCH (station_35:STATION {id:35}), (station_34:STATION {id:34}) CREATE UNIQUE (station_35)-[:G96 { line:"C", bus:"G96" } ]->(station_34)
MATCH (station_34:STATION {id:34}), (station_66:STATION {id:66}) CREATE UNIQUE (station_34)-[:G96 { line:"C", bus:"G96" } ]->(station_66)
MATCH (station_66:STATION {id:66}), (station_64:STATION {id:64}) CREATE UNIQUE (station_66)-[:G96 { line:"E", bus:"G96" } ]->(station_64)
MATCH (station_64:STATION {id:64}), (station_63:STATION {id:63}) CREATE UNIQUE (station_64)-[:G96 { line:"E", bus:"G96" } ]->(station_63)
MATCH (station_63:STATION {id:63}), (station_60:STATION {id:60}) CREATE UNIQUE (station_63)-[:G96 { line:"E", bus:"G96" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_58:STATION {id:58}) CREATE UNIQUE (station_60)-[:G96 { line:"E", bus:"G96" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_87:STATION {id:87}) CREATE UNIQUE (station_58)-[:G96 { line:"E", bus:"G96" } ]->(station_87)
MATCH (station_87:STATION {id:87}), (station_88:STATION {id:88}) CREATE UNIQUE (station_87)-[:G96 { line:"G", bus:"G96" } ]->(station_88)
MATCH (station_88:STATION {id:88}), (station_89:STATION {id:89}) CREATE UNIQUE (station_88)-[:G96 { line:"G", bus:"G96" } ]->(station_89)
MATCH (station_89:STATION {id:89}), (station_91:STATION {id:91}) CREATE UNIQUE (station_89)-[:G96 { line:"G", bus:"G96" } ]->(station_91)
MATCH (station_91:STATION {id:91}), (station_94:STATION {id:94}) CREATE UNIQUE (station_91)-[:G96 { line:"G", bus:"G96" } ]->(station_94)
MATCH (station_94:STATION {id:94}), (station_97:STATION {id:97}) CREATE UNIQUE (station_94)-[:G96 { line:"G", bus:"G96" } ]->(station_97)
MATCH (station_97:STATION {id:97}), (station_98:STATION {id:98}) CREATE UNIQUE (station_97)-[:G96 { line:"G", bus:"G96" } ]->(station_98)
MATCH (station_120:STATION {id:120}), (station_60:STATION {id:60}) CREATE UNIQUE (station_120)-[:G98 { line:"K", bus:"G98" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_58:STATION {id:58}) CREATE UNIQUE (station_60)-[:G98 { line:"E", bus:"G98" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_89:STATION {id:89}) CREATE UNIQUE (station_58)-[:G98 { line:"E", bus:"G98" } ]->(station_89)
MATCH (station_89:STATION {id:89}), (station_92:STATION {id:92}) CREATE UNIQUE (station_89)-[:G98 { line:"G", bus:"G98" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_94:STATION {id:94}) CREATE UNIQUE (station_92)-[:G98 { line:"G", bus:"G98" } ]->(station_94)
MATCH (station_94:STATION {id:94}), (station_141:STATION {id:141}) CREATE UNIQUE (station_94)-[:G98 { line:"G", bus:"G98" } ]->(station_141)
MATCH (station_141:STATION {id:141}), (station_142:STATION {id:142}) CREATE UNIQUE (station_141)-[:G98 { line:"G", bus:"G98" } ]->(station_142)
MATCH (station_142:STATION {id:142}), (station_143:STATION {id:143}) CREATE UNIQUE (station_142)-[:G98 { line:"G", bus:"G98" } ]->(station_143)
MATCH (station_143:STATION {id:143}), (station_144:STATION {id:144}) CREATE UNIQUE (station_143)-[:G98 { line:"G", bus:"G98" } ]->(station_144)
MATCH (station_57:STATION {id:57}), (station_56:STATION {id:56}) CREATE UNIQUE (station_57)-[:H3 { line:"D", bus:"H3" } ]->(station_56)
MATCH (station_56:STATION {id:56}), (station_55:STATION {id:55}) CREATE UNIQUE (station_56)-[:H3 { line:"D", bus:"H3" } ]->(station_55)
MATCH (station_55:STATION {id:55}), (station_54:STATION {id:54}) CREATE UNIQUE (station_55)-[:H3 { line:"D", bus:"H3" } ]->(station_54)
MATCH (station_54:STATION {id:54}), (station_53:STATION {id:53}) CREATE UNIQUE (station_54)-[:H3 { line:"D", bus:"H3" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_52:STATION {id:52}) CREATE UNIQUE (station_53)-[:H3 { line:"D", bus:"H3" } ]->(station_52)
MATCH (station_52:STATION {id:52}), (station_51:STATION {id:51}) CREATE UNIQUE (station_52)-[:H3 { line:"D", bus:"H3" } ]->(station_51)
MATCH (station_51:STATION {id:51}), (station_50:STATION {id:50}) CREATE UNIQUE (station_51)-[:H3 { line:"D", bus:"H3" } ]->(station_50)
MATCH (station_50:STATION {id:50}), (station_49:STATION {id:49}) CREATE UNIQUE (station_50)-[:H3 { line:"D", bus:"H3" } ]->(station_49)
MATCH (station_49:STATION {id:49}), (station_48:STATION {id:48}) CREATE UNIQUE (station_49)-[:H3 { line:"D", bus:"H3" } ]->(station_48)
MATCH (station_48:STATION {id:48}), (station_47:STATION {id:47}) CREATE UNIQUE (station_48)-[:H3 { line:"D", bus:"H3" } ]->(station_47)
MATCH (station_47:STATION {id:47}), (station_46:STATION {id:46}) CREATE UNIQUE (station_47)-[:H3 { line:"D", bus:"H3" } ]->(station_46)
MATCH (station_46:STATION {id:46}), (station_45:STATION {id:45}) CREATE UNIQUE (station_46)-[:H3 { line:"D", bus:"H3" } ]->(station_45)
MATCH (station_45:STATION {id:45}), (station_14:STATION {id:14}) CREATE UNIQUE (station_45)-[:H3 { line:"D", bus:"H3" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_13:STATION {id:13}) CREATE UNIQUE (station_14)-[:H3 { line:"A", bus:"H3" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_12:STATION {id:12}) CREATE UNIQUE (station_13)-[:H3 { line:"A", bus:"H3" } ]->(station_12)
MATCH (station_12:STATION {id:12}), (station_11:STATION {id:11}) CREATE UNIQUE (station_12)-[:H3 { line:"A", bus:"H3" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_10:STATION {id:10}) CREATE UNIQUE (station_11)-[:H3 { line:"A", bus:"H3" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_9:STATION {id:9}) CREATE UNIQUE (station_10)-[:H3 { line:"A", bus:"H3" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_8:STATION {id:8}) CREATE UNIQUE (station_9)-[:H3 { line:"A", bus:"H3" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_7:STATION {id:7}) CREATE UNIQUE (station_8)-[:H3 { line:"A", bus:"H3" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_6:STATION {id:6}) CREATE UNIQUE (station_7)-[:H3 { line:"A", bus:"H3" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_5:STATION {id:5}) CREATE UNIQUE (station_6)-[:H3 { line:"A", bus:"H3" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_4:STATION {id:4}) CREATE UNIQUE (station_5)-[:H3 { line:"A", bus:"H3" } ]->(station_4)
MATCH (station_4:STATION {id:4}), (station_3:STATION {id:3}) CREATE UNIQUE (station_4)-[:H3 { line:"A", bus:"H3" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_2:STATION {id:2}) CREATE UNIQUE (station_3)-[:H3 { line:"A", bus:"H3" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_1:STATION {id:1}) CREATE UNIQUE (station_2)-[:H3 { line:"A", bus:"H3" } ]->(station_1)
MATCH (station_1:STATION {id:1}), (station_99:STATION {id:99}) CREATE UNIQUE (station_1)-[:H3 { line:"A", bus:"H3" } ]->(station_99)
MATCH (station_99:STATION {id:99}), (station_100:STATION {id:100}) CREATE UNIQUE (station_99)-[:H3 { line:"H", bus:"H3" } ]->(station_100)
MATCH (station_100:STATION {id:100}), (station_101:STATION {id:101}) CREATE UNIQUE (station_100)-[:H3 { line:"H", bus:"H3" } ]->(station_101)
MATCH (station_101:STATION {id:101}), (station_102:STATION {id:102}) CREATE UNIQUE (station_101)-[:H3 { line:"H", bus:"H3" } ]->(station_102)
MATCH (station_102:STATION {id:102}), (station_103:STATION {id:103}) CREATE UNIQUE (station_102)-[:H3 { line:"H", bus:"H3" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_104:STATION {id:104}) CREATE UNIQUE (station_103)-[:H3 { line:"H", bus:"H3" } ]->(station_104)
MATCH (station_104:STATION {id:104}), (station_105:STATION {id:105}) CREATE UNIQUE (station_104)-[:H3 { line:"H", bus:"H3" } ]->(station_105)
MATCH (station_105:STATION {id:105}), (station_106:STATION {id:106}) CREATE UNIQUE (station_105)-[:H3 { line:"H", bus:"H3" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_107:STATION {id:107}) CREATE UNIQUE (station_106)-[:H3 { line:"H", bus:"H3" } ]->(station_107)
MATCH (station_107:STATION {id:107}), (station_112:STATION {id:112}) CREATE UNIQUE (station_107)-[:H3 { line:"H", bus:"H3" } ]->(station_112)
MATCH (station_112:STATION {id:112}), (station_113:STATION {id:113}) CREATE UNIQUE (station_112)-[:H3 { line:"H", bus:"H3" } ]->(station_113)
MATCH (station_113:STATION {id:113}), (station_114:STATION {id:114}) CREATE UNIQUE (station_113)-[:H3 { line:"H", bus:"H3" } ]->(station_114)
MATCH (station_44:STATION {id:44}), (station_43:STATION {id:43}) CREATE UNIQUE (station_44)-[:H4 { line:"C", bus:"H4" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_42:STATION {id:42}) CREATE UNIQUE (station_43)-[:H4 { line:"C", bus:"H4" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_41:STATION {id:41}) CREATE UNIQUE (station_42)-[:H4 { line:"C", bus:"H4" } ]->(station_41)
MATCH (station_41:STATION {id:41}), (station_40:STATION {id:40}) CREATE UNIQUE (station_41)-[:H4 { line:"C", bus:"H4" } ]->(station_40)
MATCH (station_40:STATION {id:40}), (station_39:STATION {id:39}) CREATE UNIQUE (station_40)-[:H4 { line:"C", bus:"H4" } ]->(station_39)
MATCH (station_39:STATION {id:39}), (station_38:STATION {id:38}) CREATE UNIQUE (station_39)-[:H4 { line:"C", bus:"H4" } ]->(station_38)
MATCH (station_38:STATION {id:38}), (station_37:STATION {id:37}) CREATE UNIQUE (station_38)-[:H4 { line:"C", bus:"H4" } ]->(station_37)
MATCH (station_37:STATION {id:37}), (station_36:STATION {id:36}) CREATE UNIQUE (station_37)-[:H4 { line:"C", bus:"H4" } ]->(station_36)
MATCH (station_36:STATION {id:36}), (station_35:STATION {id:35}) CREATE UNIQUE (station_36)-[:H4 { line:"C", bus:"H4" } ]->(station_35)
MATCH (station_35:STATION {id:35}), (station_34:STATION {id:34}) CREATE UNIQUE (station_35)-[:H4 { line:"C", bus:"H4" } ]->(station_34)
MATCH (station_34:STATION {id:34}), (station_33:STATION {id:33}) CREATE UNIQUE (station_34)-[:H4 { line:"C", bus:"H4" } ]->(station_33)
MATCH (station_33:STATION {id:33}), (station_32:STATION {id:32}) CREATE UNIQUE (station_33)-[:H4 { line:"C", bus:"H4" } ]->(station_32)
MATCH (station_32:STATION {id:32}), (station_31:STATION {id:31}) CREATE UNIQUE (station_32)-[:H4 { line:"C", bus:"H4" } ]->(station_31)
MATCH (station_31:STATION {id:31}), (station_46:STATION {id:46}) CREATE UNIQUE (station_31)-[:H4 { line:"C", bus:"H4" } ]->(station_46)
MATCH (station_46:STATION {id:46}), (station_45:STATION {id:45}) CREATE UNIQUE (station_46)-[:H4 { line:"D", bus:"H4" } ]->(station_45)
MATCH (station_45:STATION {id:45}), (station_14:STATION {id:14}) CREATE UNIQUE (station_45)-[:H4 { line:"D", bus:"H4" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_13:STATION {id:13}) CREATE UNIQUE (station_14)-[:H4 { line:"A", bus:"H4" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_12:STATION {id:12}) CREATE UNIQUE (station_13)-[:H4 { line:"A", bus:"H4" } ]->(station_12)
MATCH (station_12:STATION {id:12}), (station_11:STATION {id:11}) CREATE UNIQUE (station_12)-[:H4 { line:"A", bus:"H4" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_10:STATION {id:10}) CREATE UNIQUE (station_11)-[:H4 { line:"A", bus:"H4" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_9:STATION {id:9}) CREATE UNIQUE (station_10)-[:H4 { line:"A", bus:"H4" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_8:STATION {id:8}) CREATE UNIQUE (station_9)-[:H4 { line:"A", bus:"H4" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_7:STATION {id:7}) CREATE UNIQUE (station_8)-[:H4 { line:"A", bus:"H4" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_6:STATION {id:6}) CREATE UNIQUE (station_7)-[:H4 { line:"A", bus:"H4" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_5:STATION {id:5}) CREATE UNIQUE (station_6)-[:H4 { line:"A", bus:"H4" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_4:STATION {id:4}) CREATE UNIQUE (station_5)-[:H4 { line:"A", bus:"H4" } ]->(station_4)
MATCH (station_4:STATION {id:4}), (station_3:STATION {id:3}) CREATE UNIQUE (station_4)-[:H4 { line:"A", bus:"H4" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_2:STATION {id:2}) CREATE UNIQUE (station_3)-[:H4 { line:"A", bus:"H4" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_1:STATION {id:1}) CREATE UNIQUE (station_2)-[:H4 { line:"A", bus:"H4" } ]->(station_1)
MATCH (station_1:STATION {id:1}), (station_99:STATION {id:99}) CREATE UNIQUE (station_1)-[:H4 { line:"A", bus:"H4" } ]->(station_99)
MATCH (station_99:STATION {id:99}), (station_100:STATION {id:100}) CREATE UNIQUE (station_99)-[:H4 { line:"H", bus:"H4" } ]->(station_100)
MATCH (station_100:STATION {id:100}), (station_101:STATION {id:101}) CREATE UNIQUE (station_100)-[:H4 { line:"H", bus:"H4" } ]->(station_101)
MATCH (station_101:STATION {id:101}), (station_102:STATION {id:102}) CREATE UNIQUE (station_101)-[:H4 { line:"H", bus:"H4" } ]->(station_102)
MATCH (station_102:STATION {id:102}), (station_103:STATION {id:103}) CREATE UNIQUE (station_102)-[:H4 { line:"H", bus:"H4" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_104:STATION {id:104}) CREATE UNIQUE (station_103)-[:H4 { line:"H", bus:"H4" } ]->(station_104)
MATCH (station_104:STATION {id:104}), (station_105:STATION {id:105}) CREATE UNIQUE (station_104)-[:H4 { line:"H", bus:"H4" } ]->(station_105)
MATCH (station_105:STATION {id:105}), (station_106:STATION {id:106}) CREATE UNIQUE (station_105)-[:H4 { line:"H", bus:"H4" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_107:STATION {id:107}) CREATE UNIQUE (station_106)-[:H4 { line:"H", bus:"H4" } ]->(station_107)
MATCH (station_107:STATION {id:107}), (station_108:STATION {id:108}) CREATE UNIQUE (station_107)-[:H4 { line:"H", bus:"H4" } ]->(station_108)
MATCH (station_108:STATION {id:108}), (station_109:STATION {id:109}) CREATE UNIQUE (station_108)-[:H4 { line:"H", bus:"H4" } ]->(station_109)
MATCH (station_109:STATION {id:109}), (station_110:STATION {id:110}) CREATE UNIQUE (station_109)-[:H4 { line:"H", bus:"H4" } ]->(station_110)
MATCH (station_110:STATION {id:110}), (station_111:STATION {id:111}) CREATE UNIQUE (station_110)-[:H4 { line:"H", bus:"H4" } ]->(station_111)
MATCH (station_29:STATION {id:29}), (station_27:STATION {id:27}) CREATE UNIQUE (station_29)-[:H13 { line:"B", bus:"H13" } ]->(station_27)
MATCH (station_27:STATION {id:27}), (station_26:STATION {id:26}) CREATE UNIQUE (station_27)-[:H13 { line:"B", bus:"H13" } ]->(station_26)
MATCH (station_26:STATION {id:26}), (station_24:STATION {id:24}) CREATE UNIQUE (station_26)-[:H13 { line:"B", bus:"H13" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_19:STATION {id:19}) CREATE UNIQUE (station_24)-[:H13 { line:"B", bus:"H13" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_18:STATION {id:18}) CREATE UNIQUE (station_19)-[:H13 { line:"B", bus:"H13" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_16:STATION {id:16}) CREATE UNIQUE (station_18)-[:H13 { line:"B", bus:"H13" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_12:STATION {id:12}) CREATE UNIQUE (station_16)-[:H13 { line:"B", bus:"H13" } ]->(station_12)
MATCH (station_12:STATION {id:12}), (station_11:STATION {id:11}) CREATE UNIQUE (station_12)-[:H13 { line:"A", bus:"H13" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_4:STATION {id:4}) CREATE UNIQUE (station_11)-[:H13 { line:"A", bus:"H13" } ]->(station_4)
MATCH (station_4:STATION {id:4}), (station_1:STATION {id:1}) CREATE UNIQUE (station_4)-[:H13 { line:"A", bus:"H13" } ]->(station_1)
MATCH (station_1:STATION {id:1}), (station_100:STATION {id:100}) CREATE UNIQUE (station_1)-[:H13 { line:"A", bus:"H13" } ]->(station_100)
MATCH (station_100:STATION {id:100}), (station_103:STATION {id:103}) CREATE UNIQUE (station_100)-[:H13 { line:"H", bus:"H13" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_104:STATION {id:104}) CREATE UNIQUE (station_103)-[:H13 { line:"H", bus:"H13" } ]->(station_104)
MATCH (station_104:STATION {id:104}), (station_105:STATION {id:105}) CREATE UNIQUE (station_104)-[:H13 { line:"H", bus:"H13" } ]->(station_105)
MATCH (station_105:STATION {id:105}), (station_106:STATION {id:106}) CREATE UNIQUE (station_105)-[:H13 { line:"H", bus:"H13" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_114:STATION {id:114}) CREATE UNIQUE (station_106)-[:H13 { line:"H", bus:"H13" } ]->(station_114)
MATCH (station_44:STATION {id:44}), (station_41:STATION {id:41}) CREATE UNIQUE (station_44)-[:H15 { line:"C", bus:"H15" } ]->(station_41)
MATCH (station_41:STATION {id:41}), (station_38:STATION {id:38}) CREATE UNIQUE (station_41)-[:H15 { line:"C", bus:"H15" } ]->(station_38)
MATCH (station_38:STATION {id:38}), (station_37:STATION {id:37}) CREATE UNIQUE (station_38)-[:H15 { line:"C", bus:"H15" } ]->(station_37)
MATCH (station_37:STATION {id:37}), (station_35:STATION {id:35}) CREATE UNIQUE (station_37)-[:H15 { line:"C", bus:"H15" } ]->(station_35)
MATCH (station_35:STATION {id:35}), (station_46:STATION {id:46}) CREATE UNIQUE (station_35)-[:H15 { line:"C", bus:"H15" } ]->(station_46)
MATCH (station_46:STATION {id:46}), (station_14:STATION {id:14}) CREATE UNIQUE (station_46)-[:H15 { line:"D", bus:"H15" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_9:STATION {id:9}) CREATE UNIQUE (station_14)-[:H15 { line:"A", bus:"H15" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_8:STATION {id:8}) CREATE UNIQUE (station_9)-[:H15 { line:"A", bus:"H15" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_7:STATION {id:7}) CREATE UNIQUE (station_8)-[:H15 { line:"A", bus:"H15" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_4:STATION {id:4}) CREATE UNIQUE (station_7)-[:H15 { line:"A", bus:"H15" } ]->(station_4)
MATCH (station_4:STATION {id:4}), (station_3:STATION {id:3}) CREATE UNIQUE (station_4)-[:H15 { line:"A", bus:"H15" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_2:STATION {id:2}) CREATE UNIQUE (station_3)-[:H15 { line:"A", bus:"H15" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_1:STATION {id:1}) CREATE UNIQUE (station_2)-[:H15 { line:"A", bus:"H15" } ]->(station_1)
MATCH (station_1:STATION {id:1}), (station_101:STATION {id:101}) CREATE UNIQUE (station_1)-[:H15 { line:"A", bus:"H15" } ]->(station_101)
MATCH (station_101:STATION {id:101}), (station_104:STATION {id:104}) CREATE UNIQUE (station_101)-[:H15 { line:"H", bus:"H15" } ]->(station_104)
MATCH (station_104:STATION {id:104}), (station_106:STATION {id:106}) CREATE UNIQUE (station_104)-[:H15 { line:"H", bus:"H15" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_112:STATION {id:112}) CREATE UNIQUE (station_106)-[:H15 { line:"H", bus:"H15" } ]->(station_112)
MATCH (station_112:STATION {id:112}), (station_114:STATION {id:114}) CREATE UNIQUE (station_112)-[:H15 { line:"H", bus:"H15" } ]->(station_114)
MATCH (station_44:STATION {id:44}), (station_43:STATION {id:43}) CREATE UNIQUE (station_44)-[:H17 { line:"C", bus:"H17" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_39:STATION {id:39}) CREATE UNIQUE (station_43)-[:H17 { line:"C", bus:"H17" } ]->(station_39)
MATCH (station_39:STATION {id:39}), (station_36:STATION {id:36}) CREATE UNIQUE (station_39)-[:H17 { line:"C", bus:"H17" } ]->(station_36)
MATCH (station_36:STATION {id:36}), (station_35:STATION {id:35}) CREATE UNIQUE (station_36)-[:H17 { line:"C", bus:"H17" } ]->(station_35)
MATCH (station_35:STATION {id:35}), (station_31:STATION {id:31}) CREATE UNIQUE (station_35)-[:H17 { line:"C", bus:"H17" } ]->(station_31)
MATCH (station_31:STATION {id:31}), (station_45:STATION {id:45}) CREATE UNIQUE (station_31)-[:H17 { line:"C", bus:"H17" } ]->(station_45)
MATCH (station_45:STATION {id:45}), (station_14:STATION {id:14}) CREATE UNIQUE (station_45)-[:H17 { line:"D", bus:"H17" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_13:STATION {id:13}) CREATE UNIQUE (station_14)-[:H17 { line:"A", bus:"H17" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_12:STATION {id:12}) CREATE UNIQUE (station_13)-[:H17 { line:"A", bus:"H17" } ]->(station_12)
MATCH (station_12:STATION {id:12}), (station_10:STATION {id:10}) CREATE UNIQUE (station_12)-[:H17 { line:"A", bus:"H17" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_9:STATION {id:9}) CREATE UNIQUE (station_10)-[:H17 { line:"A", bus:"H17" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_2:STATION {id:2}) CREATE UNIQUE (station_9)-[:H17 { line:"A", bus:"H17" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_99:STATION {id:99}) CREATE UNIQUE (station_2)-[:H17 { line:"A", bus:"H17" } ]->(station_99)
MATCH (station_99:STATION {id:99}), (station_100:STATION {id:100}) CREATE UNIQUE (station_99)-[:H17 { line:"H", bus:"H17" } ]->(station_100)
MATCH (station_100:STATION {id:100}), (station_103:STATION {id:103}) CREATE UNIQUE (station_100)-[:H17 { line:"H", bus:"H17" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_106:STATION {id:106}) CREATE UNIQUE (station_103)-[:H17 { line:"H", bus:"H17" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_107:STATION {id:107}) CREATE UNIQUE (station_106)-[:H17 { line:"H", bus:"H17" } ]->(station_107)
MATCH (station_107:STATION {id:107}), (station_108:STATION {id:108}) CREATE UNIQUE (station_107)-[:H17 { line:"H", bus:"H17" } ]->(station_108)
MATCH (station_108:STATION {id:108}), (station_109:STATION {id:109}) CREATE UNIQUE (station_108)-[:H17 { line:"H", bus:"H17" } ]->(station_109)
MATCH (station_109:STATION {id:109}), (station_110:STATION {id:110}) CREATE UNIQUE (station_109)-[:H17 { line:"H", bus:"H17" } ]->(station_110)
MATCH (station_110:STATION {id:110}), (station_111:STATION {id:111}) CREATE UNIQUE (station_110)-[:H17 { line:"H", bus:"H17" } ]->(station_111)
MATCH (station_57:STATION {id:57}), (station_54:STATION {id:54}) CREATE UNIQUE (station_57)-[:H20 { line:"D", bus:"H20" } ]->(station_54)
MATCH (station_54:STATION {id:54}), (station_53:STATION {id:53}) CREATE UNIQUE (station_54)-[:H20 { line:"D", bus:"H20" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_51:STATION {id:51}) CREATE UNIQUE (station_53)-[:H20 { line:"D", bus:"H20" } ]->(station_51)
MATCH (station_51:STATION {id:51}), (station_50:STATION {id:50}) CREATE UNIQUE (station_51)-[:H20 { line:"D", bus:"H20" } ]->(station_50)
MATCH (station_50:STATION {id:50}), (station_49:STATION {id:49}) CREATE UNIQUE (station_50)-[:H20 { line:"D", bus:"H20" } ]->(station_49)
MATCH (station_49:STATION {id:49}), (station_45:STATION {id:45}) CREATE UNIQUE (station_49)-[:H20 { line:"D", bus:"H20" } ]->(station_45)
MATCH (station_45:STATION {id:45}), (station_8:STATION {id:8}) CREATE UNIQUE (station_45)-[:H20 { line:"D", bus:"H20" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_6:STATION {id:6}) CREATE UNIQUE (station_8)-[:H20 { line:"A", bus:"H20" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_5:STATION {id:5}) CREATE UNIQUE (station_6)-[:H20 { line:"A", bus:"H20" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_3:STATION {id:3}) CREATE UNIQUE (station_5)-[:H20 { line:"A", bus:"H20" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_2:STATION {id:2}) CREATE UNIQUE (station_3)-[:H20 { line:"A", bus:"H20" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_106:STATION {id:106}) CREATE UNIQUE (station_2)-[:H20 { line:"A", bus:"H20" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_107:STATION {id:107}) CREATE UNIQUE (station_106)-[:H20 { line:"H", bus:"H20" } ]->(station_107)
MATCH (station_107:STATION {id:107}), (station_110:STATION {id:110}) CREATE UNIQUE (station_107)-[:H20 { line:"H", bus:"H20" } ]->(station_110)
MATCH (station_110:STATION {id:110}), (station_111:STATION {id:111}) CREATE UNIQUE (station_110)-[:H20 { line:"H", bus:"H20" } ]->(station_111)
MATCH (station_57:STATION {id:57}), (station_56:STATION {id:56}) CREATE UNIQUE (station_57)-[:H21 { line:"D", bus:"H21" } ]->(station_56)
MATCH (station_56:STATION {id:56}), (station_54:STATION {id:54}) CREATE UNIQUE (station_56)-[:H21 { line:"D", bus:"H21" } ]->(station_54)
MATCH (station_54:STATION {id:54}), (station_53:STATION {id:53}) CREATE UNIQUE (station_54)-[:H21 { line:"D", bus:"H21" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_14:STATION {id:14}) CREATE UNIQUE (station_53)-[:H21 { line:"D", bus:"H21" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_13:STATION {id:13}) CREATE UNIQUE (station_14)-[:H21 { line:"A", bus:"H21" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_12:STATION {id:12}) CREATE UNIQUE (station_13)-[:H21 { line:"A", bus:"H21" } ]->(station_12)
MATCH (station_12:STATION {id:12}), (station_11:STATION {id:11}) CREATE UNIQUE (station_12)-[:H21 { line:"A", bus:"H21" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_10:STATION {id:10}) CREATE UNIQUE (station_11)-[:H21 { line:"A", bus:"H21" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_9:STATION {id:9}) CREATE UNIQUE (station_10)-[:H21 { line:"A", bus:"H21" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_101:STATION {id:101}) CREATE UNIQUE (station_9)-[:H21 { line:"A", bus:"H21" } ]->(station_101)
MATCH (station_101:STATION {id:101}), (station_102:STATION {id:102}) CREATE UNIQUE (station_101)-[:H21 { line:"H", bus:"H21" } ]->(station_102)
MATCH (station_102:STATION {id:102}), (station_104:STATION {id:104}) CREATE UNIQUE (station_102)-[:H21 { line:"H", bus:"H21" } ]->(station_104)
MATCH (station_104:STATION {id:104}), (station_106:STATION {id:106}) CREATE UNIQUE (station_104)-[:H21 { line:"H", bus:"H21" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_107:STATION {id:107}) CREATE UNIQUE (station_106)-[:H21 { line:"H", bus:"H21" } ]->(station_107)
MATCH (station_107:STATION {id:107}), (station_113:STATION {id:113}) CREATE UNIQUE (station_107)-[:H21 { line:"H", bus:"H21" } ]->(station_113)
MATCH (station_113:STATION {id:113}), (station_114:STATION {id:114}) CREATE UNIQUE (station_113)-[:H21 { line:"H", bus:"H21" } ]->(station_114)
MATCH (station_65:STATION {id:65}), (station_62:STATION {id:62}) CREATE UNIQUE (station_65)-[:H25 { line:"E", bus:"H25" } ]->(station_62)
MATCH (station_62:STATION {id:62}), (station_60:STATION {id:60}) CREATE UNIQUE (station_62)-[:H25 { line:"E", bus:"H25" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_59:STATION {id:59}) CREATE UNIQUE (station_60)-[:H25 { line:"E", bus:"H25" } ]->(station_59)
MATCH (station_59:STATION {id:59}), (station_58:STATION {id:58}) CREATE UNIQUE (station_59)-[:H25 { line:"E", bus:"H25" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_89:STATION {id:89}) CREATE UNIQUE (station_58)-[:H25 { line:"E", bus:"H25" } ]->(station_89)
MATCH (station_89:STATION {id:89}), (station_92:STATION {id:92}) CREATE UNIQUE (station_89)-[:H25 { line:"G", bus:"H25" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_95:STATION {id:95}) CREATE UNIQUE (station_92)-[:H25 { line:"G", bus:"H25" } ]->(station_95)
MATCH (station_95:STATION {id:95}), (station_98:STATION {id:98}) CREATE UNIQUE (station_95)-[:H25 { line:"G", bus:"H25" } ]->(station_98)
MATCH (station_98:STATION {id:98}), (station_114:STATION {id:114}) CREATE UNIQUE (station_98)-[:H25 { line:"G", bus:"H25" } ]->(station_114)
MATCH (station_114:STATION {id:114}), (station_110:STATION {id:110}) CREATE UNIQUE (station_114)-[:H25 { line:"H", bus:"H25" } ]->(station_110)
MATCH (station_110:STATION {id:110}), (station_111:STATION {id:111}) CREATE UNIQUE (station_110)-[:H25 { line:"H", bus:"H25" } ]->(station_111)
MATCH (station_29:STATION {id:29}), (station_17:STATION {id:17}) CREATE UNIQUE (station_29)-[:H27 { line:"B", bus:"H27" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_16:STATION {id:16}) CREATE UNIQUE (station_17)-[:H27 { line:"B", bus:"H27" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_14:STATION {id:14}) CREATE UNIQUE (station_16)-[:H27 { line:"B", bus:"H27" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_13:STATION {id:13}) CREATE UNIQUE (station_14)-[:H27 { line:"A", bus:"H27" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_12:STATION {id:12}) CREATE UNIQUE (station_13)-[:H27 { line:"A", bus:"H27" } ]->(station_12)
MATCH (station_12:STATION {id:12}), (station_11:STATION {id:11}) CREATE UNIQUE (station_12)-[:H27 { line:"A", bus:"H27" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_9:STATION {id:9}) CREATE UNIQUE (station_11)-[:H27 { line:"A", bus:"H27" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_2:STATION {id:2}) CREATE UNIQUE (station_9)-[:H27 { line:"A", bus:"H27" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_106:STATION {id:106}) CREATE UNIQUE (station_2)-[:H27 { line:"A", bus:"H27" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_114:STATION {id:114}) CREATE UNIQUE (station_106)-[:H27 { line:"H", bus:"H27" } ]->(station_114)
MATCH (station_57:STATION {id:57}), (station_55:STATION {id:55}) CREATE UNIQUE (station_57)-[:H50 { line:"D", bus:"H50" } ]->(station_55)
MATCH (station_55:STATION {id:55}), (station_53:STATION {id:53}) CREATE UNIQUE (station_55)-[:H50 { line:"D", bus:"H50" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_52:STATION {id:52}) CREATE UNIQUE (station_53)-[:H50 { line:"D", bus:"H50" } ]->(station_52)
MATCH (station_52:STATION {id:52}), (station_14:STATION {id:14}) CREATE UNIQUE (station_52)-[:H50 { line:"D", bus:"H50" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_13:STATION {id:13}) CREATE UNIQUE (station_14)-[:H50 { line:"A", bus:"H50" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_10:STATION {id:10}) CREATE UNIQUE (station_13)-[:H50 { line:"A", bus:"H50" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_9:STATION {id:9}) CREATE UNIQUE (station_10)-[:H50 { line:"A", bus:"H50" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_7:STATION {id:7}) CREATE UNIQUE (station_9)-[:H50 { line:"A", bus:"H50" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_100:STATION {id:100}) CREATE UNIQUE (station_7)-[:H50 { line:"A", bus:"H50" } ]->(station_100)
MATCH (station_100:STATION {id:100}), (station_103:STATION {id:103}) CREATE UNIQUE (station_100)-[:H50 { line:"H", bus:"H50" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_111:STATION {id:111}) CREATE UNIQUE (station_103)-[:H50 { line:"H", bus:"H50" } ]->(station_111)
MATCH (station_29:STATION {id:29}), (station_20:STATION {id:20}) CREATE UNIQUE (station_29)-[:H51 { line:"B", bus:"H51" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_14:STATION {id:14}) CREATE UNIQUE (station_20)-[:H51 { line:"B", bus:"H51" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_13:STATION {id:13}) CREATE UNIQUE (station_14)-[:H51 { line:"A", bus:"H51" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_11:STATION {id:11}) CREATE UNIQUE (station_13)-[:H51 { line:"A", bus:"H51" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_10:STATION {id:10}) CREATE UNIQUE (station_11)-[:H51 { line:"A", bus:"H51" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_9:STATION {id:9}) CREATE UNIQUE (station_10)-[:H51 { line:"A", bus:"H51" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_107:STATION {id:107}) CREATE UNIQUE (station_9)-[:H51 { line:"A", bus:"H51" } ]->(station_107)
MATCH (station_107:STATION {id:107}), (station_108:STATION {id:108}) CREATE UNIQUE (station_107)-[:H51 { line:"H", bus:"H51" } ]->(station_108)
MATCH (station_108:STATION {id:108}), (station_109:STATION {id:109}) CREATE UNIQUE (station_108)-[:H51 { line:"H", bus:"H51" } ]->(station_109)
MATCH (station_109:STATION {id:109}), (station_110:STATION {id:110}) CREATE UNIQUE (station_109)-[:H51 { line:"H", bus:"H51" } ]->(station_110)
MATCH (station_110:STATION {id:110}), (station_111:STATION {id:111}) CREATE UNIQUE (station_110)-[:H51 { line:"H", bus:"H51" } ]->(station_111)
MATCH (station_29:STATION {id:29}), (station_22:STATION {id:22}) CREATE UNIQUE (station_29)-[:H52 { line:"B", bus:"H52" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_8:STATION {id:8}) CREATE UNIQUE (station_22)-[:H52 { line:"B", bus:"H52" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_7:STATION {id:7}) CREATE UNIQUE (station_8)-[:H52 { line:"A", bus:"H52" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_6:STATION {id:6}) CREATE UNIQUE (station_7)-[:H52 { line:"A", bus:"H52" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_5:STATION {id:5}) CREATE UNIQUE (station_6)-[:H52 { line:"A", bus:"H52" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_3:STATION {id:3}) CREATE UNIQUE (station_5)-[:H52 { line:"A", bus:"H52" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_103:STATION {id:103}) CREATE UNIQUE (station_3)-[:H52 { line:"A", bus:"H52" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_114:STATION {id:114}) CREATE UNIQUE (station_103)-[:H52 { line:"H", bus:"H52" } ]->(station_114)
MATCH (station_129:STATION {id:129}), (station_128:STATION {id:128}) CREATE UNIQUE (station_129)-[:H54 { line:"K", bus:"H54" } ]->(station_128)
MATCH (station_128:STATION {id:128}), (station_126:STATION {id:126}) CREATE UNIQUE (station_128)-[:H54 { line:"K", bus:"H54" } ]->(station_126)
MATCH (station_126:STATION {id:126}), (station_125:STATION {id:125}) CREATE UNIQUE (station_126)-[:H54 { line:"K", bus:"H54" } ]->(station_125)
MATCH (station_125:STATION {id:125}), (station_124:STATION {id:124}) CREATE UNIQUE (station_125)-[:H54 { line:"K", bus:"H54" } ]->(station_124)
MATCH (station_124:STATION {id:124}), (station_123:STATION {id:123}) CREATE UNIQUE (station_124)-[:H54 { line:"K", bus:"H54" } ]->(station_123)
MATCH (station_123:STATION {id:123}), (station_121:STATION {id:121}) CREATE UNIQUE (station_123)-[:H54 { line:"K", bus:"H54" } ]->(station_121)
MATCH (station_121:STATION {id:121}), (station_120:STATION {id:120}) CREATE UNIQUE (station_121)-[:H54 { line:"K", bus:"H54" } ]->(station_120)
MATCH (station_120:STATION {id:120}), (station_119:STATION {id:119}) CREATE UNIQUE (station_120)-[:H54 { line:"K", bus:"H54" } ]->(station_119)
MATCH (station_119:STATION {id:119}), (station_118:STATION {id:118}) CREATE UNIQUE (station_119)-[:H54 { line:"K", bus:"H54" } ]->(station_118)
MATCH (station_118:STATION {id:118}), (station_100:STATION {id:100}) CREATE UNIQUE (station_118)-[:H54 { line:"K", bus:"H54" } ]->(station_100)
MATCH (station_100:STATION {id:100}), (station_103:STATION {id:103}) CREATE UNIQUE (station_100)-[:H54 { line:"H", bus:"H54" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_106:STATION {id:106}) CREATE UNIQUE (station_103)-[:H54 { line:"H", bus:"H54" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_110:STATION {id:110}) CREATE UNIQUE (station_106)-[:H54 { line:"H", bus:"H54" } ]->(station_110)
MATCH (station_110:STATION {id:110}), (station_111:STATION {id:111}) CREATE UNIQUE (station_110)-[:H54 { line:"H", bus:"H54" } ]->(station_111)
MATCH (station_29:STATION {id:29}), (station_28:STATION {id:28}) CREATE UNIQUE (station_29)-[:H60 { line:"B", bus:"H60" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_22:STATION {id:22}) CREATE UNIQUE (station_28)-[:H60 { line:"B", bus:"H60" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_20:STATION {id:20}) CREATE UNIQUE (station_22)-[:H60 { line:"B", bus:"H60" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_17:STATION {id:17}) CREATE UNIQUE (station_20)-[:H60 { line:"B", bus:"H60" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_16:STATION {id:16}) CREATE UNIQUE (station_17)-[:H60 { line:"B", bus:"H60" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_15:STATION {id:15}) CREATE UNIQUE (station_16)-[:H60 { line:"B", bus:"H60" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_103:STATION {id:103}) CREATE UNIQUE (station_15)-[:H60 { line:"B", bus:"H60" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_104:STATION {id:104}) CREATE UNIQUE (station_103)-[:H60 { line:"H", bus:"H60" } ]->(station_104)
MATCH (station_104:STATION {id:104}), (station_106:STATION {id:106}) CREATE UNIQUE (station_104)-[:H60 { line:"H", bus:"H60" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_114:STATION {id:114}) CREATE UNIQUE (station_106)-[:H60 { line:"H", bus:"H60" } ]->(station_114)
MATCH (station_29:STATION {id:29}), (station_23:STATION {id:23}) CREATE UNIQUE (station_29)-[:H61 { line:"B", bus:"H61" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_21:STATION {id:21}) CREATE UNIQUE (station_23)-[:H61 { line:"B", bus:"H61" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_20:STATION {id:20}) CREATE UNIQUE (station_21)-[:H61 { line:"B", bus:"H61" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_18:STATION {id:18}) CREATE UNIQUE (station_20)-[:H61 { line:"B", bus:"H61" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_16:STATION {id:16}) CREATE UNIQUE (station_18)-[:H61 { line:"B", bus:"H61" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_15:STATION {id:15}) CREATE UNIQUE (station_16)-[:H61 { line:"B", bus:"H61" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_101:STATION {id:101}) CREATE UNIQUE (station_15)-[:H61 { line:"B", bus:"H61" } ]->(station_101)
MATCH (station_101:STATION {id:101}), (station_110:STATION {id:110}) CREATE UNIQUE (station_101)-[:H61 { line:"H", bus:"H61" } ]->(station_110)
MATCH (station_110:STATION {id:110}), (station_111:STATION {id:111}) CREATE UNIQUE (station_110)-[:H61 { line:"H", bus:"H61" } ]->(station_111)
MATCH (station_28:STATION {id:28}), (station_25:STATION {id:25}) CREATE UNIQUE (station_28)-[:H70 { line:"B", bus:"H70" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_24:STATION {id:24}) CREATE UNIQUE (station_25)-[:H70 { line:"B", bus:"H70" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_23:STATION {id:23}) CREATE UNIQUE (station_24)-[:H70 { line:"B", bus:"H70" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_22:STATION {id:22}) CREATE UNIQUE (station_23)-[:H70 { line:"B", bus:"H70" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_21:STATION {id:21}) CREATE UNIQUE (station_22)-[:H70 { line:"B", bus:"H70" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_14:STATION {id:14}) CREATE UNIQUE (station_21)-[:H70 { line:"B", bus:"H70" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_13:STATION {id:13}) CREATE UNIQUE (station_14)-[:H70 { line:"A", bus:"H70" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_11:STATION {id:11}) CREATE UNIQUE (station_13)-[:H70 { line:"A", bus:"H70" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_9:STATION {id:9}) CREATE UNIQUE (station_11)-[:H70 { line:"A", bus:"H70" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_2:STATION {id:2}) CREATE UNIQUE (station_9)-[:H70 { line:"A", bus:"H70" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_100:STATION {id:100}) CREATE UNIQUE (station_2)-[:H70 { line:"A", bus:"H70" } ]->(station_100)
MATCH (station_100:STATION {id:100}), (station_101:STATION {id:101}) CREATE UNIQUE (station_100)-[:H70 { line:"H", bus:"H70" } ]->(station_101)
MATCH (station_101:STATION {id:101}), (station_103:STATION {id:103}) CREATE UNIQUE (station_101)-[:H70 { line:"H", bus:"H70" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_106:STATION {id:106}) CREATE UNIQUE (station_103)-[:H70 { line:"H", bus:"H70" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_108:STATION {id:108}) CREATE UNIQUE (station_106)-[:H70 { line:"H", bus:"H70" } ]->(station_108)
MATCH (station_108:STATION {id:108}), (station_109:STATION {id:109}) CREATE UNIQUE (station_108)-[:H70 { line:"H", bus:"H70" } ]->(station_109)
MATCH (station_109:STATION {id:109}), (station_110:STATION {id:110}) CREATE UNIQUE (station_109)-[:H70 { line:"H", bus:"H70" } ]->(station_110)
MATCH (station_110:STATION {id:110}), (station_111:STATION {id:111}) CREATE UNIQUE (station_110)-[:H70 { line:"H", bus:"H70" } ]->(station_111)
MATCH (station_28:STATION {id:28}), (station_25:STATION {id:25}) CREATE UNIQUE (station_28)-[:H73 { line:"B", bus:"H73" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_23:STATION {id:23}) CREATE UNIQUE (station_25)-[:H73 { line:"B", bus:"H73" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_21:STATION {id:21}) CREATE UNIQUE (station_23)-[:H73 { line:"B", bus:"H73" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_20:STATION {id:20}) CREATE UNIQUE (station_21)-[:H73 { line:"B", bus:"H73" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_8:STATION {id:8}) CREATE UNIQUE (station_20)-[:H73 { line:"B", bus:"H73" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_7:STATION {id:7}) CREATE UNIQUE (station_8)-[:H73 { line:"A", bus:"H73" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_6:STATION {id:6}) CREATE UNIQUE (station_7)-[:H73 { line:"A", bus:"H73" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_5:STATION {id:5}) CREATE UNIQUE (station_6)-[:H73 { line:"A", bus:"H73" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_3:STATION {id:3}) CREATE UNIQUE (station_5)-[:H73 { line:"A", bus:"H73" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_102:STATION {id:102}) CREATE UNIQUE (station_3)-[:H73 { line:"A", bus:"H73" } ]->(station_102)
MATCH (station_102:STATION {id:102}), (station_104:STATION {id:104}) CREATE UNIQUE (station_102)-[:H73 { line:"H", bus:"H73" } ]->(station_104)
MATCH (station_104:STATION {id:104}), (station_106:STATION {id:106}) CREATE UNIQUE (station_104)-[:H73 { line:"H", bus:"H73" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_114:STATION {id:114}) CREATE UNIQUE (station_106)-[:H73 { line:"H", bus:"H73" } ]->(station_114)
MATCH (station_29:STATION {id:29}), (station_28:STATION {id:28}) CREATE UNIQUE (station_29)-[:H74 { line:"B", bus:"H74" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_25:STATION {id:25}) CREATE UNIQUE (station_28)-[:H74 { line:"B", bus:"H74" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_23:STATION {id:23}) CREATE UNIQUE (station_25)-[:H74 { line:"B", bus:"H74" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_22:STATION {id:22}) CREATE UNIQUE (station_23)-[:H74 { line:"B", bus:"H74" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_21:STATION {id:21}) CREATE UNIQUE (station_22)-[:H74 { line:"B", bus:"H74" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_18:STATION {id:18}) CREATE UNIQUE (station_21)-[:H74 { line:"B", bus:"H74" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_15:STATION {id:15}) CREATE UNIQUE (station_18)-[:H74 { line:"B", bus:"H74" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_14:STATION {id:14}) CREATE UNIQUE (station_15)-[:H74 { line:"B", bus:"H74" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_13:STATION {id:13}) CREATE UNIQUE (station_14)-[:H74 { line:"A", bus:"H74" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_11:STATION {id:11}) CREATE UNIQUE (station_13)-[:H74 { line:"A", bus:"H74" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_10:STATION {id:10}) CREATE UNIQUE (station_11)-[:H74 { line:"A", bus:"H74" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_9:STATION {id:9}) CREATE UNIQUE (station_10)-[:H74 { line:"A", bus:"H74" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_2:STATION {id:2}) CREATE UNIQUE (station_9)-[:H74 { line:"A", bus:"H74" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_100:STATION {id:100}) CREATE UNIQUE (station_2)-[:H74 { line:"A", bus:"H74" } ]->(station_100)
MATCH (station_100:STATION {id:100}), (station_101:STATION {id:101}) CREATE UNIQUE (station_100)-[:H74 { line:"H", bus:"H74" } ]->(station_101)
MATCH (station_101:STATION {id:101}), (station_103:STATION {id:103}) CREATE UNIQUE (station_101)-[:H74 { line:"H", bus:"H74" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_106:STATION {id:106}) CREATE UNIQUE (station_103)-[:H74 { line:"H", bus:"H74" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_107:STATION {id:107}) CREATE UNIQUE (station_106)-[:H74 { line:"H", bus:"H74" } ]->(station_107)
MATCH (station_107:STATION {id:107}), (station_108:STATION {id:108}) CREATE UNIQUE (station_107)-[:H74 { line:"H", bus:"H74" } ]->(station_108)
MATCH (station_108:STATION {id:108}), (station_109:STATION {id:109}) CREATE UNIQUE (station_108)-[:H74 { line:"H", bus:"H74" } ]->(station_109)
MATCH (station_109:STATION {id:109}), (station_110:STATION {id:110}) CREATE UNIQUE (station_109)-[:H74 { line:"H", bus:"H74" } ]->(station_110)
MATCH (station_110:STATION {id:110}), (station_111:STATION {id:111}) CREATE UNIQUE (station_110)-[:H74 { line:"H", bus:"H74" } ]->(station_111)
MATCH (station_29:STATION {id:29}), (station_28:STATION {id:28}) CREATE UNIQUE (station_29)-[:H92 { line:"B", bus:"H92" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_24:STATION {id:24}) CREATE UNIQUE (station_28)-[:H92 { line:"B", bus:"H92" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_23:STATION {id:23}) CREATE UNIQUE (station_24)-[:H92 { line:"B", bus:"H92" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_21:STATION {id:21}) CREATE UNIQUE (station_23)-[:H92 { line:"B", bus:"H92" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_18:STATION {id:18}) CREATE UNIQUE (station_21)-[:H92 { line:"B", bus:"H92" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_16:STATION {id:16}) CREATE UNIQUE (station_18)-[:H92 { line:"B", bus:"H92" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_15:STATION {id:15}) CREATE UNIQUE (station_16)-[:H92 { line:"B", bus:"H92" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_14:STATION {id:14}) CREATE UNIQUE (station_15)-[:H92 { line:"B", bus:"H92" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_13:STATION {id:13}) CREATE UNIQUE (station_14)-[:H92 { line:"A", bus:"H92" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_11:STATION {id:11}) CREATE UNIQUE (station_13)-[:H92 { line:"A", bus:"H92" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_9:STATION {id:9}) CREATE UNIQUE (station_11)-[:H92 { line:"A", bus:"H92" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_8:STATION {id:8}) CREATE UNIQUE (station_9)-[:H92 { line:"A", bus:"H92" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_3:STATION {id:3}) CREATE UNIQUE (station_8)-[:H92 { line:"A", bus:"H92" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_2:STATION {id:2}) CREATE UNIQUE (station_3)-[:H92 { line:"A", bus:"H92" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_103:STATION {id:103}) CREATE UNIQUE (station_2)-[:H92 { line:"A", bus:"H92" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_106:STATION {id:106}) CREATE UNIQUE (station_103)-[:H92 { line:"H", bus:"H92" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_107:STATION {id:107}) CREATE UNIQUE (station_106)-[:H92 { line:"H", bus:"H92" } ]->(station_107)
MATCH (station_107:STATION {id:107}), (station_108:STATION {id:108}) CREATE UNIQUE (station_107)-[:H92 { line:"H", bus:"H92" } ]->(station_108)
MATCH (station_108:STATION {id:108}), (station_109:STATION {id:109}) CREATE UNIQUE (station_108)-[:H92 { line:"H", bus:"H92" } ]->(station_109)
MATCH (station_109:STATION {id:109}), (station_110:STATION {id:110}) CREATE UNIQUE (station_109)-[:H92 { line:"H", bus:"H92" } ]->(station_110)
MATCH (station_110:STATION {id:110}), (station_111:STATION {id:111}) CREATE UNIQUE (station_110)-[:H92 { line:"H", bus:"H92" } ]->(station_111)
MATCH (station_29:STATION {id:29}), (station_28:STATION {id:28}) CREATE UNIQUE (station_29)-[:H93 { line:"B", bus:"H93" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_25:STATION {id:25}) CREATE UNIQUE (station_28)-[:H93 { line:"B", bus:"H93" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_20:STATION {id:20}) CREATE UNIQUE (station_25)-[:H93 { line:"B", bus:"H93" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_17:STATION {id:17}) CREATE UNIQUE (station_20)-[:H93 { line:"B", bus:"H93" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_16:STATION {id:16}) CREATE UNIQUE (station_17)-[:H93 { line:"B", bus:"H93" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_13:STATION {id:13}) CREATE UNIQUE (station_16)-[:H93 { line:"B", bus:"H93" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_12:STATION {id:12}) CREATE UNIQUE (station_13)-[:H93 { line:"A", bus:"H93" } ]->(station_12)
MATCH (station_12:STATION {id:12}), (station_11:STATION {id:11}) CREATE UNIQUE (station_12)-[:H93 { line:"A", bus:"H93" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_4:STATION {id:4}) CREATE UNIQUE (station_11)-[:H93 { line:"A", bus:"H93" } ]->(station_4)
MATCH (station_4:STATION {id:4}), (station_3:STATION {id:3}) CREATE UNIQUE (station_4)-[:H93 { line:"A", bus:"H93" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_2:STATION {id:2}) CREATE UNIQUE (station_3)-[:H93 { line:"A", bus:"H93" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_1:STATION {id:1}) CREATE UNIQUE (station_2)-[:H93 { line:"A", bus:"H93" } ]->(station_1)
MATCH (station_1:STATION {id:1}), (station_101:STATION {id:101}) CREATE UNIQUE (station_1)-[:H93 { line:"A", bus:"H93" } ]->(station_101)
MATCH (station_101:STATION {id:101}), (station_102:STATION {id:102}) CREATE UNIQUE (station_101)-[:H93 { line:"H", bus:"H93" } ]->(station_102)
MATCH (station_102:STATION {id:102}), (station_103:STATION {id:103}) CREATE UNIQUE (station_102)-[:H93 { line:"H", bus:"H93" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_104:STATION {id:104}) CREATE UNIQUE (station_103)-[:H93 { line:"H", bus:"H93" } ]->(station_104)
MATCH (station_104:STATION {id:104}), (station_106:STATION {id:106}) CREATE UNIQUE (station_104)-[:H93 { line:"H", bus:"H93" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_107:STATION {id:107}) CREATE UNIQUE (station_106)-[:H93 { line:"H", bus:"H93" } ]->(station_107)
MATCH (station_107:STATION {id:107}), (station_114:STATION {id:114}) CREATE UNIQUE (station_107)-[:H93 { line:"H", bus:"H93" } ]->(station_114)
MATCH (station_129:STATION {id:129}), (station_128:STATION {id:128}) CREATE UNIQUE (station_129)-[:J6 { line:"K", bus:"J6" } ]->(station_128)
MATCH (station_128:STATION {id:128}), (station_127:STATION {id:127}) CREATE UNIQUE (station_128)-[:J6 { line:"K", bus:"J6" } ]->(station_127)
MATCH (station_127:STATION {id:127}), (station_126:STATION {id:126}) CREATE UNIQUE (station_127)-[:J6 { line:"K", bus:"J6" } ]->(station_126)
MATCH (station_126:STATION {id:126}), (station_125:STATION {id:125}) CREATE UNIQUE (station_126)-[:J6 { line:"K", bus:"J6" } ]->(station_125)
MATCH (station_125:STATION {id:125}), (station_124:STATION {id:124}) CREATE UNIQUE (station_125)-[:J6 { line:"K", bus:"J6" } ]->(station_124)
MATCH (station_124:STATION {id:124}), (station_123:STATION {id:123}) CREATE UNIQUE (station_124)-[:J6 { line:"K", bus:"J6" } ]->(station_123)
MATCH (station_123:STATION {id:123}), (station_122:STATION {id:122}) CREATE UNIQUE (station_123)-[:J6 { line:"K", bus:"J6" } ]->(station_122)
MATCH (station_122:STATION {id:122}), (station_121:STATION {id:121}) CREATE UNIQUE (station_122)-[:J6 { line:"K", bus:"J6" } ]->(station_121)
MATCH (station_121:STATION {id:121}), (station_120:STATION {id:120}) CREATE UNIQUE (station_121)-[:J6 { line:"K", bus:"J6" } ]->(station_120)
MATCH (station_120:STATION {id:120}), (station_119:STATION {id:119}) CREATE UNIQUE (station_120)-[:J6 { line:"K", bus:"J6" } ]->(station_119)
MATCH (station_119:STATION {id:119}), (station_118:STATION {id:118}) CREATE UNIQUE (station_119)-[:J6 { line:"K", bus:"J6" } ]->(station_118)
MATCH (station_118:STATION {id:118}), (station_117:STATION {id:117}) CREATE UNIQUE (station_118)-[:J6 { line:"K", bus:"J6" } ]->(station_117)
MATCH (station_117:STATION {id:117}), (station_150:STATION {id:150}) CREATE UNIQUE (station_117)-[:J6 { line:"K", bus:"J6" } ]->(station_150)
MATCH (station_86:STATION {id:86}), (station_85:STATION {id:85}) CREATE UNIQUE (station_86)-[:J23 { line:"F", bus:"J23" } ]->(station_85)
MATCH (station_85:STATION {id:85}), (station_82:STATION {id:82}) CREATE UNIQUE (station_85)-[:J23 { line:"F", bus:"J23" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_80:STATION {id:80}) CREATE UNIQUE (station_82)-[:J23 { line:"F", bus:"J23" } ]->(station_80)
MATCH (station_80:STATION {id:80}), (station_72:STATION {id:72}) CREATE UNIQUE (station_80)-[:J23 { line:"F", bus:"J23" } ]->(station_72)
MATCH (station_72:STATION {id:72}), (station_71:STATION {id:71}) CREATE UNIQUE (station_72)-[:J23 { line:"F", bus:"J23" } ]->(station_71)
MATCH (station_71:STATION {id:71}), (station_69:STATION {id:69}) CREATE UNIQUE (station_71)-[:J23 { line:"F", bus:"J23" } ]->(station_69)
MATCH (station_69:STATION {id:69}), (station_152:STATION {id:152}) CREATE UNIQUE (station_69)-[:J23 { line:"F", bus:"J23" } ]->(station_152)
MATCH (station_152:STATION {id:152}), (station_151:STATION {id:151}) CREATE UNIQUE (station_152)-[:J23 { line:"J", bus:"J23" } ]->(station_151)
MATCH (station_57:STATION {id:57}), (station_53:STATION {id:53}) CREATE UNIQUE (station_57)-[:J24 { line:"D", bus:"J24" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_49:STATION {id:49}) CREATE UNIQUE (station_53)-[:J24 { line:"D", bus:"J24" } ]->(station_49)
MATCH (station_49:STATION {id:49}), (station_46:STATION {id:46}) CREATE UNIQUE (station_49)-[:J24 { line:"D", bus:"J24" } ]->(station_46)
MATCH (station_46:STATION {id:46}), (station_45:STATION {id:45}) CREATE UNIQUE (station_46)-[:J24 { line:"D", bus:"J24" } ]->(station_45)
MATCH (station_45:STATION {id:45}), (station_10:STATION {id:10}) CREATE UNIQUE (station_45)-[:J24 { line:"D", bus:"J24" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_7:STATION {id:7}) CREATE UNIQUE (station_10)-[:J24 { line:"A", bus:"J24" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_5:STATION {id:5}) CREATE UNIQUE (station_7)-[:J24 { line:"A", bus:"J24" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_150:STATION {id:150}) CREATE UNIQUE (station_5)-[:J24 { line:"A", bus:"J24" } ]->(station_150)
MATCH (station_29:STATION {id:29}), (station_28:STATION {id:28}) CREATE UNIQUE (station_29)-[:J70 { line:"B", bus:"J70" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_25:STATION {id:25}) CREATE UNIQUE (station_28)-[:J70 { line:"B", bus:"J70" } ]->(station_25)
MATCH (station_25:STATION {id:25}), (station_24:STATION {id:24}) CREATE UNIQUE (station_25)-[:J70 { line:"B", bus:"J70" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_23:STATION {id:23}) CREATE UNIQUE (station_24)-[:J70 { line:"B", bus:"J70" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_22:STATION {id:22}) CREATE UNIQUE (station_23)-[:J70 { line:"B", bus:"J70" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_21:STATION {id:21}) CREATE UNIQUE (station_22)-[:J70 { line:"B", bus:"J70" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_69:STATION {id:69}) CREATE UNIQUE (station_21)-[:J70 { line:"B", bus:"J70" } ]->(station_69)
MATCH (station_69:STATION {id:69}), (station_152:STATION {id:152}) CREATE UNIQUE (station_69)-[:J70 { line:"F", bus:"J70" } ]->(station_152)
MATCH (station_152:STATION {id:152}), (station_151:STATION {id:151}) CREATE UNIQUE (station_152)-[:J70 { line:"J", bus:"J70" } ]->(station_151)
MATCH (station_29:STATION {id:29}), (station_28:STATION {id:28}) CREATE UNIQUE (station_29)-[:J72 { line:"B", bus:"J72" } ]->(station_28)
MATCH (station_28:STATION {id:28}), (station_24:STATION {id:24}) CREATE UNIQUE (station_28)-[:J72 { line:"B", bus:"J72" } ]->(station_24)
MATCH (station_24:STATION {id:24}), (station_22:STATION {id:22}) CREATE UNIQUE (station_24)-[:J72 { line:"B", bus:"J72" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_20:STATION {id:20}) CREATE UNIQUE (station_22)-[:J72 { line:"B", bus:"J72" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_18:STATION {id:18}) CREATE UNIQUE (station_20)-[:J72 { line:"B", bus:"J72" } ]->(station_18)
MATCH (station_18:STATION {id:18}), (station_17:STATION {id:17}) CREATE UNIQUE (station_18)-[:J72 { line:"B", bus:"J72" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_15:STATION {id:15}) CREATE UNIQUE (station_17)-[:J72 { line:"B", bus:"J72" } ]->(station_15)
MATCH (station_15:STATION {id:15}), (station_14:STATION {id:14}) CREATE UNIQUE (station_15)-[:J72 { line:"B", bus:"J72" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_13:STATION {id:13}) CREATE UNIQUE (station_14)-[:J72 { line:"A", bus:"J72" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_10:STATION {id:10}) CREATE UNIQUE (station_13)-[:J72 { line:"A", bus:"J72" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_7:STATION {id:7}) CREATE UNIQUE (station_10)-[:J72 { line:"A", bus:"J72" } ]->(station_7)
MATCH (station_7:STATION {id:7}), (station_3:STATION {id:3}) CREATE UNIQUE (station_7)-[:J72 { line:"A", bus:"J72" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_69:STATION {id:69}) CREATE UNIQUE (station_3)-[:J72 { line:"A", bus:"J72" } ]->(station_69)
MATCH (station_69:STATION {id:69}), (station_152:STATION {id:152}) CREATE UNIQUE (station_69)-[:J72 { line:"F", bus:"J72" } ]->(station_152)
MATCH (station_152:STATION {id:152}), (station_151:STATION {id:151}) CREATE UNIQUE (station_152)-[:J72 { line:"J", bus:"J72" } ]->(station_151)
MATCH (station_44:STATION {id:44}), (station_43:STATION {id:43}) CREATE UNIQUE (station_44)-[:J73 { line:"C", bus:"J73" } ]->(station_43)
MATCH (station_43:STATION {id:43}), (station_42:STATION {id:42}) CREATE UNIQUE (station_43)-[:J73 { line:"C", bus:"J73" } ]->(station_42)
MATCH (station_42:STATION {id:42}), (station_39:STATION {id:39}) CREATE UNIQUE (station_42)-[:J73 { line:"C", bus:"J73" } ]->(station_39)
MATCH (station_39:STATION {id:39}), (station_38:STATION {id:38}) CREATE UNIQUE (station_39)-[:J73 { line:"C", bus:"J73" } ]->(station_38)
MATCH (station_38:STATION {id:38}), (station_35:STATION {id:35}) CREATE UNIQUE (station_38)-[:J73 { line:"C", bus:"J73" } ]->(station_35)
MATCH (station_35:STATION {id:35}), (station_31:STATION {id:31}) CREATE UNIQUE (station_35)-[:J73 { line:"C", bus:"J73" } ]->(station_31)
MATCH (station_31:STATION {id:31}), (station_119:STATION {id:119}) CREATE UNIQUE (station_31)-[:J73 { line:"C", bus:"J73" } ]->(station_119)
MATCH (station_119:STATION {id:119}), (station_150:STATION {id:150}) CREATE UNIQUE (station_119)-[:J73 { line:"K", bus:"J73" } ]->(station_150)
MATCH (station_57:STATION {id:57}), (station_56:STATION {id:56}) CREATE UNIQUE (station_57)-[:J95 { line:"D", bus:"J95" } ]->(station_56)
MATCH (station_56:STATION {id:56}), (station_54:STATION {id:54}) CREATE UNIQUE (station_56)-[:J95 { line:"D", bus:"J95" } ]->(station_54)
MATCH (station_54:STATION {id:54}), (station_53:STATION {id:53}) CREATE UNIQUE (station_54)-[:J95 { line:"D", bus:"J95" } ]->(station_53)
MATCH (station_53:STATION {id:53}), (station_51:STATION {id:51}) CREATE UNIQUE (station_53)-[:J95 { line:"D", bus:"J95" } ]->(station_51)
MATCH (station_51:STATION {id:51}), (station_46:STATION {id:46}) CREATE UNIQUE (station_51)-[:J95 { line:"D", bus:"J95" } ]->(station_46)
MATCH (station_46:STATION {id:46}), (station_14:STATION {id:14}) CREATE UNIQUE (station_46)-[:J95 { line:"D", bus:"J95" } ]->(station_14)
MATCH (station_14:STATION {id:14}), (station_13:STATION {id:13}) CREATE UNIQUE (station_14)-[:J95 { line:"A", bus:"J95" } ]->(station_13)
MATCH (station_13:STATION {id:13}), (station_11:STATION {id:11}) CREATE UNIQUE (station_13)-[:J95 { line:"A", bus:"J95" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_10:STATION {id:10}) CREATE UNIQUE (station_11)-[:J95 { line:"A", bus:"J95" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_9:STATION {id:9}) CREATE UNIQUE (station_10)-[:J95 { line:"A", bus:"J95" } ]->(station_9)
MATCH (station_9:STATION {id:9}), (station_3:STATION {id:3}) CREATE UNIQUE (station_9)-[:J95 { line:"A", bus:"J95" } ]->(station_3)
MATCH (station_3:STATION {id:3}), (station_69:STATION {id:69}) CREATE UNIQUE (station_3)-[:J95 { line:"A", bus:"J95" } ]->(station_69)
MATCH (station_69:STATION {id:69}), (station_152:STATION {id:152}) CREATE UNIQUE (station_69)-[:J95 { line:"F", bus:"J95" } ]->(station_152)
MATCH (station_152:STATION {id:152}), (station_151:STATION {id:151}) CREATE UNIQUE (station_152)-[:J95 { line:"J", bus:"J95" } ]->(station_151)
MATCH (station_150:STATION {id:150}), (station_117:STATION {id:117}) CREATE UNIQUE (station_150)-[:K6 { line:"J", bus:"K6" } ]->(station_117)
MATCH (station_117:STATION {id:117}), (station_118:STATION {id:118}) CREATE UNIQUE (station_117)-[:K6 { line:"K", bus:"K6" } ]->(station_118)
MATCH (station_118:STATION {id:118}), (station_119:STATION {id:119}) CREATE UNIQUE (station_118)-[:K6 { line:"K", bus:"K6" } ]->(station_119)
MATCH (station_119:STATION {id:119}), (station_120:STATION {id:120}) CREATE UNIQUE (station_119)-[:K6 { line:"K", bus:"K6" } ]->(station_120)
MATCH (station_120:STATION {id:120}), (station_121:STATION {id:121}) CREATE UNIQUE (station_120)-[:K6 { line:"K", bus:"K6" } ]->(station_121)
MATCH (station_121:STATION {id:121}), (station_122:STATION {id:122}) CREATE UNIQUE (station_121)-[:K6 { line:"K", bus:"K6" } ]->(station_122)
MATCH (station_122:STATION {id:122}), (station_123:STATION {id:123}) CREATE UNIQUE (station_122)-[:K6 { line:"K", bus:"K6" } ]->(station_123)
MATCH (station_123:STATION {id:123}), (station_124:STATION {id:124}) CREATE UNIQUE (station_123)-[:K6 { line:"K", bus:"K6" } ]->(station_124)
MATCH (station_124:STATION {id:124}), (station_125:STATION {id:125}) CREATE UNIQUE (station_124)-[:K6 { line:"K", bus:"K6" } ]->(station_125)
MATCH (station_125:STATION {id:125}), (station_126:STATION {id:126}) CREATE UNIQUE (station_125)-[:K6 { line:"K", bus:"K6" } ]->(station_126)
MATCH (station_126:STATION {id:126}), (station_127:STATION {id:127}) CREATE UNIQUE (station_126)-[:K6 { line:"K", bus:"K6" } ]->(station_127)
MATCH (station_127:STATION {id:127}), (station_128:STATION {id:128}) CREATE UNIQUE (station_127)-[:K6 { line:"K", bus:"K6" } ]->(station_128)
MATCH (station_128:STATION {id:128}), (station_129:STATION {id:129}) CREATE UNIQUE (station_128)-[:K6 { line:"K", bus:"K6" } ]->(station_129)
MATCH (station_139:STATION {id:139}), (station_137:STATION {id:137}) CREATE UNIQUE (station_139)-[:K10 { line:"L", bus:"K10" } ]->(station_137)
MATCH (station_137:STATION {id:137}), (station_134:STATION {id:134}) CREATE UNIQUE (station_137)-[:K10 { line:"L", bus:"K10" } ]->(station_134)
MATCH (station_134:STATION {id:134}), (station_1:STATION {id:1}) CREATE UNIQUE (station_134)-[:K10 { line:"L", bus:"K10" } ]->(station_1)
MATCH (station_1:STATION {id:1}), (station_2:STATION {id:2}) CREATE UNIQUE (station_1)-[:K10 { line:"A", bus:"K10" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_4:STATION {id:4}) CREATE UNIQUE (station_2)-[:K10 { line:"A", bus:"K10" } ]->(station_4)
MATCH (station_4:STATION {id:4}), (station_117:STATION {id:117}) CREATE UNIQUE (station_4)-[:K10 { line:"A", bus:"K10" } ]->(station_117)
MATCH (station_117:STATION {id:117}), (station_119:STATION {id:119}) CREATE UNIQUE (station_117)-[:K10 { line:"K", bus:"K10" } ]->(station_119)
MATCH (station_119:STATION {id:119}), (station_122:STATION {id:122}) CREATE UNIQUE (station_119)-[:K10 { line:"K", bus:"K10" } ]->(station_122)
MATCH (station_122:STATION {id:122}), (station_123:STATION {id:123}) CREATE UNIQUE (station_122)-[:K10 { line:"K", bus:"K10" } ]->(station_123)
MATCH (station_123:STATION {id:123}), (station_124:STATION {id:124}) CREATE UNIQUE (station_123)-[:K10 { line:"K", bus:"K10" } ]->(station_124)
MATCH (station_124:STATION {id:124}), (station_127:STATION {id:127}) CREATE UNIQUE (station_124)-[:K10 { line:"K", bus:"K10" } ]->(station_127)
MATCH (station_127:STATION {id:127}), (station_128:STATION {id:128}) CREATE UNIQUE (station_127)-[:K10 { line:"K", bus:"K10" } ]->(station_128)
MATCH (station_128:STATION {id:128}), (station_129:STATION {id:129}) CREATE UNIQUE (station_128)-[:K10 { line:"K", bus:"K10" } ]->(station_129)
MATCH (station_23:STATION {id:23}), (station_22:STATION {id:22}) CREATE UNIQUE (station_23)-[:K23 { line:"B", bus:"K23" } ]->(station_22)
MATCH (station_22:STATION {id:22}), (station_21:STATION {id:21}) CREATE UNIQUE (station_22)-[:K23 { line:"B", bus:"K23" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_16:STATION {id:16}) CREATE UNIQUE (station_21)-[:K23 { line:"B", bus:"K23" } ]->(station_16)
MATCH (station_16:STATION {id:16}), (station_10:STATION {id:10}) CREATE UNIQUE (station_16)-[:K23 { line:"B", bus:"K23" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_8:STATION {id:8}) CREATE UNIQUE (station_10)-[:K23 { line:"A", bus:"K23" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_5:STATION {id:5}) CREATE UNIQUE (station_8)-[:K23 { line:"A", bus:"K23" } ]->(station_5)
MATCH (station_5:STATION {id:5}), (station_118:STATION {id:118}) CREATE UNIQUE (station_5)-[:K23 { line:"A", bus:"K23" } ]->(station_118)
MATCH (station_118:STATION {id:118}), (station_119:STATION {id:119}) CREATE UNIQUE (station_118)-[:K23 { line:"K", bus:"K23" } ]->(station_119)
MATCH (station_119:STATION {id:119}), (station_122:STATION {id:122}) CREATE UNIQUE (station_119)-[:K23 { line:"K", bus:"K23" } ]->(station_122)
MATCH (station_122:STATION {id:122}), (station_123:STATION {id:123}) CREATE UNIQUE (station_122)-[:K23 { line:"K", bus:"K23" } ]->(station_123)
MATCH (station_123:STATION {id:123}), (station_124:STATION {id:124}) CREATE UNIQUE (station_123)-[:K23 { line:"K", bus:"K23" } ]->(station_124)
MATCH (station_124:STATION {id:124}), (station_125:STATION {id:125}) CREATE UNIQUE (station_124)-[:K23 { line:"K", bus:"K23" } ]->(station_125)
MATCH (station_125:STATION {id:125}), (station_126:STATION {id:126}) CREATE UNIQUE (station_125)-[:K23 { line:"K", bus:"K23" } ]->(station_126)
MATCH (station_126:STATION {id:126}), (station_129:STATION {id:129}) CREATE UNIQUE (station_126)-[:K23 { line:"K", bus:"K23" } ]->(station_129)
MATCH (station_144:STATION {id:144}), (station_143:STATION {id:143}) CREATE UNIQUE (station_144)-[:K43 { line:"G", bus:"K43" } ]->(station_143)
MATCH (station_143:STATION {id:143}), (station_142:STATION {id:142}) CREATE UNIQUE (station_143)-[:K43 { line:"G", bus:"K43" } ]->(station_142)
MATCH (station_142:STATION {id:142}), (station_141:STATION {id:141}) CREATE UNIQUE (station_142)-[:K43 { line:"G", bus:"K43" } ]->(station_141)
MATCH (station_141:STATION {id:141}), (station_94:STATION {id:94}) CREATE UNIQUE (station_141)-[:K43 { line:"G", bus:"K43" } ]->(station_94)
MATCH (station_94:STATION {id:94}), (station_92:STATION {id:92}) CREATE UNIQUE (station_94)-[:K43 { line:"G", bus:"K43" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_89:STATION {id:89}) CREATE UNIQUE (station_92)-[:K43 { line:"G", bus:"K43" } ]->(station_89)
MATCH (station_89:STATION {id:89}), (station_58:STATION {id:58}) CREATE UNIQUE (station_89)-[:K43 { line:"G", bus:"K43" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_60:STATION {id:60}) CREATE UNIQUE (station_58)-[:K43 { line:"E", bus:"K43" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_120:STATION {id:120}) CREATE UNIQUE (station_60)-[:K43 { line:"E", bus:"K43" } ]->(station_120)
MATCH (station_111:STATION {id:111}), (station_110:STATION {id:110}) CREATE UNIQUE (station_111)-[:K54 { line:"H", bus:"K54" } ]->(station_110)
MATCH (station_110:STATION {id:110}), (station_106:STATION {id:106}) CREATE UNIQUE (station_110)-[:K54 { line:"H", bus:"K54" } ]->(station_106)
MATCH (station_106:STATION {id:106}), (station_103:STATION {id:103}) CREATE UNIQUE (station_106)-[:K54 { line:"H", bus:"K54" } ]->(station_103)
MATCH (station_103:STATION {id:103}), (station_100:STATION {id:100}) CREATE UNIQUE (station_103)-[:K54 { line:"H", bus:"K54" } ]->(station_100)
MATCH (station_100:STATION {id:100}), (station_118:STATION {id:118}) CREATE UNIQUE (station_100)-[:K54 { line:"H", bus:"K54" } ]->(station_118)
MATCH (station_118:STATION {id:118}), (station_119:STATION {id:119}) CREATE UNIQUE (station_118)-[:K54 { line:"K", bus:"K54" } ]->(station_119)
MATCH (station_119:STATION {id:119}), (station_120:STATION {id:120}) CREATE UNIQUE (station_119)-[:K54 { line:"K", bus:"K54" } ]->(station_120)
MATCH (station_120:STATION {id:120}), (station_121:STATION {id:121}) CREATE UNIQUE (station_120)-[:K54 { line:"K", bus:"K54" } ]->(station_121)
MATCH (station_121:STATION {id:121}), (station_123:STATION {id:123}) CREATE UNIQUE (station_121)-[:K54 { line:"K", bus:"K54" } ]->(station_123)
MATCH (station_123:STATION {id:123}), (station_124:STATION {id:124}) CREATE UNIQUE (station_123)-[:K54 { line:"K", bus:"K54" } ]->(station_124)
MATCH (station_124:STATION {id:124}), (station_125:STATION {id:125}) CREATE UNIQUE (station_124)-[:K54 { line:"K", bus:"K54" } ]->(station_125)
MATCH (station_125:STATION {id:125}), (station_126:STATION {id:126}) CREATE UNIQUE (station_125)-[:K54 { line:"K", bus:"K54" } ]->(station_126)
MATCH (station_126:STATION {id:126}), (station_128:STATION {id:128}) CREATE UNIQUE (station_126)-[:K54 { line:"K", bus:"K54" } ]->(station_128)
MATCH (station_128:STATION {id:128}), (station_129:STATION {id:129}) CREATE UNIQUE (station_128)-[:K54 { line:"K", bus:"K54" } ]->(station_129)
MATCH (station_139:STATION {id:139}), (station_137:STATION {id:137}) CREATE UNIQUE (station_139)-[:K97 { line:"L", bus:"K97" } ]->(station_137)
MATCH (station_137:STATION {id:137}), (station_134:STATION {id:134}) CREATE UNIQUE (station_137)-[:K97 { line:"L", bus:"K97" } ]->(station_134)
MATCH (station_134:STATION {id:134}), (station_1:STATION {id:1}) CREATE UNIQUE (station_134)-[:K97 { line:"L", bus:"K97" } ]->(station_1)
MATCH (station_1:STATION {id:1}), (station_2:STATION {id:2}) CREATE UNIQUE (station_1)-[:K97 { line:"A", bus:"K97" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_4:STATION {id:4}) CREATE UNIQUE (station_2)-[:K97 { line:"A", bus:"K97" } ]->(station_4)
MATCH (station_4:STATION {id:4}), (station_117:STATION {id:117}) CREATE UNIQUE (station_4)-[:K97 { line:"A", bus:"K97" } ]->(station_117)
MATCH (station_117:STATION {id:117}), (station_119:STATION {id:119}) CREATE UNIQUE (station_117)-[:K97 { line:"K", bus:"K97" } ]->(station_119)
MATCH (station_119:STATION {id:119}), (station_122:STATION {id:122}) CREATE UNIQUE (station_119)-[:K97 { line:"K", bus:"K97" } ]->(station_122)
MATCH (station_122:STATION {id:122}), (station_123:STATION {id:123}) CREATE UNIQUE (station_122)-[:K97 { line:"K", bus:"K97" } ]->(station_123)
MATCH (station_123:STATION {id:123}), (station_124:STATION {id:124}) CREATE UNIQUE (station_123)-[:K97 { line:"K", bus:"K97" } ]->(station_124)
MATCH (station_124:STATION {id:124}), (station_127:STATION {id:127}) CREATE UNIQUE (station_124)-[:K97 { line:"K", bus:"K97" } ]->(station_127)
MATCH (station_127:STATION {id:127}), (station_128:STATION {id:128}) CREATE UNIQUE (station_127)-[:K97 { line:"K", bus:"K97" } ]->(station_128)
MATCH (station_128:STATION {id:128}), (station_129:STATION {id:129}) CREATE UNIQUE (station_128)-[:K97 { line:"K", bus:"K97" } ]->(station_129)
MATCH (station_144:STATION {id:144}), (station_143:STATION {id:143}) CREATE UNIQUE (station_144)-[:K98 { line:"G", bus:"K98" } ]->(station_143)
MATCH (station_143:STATION {id:143}), (station_142:STATION {id:142}) CREATE UNIQUE (station_143)-[:K98 { line:"G", bus:"K98" } ]->(station_142)
MATCH (station_142:STATION {id:142}), (station_141:STATION {id:141}) CREATE UNIQUE (station_142)-[:K98 { line:"G", bus:"K98" } ]->(station_141)
MATCH (station_141:STATION {id:141}), (station_94:STATION {id:94}) CREATE UNIQUE (station_141)-[:K98 { line:"G", bus:"K98" } ]->(station_94)
MATCH (station_94:STATION {id:94}), (station_92:STATION {id:92}) CREATE UNIQUE (station_94)-[:K98 { line:"G", bus:"K98" } ]->(station_92)
MATCH (station_92:STATION {id:92}), (station_89:STATION {id:89}) CREATE UNIQUE (station_92)-[:K98 { line:"G", bus:"K98" } ]->(station_89)
MATCH (station_89:STATION {id:89}), (station_58:STATION {id:58}) CREATE UNIQUE (station_89)-[:K98 { line:"G", bus:"K98" } ]->(station_58)
MATCH (station_58:STATION {id:58}), (station_60:STATION {id:60}) CREATE UNIQUE (station_58)-[:K98 { line:"E", bus:"K98" } ]->(station_60)
MATCH (station_60:STATION {id:60}), (station_120:STATION {id:120}) CREATE UNIQUE (station_60)-[:K98 { line:"E", bus:"K98" } ]->(station_120)
MATCH (station_140:STATION {id:140}), (station_130:STATION {id:130}) CREATE UNIQUE (station_140)-[:L7 { line:"M", bus:"L7" } ]->(station_130)
MATCH (station_130:STATION {id:130}), (station_131:STATION {id:131}) CREATE UNIQUE (station_130)-[:L7 { line:"L", bus:"L7" } ]->(station_131)
MATCH (station_131:STATION {id:131}), (station_132:STATION {id:132}) CREATE UNIQUE (station_131)-[:L7 { line:"L", bus:"L7" } ]->(station_132)
MATCH (station_132:STATION {id:132}), (station_133:STATION {id:133}) CREATE UNIQUE (station_132)-[:L7 { line:"L", bus:"L7" } ]->(station_133)
MATCH (station_133:STATION {id:133}), (station_134:STATION {id:134}) CREATE UNIQUE (station_133)-[:L7 { line:"L", bus:"L7" } ]->(station_134)
MATCH (station_134:STATION {id:134}), (station_135:STATION {id:135}) CREATE UNIQUE (station_134)-[:L7 { line:"L", bus:"L7" } ]->(station_135)
MATCH (station_135:STATION {id:135}), (station_136:STATION {id:136}) CREATE UNIQUE (station_135)-[:L7 { line:"L", bus:"L7" } ]->(station_136)
MATCH (station_136:STATION {id:136}), (station_137:STATION {id:137}) CREATE UNIQUE (station_136)-[:L7 { line:"L", bus:"L7" } ]->(station_137)
MATCH (station_137:STATION {id:137}), (station_138:STATION {id:138}) CREATE UNIQUE (station_137)-[:L7 { line:"L", bus:"L7" } ]->(station_138)
MATCH (station_138:STATION {id:138}), (station_139:STATION {id:139}) CREATE UNIQUE (station_138)-[:L7 { line:"L", bus:"L7" } ]->(station_139)
MATCH (station_129:STATION {id:129}), (station_128:STATION {id:128}) CREATE UNIQUE (station_129)-[:L10 { line:"K", bus:"L10" } ]->(station_128)
MATCH (station_128:STATION {id:128}), (station_127:STATION {id:127}) CREATE UNIQUE (station_128)-[:L10 { line:"K", bus:"L10" } ]->(station_127)
MATCH (station_127:STATION {id:127}), (station_124:STATION {id:124}) CREATE UNIQUE (station_127)-[:L10 { line:"K", bus:"L10" } ]->(station_124)
MATCH (station_124:STATION {id:124}), (station_123:STATION {id:123}) CREATE UNIQUE (station_124)-[:L10 { line:"K", bus:"L10" } ]->(station_123)
MATCH (station_123:STATION {id:123}), (station_122:STATION {id:122}) CREATE UNIQUE (station_123)-[:L10 { line:"K", bus:"L10" } ]->(station_122)
MATCH (station_122:STATION {id:122}), (station_119:STATION {id:119}) CREATE UNIQUE (station_122)-[:L10 { line:"K", bus:"L10" } ]->(station_119)
MATCH (station_119:STATION {id:119}), (station_117:STATION {id:117}) CREATE UNIQUE (station_119)-[:L10 { line:"K", bus:"L10" } ]->(station_117)
MATCH (station_117:STATION {id:117}), (station_4:STATION {id:4}) CREATE UNIQUE (station_117)-[:L10 { line:"K", bus:"L10" } ]->(station_4)
MATCH (station_4:STATION {id:4}), (station_2:STATION {id:2}) CREATE UNIQUE (station_4)-[:L10 { line:"A", bus:"L10" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_1:STATION {id:1}) CREATE UNIQUE (station_2)-[:L10 { line:"A", bus:"L10" } ]->(station_1)
MATCH (station_1:STATION {id:1}), (station_134:STATION {id:134}) CREATE UNIQUE (station_1)-[:L10 { line:"A", bus:"L10" } ]->(station_134)
MATCH (station_134:STATION {id:134}), (station_137:STATION {id:137}) CREATE UNIQUE (station_134)-[:L10 { line:"L", bus:"L10" } ]->(station_137)
MATCH (station_137:STATION {id:137}), (station_139:STATION {id:139}) CREATE UNIQUE (station_137)-[:L10 { line:"L", bus:"L10" } ]->(station_139)
MATCH (station_30:STATION {id:30}), (station_23:STATION {id:23}) CREATE UNIQUE (station_30)-[:L18 { line:"B", bus:"L18" } ]->(station_23)
MATCH (station_23:STATION {id:23}), (station_21:STATION {id:21}) CREATE UNIQUE (station_23)-[:L18 { line:"B", bus:"L18" } ]->(station_21)
MATCH (station_21:STATION {id:21}), (station_20:STATION {id:20}) CREATE UNIQUE (station_21)-[:L18 { line:"B", bus:"L18" } ]->(station_20)
MATCH (station_20:STATION {id:20}), (station_19:STATION {id:19}) CREATE UNIQUE (station_20)-[:L18 { line:"B", bus:"L18" } ]->(station_19)
MATCH (station_19:STATION {id:19}), (station_17:STATION {id:17}) CREATE UNIQUE (station_19)-[:L18 { line:"B", bus:"L18" } ]->(station_17)
MATCH (station_17:STATION {id:17}), (station_11:STATION {id:11}) CREATE UNIQUE (station_17)-[:L18 { line:"B", bus:"L18" } ]->(station_11)
MATCH (station_11:STATION {id:11}), (station_10:STATION {id:10}) CREATE UNIQUE (station_11)-[:L18 { line:"A", bus:"L18" } ]->(station_10)
MATCH (station_10:STATION {id:10}), (station_8:STATION {id:8}) CREATE UNIQUE (station_10)-[:L18 { line:"A", bus:"L18" } ]->(station_8)
MATCH (station_8:STATION {id:8}), (station_6:STATION {id:6}) CREATE UNIQUE (station_8)-[:L18 { line:"A", bus:"L18" } ]->(station_6)
MATCH (station_6:STATION {id:6}), (station_1:STATION {id:1}) CREATE UNIQUE (station_6)-[:L18 { line:"A", bus:"L18" } ]->(station_1)
MATCH (station_1:STATION {id:1}), (station_133:STATION {id:133}) CREATE UNIQUE (station_1)-[:L18 { line:"A", bus:"L18" } ]->(station_133)
MATCH (station_133:STATION {id:133}), (station_137:STATION {id:137}) CREATE UNIQUE (station_133)-[:L18 { line:"L", bus:"L18" } ]->(station_137)
MATCH (station_137:STATION {id:137}), (station_138:STATION {id:138}) CREATE UNIQUE (station_137)-[:L18 { line:"L", bus:"L18" } ]->(station_138)
MATCH (station_138:STATION {id:138}), (station_139:STATION {id:139}) CREATE UNIQUE (station_138)-[:L18 { line:"L", bus:"L18" } ]->(station_139)
MATCH (station_140:STATION {id:140}), (station_130:STATION {id:130}) CREATE UNIQUE (station_140)-[:L80 { line:"M", bus:"L80" } ]->(station_130)
MATCH (station_130:STATION {id:130}), (station_131:STATION {id:131}) CREATE UNIQUE (station_130)-[:L80 { line:"L", bus:"L80" } ]->(station_131)
MATCH (station_131:STATION {id:131}), (station_133:STATION {id:133}) CREATE UNIQUE (station_131)-[:L80 { line:"L", bus:"L80" } ]->(station_133)
MATCH (station_129:STATION {id:129}), (station_128:STATION {id:128}) CREATE UNIQUE (station_129)-[:L97 { line:"K", bus:"L97" } ]->(station_128)
MATCH (station_128:STATION {id:128}), (station_127:STATION {id:127}) CREATE UNIQUE (station_128)-[:L97 { line:"K", bus:"L97" } ]->(station_127)
MATCH (station_127:STATION {id:127}), (station_124:STATION {id:124}) CREATE UNIQUE (station_127)-[:L97 { line:"K", bus:"L97" } ]->(station_124)
MATCH (station_124:STATION {id:124}), (station_123:STATION {id:123}) CREATE UNIQUE (station_124)-[:L97 { line:"K", bus:"L97" } ]->(station_123)
MATCH (station_123:STATION {id:123}), (station_122:STATION {id:122}) CREATE UNIQUE (station_123)-[:L97 { line:"K", bus:"L97" } ]->(station_122)
MATCH (station_122:STATION {id:122}), (station_119:STATION {id:119}) CREATE UNIQUE (station_122)-[:L97 { line:"K", bus:"L97" } ]->(station_119)
MATCH (station_119:STATION {id:119}), (station_117:STATION {id:117}) CREATE UNIQUE (station_119)-[:L97 { line:"K", bus:"L97" } ]->(station_117)
MATCH (station_117:STATION {id:117}), (station_4:STATION {id:4}) CREATE UNIQUE (station_117)-[:L97 { line:"K", bus:"L97" } ]->(station_4)
MATCH (station_4:STATION {id:4}), (station_2:STATION {id:2}) CREATE UNIQUE (station_4)-[:L97 { line:"A", bus:"L97" } ]->(station_2)
MATCH (station_2:STATION {id:2}), (station_1:STATION {id:1}) CREATE UNIQUE (station_2)-[:L97 { line:"A", bus:"L97" } ]->(station_1)
MATCH (station_1:STATION {id:1}), (station_134:STATION {id:134}) CREATE UNIQUE (station_1)-[:L97 { line:"A", bus:"L97" } ]->(station_134)
MATCH (station_134:STATION {id:134}), (station_137:STATION {id:137}) CREATE UNIQUE (station_134)-[:L97 { line:"L", bus:"L97" } ]->(station_137)
MATCH (station_137:STATION {id:137}), (station_139:STATION {id:139}) CREATE UNIQUE (station_137)-[:L97 { line:"L", bus:"L97" } ]->(station_139)
MATCH (station_139:STATION {id:139}), (station_138:STATION {id:138}) CREATE UNIQUE (station_139)-[:M7 { line:"L", bus:"M7" } ]->(station_138)
MATCH (station_138:STATION {id:138}), (station_137:STATION {id:137}) CREATE UNIQUE (station_138)-[:M7 { line:"L", bus:"M7" } ]->(station_137)
MATCH (station_137:STATION {id:137}), (station_136:STATION {id:136}) CREATE UNIQUE (station_137)-[:M7 { line:"L", bus:"M7" } ]->(station_136)
MATCH (station_136:STATION {id:136}), (station_135:STATION {id:135}) CREATE UNIQUE (station_136)-[:M7 { line:"L", bus:"M7" } ]->(station_135)
MATCH (station_135:STATION {id:135}), (station_134:STATION {id:134}) CREATE UNIQUE (station_135)-[:M7 { line:"L", bus:"M7" } ]->(station_134)
MATCH (station_134:STATION {id:134}), (station_133:STATION {id:133}) CREATE UNIQUE (station_134)-[:M7 { line:"L", bus:"M7" } ]->(station_133)
MATCH (station_133:STATION {id:133}), (station_132:STATION {id:132}) CREATE UNIQUE (station_133)-[:M7 { line:"L", bus:"M7" } ]->(station_132)
MATCH (station_132:STATION {id:132}), (station_131:STATION {id:131}) CREATE UNIQUE (station_132)-[:M7 { line:"L", bus:"M7" } ]->(station_131)
MATCH (station_131:STATION {id:131}), (station_130:STATION {id:130}) CREATE UNIQUE (station_131)-[:M7 { line:"L", bus:"M7" } ]->(station_130)
MATCH (station_130:STATION {id:130}), (station_140:STATION {id:140}) CREATE UNIQUE (station_130)-[:M7 { line:"L", bus:"M7" } ]->(station_140)
MATCH (station_86:STATION {id:86}), (station_85:STATION {id:85}) CREATE UNIQUE (station_86)-[:M51 { line:"F", bus:"M51" } ]->(station_85)
MATCH (station_85:STATION {id:85}), (station_84:STATION {id:84}) CREATE UNIQUE (station_85)-[:M51 { line:"F", bus:"M51" } ]->(station_84)
MATCH (station_84:STATION {id:84}), (station_82:STATION {id:82}) CREATE UNIQUE (station_84)-[:M51 { line:"F", bus:"M51" } ]->(station_82)
MATCH (station_82:STATION {id:82}), (station_81:STATION {id:81}) CREATE UNIQUE (station_82)-[:M51 { line:"F", bus:"M51" } ]->(station_81)
MATCH (station_81:STATION {id:81}), (station_80:STATION {id:80}) CREATE UNIQUE (station_81)-[:M51 { line:"F", bus:"M51" } ]->(station_80)
MATCH (station_80:STATION {id:80}), (station_79:STATION {id:79}) CREATE UNIQUE (station_80)-[:M51 { line:"F", bus:"M51" } ]->(station_79)
MATCH (station_79:STATION {id:79}), (station_78:STATION {id:78}) CREATE UNIQUE (station_79)-[:M51 { line:"F", bus:"M51" } ]->(station_78)
MATCH (station_78:STATION {id:78}), (station_77:STATION {id:77}) CREATE UNIQUE (station_78)-[:M51 { line:"F", bus:"M51" } ]->(station_77)
MATCH (station_77:STATION {id:77}), (station_72:STATION {id:72}) CREATE UNIQUE (station_77)-[:M51 { line:"F", bus:"M51" } ]->(station_72)
MATCH (station_72:STATION {id:72}), (station_131:STATION {id:131}) CREATE UNIQUE (station_72)-[:M51 { line:"F", bus:"M51" } ]->(station_131)
MATCH (station_131:STATION {id:131}), (station_130:STATION {id:130}) CREATE UNIQUE (station_131)-[:M51 { line:"L", bus:"M51" } ]->(station_130)
MATCH (station_130:STATION {id:130}), (station_140:STATION {id:140}) CREATE UNIQUE (station_130)-[:M51 { line:"L", bus:"M51" } ]->(station_140)
MATCH (station_133:STATION {id:133}), (station_131:STATION {id:131}) CREATE UNIQUE (station_133)-[:M80 { line:"L", bus:"M80" } ]->(station_131)
MATCH (station_131:STATION {id:131}), (station_130:STATION {id:130}) CREATE UNIQUE (station_131)-[:M80 { line:"L", bus:"M80" } ]->(station_130)
MATCH (station_130:STATION {id:130}), (station_140:STATION {id:140}) CREATE UNIQUE (station_130)-[:M80 { line:"L", bus:"M80" } ]->(station_140)

The graph

match n return n

Queries:

Shortets route between to Stations

//AllShorest
match p=allShortestPaths((st1:STATION {id:57})-->(st2:STATION {id:150}))
with reduce(acc=[], route in rels(p)| case when length(acc) > 0 and last(extract(a in acc| a.bus)) = route.bus then acc else acc + [route] end) as reducedRoutes
return reducedRoutes, length(reducedRoutes) as len

Direct bus routes or less bus change needed between to routes (Not fully working, show just direct routes)

//No change bus
match p=(st1:STATION {id:57})-[r*..15]->(st2:STATION {id:150})
with head(r).bus as bus, head(r).line as line, r
where all(x in r where x.bus=bus) and all(y in r where y.line = line)
return

About

Created by Sebastian Ortiz, Licensed Under Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) Based on previus work by Luanne Misquitta :

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment