-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpathway.xml
More file actions
4662 lines (4662 loc) · 221 KB
/
pathway.xml
File metadata and controls
4662 lines (4662 loc) · 221 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<Process nextId="4100" reactomeDiagramId="504073" hideCompartmentInName="true">
<Properties>
<displayName>Diagram of Metabolism of nucleotides</displayName>
</Properties>
<Nodes>
<org.gk.render.RenderableCompartment id="13" reactomeId="7660" schemaClass="EntityCompartment" position="2063 273" bounds="1659 108 808 331" textPosition="2293 392" bgColor="250 240 240" lineColor="255 153 102" insets="1670 118 787 313">
<Properties>
<displayName>nucleoplasm</displayName>
</Properties>
<Components>
<Component id="167" />
<Component id="168" />
<Component id="169" />
<Component id="170" />
<Component id="172" />
<Component id="171" />
<Component id="476" />
<Component id="477" />
<Component id="478" />
<Component id="479" />
<Component id="480" />
<Component id="481" />
<Component id="482" />
<Component id="484" />
<Component id="719" />
<Component id="717" />
<Component id="723" />
<Component id="721" />
<Component id="724" />
<Component id="725" />
<Component id="730" />
<Component id="728" />
<Component id="1106" />
<Component id="1110" />
<Component id="1109" />
<Component id="1107" />
<Component id="1108" />
<Component id="1112" />
<Component id="1111" />
<Component id="1113" />
<Component id="1114" />
<Component id="1116" />
<Component id="496" />
</Components>
</org.gk.render.RenderableCompartment>
<org.gk.render.RenderableCompartment id="14" reactomeId="5460" schemaClass="EntityCompartment" position="2052 1531" bounds="1678 1278 749 507" textPosition="1697 1736" bgColor="250 240 240" lineColor="255 153 102" insets="1688 1288 731 487">
<Properties>
<displayName>mitochondrial matrix</displayName>
</Properties>
<Components>
<Component id="181" />
<Component id="183" />
<Component id="185" />
<Component id="186" />
<Component id="184" />
<Component id="182" />
<Component id="252" />
<Component id="247" />
<Component id="249" />
<Component id="251" />
<Component id="502" />
<Component id="497" />
<Component id="498" />
<Component id="499" />
<Component id="500" />
<Component id="501" />
<Component id="503" />
<Component id="746" />
<Component id="747" />
<Component id="748" />
<Component id="749" />
<Component id="750" />
<Component id="751" />
<Component id="752" />
<Component id="753" />
<Component id="754" />
<Component id="755" />
<Component id="756" />
<Component id="1044" />
<Component id="1045" />
<Component id="1040" />
<Component id="1041" />
<Component id="1042" />
<Component id="1043" />
</Components>
</org.gk.render.RenderableCompartment>
<org.gk.render.RenderableCompartment id="15" reactomeId="70101" schemaClass="EntityCompartment" position="1790 1131" bounds="264 4 3052 2254" textPosition="292 2196" bgColor="250 240 240" lineColor="255 153 102" insets="275 14 3030 2223">
<Properties>
<displayName>cytosol</displayName>
</Properties>
<Components>
<Component id="13" />
<Component id="14" />
<Component id="21" />
<Component id="22" />
<Component id="23" />
<Component id="16" />
<Component id="17" />
<Component id="18" />
<Component id="19" />
<Component id="28" />
<Component id="30" />
<Component id="35" />
<Component id="36" />
<Component id="37" />
<Component id="42" />
<Component id="43" />
<Component id="44" />
<Component id="45" />
<Component id="46" />
<Component id="47" />
<Component id="48" />
<Component id="50" />
<Component id="52" />
<Component id="54" />
<Component id="55" />
<Component id="56" />
<Component id="57" />
<Component id="60" />
<Component id="61" />
<Component id="62" />
<Component id="63" />
<Component id="65" />
<Component id="66" />
<Component id="67" />
<Component id="68" />
<Component id="69" />
<Component id="70" />
<Component id="72" />
<Component id="73" />
<Component id="74" />
<Component id="75" />
<Component id="76" />
<Component id="77" />
<Component id="78" />
<Component id="80" />
<Component id="82" />
<Component id="83" />
<Component id="84" />
<Component id="85" />
<Component id="86" />
<Component id="87" />
<Component id="88" />
<Component id="89" />
<Component id="90" />
<Component id="91" />
<Component id="92" />
<Component id="94" />
<Component id="95" />
<Component id="96" />
<Component id="98" />
<Component id="99" />
<Component id="101" />
<Component id="103" />
<Component id="105" />
<Component id="106" />
<Component id="107" />
<Component id="108" />
<Component id="109" />
<Component id="110" />
<Component id="111" />
<Component id="112" />
<Component id="113" />
<Component id="114" />
<Component id="116" />
<Component id="117" />
<Component id="118" />
<Component id="119" />
<Component id="125" />
<Component id="127" />
<Component id="128" />
<Component id="126" />
<Component id="129" />
<Component id="130" />
<Component id="131" />
<Component id="132" />
<Component id="133" />
<Component id="134" />
<Component id="135" />
<Component id="137" />
<Component id="138" />
<Component id="139" />
<Component id="140" />
<Component id="143" />
<Component id="144" />
<Component id="145" />
<Component id="146" />
<Component id="147" />
<Component id="148" />
<Component id="149" />
<Component id="150" />
<Component id="151" />
<Component id="153" />
<Component id="155" />
<Component id="156" />
<Component id="157" />
<Component id="160" />
<Component id="161" />
<Component id="166" />
<Component id="162" />
<Component id="163" />
<Component id="164" />
<Component id="165" />
<Component id="174" />
<Component id="175" />
<Component id="176" />
<Component id="177" />
<Component id="179" />
<Component id="188" />
<Component id="189" />
<Component id="193" />
<Component id="190" />
<Component id="191" />
<Component id="192" />
<Component id="197" />
<Component id="198" />
<Component id="199" />
<Component id="200" />
<Component id="201" />
<Component id="202" />
<Component id="203" />
<Component id="204" />
<Component id="205" />
<Component id="206" />
<Component id="207" />
<Component id="208" />
<Component id="209" />
<Component id="210" />
<Component id="211" />
<Component id="213" />
<Component id="216" />
<Component id="217" />
<Component id="218" />
<Component id="219" />
<Component id="220" />
<Component id="221" />
<Component id="223" />
<Component id="224" />
<Component id="226" />
<Component id="228" />
<Component id="231" />
<Component id="233" />
<Component id="229" />
<Component id="230" />
<Component id="237" />
<Component id="238" />
<Component id="239" />
<Component id="240" />
<Component id="243" />
<Component id="245" />
<Component id="255" />
<Component id="256" />
<Component id="257" />
<Component id="254" />
<Component id="259" />
<Component id="261" />
<Component id="262" />
<Component id="263" />
<Component id="264" />
<Component id="265" />
<Component id="266" />
<Component id="267" />
<Component id="268" />
<Component id="269" />
<Component id="270" />
<Component id="271" />
<Component id="272" />
<Component id="274" />
<Component id="277" />
<Component id="278" />
<Component id="279" />
<Component id="280" />
<Component id="281" />
<Component id="282" />
<Component id="283" />
<Component id="285" />
<Component id="286" />
<Component id="289" />
<Component id="290" />
<Component id="291" />
<Component id="292" />
<Component id="294" />
<Component id="305" />
<Component id="306" />
<Component id="307" />
<Component id="308" />
<Component id="309" />
<Component id="310" />
<Component id="311" />
<Component id="312" />
<Component id="313" />
<Component id="314" />
<Component id="315" />
<Component id="316" />
<Component id="318" />
<Component id="323" />
<Component id="324" />
<Component id="325" />
<Component id="319" />
<Component id="320" />
<Component id="321" />
<Component id="322" />
<Component id="328" />
<Component id="331" />
<Component id="335" />
<Component id="336" />
<Component id="337" />
<Component id="339" />
<Component id="340" />
<Component id="341" />
<Component id="342" />
<Component id="345" />
<Component id="347" />
<Component id="350" />
<Component id="351" />
<Component id="352" />
<Component id="353" />
<Component id="355" />
<Component id="356" />
<Component id="357" />
<Component id="358" />
<Component id="359" />
<Component id="360" />
<Component id="361" />
<Component id="362" />
<Component id="363" />
<Component id="364" />
<Component id="365" />
<Component id="368" />
<Component id="369" />
<Component id="370" />
<Component id="371" />
<Component id="372" />
<Component id="373" />
<Component id="380" />
<Component id="381" />
<Component id="382" />
<Component id="383" />
<Component id="384" />
<Component id="385" />
<Component id="389" />
<Component id="391" />
<Component id="386" />
<Component id="402" />
<Component id="403" />
<Component id="405" />
<Component id="407" />
<Component id="409" />
<Component id="414" />
<Component id="415" />
<Component id="417" />
<Component id="419" />
<Component id="421" />
<Component id="423" />
<Component id="424" />
<Component id="425" />
<Component id="426" />
<Component id="427" />
<Component id="428" />
<Component id="430" />
<Component id="431" />
<Component id="433" />
<Component id="434" />
<Component id="435" />
<Component id="437" />
<Component id="438" />
<Component id="444" />
<Component id="445" />
<Component id="446" />
<Component id="449" />
<Component id="450" />
<Component id="451" />
<Component id="452" />
<Component id="453" />
<Component id="454" />
<Component id="455" />
<Component id="456" />
<Component id="457" />
<Component id="459" />
<Component id="302" />
<Component id="394" />
<Component id="395" />
<Component id="396" />
<Component id="397" />
<Component id="398" />
<Component id="400" />
<Component id="485" />
<Component id="487" />
<Component id="488" />
<Component id="490" />
<Component id="492" />
<Component id="494" />
<Component id="486" />
<Component id="511" />
<Component id="512" />
<Component id="508" />
<Component id="509" />
<Component id="510" />
<Component id="513" />
<Component id="518" />
<Component id="515" />
<Component id="516" />
<Component id="517" />
<Component id="521" />
<Component id="522" />
<Component id="520" />
<Component id="524" />
<Component id="527" />
<Component id="529" />
<Component id="531" />
<Component id="523" />
<Component id="535" />
<Component id="536" />
<Component id="537" />
<Component id="538" />
<Component id="539" />
<Component id="534" />
<Component id="540" />
<Component id="551" />
<Component id="552" />
<Component id="549" />
<Component id="555" />
<Component id="563" />
<Component id="564" />
<Component id="565" />
<Component id="566" />
<Component id="568" />
<Component id="569" />
<Component id="575" />
<Component id="576" />
<Component id="577" />
<Component id="578" />
<Component id="579" />
<Component id="580" />
<Component id="583" />
<Component id="586" />
<Component id="587" />
<Component id="588" />
<Component id="589" />
<Component id="590" />
<Component id="591" />
<Component id="592" />
<Component id="611" />
<Component id="612" />
<Component id="613" />
<Component id="614" />
<Component id="615" />
<Component id="618" />
<Component id="622" />
<Component id="623" />
<Component id="624" />
<Component id="625" />
<Component id="626" />
<Component id="627" />
<Component id="628" />
<Component id="633" />
<Component id="634" />
<Component id="635" />
<Component id="636" />
<Component id="637" />
<Component id="638" />
<Component id="639" />
<Component id="641" />
<Component id="643" />
<Component id="632" />
<Component id="644" />
<Component id="649" />
<Component id="650" />
<Component id="651" />
<Component id="653" />
<Component id="655" />
<Component id="657" />
<Component id="659" />
<Component id="661" />
<Component id="664" />
<Component id="680" />
<Component id="682" />
<Component id="732" />
<Component id="733" />
<Component id="734" />
<Component id="29" />
<Component id="31" />
<Component id="32" />
<Component id="34" />
<Component id="53" />
<Component id="20" />
<Component id="26" />
<Component id="27" />
<Component id="679" />
<Component id="550" />
<Component id="558" />
<Component id="743" />
<Component id="757" />
<Component id="758" />
<Component id="507" />
<Component id="731" />
<Component id="998" />
<Component id="1034" />
<Component id="1036" />
<Component id="1038" />
<Component id="1039" />
<Component id="1035" />
<Component id="1046" />
<Component id="1047" />
<Component id="1048" />
<Component id="1049" />
<Component id="1050" />
<Component id="1053" />
<Component id="1057" />
<Component id="1055" />
<Component id="1061" />
<Component id="1062" />
<Component id="1060" />
<Component id="1064" />
<Component id="1066" />
<Component id="1068" />
<Component id="1070" />
<Component id="1071" />
<Component id="1072" />
<Component id="1073" />
<Component id="1076" />
<Component id="1079" />
<Component id="1080" />
<Component id="1081" />
<Component id="1082" />
<Component id="1084" />
<Component id="1085" />
<Component id="1086" />
<Component id="1088" />
<Component id="1091" />
<Component id="1092" />
<Component id="1093" />
<Component id="1094" />
<Component id="1096" />
<Component id="1098" />
<Component id="1099" />
<Component id="1100" />
<Component id="1101" />
<Component id="1102" />
<Component id="1104" />
<Component id="376" />
<Component id="377" />
<Component id="718" />
<Component id="722" />
<Component id="727" />
<Component id="729" />
<Component id="1119" />
<Component id="1120" />
<Component id="1121" />
<Component id="1122" />
<Component id="1124" />
<Component id="1126" />
<Component id="1128" />
<Component id="1130" />
<Component id="1131" />
<Component id="1135" />
<Component id="1137" />
<Component id="1139" />
<Component id="1140" />
<Component id="1141" />
<Component id="1144" />
<Component id="1142" />
</Components>
</org.gk.render.RenderableCompartment>
<org.gk.render.RenderableChemical id="17" reactomeId="73566" schemaClass="SimpleEntity" position="581 102" bounds="561 87 41 30" textPosition="563 91">
<Properties>
<displayName>PRPP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="18" reactomeId="29356" schemaClass="SimpleEntity" position="530 124" bounds="510 109 41 30" textPosition="513 113">
<Properties>
<displayName>H2O</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="19" reactomeId="29472" schemaClass="SimpleEntity" position="636 123" bounds="612 108 48 30" textPosition="616 112">
<Properties>
<displayName>L-Gln</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="20" reactomeId="111292" schemaClass="SimpleEntity" position="581 244" bounds="553 228 57 33" textPosition="566 234">
<Properties>
<displayName>PRA</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="21" reactomeId="29404" schemaClass="SimpleEntity" position="636 205" bounds="612 190 48 30" textPosition="616 194">
<Properties>
<displayName>L-Glu</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="22" reactomeId="111294" schemaClass="SimpleEntity" position="530 213" bounds="515 198 31 30" textPosition="518 202">
<Properties>
<displayName>PPi</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableComplex id="23" reactomeId="73790" schemaClass="Complex" position="512 171" bounds="483 153 59 36" textPosition="491 154" bgColor="204 255 255" hideComponents="true">
<Properties>
<displayName>PPAT dimer</displayName>
</Properties>
</org.gk.render.RenderableComplex>
<org.gk.render.RenderableChemical id="27" reactomeId="113592" schemaClass="SimpleEntity" position="530 288" bounds="511 273 38 30" textPosition="514 277">
<Properties>
<displayName>ATP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="28" reactomeId="29424" schemaClass="SimpleEntity" position="636 293" bounds="603 278 67 30" textPosition="623 282">
<Properties>
<displayName>Gly</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="29" reactomeId="111338" schemaClass="SimpleEntity" position="581 418" bounds="551 402 61 33" textPosition="561 408">
<Properties>
<displayName>PRGA</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="30" reactomeId="29372" schemaClass="SimpleEntity" position="636 369" bounds="624 354 25 30" textPosition="627 358">
<Properties>
<displayName>Pi</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="31" reactomeId="29370" schemaClass="SimpleEntity" position="530 369" bounds="511 354 39 30" textPosition="514 358">
<Properties>
<displayName>ADP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableProtein id="32" reactomeId="62498" schemaClass="EntityWithAccessionedSequence" position="471 486" bounds="439 465 64 42" textPosition="450 475">
<Properties>
<displayName>GART</displayName>
</Properties>
</org.gk.render.RenderableProtein>
<org.gk.render.RenderableChemical id="35" reactomeId="419151" schemaClass="SimpleEntity" position="636 464" bounds="599 448 74 32" textPosition="599 447">
<Properties>
<displayName>10-formyl-THF</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="36" reactomeId="111354" schemaClass="SimpleEntity" position="581 561" bounds="532 546 99 30" textPosition="534 550">
<Properties>
<displayName>N-Formyl-GAR</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="37" reactomeId="111355" schemaClass="SimpleEntity" position="636 533" bounds="611 519 51 29" textPosition="621 523">
<Properties>
<displayName>THF</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="43" reactomeId="113592" schemaClass="SimpleEntity" position="518 585" bounds="499 570 38 30" textPosition="502 574">
<Properties>
<displayName>ATP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="44" reactomeId="29356" schemaClass="SimpleEntity" position="648 582" bounds="628 567 41 30" textPosition="631 571">
<Properties>
<displayName>H2O</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="45" reactomeId="111369" schemaClass="SimpleEntity" position="576 716" bounds="552 701 49 30" textPosition="556 705">
<Properties>
<displayName>FGAM</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="46" reactomeId="29372" schemaClass="SimpleEntity" position="516 719" bounds="504 704 25 30" textPosition="507 708">
<Properties>
<displayName>Pi</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="47" reactomeId="29370" schemaClass="SimpleEntity" position="493 675" bounds="474 660 39 30" textPosition="477 664">
<Properties>
<displayName>ADP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableProtein id="48" reactomeId="62500" schemaClass="EntityWithAccessionedSequence" position="515 632" bounds="486 619 58 27" textPosition="497 622">
<Properties>
<displayName>PFAS</displayName>
</Properties>
</org.gk.render.RenderableProtein>
<org.gk.render.RenderableChemical id="50" reactomeId="29472" schemaClass="SimpleEntity" position="648 624" bounds="624 609 48 30" textPosition="628 613">
<Properties>
<displayName>L-Gln</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="52" reactomeId="29404" schemaClass="SimpleEntity" position="648 664" bounds="624 649 48 30" textPosition="628 653">
<Properties>
<displayName>L-Glu</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="54" reactomeId="113592" schemaClass="SimpleEntity" position="620 755" bounds="601 740 38 30" textPosition="604 744">
<Properties>
<displayName>ATP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="55" reactomeId="29370" schemaClass="SimpleEntity" position="517 810" bounds="498 795 39 30" textPosition="501 799">
<Properties>
<displayName>ADP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="56" reactomeId="111370" schemaClass="SimpleEntity" position="577 843" bounds="560 828 35 30" textPosition="564 832">
<Properties>
<displayName>AIR</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="57" reactomeId="29372" schemaClass="SimpleEntity" position="631 804" bounds="619 789 25 30" textPosition="622 793">
<Properties>
<displayName>Pi</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="61" reactomeId="113528" schemaClass="SimpleEntity" position="628 858" bounds="608 843 41 30" textPosition="612 847">
<Properties>
<displayName>CO2</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="62" reactomeId="111395" schemaClass="SimpleEntity" position="579 955" bounds="557 940 44 30" textPosition="561 944">
<Properties>
<displayName>CAIR</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableComplex id="63" reactomeId="419271" schemaClass="Complex" position="505 946" bounds="469 929 73 34" textPosition="478 928" bgColor="204 255 255" hideComponents="true">
<Properties>
<displayName>PAICS octamer</displayName>
</Properties>
</org.gk.render.RenderableComplex>
<org.gk.render.RenderableChemical id="66" reactomeId="113592" schemaClass="SimpleEntity" position="633 963" bounds="614 948 38 30" textPosition="617 952">
<Properties>
<displayName>ATP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="67" reactomeId="29448" schemaClass="SimpleEntity" position="638 1000" bounds="611 986 54 29" textPosition="616 990">
<Properties>
<displayName>L-Asp</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="68" reactomeId="29370" schemaClass="SimpleEntity" position="630 1041" bounds="611 1026 39 30" textPosition="614 1030">
<Properties>
<displayName>ADP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="69" reactomeId="111399" schemaClass="SimpleEntity" position="581 1068" bounds="552 1053 58 30" textPosition="556 1057">
<Properties>
<displayName>SAICAR</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="70" reactomeId="29372" schemaClass="SimpleEntity" position="523 1041" bounds="511 1026 25 30" textPosition="514 1030">
<Properties>
<displayName>Pi</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="73" reactomeId="111409" schemaClass="SimpleEntity" position="581 1175" bounds="555 1160 52 30" textPosition="559 1164">
<Properties>
<displayName>AICAR</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="74" reactomeId="29586" schemaClass="SimpleEntity" position="512 1174" bounds="480 1159 65 30" textPosition="492 1163">
<Properties>
<displayName>FUMA</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableComplex id="75" reactomeId="111408" schemaClass="Complex" position="481 1115" bounds="414 1097 134 36" textPosition="426 1098" bgColor="204 255 255" hideComponents="true">
<Properties>
<displayName>adenylosuccinate lyase tetramer</displayName>
</Properties>
</org.gk.render.RenderableComplex>
<org.gk.render.RenderableChemical id="77" reactomeId="111427" schemaClass="SimpleEntity" position="581 1292" bounds="552 1277 58 30" textPosition="556 1281">
<Properties>
<displayName>FAICAR</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableComplex id="78" reactomeId="111428" schemaClass="Complex" position="499 1288" bounds="455 1275 88 26" textPosition="462 1280" bgColor="204 255 255" hideComponents="true">
<Properties>
<displayName>ATIC dimer</displayName>
</Properties>
</org.gk.render.RenderableComplex>
<org.gk.render.RenderableChemical id="80" reactomeId="419151" schemaClass="SimpleEntity" position="658 1176" bounds="621 1158 74 36" textPosition="621 1158">
<Properties>
<displayName>10-formyl-THF</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="82" reactomeId="111355" schemaClass="SimpleEntity" position="653 1289" bounds="626 1275 54 29" textPosition="637 1279">
<Properties>
<displayName>THF</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="84" reactomeId="29356" schemaClass="SimpleEntity" position="619 1363" bounds="599 1348 41 30" textPosition="602 1352">
<Properties>
<displayName>H2O</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="85" reactomeId="29602" schemaClass="SimpleEntity" position="560 1381" bounds="543 1366 35 30" textPosition="546 1370">
<Properties>
<displayName>IMP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="87" reactomeId="29356" schemaClass="SimpleEntity" position="454 1415" bounds="434 1400 41 30" textPosition="437 1404">
<Properties>
<displayName>H2O</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="88" reactomeId="29360" schemaClass="SimpleEntity" position="496 1393" bounds="471 1378 51 30" textPosition="474 1382">
<Properties>
<displayName>NAD+</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="89" reactomeId="111584" schemaClass="SimpleEntity" position="514 1531" bounds="495 1516 39 30" textPosition="498 1520">
<Properties>
<displayName>XMP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="90" reactomeId="73473" schemaClass="SimpleEntity" position="389 1549" bounds="364 1534 51 30" textPosition="368 1538">
<Properties>
<displayName>NADH</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="91" reactomeId="70106" schemaClass="SimpleEntity" position="386 1503" bounds="369 1488 34 30" textPosition="372 1492">
<Properties>
<displayName>H+</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableEntitySet id="92" reactomeId="500309" schemaClass="DefinedSet" position="436 1466" bounds="397 1451 79 30" textPosition="404 1449">
<Properties>
<displayName>IMPDH tetramers</displayName>
</Properties>
</org.gk.render.RenderableEntitySet>
<org.gk.render.RenderableChemical id="95" reactomeId="29356" schemaClass="SimpleEntity" position="561 1610" bounds="541 1595 41 30" textPosition="544 1599">
<Properties>
<displayName>H2O</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="96" reactomeId="113592" schemaClass="SimpleEntity" position="552 1565" bounds="533 1550 38 30" textPosition="536 1554">
<Properties>
<displayName>ATP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="98" reactomeId="113578" schemaClass="SimpleEntity" position="518 1733" bounds="498 1718 41 30" textPosition="501 1722">
<Properties>
<displayName>GMP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableProtein id="99" reactomeId="56085" schemaClass="EntityWithAccessionedSequence" position="460 1656" bounds="432 1641 56 31" textPosition="440 1646">
<Properties>
<displayName>GMPS</displayName>
</Properties>
</org.gk.render.RenderableProtein>
<org.gk.render.RenderableChemical id="101" reactomeId="29472" schemaClass="SimpleEntity" position="461 1598" bounds="437 1583 48 30" textPosition="441 1587">
<Properties>
<displayName>L-Gln</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="103" reactomeId="29404" schemaClass="SimpleEntity" position="455 1705" bounds="431 1690 48 30" textPosition="435 1694">
<Properties>
<displayName>L-Glu</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="105" reactomeId="111294" schemaClass="SimpleEntity" position="584 1689" bounds="569 1674 31 30" textPosition="572 1678">
<Properties>
<displayName>PPi</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="107" reactomeId="29438" schemaClass="SimpleEntity" position="754 1344" bounds="735 1329 38 30" textPosition="738 1333">
<Properties>
<displayName>GTP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="108" reactomeId="35141" schemaClass="SimpleEntity" position="828 1576" bounds="800 1561 56 31" textPosition="812 1566">
<Properties>
<displayName>ADS</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="109" reactomeId="29372" schemaClass="SimpleEntity" position="685 1571" bounds="673 1556 25 30" textPosition="676 1560">
<Properties>
<displayName>Pi</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="110" reactomeId="29420" schemaClass="SimpleEntity" position="751 1579" bounds="732 1564 39 30" textPosition="735 1568">
<Properties>
<displayName>GDP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableEntitySet id="111" reactomeId="500310" schemaClass="DefinedSet" position="679 1477" bounds="646 1452 67 50" textPosition="652 1452">
<Properties>
<displayName>ADSS, ADSSL1 dimers</displayName>
</Properties>
</org.gk.render.RenderableEntitySet>
<org.gk.render.RenderableChemical id="112" reactomeId="30014" schemaClass="SimpleEntity" position="933 1483" bounds="879 1456 109 54" textPosition="882 1465">
<Properties>
<displayName>D-Fructose 1,6-bisphosphate</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="113" reactomeId="113578" schemaClass="SimpleEntity" position="844 1510" bounds="824 1495 41 30" textPosition="827 1499">
<Properties>
<displayName>GMP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="114" reactomeId="29448" schemaClass="SimpleEntity" position="856 1360" bounds="816 1345 81 30" textPosition="835 1349">
<Properties>
<displayName>L-Asp</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableComplex id="117" reactomeId="111408" schemaClass="Complex" position="777 1679" bounds="719 1661 117 36" textPosition="722 1662" bgColor="204 255 255" fgColor="0 0 0" lineColor="0 0 0" hideComponents="true">
<Properties>
<displayName>adenylosuccinate lyase tetramer</displayName>
</Properties>
</org.gk.render.RenderableComplex>
<org.gk.render.RenderableChemical id="118" reactomeId="29586" schemaClass="SimpleEntity" position="652 1633" bounds="620 1618 65 30" textPosition="632 1622">
<Properties>
<displayName>FUMA</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="119" reactomeId="76577" schemaClass="SimpleEntity" position="671 1824" bounds="651 1809 41 30" textPosition="655 1813">
<Properties>
<displayName>AMP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="126" reactomeId="29356" schemaClass="SimpleEntity" position="790 92" bounds="770 77 41 30" textPosition="773 81">
<Properties>
<displayName>H2O</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="127" reactomeId="113592" schemaClass="SimpleEntity" position="850 74" bounds="831 59 38 30" textPosition="834 63">
<Properties>
<displayName>ATP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="128" reactomeId="111627" schemaClass="SimpleEntity" position="898 113" bounds="870 98 57 30" textPosition="874 102">
<Properties>
<displayName>HCO3-</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="129" reactomeId="29370" schemaClass="SimpleEntity" position="881 223" bounds="862 208 39 30" textPosition="865 212">
<Properties>
<displayName>ADP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="130" reactomeId="111647" schemaClass="SimpleEntity" position="839 260" bounds="812 245 54 31" textPosition="823 250">
<Properties>
<displayName>CAP</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="131" reactomeId="29372" schemaClass="SimpleEntity" position="761 225" bounds="749 210 25 30" textPosition="752 214">
<Properties>
<displayName>Pi</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableComplex id="132" reactomeId="73457" schemaClass="Complex" position="932 322" bounds="885 312 95 21" textPosition="888 312" bgColor="204 255 255" hideComponents="true">
<Properties>
<displayName>CAD hexamer</displayName>
</Properties>
</org.gk.render.RenderableComplex>
<org.gk.render.RenderableChemical id="134" reactomeId="29372" schemaClass="SimpleEntity" position="770 350" bounds="758 335 25 30" textPosition="761 339">
<Properties>
<displayName>Pi</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="135" reactomeId="111628" schemaClass="SimpleEntity" position="842 389" bounds="789 367 107 44" textPosition="790 371">
<Properties>
<displayName>N-carbamoyl-L-aspartate</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="137" reactomeId="29448" schemaClass="SimpleEntity" position="766 289" bounds="726 274 81 30" textPosition="745 278">
<Properties>
<displayName>L-Asp</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="139" reactomeId="29356" schemaClass="SimpleEntity" position="799 482" bounds="779 467 41 30" textPosition="782 471">
<Properties>
<displayName>H2O</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="140" reactomeId="76630" schemaClass="SimpleEntity" position="841 527" bounds="782 512 118 30" textPosition="784 516">
<Properties>
<displayName>(S)-dihydroorotate</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="143" reactomeId="70106" schemaClass="SimpleEntity" position="786 422" bounds="769 407 34 30" textPosition="772 411">
<Properties>
<displayName>H+</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="145" reactomeId="73663" schemaClass="SimpleEntity" position="786 565" bounds="747 550 78 30" textPosition="770 554">
<Properties>
<displayName>CoQ</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="146" reactomeId="76633" schemaClass="SimpleEntity" position="785 619" bounds="751 604 68 30" textPosition="768 608">
<Properties>
<displayName>QH2</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableChemical id="147" reactomeId="76632" schemaClass="SimpleEntity" position="841 658" bounds="814 643 55 30" textPosition="817 647">
<Properties>
<displayName>orotate</displayName>
</Properties>
</org.gk.render.RenderableChemical>
<org.gk.render.RenderableComplex id="148" reactomeId="73534" schemaClass="Complex" position="933 596" bounds="886 571 94 50" textPosition="885 572" bgColor="204 255 255" hideComponents="true">
<Properties>
<displayName>dihydroorotate dehydrogenase holoenzyme</displayName>
</Properties>
</org.gk.render.RenderableComplex>
<org.gk.render.RenderableChemical id="150" reactomeId="111629" schemaClass="SimpleEntity" position="841 794" bounds="789 772 105 44" textPosition="791 776">
<Properties>
<displayName>orotidine 5'-monophosphate</displayName>
</Properties>
</org.gk.render.RenderableChemical>