-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain1.java
More file actions
972 lines (638 loc) · 22.3 KB
/
Copy pathmain1.java
File metadata and controls
972 lines (638 loc) · 22.3 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
import java.io.*;
import java.util.*;
import java.util.ArrayList;
import java.util.HashMap;
//import javafx.util.Pair;
import org.graphstream.graph.*;
import org.graphstream.graph.implementations.*;
import java.lang.Exception;
class main1{
public static void main(String[] main) throws FileNotFoundException, InterruptedException{
int check=1;
Scanner sc = new Scanner(System.in);
Download input = new Download();
String p;
while(check==1)
{
try
{
Thread.sleep(20000);
}
catch(InterruptedException ex)
{
Thread.currentThread().interrupt();
}
p = input.inp();
File file = new File(p);
Scanner inputScanner = new Scanner(file);
TakesInputFromFile dataset1 = new TakesInputFromFile(inputScanner);
while(inputScanner.hasNext()){
dataset1.firstline();
dataset1.nextSlines();
dataset1.nextVlines();
dataset1.getvals();
}
System.out.println("Do you want to continue ? (0/1)");
check = sc.nextInt();
if(check==0)
{
System.exit(0);
}
inputScanner.close();
//return;
}
sc.close();
}
}
class P {
int val1;
int val2;
public P(int x,int y)
{
val1=x; val2 = y;
}
}
class Pair{
int x;
ArrayList<String> carP;
public Pair(int x, ArrayList<String> str)
{
this.x = x;
carP=str;
}
}
class Street{
public int intStart;
public int intEnd;
public String StreetId;
public int StreetLen;
public Street(int start, int end, String name,int time)
{
intStart= start;
intEnd = end;
StreetId = name;
StreetLen= time;
}
}
class Defined{
Scanner inputScanner;
int NoOfStreets, NoOfCars, DurationOfSimulation, NoOfIntersections, BonusPoints;
int CarPathTime;
int index;
ArrayList<Integer> IntersectionStart = new ArrayList<Integer>();
ArrayList<Integer> IntersectionEnd = new ArrayList<Integer>();
ArrayList<String> StreetName = new ArrayList<String>();
ArrayList<Integer> StreetTime = new ArrayList<Integer>();
ArrayList<Integer> NoOfStreetsForCar = new ArrayList<Integer>();
ArrayList<ArrayList<String>> StreetNamesForCar= new ArrayList<ArrayList<String>>();
ArrayList<String> duplicate = new ArrayList<String>();
HashMap<Integer,Integer> DiffSimulationCarPath = new HashMap<Integer, Integer>();
Defined(){
}
}
class TakesInputFromFile extends Defined{
Scanner inputScanner;
int NoOfStreets, NoOfCars;
ArrayList<Street> streets = new ArrayList<>();
public HashMap< Integer, ArrayList<String>> map = new HashMap<>();
public HashMap<Integer,ArrayList<Street>> map2 = new HashMap<>();
TakesInputFromFile(Scanner inputReader){
this.inputScanner = inputReader;
}
TakesInputFromFile()
{
int Priority=0;
}
void firstline(){
DurationOfSimulation = inputScanner.nextInt();
NoOfIntersections = inputScanner.nextInt();
NoOfStreets = inputScanner.nextInt();
NoOfCars = inputScanner.nextInt();
BonusPoints = inputScanner.nextInt();
System.out.println(DurationOfSimulation + " " + NoOfIntersections + ":" + NoOfStreets + ":" + NoOfCars + ":" + BonusPoints);
}
void nextSlines(){
for(int i=1; i<=this.NoOfStreets; i++){
int IntersectionStart = inputScanner.nextInt();
int IntersectionEnd = inputScanner.nextInt();
String StreetName = inputScanner.next().toLowerCase();
int StreetTime = inputScanner.nextInt();
Street newstreet = new Street(IntersectionStart,IntersectionEnd,StreetName,StreetTime);
streets.add(newstreet);
// System.out.println(IntersectionStart + ":" + IntersectionEnd + ":" + StreetName + ":" + StreetTime);
System.out.println(newstreet.intStart + " to " + newstreet.intEnd + " : " + newstreet.StreetId + " : " + newstreet.StreetLen);
}
//System.out.println(streets);
}
void nextVlines(){
for(int i=1; i<=this.NoOfCars; i++){
ArrayList<String> paths = new ArrayList<>();
ArrayList<Street> paths1 = new ArrayList<Street>();
int NoOfStreetsForCar = inputScanner.nextInt();
String s1;
for(int j=1; j<=NoOfStreetsForCar; j++){
s1=inputScanner.next().toLowerCase();
paths.add(s1);
for(Street st2: streets)
{
if(s1.equals(st2.StreetId))
{
paths1.add(st2);
}
}
}
System.out.println(NoOfStreetsForCar);
map.put(i,paths);
map2.put(i,paths1);
System.out.println("Car "+i+ " " +map.get(i));
s1=" ";
}
}
public void getvals() throws InterruptedException{
OutPutFile o1 = new OutPutFile();
o1.noIntersections(map,streets);
Priority p1 = new Priority();
p1.sorting(map,DurationOfSimulation,streets);
ArrayList<P> incstreet = o1.scheduling(streets,map,map2);
HashMap<Street,ArrayList<Integer>> mp = o1.simulation(streets,map2,incstreet,DurationOfSimulation);
o1.graphing(incstreet,streets,mp,DurationOfSimulation);
}
}
class OrderNDurationGreenLight
{
public String StreetName1 ;
public int GreenTime ;
public OrderNDurationGreenLight(String s1, int gt)
{
StreetName1=s1;
GreenTime=gt;
}
}
class IntersectionSchedule
{
public int IntersectionNo;
public int NumberOfIncomingOfStreets ;
public ArrayList<OrderNDurationGreenLight> orderNDurationGreenLights;
public IntersectionSchedule(int intno, int nois)
{
IntersectionNo=intno;
NumberOfIncomingOfStreets=nois;
orderNDurationGreenLights= new ArrayList<OrderNDurationGreenLight>();
}
}
class OutPutFile
{
public int UniqueIntersections;
ArrayList<Integer> Uniques = new ArrayList<Integer>();
public ArrayList<IntersectionSchedule> intersectionSchedules = new ArrayList<IntersectionSchedule>();
public HashMap<Integer,ArrayList<Street>> pathsvtime = new HashMap<Integer,ArrayList<Street>>();
public HashMap<Street,ArrayList<Integer>> streetvtime = new HashMap<Street,ArrayList<Integer>>();
public HashMap<Integer,Integer> incomingStreets = new HashMap<Integer,Integer>();
public ArrayList<P> incStreets = new ArrayList<P>();
public void noIntersections(HashMap< Integer, ArrayList<String>> map1, ArrayList<Street> st)
{
HashMap<Integer,Integer> k = new HashMap<>();
for(int i: map1.keySet())
{
for(int j=0; j<map1.get(i).size()-1;j++)
{
String s2 = map1.get(i).get(j);
for(Street s3: st)
{
if(s3.StreetId.contains(s2))
{
// System.out.println(s2);
// int j = st.indexOf(s2.getClass());
Street t = s3;
if(k.containsKey(t.intEnd))
{
k.put(t.intEnd,k.get(t.intEnd)+1); }
else {
k.put(t.intEnd,1);
}
}
}
}
}
int l=0;
for(int i : k.keySet())
{
if(k.get(i)>0)
{
l++;
Uniques.add(i);
}
}
UniqueIntersections= l;
System.out.println("\n\nNo of Unique Intersections :- " + l+ " List- "+Uniques);
}
class SortbyInc implements Comparator<P>{
public int compare( P p1, P p2)
{
return p1.val2-p2.val2;
}
}
class SortbyInc1 implements Comparator<P>{
public int compare( P p1, P p2)
{
if(p1.val2==p2.val2)
return p1.val1-p2.val1;
else return 0;
}
}
public boolean containscar(int intersection, ArrayList<Street> streets,HashMap<Integer,ArrayList<Street>>map)
{
String nameofSt="";
for(Street st : streets)
{
if(st.intEnd==intersection)
{
// System.out.println("true");
nameofSt= st.StreetId;
for(int i : map.keySet())
{
//for(int j=0;j<map.get(i).size();j++)
// {
if(map.get(i).get(0).StreetId.equals(nameofSt))
{
return true;
}
// }
}
}
}
return false;
}
public HashMap<Street,ArrayList<Integer>> simulation(ArrayList<Street> streets, HashMap< Integer, ArrayList<Street>> map2, ArrayList<P> incstreet,int DurationOfSimulation)
{
int ncars;
HashMap<Street,ArrayList<Integer>> streetvtime = new HashMap<Street,ArrayList<Integer>>();
HashMap<Integer,ArrayList<Street>> pathsvtime = new HashMap<Integer,ArrayList<Street>>();
for(Street s1: streets)
{
ArrayList<Integer> ar = new ArrayList<Integer>();
for(int i=0;i<=DurationOfSimulation;i++)
{
ar.add(0);
}
streetvtime.put(s1,ar);
}
ncars = map2.size();
/* ArrayList<Street> arr = new ArrayList<Street>();
arr.add(map2.get(1).get(0));
arr.add(map2.get(2).get(0));
int c=1; int t=1;
for(int k=1;k<=6;k++)
{
for(int j=1;j<=ncars;j++)
{
Street cur= map2.get(j).get(c);
if(k<t+cur.StreetLen)
{
arr.add(cur); }
else {
c++;
t=k;
}
}
}*/
for(int j=1;j<=ncars;j++)
{
ArrayList<Street> arr = new ArrayList<Street>() ;
arr.add(map2.get(j).get(0));
int k; int c=1; int t=1;
for( k=1;k<=DurationOfSimulation;k++)
{
if(c>=map2.get(j).size() || t>DurationOfSimulation)
{
break;
}
Street cur= map2.get(j).get(c);
// System.out.println("\n"+c);
if(k<t+cur.StreetLen )
{
arr.add(cur);
// System.out.print(cur.StreetId+" ");
}
else {
// check for delay
/* for(int temp: pathsvtime.keySet())
{
if(pathsvtime.get(temp)!=null && pathsvtime.get(j)!=null && temp<j)
{
if(pathsvtime.get(temp).get(k-1).intEnd==pathsvtime.get(j).get(k-1).intEnd)
{
if(c<map2.get(j).size() && t<=DurationOfSimulation)
{
cur= map2.get(j).get(c);
arr.add(cur);
System.out.println("["+cur.StreetId+"]");
}
}
}
}
*/
c++;
t=k;
if(c<map2.get(j).size() && t<=DurationOfSimulation)
{
cur= map2.get(j).get(c);
arr.add(cur);
// System.out.print(" -> " + cur.StreetId);
}
}
}
// System.out.println("\n\n");
pathsvtime.put(j,arr);
}
for(int val1: pathsvtime.keySet())
{
int flag=0;
for(int val2: pathsvtime.keySet())
{
if(val1!=val2)
{
int size1 = pathsvtime.get(val1).size()<=pathsvtime.get(val2).size()?pathsvtime.get(val1).size():pathsvtime.get(val2).size();
for(int j=1;j<size1;j++)
{
if(pathsvtime.get(val1).get(j-1)!=pathsvtime.get(val2).get(j-1) && pathsvtime.get(val1).get(j-1).intEnd==pathsvtime.get(val2).get(j-1).intEnd )
{
// System.out.println(pathsvtime.get(val1).get(j-1).StreetId);
pathsvtime.get(val2).add(j,pathsvtime.get(val2).get(j-1) );
flag=-1;
break;
}
}
}
}
if(flag==-1)
{
break;
}
}
for(int i=0;i<=DurationOfSimulation;i++)
{
for(Street s4: streets)
{
for(P inter: incstreet)
{
if(inter.val1==s4.intEnd)
{
if(inter.val2==1)
{
streetvtime.get(s4).set(i, 1);
}
else if(inter.val2>1)
{
for(Street s5: streets)
{
for(int y: pathsvtime.keySet())
{
if(i<pathsvtime.get(y).size())
{
if(pathsvtime.get(y).get(i).StreetId.equals(s5.StreetId))
{
streetvtime.get(s5).set(i, 1);
break;
}
}
}
}
}
}
}
}
}
System.out.println("STREETS VS TIME\n\n");
System.out.println("1 for Green and 0 for Red \n\n");
for(Street key1:streetvtime.keySet())
{
System.out.print(key1.StreetId+" - "+streetvtime.get(key1)+"\n");
}
System.out.println("\n\n");
System.out.println("CAR-PATH VS TIME\n");
for(int key : pathsvtime.keySet())
{
System.out.print("CAR "+key+" :-\n\n");
for(int z=0;z<pathsvtime.get(key).size();z++)
{
System.out.print(z+" - "+pathsvtime.get(key).get(z).StreetId+" ");
}
System.out.println("\n\n");
}
// System.out.println(pathsvtime);
return streetvtime;
}
public ArrayList<P> scheduling(ArrayList<Street> streets,HashMap<Integer,ArrayList<String>> map1,HashMap<Integer,ArrayList<Street>> map2)
{
// HashMap<Integer,Integer> incomingStreets = new HashMap<Integer,Integer>();
//ArrayList<P> incStreets = new ArrayList<P>();
for(Street s : streets)
{
//if(Uniques.contains(s.intEnd))
// {
if(incomingStreets.containsKey(s.intEnd))
{
incomingStreets.put(s.intEnd,incomingStreets.get(s.intEnd)+1); }
else {
incomingStreets.put(s.intEnd,1);
}
//}
}
for(int i : incomingStreets.keySet())
{
P vals = new P(i,incomingStreets.get(i));
if(containscar(i,streets,map2)==true)
{
incStreets.add(vals); }
}
Collections.sort(incStreets,new SortbyInc());
Collections.reverse(incStreets);
for(int i : incomingStreets.keySet())
{
P vals = new P(i,incomingStreets.get(i));
if(containscar(i,streets,map2)==false)
{
incStreets.add(vals); }
}
// Collections.sort(incStreets,new SortbyInc1());
System.out.println("Intersection Priority Order :- \n");
for(P j: incStreets)
{
System.out.println("\n\nIntersection No. :- " +j.val1+" "+"No. of Incoming Streets :- "+j.val2);
}
for(int l : incomingStreets.keySet())
{
System.out.println("\n"+l+" " +incomingStreets.get(l));
}
for(P k: incStreets)
{
IntersectionSchedule is1 = new IntersectionSchedule(k.val1,k.val2);
for(Street it: streets)
{
if(it.intEnd==k.val1)
{
OrderNDurationGreenLight g1 = new OrderNDurationGreenLight(it.StreetId,0);
is1.orderNDurationGreenLights.add(g1);
}
}
intersectionSchedules.add(is1);
}
System.out.println("\nThe Green Light Schedules are :- \n\n");
for(IntersectionSchedule it : intersectionSchedules)
{
System.out.println("Intersection No. - "+ it.IntersectionNo+"\n"+"No. of Incoming Streets :- "+it.NumberOfIncomingOfStreets+"\n\n"+"Streets are :- \n");
for(OrderNDurationGreenLight o1 : it.orderNDurationGreenLights )
{
System.out.println(o1.StreetName1+ " "+o1.GreenTime);
}
System.out.println("\n\n");
}
Output output = new Output(pathsvtime,streetvtime,intersectionSchedules);
//output.output();
return incStreets;
}
public void graphing(ArrayList<P> incstreet,ArrayList<Street> streets,HashMap<Street,ArrayList<Integer>>mp, int dur) throws InterruptedException
{
Graph graph = new SingleGraph("Tutorial 1");
System.setProperty("org.graphstream.ui", "swing");
// graph { fill-mode: image-scaled-ratio-max; fill-image: url('data/Smiley_128.png'); }
// graph.setAttribute("ui.stylesheet","graph{fill-mode: image-scaled-ratio-min; fill-image: url('/Users/paritoshdutta/Desktop/Screenshot 2021-11-22 at 1.41.44 PM.png');}");
graph.display();
for(P i: incstreet)
{
String s = Integer.toString(i.val1);
graph.addNode(s);
}
for(Street st:streets)
{
String s1 = Integer.toString(st.intStart);
String s2 = Integer.toString(st.intEnd);
graph.addEdge(s1+s2,s1,s2,true);
Edge e = graph.getEdge(s1+s2);
e.setAttribute("ui.label", st.StreetId);
e.setAttribute("ui.style", "text-size: 29px; shape: cubic-curve; arrow-shape: arrow; arrow-size: 10px, 10px; ");
}
for (Node node : graph) {
node.setAttribute("ui.label", node.getId());
Node n = graph.getNode(node.getId());
n.setAttribute("ui.style", "size: 45px; fill-color: pink; text-size: 40px; shadow-mode: plain; shadow-width: 0px; shadow-color: #999; shadow-offset: 4px, -4px;");
}
for(int i=0;i<=dur;i++)
{
System.out.println("Time - "+ i+" Secs"+"\n");
for(Street sr : mp.keySet())
{
for(Street st1: streets)
{
if(sr==st1)
{
String s1 = Integer.toString(st1.intStart);
String s2 = Integer.toString(st1.intEnd);
Edge e1 = graph.getEdge(s1+s2);
/* for(int k: pathsvtime.keySet())
{
if(pathsvtime.get(k).size()>i)
{
if(pathsvtime.get(k).get(i)==st1)
{
e1.setAttribute("ui.label", st1.StreetId+" "+"(Car "+k+" passing)");
}
else {
e1.setAttribute("ui.label", st1.StreetId);
}
}
}
*/
if(mp.get(sr).get(i)==1)
{
e1.setAttribute("ui.style", "fill-color: green ; text-size: 29px; shape: cubic-curve; size: 2px; arrow-shape: arrow; arrow-size: 10px, 10px; ");
System.out.println(st1.StreetId+" GREEN");
}
else if(mp.get(sr).get(i)==0)
{
e1.setAttribute("ui.style", "fill-color: red; text-size: 29px; shape: cubic-curve; size: 4.2px; arrow-shape: arrow; arrow-size: 10px, 10px; ");
System.out.println(st1.StreetId+" RED");
}
}
}
}
try{Thread.sleep(3000);}
catch(Exception e)
{
}
System.out.println("\n\n");
}
/*graph.addEdge("DA","D","A");
graph.addEdge("AB", "A", "B");
graph.addEdge("BC", "B", "C");
graph.addEdge("CA", "C", "A");
//graph.setAttribute("ui.stylesheet", "graph { fill-color: red; }");
Edge a1 = graph.getEdge("AB");
a1.setAttribute("ui.style", "size: 5px; fill-color: red;");*/
//graph.setAttribute("ui.stylesheet", "edge{size:30px;}");
}
}
class Priority extends TakesInputFromFile{
class sortbydur implements Comparator<Pair>{
public int compare( Pair p1, Pair p2)
{
return p1.x-p2.x;
}
}
public Priority()
{
super();
}
/*static void compare(ArrayList<Pair> arr, int n)
{
Collections.sort(arr, new Comparator<Pair>() {
@Override public int compare(Pair p1, Pair p2)
{
return p1.x - p2.x;
}
});
for (int i = 0; i < n; i++) {
System.out.print(arr.get(i).x + " " + arr.get(i).carP+" ");
}
System.out.println();
}
*/
public void sorting(HashMap< Integer, ArrayList<String>> map , int DurationOfSimulation, ArrayList<Street> streets)
{
int finalTime; int sum;
ArrayList<Pair> priori = new ArrayList<Pair>();
for(int i:map.keySet())
{
sum=0; int j=0;
for(String temp: map.get(i))
{
for(Street s3: streets)
{
if(s3.StreetId.contains(temp))
{
Street t = s3;
if(j>0)
{
sum+=t.StreetLen;
}
j++;
}
}
}
// System.out.println(sum);
finalTime = DurationOfSimulation-sum;
priori.add(new Pair(finalTime,map.get(i)));
}
// Object[] arr = new Pair[priori.size()];
// arr= priori.toArray();
//compare(priori,priori.size());
Collections.sort(priori,new sortbydur());
System.out.println("\nCar Priority Order\n");
for(Pair i : priori)
{
System.out.println("Difference - " + i.x+ " Car - " +i.carP);
}
System.out.println("\n");
}
}