-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwallstreet.uml
3888 lines (3887 loc) · 202 KB
/
wallstreet.uml
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"?>
<Diagram>
<ID>JAVA</ID>
<OriginalElement>gal.sdc.usc.wallstreet</OriginalElement>
<nodes>
<node x="11658.704731567448" y="12498.5">gal.sdc.usc.wallstreet.controller.OtpQrController</node>
<node x="4251.036122150712" y="6944.5">gal.sdc.usc.wallstreet.repository.ReguladorDAO</node>
<node x="849.6349999999993" y="12366.5">gal.sdc.usc.wallstreet.controller.RegistroController</node>
<node x="3001.5799938052123" y="10202.0">gal.sdc.usc.wallstreet.util.Mapeador</node>
<node x="3441.4111221507114" y="6933.5">gal.sdc.usc.wallstreet.repository.PagoUsuarioDAO</node>
<node x="4170.984999007712" y="14886.0">gal.sdc.usc.wallstreet.controller.PrincipalController</node>
<node x="1013.6349999999993" y="9257.0">gal.sdc.usc.wallstreet.util.Pagador</node>
<node x="276.0" y="16630.0">gal.sdc.usc.wallstreet.controller.RevisarRegistrosController</node>
<node x="13150.208049836809" y="12488.0">gal.sdc.usc.wallstreet.controller.SociedadPropuestaController</node>
<node x="6489.53276201783" y="1368.5">gal.sdc.usc.wallstreet.model.UsuarioEstado</node>
<node x="10007.12729294986" y="8641.0">gal.sdc.usc.wallstreet.controller.CarteraController</node>
<node x="7531.974516074588" y="3079.0">gal.sdc.usc.wallstreet.model.UsuarioSesion</node>
<node x="10618.577292949858" y="10280.0">gal.sdc.usc.wallstreet.util.Iconos</node>
<node x="8474.487365600082" y="5258.0">gal.sdc.usc.wallstreet.model.Participacion.Builder</node>
<node x="14696.616280368109" y="0.0">gal.sdc.usc.wallstreet.util.PackageScanner</node>
<node x="7934.984160471878" y="5336.0">gal.sdc.usc.wallstreet.repository.SociedadDAO</node>
<node x="5481.547499007712" y="12498.5">gal.sdc.usc.wallstreet.controller.OtpController</node>
<node x="14355.116280368109" y="12411.0">gal.sdc.usc.wallstreet.controller.VerUsuarioController</node>
<node x="11382.750186112902" y="10964.5">gal.sdc.usc.wallstreet.util.Validadores</node>
<node x="3973.0361221507114" y="6944.5">gal.sdc.usc.wallstreet.repository.SuperUsuarioDAO</node>
<node x="3165.9737463496745" y="0.0">gal.sdc.usc.wallstreet.model.ddl.Columna</node>
<node x="11150.095270680482" y="3960.0">gal.sdc.usc.wallstreet.model.OfertaVenta</node>
<node x="1431.3433516483492" y="6889.0">gal.sdc.usc.wallstreet.model.PagoUsuario.Builder</node>
<node x="6065.421606021679" y="5082.0">gal.sdc.usc.wallstreet.repository.UsuarioDAO</node>
<node x="6422.53276201783" y="1905.0">gal.sdc.usc.wallstreet.model.Usuario</node>
<node x="1149.454999999999" y="15773.0">gal.sdc.usc.wallstreet.controller.AccesoController</node>
<node x="583.0999999999995" y="6889.0">gal.sdc.usc.wallstreet.model.Regulador.Builder</node>
<node x="6800.239243499311" y="6956.0">gal.sdc.usc.wallstreet.repository.VentaDAO</node>
<node x="11959.762423875141" y="12509.5">gal.sdc.usc.wallstreet.controller.ConfirmacionController</node>
<node x="14022.616280368109" y="12510.0">gal.sdc.usc.wallstreet.controller.SociedadMiembroController</node>
<node x="1711.3433516483492" y="5225.0">gal.sdc.usc.wallstreet.model.Pago.Builder</node>
<node x="2198.385018315016" y="0.0">gal.sdc.usc.wallstreet.util.LectorDinamico</node>
<node x="6055.282221229934" y="12323.0">gal.sdc.usc.wallstreet.controller.VCompraController</node>
<node x="9254.16044252316" y="9201.5">gal.sdc.usc.wallstreet.util.Comprador</node>
<node x="3894.4111221507114" y="7885.0">gal.sdc.usc.wallstreet.repository.helpers.TipoAtributo</node>
<node x="12084.5850045203" y="16215.0">gal.sdc.usc.wallstreet.Main</node>
<node x="1725.7664285714263" y="3993.0">gal.sdc.usc.wallstreet.model.Pago</node>
<node x="13448.892448099836" y="16663.0">gal.sdc.usc.wallstreet.controller.RevisarOfertasVentaController</node>
<node x="3007.7808516483497" y="516.0">gal.sdc.usc.wallstreet.util.auth.PasswordStorage.InvalidHashException</node>
<node x="1872.8433516483492" y="12191.0">gal.sdc.usc.wallstreet.controller.PagosController</node>
<node x="3055.1141849816827" y="838.0">gal.sdc.usc.wallstreet.util.auth.PasswordStorage</node>
<node x="6542.421606021679" y="4026.0">gal.sdc.usc.wallstreet.model.Empresa.Builder</node>
<node x="2804.411122150711" y="6856.0">gal.sdc.usc.wallstreet.repository.PagoDAO</node>
<node x="13458.645549836809" y="12499.0">gal.sdc.usc.wallstreet.controller.SociedadSaldoController</node>
<node x="11837.08802354429" y="2059.5">gal.sdc.usc.wallstreet.model.Sociedad.Builder</node>
<node x="10407.510442523158" y="5247.0">gal.sdc.usc.wallstreet.model.Venta</node>
<node x="633.8142857142848" y="5269.0">gal.sdc.usc.wallstreet.model.Regulador</node>
<node x="5618.685539795608" y="6878.5">gal.sdc.usc.wallstreet.repository.ParticipacionDAO</node>
<node x="3010.614184981683" y="1413.0">gal.sdc.usc.wallstreet.util.auth.PasswordStorage.CannotPerformOperationException</node>
<node x="9916.749102943235" y="6878.0">gal.sdc.usc.wallstreet.model.Venta.Builder</node>
<node x="4974.468034593107" y="11971.0">gal.sdc.usc.wallstreet.controller.ReguladorController</node>
<node x="7781.426743499311" y="156.0">gal.sdc.usc.wallstreet.model.ddl.Tabla</node>
<node x="8524.257450167663" y="460.0">gal.sdc.usc.wallstreet.model.SuperUsuario</node>
<node x="6431.239243499311" y="6944.5">gal.sdc.usc.wallstreet.repository.PropuestaCompraDAO</node>
<node x="12009.0850045203" y="13777.0">gal.sdc.usc.wallstreet.controller.PerfilController</node>
<node x="8632.070698933416" y="4026.0">gal.sdc.usc.wallstreet.model.Participacion</node>
<node x="10114.957208382279" y="10634.0">gal.sdc.usc.wallstreet.controller.VVentaController</node>
<node x="12114.52552354429" y="1357.0">gal.sdc.usc.wallstreet.model.Sociedad</node>
<node x="3037.5799938052123" y="10930.5">gal.sdc.usc.wallstreet.repository.EmpresaDAO</node>
<node x="4236.97160602168" y="9157.5">gal.sdc.usc.wallstreet.repository.helpers.DAO</node>
<node x="3150.4111221507114" y="6922.0">gal.sdc.usc.wallstreet.repository.InversorDAO</node>
<node x="6698.4356271857" y="7752.0">gal.sdc.usc.wallstreet.repository.helpers.DatabaseLinker</node>
<node x="8200.774621540773" y="6834.0">gal.sdc.usc.wallstreet.repository.OfertaVentaDAO</node>
<node x="0.0" y="16630.0">gal.sdc.usc.wallstreet.controller.RevisarBajasController</node>
<node x="7444.926743499311" y="3510.0">gal.sdc.usc.wallstreet.model.Empresa</node>
<node x="6245.239243499311" y="6911.5">gal.sdc.usc.wallstreet.model.UsuarioTipo</node>
<node x="1513.3433516483492" y="5247.0">gal.sdc.usc.wallstreet.model.PagoUsuario</node>
<node x="12193.762423875141" y="12608.5">gal.sdc.usc.wallstreet.components.BotonObservable</node>
<node x="7280.974516074588" y="2902.0">gal.sdc.usc.wallstreet.model.Usuario.Builder</node>
<node x="6812.815098200164" y="12510.0">gal.sdc.usc.wallstreet.controller.SociedadNuevaController</node>
<node x="13659.116280368109" y="6867.0">gal.sdc.usc.wallstreet.model.PropuestaCompra.Builder</node>
<node x="12238.0850045203" y="13766.0">gal.sdc.usc.wallstreet.controller.SociedadController</node>
<node x="10615.510442523158" y="5203.0">gal.sdc.usc.wallstreet.model.OfertaVenta.Builder</node>
<node x="8424.070698933416" y="4059.0">gal.sdc.usc.wallstreet.model.SuperUsuario.Builder</node>
<node x="12372.77172908606" y="10941.5">gal.sdc.usc.wallstreet.components.IconoObservable</node>
<node x="12116.343069036431" y="10953.0">gal.sdc.usc.wallstreet.util.Comunicador</node>
<node x="5671.594455484044" y="4026.0">gal.sdc.usc.wallstreet.model.Inversor</node>
<node x="12342.96302354429" y="1025.5">gal.sdc.usc.wallstreet.model.UsuarioComprador</node>
<node x="13618.657947034775" y="5247.0">gal.sdc.usc.wallstreet.model.PropuestaCompra</node>
<node x="9621.117585380303" y="10931.0">gal.sdc.usc.wallstreet.util.auth.GoogleAuth</node>
<node x="7645.426743499311" y="156.0">gal.sdc.usc.wallstreet.model.ddl.Entidad</node>
<node x="11476.000186112902" y="10268.5">gal.sdc.usc.wallstreet.util.ErrorValidator</node>
<node x="5673.8111221507115" y="5258.0">gal.sdc.usc.wallstreet.model.Inversor.Builder</node>
<node x="3677.4111221507114" y="7874.0">gal.sdc.usc.wallstreet.repository.helpers.TipoActualizacion</node>
</nodes>
<notes />
<edges>
<edge source="gal.sdc.usc.wallstreet.controller.PerfilController" target="gal.sdc.usc.wallstreet.repository.InversorDAO">
<point x="-84.0" y="-424.0" />
<point x="12029.0850045203" y="13696.0" />
<point x="7081.315098200164" y="13696.0" />
<point x="7081.315098200164" y="10052.0" />
<point x="6662.353559738627" y="10052.0" />
<point x="6662.353559738627" y="8251.0" />
<point x="5312.689899318552" y="8251.0" />
<point x="5312.689899318552" y="7482.0" />
<point x="3359.8202130598024" y="7482.0" />
<point x="73.90909090909099" y="61.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.model.Participacion.Builder" target="gal.sdc.usc.wallstreet.model.SuperUsuario">
<point x="-57.75" y="-105.0" />
<point x="8532.237365600082" y="4592.0" />
<point x="8413.570698933416" y="4592.0" />
<point x="8413.570698933416" y="788.0" />
<point x="8589.007450167663" y="788.0" />
<point x="-27.75" y="94.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.VCompraController" target="gal.sdc.usc.wallstreet.controller.PrincipalController">
<point x="0.0" y="335.5" />
<point x="6194.782221229934" y="13736.0" />
<point x="6153.782221229934" y="13736.0" />
<point x="6153.782221229934" y="14686.0" />
<point x="4283.577591600305" y="14686.0" />
<point x="-47.407407407406936" y="-368.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.model.Empresa" target="gal.sdc.usc.wallstreet.model.Usuario">
<point x="-74.80000000000018" y="-105.0" />
<point x="7463.626743499311" y="3380.0" />
<point x="7270.474516074588" y="3380.0" />
<point x="7270.474516074588" y="2622.0" />
<point x="6525.34526201783" y="2622.0" />
<point x="15.3125" y="248.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.PerfilController" target="gal.sdc.usc.wallstreet.util.Comunicador">
<point x="84.0" y="-424.0" />
<point x="12197.0850045203" y="13486.0" />
<point x="11941.262423875141" y="13486.0" />
<point x="11941.262423875141" y="11911.0" />
<point x="12159.958453651816" y="11911.0" />
<point x="-10.384615384615245" y="49.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.util.Comprador" target="gal.sdc.usc.wallstreet.model.Sociedad">
<point x="140.25" y="-105.0" />
<point x="9598.41044252316" y="8521.0" />
<point x="10202.927292949858" y="8521.0" />
<point x="10202.927292949858" y="7712.0" />
<point x="10373.427292949858" y="7712.0" />
<point x="10373.427292949858" y="6614.0" />
<point x="10934.856596369315" y="6614.0" />
<point x="10934.856596369315" y="4972.0" />
<point x="11812.177767134031" y="4972.0" />
<point x="11812.177767134031" y="3470.0" />
<point x="11897.761100467365" y="3470.0" />
<point x="11897.761100467365" y="2862.0" />
<point x="12103.3444338007" y="2862.0" />
<point x="12103.3444338007" y="1835.0" />
<point x="12223.90052354429" y="1835.0" />
<point x="21.875" y="94.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.SociedadSaldoController" target="gal.sdc.usc.wallstreet.model.Sociedad">
<point x="95.11111111111131" y="-159.5" />
<point x="13660.756660947918" y="11951.0" />
<point x="14035.116280368109" y="11951.0" />
<point x="14035.116280368109" y="1575.0" />
<point x="12276.40052354429" y="1575.0" />
<point x="74.375" y="94.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.VVentaController" target="gal.sdc.usc.wallstreet.model.OfertaVenta">
<point x="56.42857142857065" y="-368.5" />
<point x="10329.38577981085" y="10504.0" />
<point x="10575.077292949858" y="10504.0" />
<point x="10575.077292949858" y="6734.0" />
<point x="11198.750186112902" y="6734.0" />
<point x="11198.750186112902" y="4932.0" />
<point x="11304.595270680482" y="4932.0" />
<point x="51.5" y="171.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.SociedadMiembroController" target="gal.sdc.usc.wallstreet.repository.helpers.DatabaseLinker">
<point x="0.0" y="-148.5" />
<point x="14131.616280368109" y="8221.0" />
<point x="7154.556316840872" y="8221.0" />
<point x="215.6206896551721" y="204.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.RegistroController" target="gal.sdc.usc.wallstreet.Main">
<point x="-69.33333333333303" y="292.0" />
<point x="884.3016666666663" y="13736.0" />
<point x="476.0" y="13736.0" />
<point x="476.0" y="14856.0" />
<point x="443.0" y="14856.0" />
<point x="443.0" y="16195.0" />
<point x="12094.118337853633" y="16195.0" />
<point x="-133.46666666666715" y="-137.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.RegistroController" target="gal.sdc.usc.wallstreet.util.ErrorValidator">
<point x="71.5" y="-292.0" />
<point x="1025.1349999999993" y="11661.0" />
<point x="1336.2349999999979" y="11661.0" />
<point x="1336.2349999999979" y="10574.0" />
<point x="11482.045640658358" y="10574.0" />
<point x="-60.45454545454595" y="49.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.RevisarRegistrosController" target="gal.sdc.usc.wallstreet.model.Inversor">
<point x="-81.375" y="-324.5" />
<point x="334.125" y="16540.0" />
<point x="299.5625" y="16540.0" />
<point x="299.5625" y="4492.0" />
<point x="5695.26112215071" y="4492.0" />
<point x="-47.33333333333303" y="105.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.SociedadController" target="gal.sdc.usc.wallstreet.model.Inversor">
<point x="10.580645161289794" y="-435.0" />
<point x="12412.665649681592" y="13526.0" />
<point x="12767.33624521509" y="13526.0" />
<point x="12767.33624521509" y="4402.0" />
<point x="5799.394455484044" y="4402.0" />
<point x="56.80000000000018" y="105.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.SociedadNuevaController" target="gal.sdc.usc.wallstreet.model.SuperUsuario.Builder">
<point x="-19.45454545454504" y="-148.5" />
<point x="6900.36055274562" y="11681.0" />
<point x="6730.815098200164" y="11681.0" />
<point x="6730.815098200164" y="10474.0" />
<point x="6506.353559738627" y="10474.0" />
<point x="6506.353559738627" y="10092.0" />
<point x="8179.274621540773" y="10092.0" />
<point x="8179.274621540773" y="6384.0" />
<point x="8759.987365600082" y="6384.0" />
<point x="8759.987365600082" y="4582.0" />
<point x="8518.070698933416" y="4582.0" />
<point x="0.0" y="72.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.RegistroController" target="gal.sdc.usc.wallstreet.util.Validadores">
<point x="97.5" y="-292.0" />
<point x="1051.1349999999993" y="11771.0" />
<point x="11394.194630557347" y="11771.0" />
<point x="-91.55555555555475" y="38.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.model.PagoUsuario" target="gal.sdc.usc.wallstreet.model.ddl.Tabla">
<point x="-44.5" y="-116.0" />
<point x="1557.8433516483492" y="4392.0" />
<point x="1520.1830952380933" y="4392.0" />
<point x="1520.1830952380933" y="390.0" />
<point x="7793.426743499311" y="390.0" />
<point x="-40.0" y="27.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.repository.UsuarioDAO" target="gal.sdc.usc.wallstreet.model.SuperUsuario.Builder">
<point x="190.71428571428532" y="-281.0" />
<point x="6478.635891735963" y="4632.0" />
<point x="8476.292921155638" y="4632.0" />
<point x="-41.777777777777374" y="72.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.PrincipalController" target="gal.sdc.usc.wallstreet.controller.SociedadController">
<point x="142.22222222222263" y="-368.5" />
<point x="4473.2072212299345" y="14856.0" />
<point x="12292.751671186968" y="14856.0" />
<point x="-109.33333333333394" y="435.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.util.Comprador" target="gal.sdc.usc.wallstreet.repository.ParticipacionDAO">
<point x="-140.25" y="-105.0" />
<point x="9317.91044252316" y="8411.0" />
<point x="9447.16044252316" y="8411.0" />
<point x="9447.16044252316" y="7282.0" />
<point x="5880.640085250154" y="7282.0" />
<point x="92.45454545454595" y="104.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.repository.helpers.DatabaseLinker" target="gal.sdc.usc.wallstreet.model.UsuarioTipo">
<point x="-66.80555555555566" y="-204.5" />
<point x="6872.130071630144" y="7362.0" />
<point x="6328.239243499311" y="7362.0" />
<point x="0.0" y="71.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.repository.helpers.DatabaseLinker" target="gal.sdc.usc.wallstreet.model.UsuarioSesion">
<point x="120.25" y="-204.5" />
<point x="7059.1856271857" y="7652.0" />
<point x="7789.6363878966" y="7652.0" />
<point x="7789.6363878966" y="6244.0" />
<point x="7902.484160471878" y="6244.0" />
<point x="7902.484160471878" y="3460.0" />
<point x="7611.274516074587" y="3460.0" />
<point x="18.299999999999272" y="27.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.RegistroController" target="gal.sdc.usc.wallstreet.repository.EmpresaDAO">
<point x="84.5" y="-292.0" />
<point x="1038.1349999999993" y="11681.0" />
<point x="3078.2299938052124" y="11681.0" />
<point x="-94.84999999999991" y="72.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.SociedadPropuestaController" target="gal.sdc.usc.wallstreet.model.PropuestaCompra">
<point x="68.25" y="-170.5" />
<point x="13335.458049836809" y="11881.0" />
<point x="13648.616280368109" y="11881.0" />
<point x="13648.616280368109" y="6804.0" />
<point x="13680.782947034775" y="6804.0" />
<point x="-8.875" y="116.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.SociedadController" target="gal.sdc.usc.wallstreet.repository.OfertaVentaDAO">
<point x="-21.161290322581408" y="-435.0" />
<point x="12380.923714197721" y="13496.0" />
<point x="12712.755600053799" y="13496.0" />
<point x="12712.755600053799" y="7182.0" />
<point x="8478.001894268045" y="7182.0" />
<point x="116.72727272727207" y="149.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.model.Usuario.Builder" target="gal.sdc.usc.wallstreet.model.Sociedad">
<point x="95.83333333333303" y="-204.0" />
<point x="7491.80784940792" y="2882.0" />
<point x="7543.593410165977" y="2882.0" />
<point x="7543.593410165977" y="1755.0" />
<point x="12153.90052354429" y="1755.0" />
<point x="-48.125" y="94.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.PagosController" target="gal.sdc.usc.wallstreet.repository.UsuarioDAO">
<point x="33.64705882352882" y="-467.5" />
<point x="2049.490410471878" y="11611.0" />
<point x="2447.9184750918876" y="11611.0" />
<point x="2447.9184750918876" y="6054.0" />
<point x="6176.671606021679" y="6054.0" />
<point x="-111.25" y="281.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.SociedadPropuestaController" target="gal.sdc.usc.wallstreet.repository.helpers.DatabaseLinker">
<point x="-9.75" y="-170.5" />
<point x="13257.458049836809" y="8241.0" />
<point x="7121.383903047768" y="8241.0" />
<point x="182.44827586206884" y="204.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.PrincipalController" target="gal.sdc.usc.wallstreet.Main">
<point x="106.66666666666697" y="368.5" />
<point x="4437.651665674379" y="15753.0" />
<point x="4429.959160471879" y="15753.0" />
<point x="4429.959160471879" y="16155.0" />
<point x="12170.3850045203" y="16155.0" />
<point x="-57.20000000000073" y="-137.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.repository.UsuarioDAO" target="gal.sdc.usc.wallstreet.model.Empresa">
<point x="127.14285714285688" y="-281.0" />
<point x="6415.0644631645355" y="4582.0" />
<point x="6389.247047732115" y="4582.0" />
<point x="6389.247047732115" y="3890.0" />
<point x="7504.426743499311" y="3890.0" />
<point x="-34.0" y="105.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.AccesoController" target="gal.sdc.usc.wallstreet.controller.RegistroController">
<point x="-16.639999999999418" y="-171.0" />
<point x="1236.8149999999996" y="15653.0" />
<point x="992.4616666666661" y="15653.0" />
<point x="992.4616666666661" y="13736.0" />
<point x="1022.9683333333323" y="13736.0" />
<point x="69.33333333333303" y="292.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.repository.helpers.DatabaseLinker" target="gal.sdc.usc.wallstreet.repository.SuperUsuarioDAO">
<point x="-146.97222222222263" y="-204.5" />
<point x="6791.963404963477" y="7392.0" />
<point x="4118.161122150712" y="7392.0" />
<point x="16.125" y="38.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.repository.helpers.DatabaseLinker" target="gal.sdc.usc.wallstreet.repository.ReguladorDAO">
<point x="-120.25" y="-204.5" />
<point x="6818.6856271857" y="7382.0" />
<point x="4360.9646935792825" y="7382.0" />
<point x="24.42857142857156" y="38.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.model.Participacion" target="gal.sdc.usc.wallstreet.model.ddl.Tabla">
<point x="72.91666666666606" y="-105.0" />
<point x="8792.487365600082" y="3940.0" />
<point x="8775.362365600082" y="3940.0" />
<point x="8775.362365600082" y="1317.0" />
<point x="10922.87648508275" y="1317.0" />
<point x="10922.87648508275" y="320.0" />
<point x="7849.426743499311" y="320.0" />
<point x="16.0" y="27.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.SociedadMiembroController" target="gal.sdc.usc.wallstreet.repository.UsuarioDAO">
<point x="24.222222222222626" y="-148.5" />
<point x="14155.838502590332" y="11951.0" />
<point x="14174.866280368109" y="11951.0" />
<point x="14174.866280368109" y="5664.0" />
<point x="6498.060494910567" y="5664.0" />
<point x="210.1388888888887" y="281.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.RevisarBajasController" target="gal.sdc.usc.wallstreet.model.Inversor">
<point x="0.0" y="-324.5" />
<point x="128.0" y="4482.0" />
<point x="5685.794455484043" y="4482.0" />
<point x="-56.80000000000018" y="105.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.model.Sociedad.Builder" target="gal.sdc.usc.wallstreet.model.Sociedad">
<point x="-92.0" y="-94.0" />
<point x="11860.08802354429" y="1795.0" />
<point x="12188.90052354429" y="1795.0" />
<point x="-13.125" y="94.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.model.Venta" target="gal.sdc.usc.wallstreet.model.ddl.Tabla">
<point x="15.66666666666606" y="-116.0" />
<point x="10517.177109189826" y="4722.0" />
<point x="11117.595270680482" y="4722.0" />
<point x="11117.595270680482" y="3400.0" />
<point x="11642.671356877621" y="3400.0" />
<point x="11642.671356877621" y="2782.0" />
<point x="11728.254690210955" y="2782.0" />
<point x="11728.254690210955" y="1665.0" />
<point x="11977.629690210955" y="1665.0" />
<point x="11977.629690210955" y="1317.0" />
<point x="12064.296356877621" y="1317.0" />
<point x="12064.296356877621" y="300.0" />
<point x="7857.426743499311" y="300.0" />
<point x="24.0" y="27.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.model.Regulador" target="gal.sdc.usc.wallstreet.model.ddl.Entidad">
<point x="-63.600000000000364" y="-94.0" />
<point x="649.7142857142844" y="4462.0" />
<point x="642.9571428571426" y="4462.0" />
<point x="642.9571428571426" y="300.0" />
<point x="7648.838508205194" y="300.0" />
<point x="-54.58823529411711" y="27.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.Main" target="gal.sdc.usc.wallstreet.controller.AccesoController">
<point x="-95.33333333333394" y="-137.5" />
<point x="12132.251671186968" y="16175.0" />
<point x="1201.454999999999" y="16175.0" />
<point x="-52.0" y="171.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.RegistroController" target="gal.sdc.usc.wallstreet.util.auth.PasswordStorage.CannotPerformOperationException">
<point x="-71.5" y="-292.0" />
<point x="882.1349999999993" y="11641.0" />
<point x="768.4474999999993" y="11641.0" />
<point x="768.4474999999993" y="7382.0" />
<point x="572.5999999999995" y="7382.0" />
<point x="572.5999999999995" y="2662.0" />
<point x="1498.1830952380933" y="2662.0" />
<point x="1498.1830952380933" y="1885.0" />
<point x="3126.489184981683" y="1885.0" />
<point x="-38.625" y="38.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.model.Usuario" target="gal.sdc.usc.wallstreet.util.auth.PasswordStorage.CannotPerformOperationException">
<point x="-78.75" y="-248.5" />
<point x="6431.28276201783" y="1695.0" />
<point x="3203.739184981683" y="1695.0" />
<point x="38.625" y="38.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.AccesoController" target="gal.sdc.usc.wallstreet.repository.EmpresaDAO">
<point x="33.279999999999745" y="-171.0" />
<point x="1286.7349999999988" y="15673.0" />
<point x="1314.0949999999984" y="15673.0" />
<point x="1314.0949999999984" y="11701.0" />
<point x="3132.4299938052122" y="11701.0" />
<point x="-40.65000000000009" y="72.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.model.PropuestaCompra.Builder" target="gal.sdc.usc.wallstreet.model.Empresa">
<point x="53.5" y="-116.0" />
<point x="13819.616280368109" y="6814.0" />
<point x="13801.428780368109" y="6814.0" />
<point x="13801.428780368109" y="3790.0" />
<point x="7623.426743499311" y="3790.0" />
<point x="85.0" y="105.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.model.Inversor" target="gal.sdc.usc.wallstreet.model.ddl.Tabla">
<point x="-28.399999999999636" y="-105.0" />
<point x="5714.194455484045" y="3760.0" />
<point x="4177.114555173203" y="3760.0" />
<point x="4177.114555173203" y="2662.0" />
<point x="4127.8471458717295" y="2662.0" />
<point x="4127.8471458717295" y="410.0" />
<point x="7809.426743499311" y="410.0" />
<point x="-24.0" y="27.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.repository.ParticipacionDAO" target="gal.sdc.usc.wallstreet.model.Participacion">
<point x="96.85714285714312" y="-104.5" />
<point x="5885.042682652751" y="6174.0" />
<point x="6968.854993805211" y="6174.0" />
<point x="6968.854993805211" y="4662.0" />
<point x="8649.570698933416" y="4662.0" />
<point x="-70.0" y="105.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.SociedadController" target="gal.sdc.usc.wallstreet.model.Sociedad">
<point x="95.22580645161361" y="-435.0" />
<point x="12497.310810971914" y="13606.0" />
<point x="13107.966114352937" y="13606.0" />
<point x="13107.966114352937" y="5052.0" />
<point x="13504.557812626175" y="5052.0" />
<point x="13504.557812626175" y="1625.0" />
<point x="12232.65052354429" y="1625.0" />
<point x="30.625" y="94.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.VVentaController" target="gal.sdc.usc.wallstreet.repository.ReguladorDAO">
<point x="-101.57142857142935" y="-368.5" />
<point x="10171.38577981085" y="10514.0" />
<point x="8983.342677565244" y="10514.0" />
<point x="8983.342677565244" y="8311.0" />
<point x="8928.842677565244" y="8311.0" />
<point x="8928.842677565244" y="7302.0" />
<point x="4385.393265007855" y="7302.0" />
<point x="48.85714285714312" y="38.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.VVentaController" target="gal.sdc.usc.wallstreet.model.Participacion">
<point x="11.285714285713766" y="-368.5" />
<point x="10284.242922667992" y="10484.0" />
<point x="10553.077292949858" y="10484.0" />
<point x="10553.077292949858" y="6714.0" />
<point x="11176.750186112902" y="6714.0" />
<point x="11176.750186112902" y="4432.0" />
<point x="8801.237365600082" y="4432.0" />
<point x="81.66666666666606" y="105.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.RegistroController" target="gal.sdc.usc.wallstreet.repository.SuperUsuarioDAO">
<point x="45.5" y="-292.0" />
<point x="999.1349999999993" y="11661.0" />
<point x="1003.1349999999993" y="11661.0" />
<point x="1003.1349999999993" y="7542.0" />
<point x="3989.1611221507114" y="7542.0" />
<point x="-112.875" y="38.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.util.Mapeador" target="gal.sdc.usc.wallstreet.util.LectorDinamico">
<point x="-159.25" y="-116.0" />
<point x="3013.8299938052123" y="10152.0" />
<point x="2548.286122150711" y="10152.0" />
<point x="2548.286122150711" y="5924.0" />
<point x="2125.593351648349" y="5924.0" />
<point x="2125.593351648349" y="136.0" />
<point x="2243.5516849816822" y="136.0" />
<point x="-90.33333333333394" y="38.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.VCompraController" target="gal.sdc.usc.wallstreet.model.OfertaVenta">
<point x="58.125" y="-335.5" />
<point x="6252.907221229934" y="11721.0" />
<point x="6235.161054536127" y="11721.0" />
<point x="6235.161054536127" y="10022.0" />
<point x="6479.161054536127" y="10022.0" />
<point x="6479.161054536127" y="8581.0" />
<point x="8063.820698933416" y="8581.0" />
<point x="8063.820698933416" y="6424.0" />
<point x="8948.237365600082" y="6424.0" />
<point x="8948.237365600082" y="4762.0" />
<point x="11169.902962988173" y="4762.0" />
<point x="-83.19230769230853" y="171.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.RevisarOfertasVentaController" target="gal.sdc.usc.wallstreet.repository.helpers.DatabaseLinker">
<point x="-39.384615384615245" y="-291.5" />
<point x="13537.50783271522" y="16530.0" />
<point x="14322.616280368109" y="16530.0" />
<point x="14322.616280368109" y="8211.0" />
<point x="7171.142523737424" y="8211.0" />
<point x="232.20689655172464" y="204.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.AccesoController" target="gal.sdc.usc.wallstreet.util.auth.PasswordStorage.CannotPerformOperationException">
<point x="-74.88000000000011" y="-171.0" />
<point x="1178.574999999999" y="15723.0" />
<point x="503.6400000000003" y="15723.0" />
<point x="503.6400000000003" y="2652.0" />
<point x="626.4571428571426" y="2652.0" />
<point x="626.4571428571426" y="1875.0" />
<point x="3049.239184981683" y="1875.0" />
<point x="-115.875" y="38.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.model.Venta.Builder" target="gal.sdc.usc.wallstreet.model.SuperUsuario">
<point x="101.25" y="-105.0" />
<point x="10139.499102943235" y="6604.0" />
<point x="10923.856596369315" y="6604.0" />
<point x="10923.856596369315" y="4962.0" />
<point x="11797.421356877621" y="4962.0" />
<point x="11797.421356877621" y="3460.0" />
<point x="11883.004690210955" y="3460.0" />
<point x="11883.004690210955" y="2852.0" />
<point x="12088.58802354429" y="2852.0" />
<point x="12088.58802354429" y="1865.0" />
<point x="12332.46302354429" y="1865.0" />
<point x="12332.46302354429" y="708.0" />
<point x="8681.507450167663" y="708.0" />
<point x="64.75" y="94.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.repository.SuperUsuarioDAO" target="gal.sdc.usc.wallstreet.repository.helpers.DAO">
<point x="-48.375" y="38.5" />
<point x="4053.6611221507114" y="7552.0" />
<point x="4074.9111221507114" y="7552.0" />
<point x="4074.9111221507114" y="8211.0" />
<point x="4370.0845092474865" y="8211.0" />
<point x="-63.387096774193196" y="-149.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.PerfilController" target="gal.sdc.usc.wallstreet.controller.ConfirmacionController">
<point x="100.0" y="-424.0" />
<point x="12213.0850045203" y="13466.0" />
<point x="12013.262423875141" y="13466.0" />
<point x="-53.5" y="149.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.VVentaController" target="gal.sdc.usc.wallstreet.model.UsuarioComprador">
<point x="124.14285714285688" y="-368.5" />
<point x="10397.100065525136" y="10534.0" />
<point x="10608.077292949858" y="10534.0" />
<point x="10608.077292949858" y="6764.0" />
<point x="11231.750186112902" y="6764.0" />
<point x="11231.750186112902" y="5012.0" />
<point x="12048.571356877623" y="5012.0" />
<point x="12048.571356877623" y="3490.0" />
<point x="12395.154690210955" y="3490.0" />
<point x="12395.154690210955" y="2882.0" />
<point x="12595.238023544287" y="2882.0" />
<point x="12595.238023544287" y="1885.0" />
<point x="12901.113023544287" y="1885.0" />
<point x="12901.113023544287" y="1337.0" />
<point x="12500.46302354429" y="1337.0" />
<point x="70.0" y="27.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.SociedadController" target="gal.sdc.usc.wallstreet.controller.SociedadPropuestaController">
<point x="137.5483870967746" y="-435.0" />
<point x="12539.633391617077" y="13646.0" />
<point x="13208.708049836809" y="13646.0" />
<point x="-58.5" y="170.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.SociedadSaldoController" target="gal.sdc.usc.wallstreet.util.Comunicador">
<point x="-71.33333333333394" y="-159.5" />
<point x="13494.312216503473" y="11501.0" />
<point x="12193.189222882585" y="11501.0" />
<point x="22.846153846154266" y="49.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.util.Pagador" target="gal.sdc.usc.wallstreet.repository.PagoDAO">
<point x="30.0" y="-49.5" />
<point x="1148.6349999999993" y="8361.0" />
<point x="1180.5449999999992" y="8361.0" />
<point x="1180.5449999999992" y="7422.0" />
<point x="2830.577788817377" y="7422.0" />
<point x="-130.83333333333394" y="127.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.repository.PropuestaCompraDAO" target="gal.sdc.usc.wallstreet.model.PropuestaCompra">
<point x="87.25" y="-38.5" />
<point x="6692.989243499311" y="6774.0" />
<point x="13627.532947034775" y="6774.0" />
<point x="-62.125" y="116.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.model.PagoUsuario.Builder" target="gal.sdc.usc.wallstreet.model.Pago">
<point x="-58.5" y="-94.0" />
<point x="1489.8433516483492" y="5914.0" />
<point x="1502.8433516483492" y="5914.0" />
<point x="1502.8433516483492" y="4422.0" />
<point x="1750.920274725272" y="4422.0" />
<point x="-83.84615384615427" y="138.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.PagosController" target="gal.sdc.usc.wallstreet.repository.EmpresaDAO">
<point x="134.58823529411757" y="-467.5" />
<point x="2150.431586942467" y="11711.0" />
<point x="3159.529993805212" y="11711.0" />
<point x="-13.550000000000182" y="72.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.SociedadNuevaController" target="gal.sdc.usc.wallstreet.model.Sociedad">
<point x="0.0" y="-148.5" />
<point x="6919.815098200164" y="11671.0" />
<point x="6741.815098200164" y="11671.0" />
<point x="6741.815098200164" y="10464.0" />
<point x="6517.353559738627" y="10464.0" />
<point x="6517.353559738627" y="10102.0" />
<point x="8190.274621540773" y="10102.0" />
<point x="8190.274621540773" y="6394.0" />
<point x="8915.237365600082" y="6394.0" />
<point x="8915.237365600082" y="1785.0" />
<point x="12180.15052354429" y="1785.0" />
<point x="-21.875" y="94.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.SociedadPropuestaController" target="gal.sdc.usc.wallstreet.util.Comunicador">
<point x="-68.25" y="-170.5" />
<point x="13198.958049836809" y="11541.0" />
<point x="12184.881530574892" y="11541.0" />
<point x="14.538461538460979" y="49.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.util.Comprador" target="gal.sdc.usc.wallstreet.model.Regulador">
<point x="-89.25" y="-105.0" />
<point x="9368.91044252316" y="8431.0" />
<point x="9694.66044252316" y="8431.0" />
<point x="9694.66044252316" y="5744.0" />
<point x="781.4571428571417" y="5744.0" />
<point x="68.14285714285688" y="94.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.PrincipalController" target="gal.sdc.usc.wallstreet.model.UsuarioTipo">
<point x="-94.81481481481478" y="-368.5" />
<point x="4236.170184192897" y="14816.0" />
<point x="4141.792493805212" y="14816.0" />
<point x="4141.792493805212" y="10564.0" />
<point x="5242.968034593107" y="10564.0" />
<point x="5242.968034593107" y="8331.0" />
<point x="5996.660539795607" y="8331.0" />
<point x="5996.660539795607" y="7632.0" />
<point x="6272.905910165978" y="7632.0" />
<point x="-55.33333333333303" y="71.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.PagosController" target="gal.sdc.usc.wallstreet.model.PagoUsuario">
<point x="-84.11764705882342" y="-467.5" />
<point x="1931.7257045895258" y="11631.0" />
<point x="1675.8433516483492" y="11631.0" />
<point x="1675.8433516483492" y="5934.0" />
<point x="1653.2004945054923" y="5934.0" />
<point x="50.85714285714312" y="116.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.repository.helpers.DAO" target="gal.sdc.usc.wallstreet.model.ddl.Entidad">
<point x="-12.677419354839003" y="-149.0" />
<point x="4420.794186666841" y="8181.0" />
<point x="4432.536122150712" y="8181.0" />
<point x="4432.536122150712" y="5954.0" />
<point x="5854.31112215071" y="5954.0" />
<point x="5854.31112215071" y="350.0" />
<point x="7682.956155264017" y="350.0" />
<point x="-20.47058823529369" y="27.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.util.Validadores" target="gal.sdc.usc.wallstreet.util.Iconos">
<point x="-68.66666666666606" y="-38.0" />
<point x="11417.083519446238" y="10564.0" />
<point x="10749.827292949858" y="10564.0" />
<point x="18.75" y="38.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.model.Pago" target="gal.sdc.usc.wallstreet.model.ddl.Tabla">
<point x="-27.25" y="-138.0" />
<point x="1807.5164285714263" y="400.0" />
<point x="7801.426743499311" y="400.0" />
<point x="-32.0" y="27.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.ReguladorController" target="gal.sdc.usc.wallstreet.model.OfertaVenta">
<point x="67.25" y="-687.5" />
<point x="5176.218034593107" y="11701.0" />
<point x="5208.993034593108" y="11701.0" />
<point x="5208.993034593108" y="8311.0" />
<point x="5968.185539795608" y="8311.0" />
<point x="5968.185539795608" y="6334.0" />
<point x="8365.859160471879" y="6334.0" />
<point x="8365.859160471879" y="4742.0" />
<point x="11154.056809142021" y="4742.0" />
<point x="-99.03846153846098" y="171.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.model.Usuario" target="gal.sdc.usc.wallstreet.model.ddl.Tabla">
<point x="-26.25" y="-248.5" />
<point x="6483.78276201783" y="1665.0" />
<point x="6446.03276201783" y="1665.0" />
<point x="6446.03276201783" y="430.0" />
<point x="7825.426743499311" y="430.0" />
<point x="-8.0" y="27.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.VCompraController" target="gal.sdc.usc.wallstreet.util.Iconos">
<point x="127.875" y="-335.5" />
<point x="6322.657221229934" y="11721.0" />
<point x="6377.598554536127" y="11721.0" />
<point x="6377.598554536127" y="10544.0" />
<point x="10637.327292949858" y="10544.0" />
<point x="-93.75" y="38.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.repository.helpers.DatabaseLinker" target="gal.sdc.usc.wallstreet.repository.EmpresaDAO">
<point x="-132.68965517241395" y="204.5" />
<point x="6806.245972013286" y="8441.0" />
<point x="2636.286122150711" y="8441.0" />
<point x="2636.286122150711" y="10554.0" />
<point x="3118.8799938052125" y="10554.0" />
<point x="-54.19999999999982" y="-72.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.PrincipalController" target="gal.sdc.usc.wallstreet.controller.VVentaController">
<point x="82.96296296296259" y="-368.5" />
<point x="4413.947961970674" y="14796.0" />
<point x="7059.315098200164" y="14796.0" />
<point x="7059.315098200164" y="11761.0" />
<point x="10272.957208382279" y="11761.0" />
<point x="0.0" y="368.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.ConfirmacionController" target="gal.sdc.usc.wallstreet.util.Comunicador">
<point x="-71.33333333333394" y="-149.0" />
<point x="11995.429090541806" y="11931.0" />
<point x="12168.266145959507" y="11931.0" />
<point x="-2.0769230769237765" y="49.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.AccesoController" target="gal.sdc.usc.wallstreet.repository.UsuarioDAO">
<point x="-33.279999999999745" y="-171.0" />
<point x="1220.1749999999993" y="15673.0" />
<point x="729.9474999999993" y="15673.0" />
<point x="729.9474999999993" y="7452.0" />
<point x="968.3849999999993" y="7452.0" />
<point x="968.3849999999993" y="6034.0" />
<point x="6127.227161577233" y="6034.0" />
<point x="-160.69444444444434" y="281.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.RevisarRegistrosController" target="gal.sdc.usc.wallstreet.repository.InversorDAO">
<point x="-11.625" y="-324.5" />
<point x="403.875" y="16560.0" />
<point x="410.0" y="16560.0" />
<point x="410.0" y="7472.0" />
<point x="3187.365667605257" y="7472.0" />
<point x="-98.5454545454545" y="61.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.CarteraController" target="gal.sdc.usc.wallstreet.Main">
<point x="125.33333333333394" y="665.5" />
<point x="10320.460626283193" y="10152.0" />
<point x="14251.116280368109" y="10152.0" />
<point x="14251.116280368109" y="13716.0" />
<point x="13024.058010485009" y="13716.0" />
<point x="13024.058010485009" y="16195.0" />
<point x="12361.051671186968" y="16195.0" />
<point x="133.46666666666715" y="-137.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.PagosController" target="gal.sdc.usc.wallstreet.repository.PagoUsuarioDAO">
<point x="84.11764705882342" y="-467.5" />
<point x="2099.9609987071726" y="11641.0" />
<point x="2491.9184750918876" y="11641.0" />
<point x="2491.9184750918876" y="7522.0" />
<point x="3523.9111221507114" y="7522.0" />
<point x="-82.5" y="49.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.util.Mapeador" target="gal.sdc.usc.wallstreet.model.ddl.Columna">
<point x="-134.75" y="-116.0" />
<point x="3038.3299938052123" y="10142.0" />
<point x="2570.286122150711" y="10142.0" />
<point x="2570.286122150711" y="5914.0" />
<point x="2266.9266849816822" y="5914.0" />
<point x="2266.9266849816822" y="126.0" />
<point x="3180.807079683008" y="126.0" />
<point x="-29.666666666666515" y="38.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.ReguladorController" target="gal.sdc.usc.wallstreet.Main">
<point x="67.25" y="687.5" />
<point x="5176.218034593107" y="13726.0" />
<point x="5393.892021277088" y="13726.0" />
<point x="5393.892021277088" y="16145.0" />
<point x="12189.45167118697" y="16145.0" />
<point x="-38.13333333333321" y="-137.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.SociedadSaldoController" target="gal.sdc.usc.wallstreet.repository.SociedadDAO">
<point x="47.55555555555475" y="-159.5" />
<point x="13613.201105392363" y="11931.0" />
<point x="14013.116280368109" y="11931.0" />
<point x="14013.116280368109" y="5674.0" />
<point x="8091.734160471878" y="5674.0" />
<point x="74.25" y="27.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.SociedadController" target="gal.sdc.usc.wallstreet.controller.SociedadMiembroController">
<point x="158.7096774193542" y="-435.0" />
<point x="12560.794681939657" y="13696.0" />
<point x="14077.116280368109" y="13696.0" />
<point x="-54.5" y="148.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.SociedadNuevaController" target="gal.sdc.usc.wallstreet.repository.SociedadDAO">
<point x="-38.90909090909099" y="-148.5" />
<point x="6880.906007291074" y="11691.0" />
<point x="6708.815098200164" y="11691.0" />
<point x="6708.815098200164" y="10484.0" />
<point x="6489.853559738627" y="10484.0" />
<point x="6489.853559738627" y="10082.0" />
<point x="8168.274621540773" y="10082.0" />
<point x="8168.274621540773" y="5904.0" />
<point x="8042.234160471878" y="5904.0" />
<point x="24.75" y="27.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.OtpController" target="gal.sdc.usc.wallstreet.model.Usuario">
<point x="-91.71428571428532" y="-160.0" />
<point x="5496.8332132934265" y="11701.0" />
<point x="5556.512016074588" y="11701.0" />
<point x="5556.512016074588" y="8341.0" />
<point x="6145.392021277088" y="8341.0" />
<point x="6145.392021277088" y="6194.0" />
<point x="7097.354993805211" y="6194.0" />
<point x="7097.354993805211" y="2642.0" />
<point x="6516.59526201783" y="2642.0" />
<point x="6.5625" y="248.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.AccesoController" target="gal.sdc.usc.wallstreet.util.Pagador">
<point x="-8.319999999999709" y="-171.0" />
<point x="1245.1349999999993" y="10182.0" />
<point x="1118.6349999999993" y="10182.0" />
<point x="0.0" y="49.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.model.UsuarioSesion" target="gal.sdc.usc.wallstreet.model.Usuario">
<point x="0.0" y="-27.0" />
<point x="7592.974516074588" y="2562.0" />
<point x="6551.59526201783" y="2562.0" />
<point x="41.5625" y="248.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.RevisarBajasController" target="gal.sdc.usc.wallstreet.repository.InversorDAO">
<point x="39.384615384615245" y="-324.5" />
<point x="167.38461538461524" y="16530.0" />
<point x="233.5625" y="16530.0" />
<point x="233.5625" y="7462.0" />
<point x="3162.7293039688934" y="7462.0" />
<point x="-123.18181818181802" y="61.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.OtpController" target="gal.sdc.usc.wallstreet.util.Validadores">
<point x="30.57142857142844" y="-160.0" />
<point x="5619.11892757914" y="11791.0" />
<point x="11439.972408335125" y="11791.0" />
<point x="-45.777777777777374" y="38.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.PerfilController" target="gal.sdc.usc.wallstreet.model.Usuario.Builder">
<point x="4.0" y="-424.0" />
<point x="12117.0850045203" y="13586.0" />
<point x="10854.077292949858" y="13586.0" />
<point x="10854.077292949858" y="6464.0" />
<point x="10254.010442523158" y="6464.0" />
<point x="10254.010442523158" y="3360.0" />
<point x="7491.80784940792" y="3360.0" />
<point x="95.83333333333303" y="204.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.repository.OfertaVentaDAO" target="gal.sdc.usc.wallstreet.model.OfertaVenta.Builder">
<point x="133.75" y="-149.0" />
<point x="8495.024621540773" y="6544.0" />
<point x="10680.510442523158" y="6544.0" />
<point x="-65.0" y="160.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.PrincipalController" target="gal.sdc.usc.wallstreet.model.OfertaVenta">
<point x="11.851851851852189" y="-368.5" />
<point x="4342.836850859564" y="14736.0" />
<point x="6780.315098200164" y="14736.0" />
<point x="6780.315098200164" y="10152.0" />
<point x="8566.449820422387" y="10152.0" />
<point x="8566.449820422387" y="6564.0" />
<point x="10886.010442523158" y="6564.0" />
<point x="10886.010442523158" y="4862.0" />
<point x="11249.133732218943" y="4862.0" />
<point x="-3.9615384615390212" y="171.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.repository.OfertaVentaDAO" target="gal.sdc.usc.wallstreet.util.Mapeador">
<point x="-145.90909090909008" y="149.0" />
<point x="8215.365530631683" y="7692.0" />
<point x="2771.911122150711" y="7692.0" />
<point x="2771.911122150711" y="10052.0" />
<point x="3258.8299938052123" y="10052.0" />
<point x="85.75" y="-116.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.VCompraController" target="gal.sdc.usc.wallstreet.model.Empresa">
<point x="11.625" y="-335.5" />
<point x="6206.407221229934" y="11581.0" />
<point x="6176.973554536127" y="11581.0" />
<point x="6176.973554536127" y="10002.0" />
<point x="6451.661054536127" y="10002.0" />
<point x="6451.661054536127" y="8551.0" />
<point x="7958.609160471878" y="8551.0" />
<point x="7958.609160471878" y="6224.0" />
<point x="7880.484160471878" y="6224.0" />
<point x="7880.484160471878" y="3930.0" />
<point x="7544.093410165977" y="3930.0" />
<point x="5.66666666666606" y="105.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.SociedadController" target="gal.sdc.usc.wallstreet.model.SuperUsuario">
<point x="105.8064516129034" y="-435.0" />
<point x="12507.891456133206" y="13616.0" />
<point x="13118.546759514229" y="13616.0" />
<point x="13118.546759514229" y="5062.0" />
<point x="13646.657947034775" y="5062.0" />
<point x="13646.657947034775" y="678.0" />
<point x="8700.007450167663" y="678.0" />
<point x="83.25" y="94.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.RevisarBajasController" target="gal.sdc.usc.wallstreet.repository.ParticipacionDAO">
<point x="59.07692307692287" y="-324.5" />
<point x="187.07692307692287" y="16540.0" />
<point x="244.5625" y="16540.0" />
<point x="244.5625" y="7582.0" />
<point x="5634.094630704698" y="7582.0" />
<point x="-154.090909090909" y="104.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.util.auth.PasswordStorage.CannotPerformOperationException" target="gal.sdc.usc.wallstreet.util.auth.PasswordStorage">
<point x="-77.25" y="-38.0" />
<point x="3087.864184981683" y="1337.0" />
<point x="3146.780851648349" y="1337.0" />
<point x="-18.333333333333485" y="214.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.VCompraController" target="gal.sdc.usc.wallstreet.Main">
<point x="93.0" y="335.5" />
<point x="6287.782221229934" y="13456.0" />
<point x="12227.5850045203" y="13456.0" />
<point x="0.0" y="-137.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.PerfilController" target="gal.sdc.usc.wallstreet.model.Usuario">
<point x="20.0" y="-424.0" />
<point x="12133.0850045203" y="13566.0" />
<point x="11372.250186112902" y="13566.0" />
<point x="11372.250186112902" y="5022.0" />
<point x="12185.071356877623" y="5022.0" />
<point x="12185.071356877623" y="3350.0" />
<point x="11458.129690210955" y="3350.0" />
<point x="11458.129690210955" y="2522.0" />
<point x="6569.09526201783" y="2522.0" />
<point x="59.0625" y="248.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.repository.UsuarioDAO" target="gal.sdc.usc.wallstreet.util.Mapeador">
<point x="-86.52777777777737" y="281.0" />
<point x="6201.393828243901" y="6064.0" />
<point x="2793.911122150711" y="6064.0" />
<point x="2793.911122150711" y="7412.0" />
<point x="2592.286122150711" y="7412.0" />
<point x="2592.286122150711" y="10122.0" />
<point x="3087.3299938052123" y="10122.0" />
<point x="-85.75" y="-116.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.SociedadNuevaController" target="gal.sdc.usc.wallstreet.repository.SuperUsuarioDAO">
<point x="-77.81818181818198" y="-148.5" />
<point x="6841.996916381982" y="11711.0" />
<point x="6686.815098200164" y="11711.0" />
<point x="6686.815098200164" y="10504.0" />
<point x="6467.853559738627" y="10504.0" />
<point x="6467.853559738627" y="10062.0" />
<point x="8146.274621540773" y="10062.0" />
<point x="8146.274621540773" y="7332.0" />
<point x="4150.411122150712" y="7332.0" />
<point x="48.375" y="38.5" />
</edge>
<edge source="gal.sdc.usc.wallstreet.repository.ReguladorDAO" target="gal.sdc.usc.wallstreet.model.Regulador">
<point x="0.0" y="-38.5" />
<point x="4336.536122150712" y="5754.0" />
<point x="758.7428571428563" y="5754.0" />
<point x="45.428571428571445" y="94.0" />
</edge>
<edge source="gal.sdc.usc.wallstreet.controller.RegistroController" target="gal.sdc.usc.wallstreet.model.Empresa">
<point x="-32.5" y="-292.0" />
<point x="921.1349999999993" y="11661.0" />
<point x="916.1349999999993" y="11661.0" />
<point x="916.1349999999993" y="7392.0" />
<point x="834.9749999999995" y="7392.0" />