-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample-output.html
20949 lines (14582 loc) · 861 KB
/
sample-output.html
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Report</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"/>
<style type="text/css">
.element-in-set:after { content: ', '; }
.element-in-set:last-of-type:after { content: ''; }
.text-ellipsis { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; width: 100%; }
svg { width: 100%; }
svg > g > polygon { fill: transparent; }
</style>
</head>
<body>
<div class="container">
<a name="TableDefinition"></a>
<h3> Table Definition </h3>
<div class="svg-container"><?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 2.38.0 (20140413.2041)
-->
<!-- Title: totalRelationSvg Pages: 1 -->
<svg width="1427pt" height="983pt"
viewBox="0.00 0.00 1426.92 982.62" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 978.62)">
<title>totalRelationSvg</title>
<polygon fill="white" stroke="none" points="-4,4 -4,-978.62 1422.92,-978.62 1422.92,4 -4,4"/>
<!-- TOUR_PLAN -->
<g id="node1" class="node"><title>TOUR_PLAN</title>
<g id="a_node1"><a xlink:href="#table$TOUR_PLAN" xlink:title="TOUR_PLAN">
<polygon fill="white" stroke="black" points="889.584,-510.62 813.581,-510.62 813.581,-490.62 889.584,-490.62 889.584,-510.62"/>
<text text-anchor="middle" x="851.583" y="-497.62" font-family="Helvetica,sans-Serif" font-size="10.00">TOUR_PLAN</text>
</a>
</g>
</g>
<!-- user -->
<g id="node2" class="node"><title>user</title>
<g id="a_node2"><a xlink:href="#table$user" xlink:title="user">
<polygon fill="white" stroke="black" points="1210.77,-510.62 1174.87,-510.62 1174.87,-490.62 1210.77,-490.62 1210.77,-510.62"/>
<text text-anchor="middle" x="1192.82" y="-497.62" font-family="Helvetica,sans-Serif" font-size="10.00">user</text>
</a>
</g>
</g>
<!-- TOUR_PLAN->user -->
<g id="edge1" class="edge"><title>TOUR_PLAN->user</title>
<path fill="none" stroke="black" d="M889.6,-493.103C912.76,-488.788 943.279,-483.804 970.581,-481.62 1022.96,-477.43 1036.48,-476.834 1088.82,-481.62 1114.88,-484.004 1144.19,-489.712 1164.86,-494.254"/>
<polygon fill="black" stroke="black" points="1164.29,-497.714 1174.82,-496.498 1165.83,-490.885 1164.29,-497.714"/>
</g>
<!-- LOCATION_COUNTRY -->
<g id="node13" class="node"><title>LOCATION_COUNTRY</title>
<g id="a_node13"><a xlink:href="#table$LOCATION_COUNTRY" xlink:title="LOCATION_COUNTRY">
<polygon fill="white" stroke="black" points="1418.97,-331.62 1296.76,-331.62 1296.76,-311.62 1418.97,-311.62 1418.97,-331.62"/>
<text text-anchor="middle" x="1357.87" y="-318.62" font-family="Helvetica,sans-Serif" font-size="10.00">LOCATION_COUNTRY</text>
</a>
</g>
</g>
<!-- user->LOCATION_COUNTRY -->
<g id="edge3" class="edge"><title>user->LOCATION_COUNTRY</title>
<path fill="none" stroke="black" d="M1203.05,-490.484C1229.73,-461.193 1307.17,-376.178 1340.88,-339.173"/>
<polygon fill="black" stroke="black" points="1343.59,-341.395 1347.74,-331.646 1338.42,-336.682 1343.59,-341.395"/>
</g>
<!-- PUBLIC_FILE -->
<g id="node35" class="node"><title>PUBLIC_FILE</title>
<g id="a_node35"><a xlink:href="#table$PUBLIC_FILE" xlink:title="PUBLIC_FILE">
<polygon fill="white" stroke="black" points="1397.16,-776.62 1318.58,-776.62 1318.58,-756.62 1397.16,-756.62 1397.16,-776.62"/>
<text text-anchor="middle" x="1357.87" y="-763.62" font-family="Helvetica,sans-Serif" font-size="10.00">PUBLIC_FILE</text>
</a>
</g>
</g>
<!-- user->PUBLIC_FILE -->
<g id="edge2" class="edge"><title>user->PUBLIC_FILE</title>
<path fill="none" stroke="black" d="M1200.01,-510.723C1224.32,-550.389 1313.48,-695.838 1345.4,-747.916"/>
<polygon fill="black" stroke="black" points="1342.46,-749.811 1350.67,-756.507 1348.43,-746.153 1342.46,-749.811"/>
</g>
<!-- PRODUCT_IMPOSSIBLE_DATE -->
<g id="node3" class="node"><title>PRODUCT_IMPOSSIBLE_DATE</title>
<g id="a_node3"><a xlink:href="#table$PRODUCT_IMPOSSIBLE_DATE" xlink:title="PRODUCT_IMPOSSIBLE_DATE">
<polygon fill="white" stroke="black" points="933.37,-700.62 769.795,-700.62 769.795,-680.62 933.37,-680.62 933.37,-700.62"/>
<text text-anchor="middle" x="851.583" y="-687.62" font-family="Helvetica,sans-Serif" font-size="10.00">PRODUCT_IMPOSSIBLE_DATE</text>
</a>
</g>
</g>
<!-- PRODUCT -->
<g id="node4" class="node"><title>PRODUCT</title>
<g id="a_node4"><a xlink:href="#table$PRODUCT" xlink:title="PRODUCT">
<polygon fill="white" stroke="black" points="1062.63,-662.62 996.764,-662.62 996.764,-642.62 1062.63,-642.62 1062.63,-662.62"/>
<text text-anchor="middle" x="1029.7" y="-649.62" font-family="Helvetica,sans-Serif" font-size="10.00">PRODUCT</text>
</a>
</g>
</g>
<!-- PRODUCT_IMPOSSIBLE_DATE->PRODUCT -->
<g id="edge4" class="edge"><title>PRODUCT_IMPOSSIBLE_DATE->PRODUCT</title>
<path fill="none" stroke="black" d="M899.316,-680.537C926.485,-674.675 960.441,-667.348 986.749,-661.672"/>
<polygon fill="black" stroke="black" points="987.75,-665.036 996.787,-659.506 986.274,-658.193 987.75,-665.036"/>
</g>
<!-- PRODUCT->user -->
<g id="edge6" class="edge"><title>PRODUCT->user</title>
<path fill="none" stroke="black" d="M1062.47,-645.956C1071.5,-643.106 1081.01,-639.124 1088.82,-633.62 1132.16,-603.07 1165.84,-548.94 1181.76,-520.055"/>
<polygon fill="black" stroke="black" points="1184.99,-521.437 1186.63,-510.97 1178.82,-518.127 1184.99,-521.437"/>
</g>
<!-- PRODUCT_EVENT_TYPE -->
<g id="node5" class="node"><title>PRODUCT_EVENT_TYPE</title>
<g id="a_node5"><a xlink:href="#table$PRODUCT_EVENT_TYPE" xlink:title="PRODUCT_EVENT_TYPE">
<polygon fill="white" stroke="black" points="1260.82,-644.62 1124.81,-644.62 1124.81,-624.62 1260.82,-624.62 1260.82,-644.62"/>
<text text-anchor="middle" x="1192.82" y="-631.62" font-family="Helvetica,sans-Serif" font-size="10.00">PRODUCT_EVENT_TYPE</text>
</a>
</g>
</g>
<!-- PRODUCT->PRODUCT_EVENT_TYPE -->
<g id="edge5" class="edge"><title>PRODUCT->PRODUCT_EVENT_TYPE</title>
<path fill="none" stroke="black" d="M1062.53,-649.064C1077.54,-647.387 1096.17,-645.306 1114.57,-643.251"/>
<polygon fill="black" stroke="black" points="1115.19,-646.703 1124.74,-642.114 1114.41,-639.746 1115.19,-646.703"/>
</g>
<!-- CURRENCY -->
<g id="node6" class="node"><title>CURRENCY</title>
<g id="a_node6"><a xlink:href="#table$CURRENCY" xlink:title="CURRENCY">
<polygon fill="white" stroke="black" points="1228.97,-738.62 1156.66,-738.62 1156.66,-718.62 1228.97,-718.62 1228.97,-738.62"/>
<text text-anchor="middle" x="1192.82" y="-725.62" font-family="Helvetica,sans-Serif" font-size="10.00">CURRENCY</text>
</a>
</g>
</g>
<!-- PRODUCT->CURRENCY -->
<g id="edge7" class="edge"><title>PRODUCT->CURRENCY</title>
<path fill="none" stroke="black" d="M1062.43,-659.878C1071.37,-662.733 1080.83,-666.568 1088.82,-671.62 1108.47,-684.061 1104.91,-697.572 1124.82,-709.62 1131.58,-713.715 1139.26,-716.957 1146.94,-719.516"/>
<polygon fill="black" stroke="black" points="1146.03,-722.896 1156.62,-722.403 1148.04,-716.189 1146.03,-722.896"/>
</g>
<!-- UNIT_TOUR -->
<g id="node7" class="node"><title>UNIT_TOUR</title>
<g id="a_node7"><a xlink:href="#table$UNIT_TOUR" xlink:title="UNIT_TOUR">
<polygon fill="white" stroke="black" points="692.946,-642.62 619.524,-642.62 619.524,-622.62 692.946,-622.62 692.946,-642.62"/>
<text text-anchor="middle" x="656.235" y="-629.62" font-family="Helvetica,sans-Serif" font-size="10.00">UNIT_TOUR</text>
</a>
</g>
</g>
<!-- TOUR -->
<g id="node8" class="node"><title>TOUR</title>
<g id="a_node8"><a xlink:href="#table$TOUR" xlink:title="TOUR">
<polygon fill="white" stroke="black" points="873.91,-624.62 829.255,-624.62 829.255,-604.62 873.91,-604.62 873.91,-624.62"/>
<text text-anchor="middle" x="851.583" y="-611.62" font-family="Helvetica,sans-Serif" font-size="10.00">TOUR</text>
</a>
</g>
</g>
<!-- UNIT_TOUR->TOUR -->
<g id="edge8" class="edge"><title>UNIT_TOUR->TOUR</title>
<path fill="none" stroke="black" d="M693.149,-629.277C729.372,-625.905 784.734,-620.75 819.236,-617.538"/>
<polygon fill="black" stroke="black" points="819.597,-621.02 829.229,-616.608 818.948,-614.05 819.597,-621.02"/>
</g>
<!-- TOUR->PRODUCT -->
<g id="edge9" class="edge"><title>TOUR->PRODUCT</title>
<path fill="none" stroke="black" d="M873.826,-619.204C901.721,-625.223 951.315,-635.924 986.872,-643.596"/>
<polygon fill="black" stroke="black" points="986.444,-647.084 996.957,-645.772 987.92,-640.241 986.444,-647.084"/>
</g>
<!-- CONFIRMATION -->
<g id="node9" class="node"><title>CONFIRMATION</title>
<g id="a_node9"><a xlink:href="#table$CONFIRMATION" xlink:title="CONFIRMATION">
<polygon fill="white" stroke="black" points="702.943,-890.62 609.527,-890.62 609.527,-870.62 702.943,-870.62 702.943,-890.62"/>
<text text-anchor="middle" x="656.235" y="-877.62" font-family="Helvetica,sans-Serif" font-size="10.00">CONFIRMATION</text>
</a>
</g>
</g>
<!-- PRODUCT_RESERVATION -->
<g id="node10" class="node"><title>PRODUCT_RESERVATION</title>
<g id="a_node10"><a xlink:href="#table$PRODUCT_RESERVATION" xlink:title="PRODUCT_RESERVATION">
<polygon fill="white" stroke="black" points="922.744,-890.62 780.421,-890.62 780.421,-870.62 922.744,-870.62 922.744,-890.62"/>
<text text-anchor="middle" x="851.583" y="-877.62" font-family="Helvetica,sans-Serif" font-size="10.00">PRODUCT_RESERVATION</text>
</a>
</g>
</g>
<!-- CONFIRMATION->PRODUCT_RESERVATION -->
<g id="edge10" class="edge"><title>CONFIRMATION->PRODUCT_RESERVATION</title>
<path fill="none" stroke="black" d="M703.056,-880.62C723.094,-880.62 747.208,-880.62 770.08,-880.62"/>
<polygon fill="black" stroke="black" points="770.134,-884.12 780.134,-880.62 770.134,-877.12 770.134,-884.12"/>
</g>
<!-- PRODUCT_RESERVATION->user -->
<g id="edge11" class="edge"><title>PRODUCT_RESERVATION->user</title>
<path fill="none" stroke="black" d="M922.978,-877.885C984.026,-873.973 1066.06,-864.501 1088.82,-841.62 1160.53,-769.497 1090.63,-711.415 1124.82,-615.62 1137.86,-579.059 1162.64,-540.958 1178.13,-519.084"/>
<polygon fill="black" stroke="black" points="1181.13,-520.912 1184.14,-510.754 1175.45,-516.816 1181.13,-520.912"/>
</g>
<!-- PRODUCT_RESERVATION->PRODUCT -->
<g id="edge12" class="edge"><title>PRODUCT_RESERVATION->PRODUCT</title>
<path fill="none" stroke="black" d="M875.586,-870.451C894.305,-860.989 919.941,-845.114 934.581,-823.62 973.663,-766.242 923.58,-722.715 970.581,-671.62 975.061,-666.75 980.806,-663.124 986.934,-660.427"/>
<polygon fill="black" stroke="black" points="988.521,-663.576 996.752,-656.906 986.158,-656.987 988.521,-663.576"/>
</g>
<!-- PRODUCT_RESERVATION->CURRENCY -->
<g id="edge13" class="edge"><title>PRODUCT_RESERVATION->CURRENCY</title>
<path fill="none" stroke="black" d="M896.478,-890.66C946.273,-899.631 1028.39,-906.918 1088.82,-874.62 1140.16,-847.174 1171.58,-781.495 1184.7,-748.397"/>
<polygon fill="black" stroke="black" points="1188.03,-749.477 1188.31,-738.886 1181.49,-746.989 1188.03,-749.477"/>
</g>
<!-- PRODUCT_RESERVATION->LOCATION_COUNTRY -->
<g id="edge15" class="edge"><title>PRODUCT_RESERVATION->LOCATION_COUNTRY</title>
<path fill="none" stroke="black" d="M881.328,-890.644C926.95,-904.881 1018.01,-926.422 1088.82,-899.62 1184.23,-863.503 1208.86,-835.414 1260.82,-747.62 1342.97,-608.808 1354.92,-406.486 1356.61,-342.096"/>
<polygon fill="black" stroke="black" points="1360.11,-341.794 1356.82,-331.725 1353.11,-341.652 1360.11,-341.794"/>
</g>
<!-- THEME -->
<g id="node29" class="node"><title>THEME</title>
<g id="a_node29"><a xlink:href="#table$THEME" xlink:title="THEME">
<polygon fill="white" stroke="black" points="1055.19,-814.62 1004.2,-814.62 1004.2,-794.62 1055.19,-794.62 1055.19,-814.62"/>
<text text-anchor="middle" x="1029.7" y="-801.62" font-family="Helvetica,sans-Serif" font-size="10.00">THEME</text>
</a>
</g>
</g>
<!-- PRODUCT_RESERVATION->THEME -->
<g id="edge14" class="edge"><title>PRODUCT_RESERVATION->THEME</title>
<path fill="none" stroke="black" d="M893.651,-870.513C906.928,-866.742 921.573,-862.039 934.581,-856.62 959.199,-846.364 985.652,-831.36 1004.22,-820.102"/>
<polygon fill="black" stroke="black" points="1006.23,-822.977 1012.92,-814.758 1002.56,-817.014 1006.23,-822.977"/>
</g>
<!-- KEYWORD -->
<g id="node11" class="node"><title>KEYWORD</title>
<g id="a_node11"><a xlink:href="#table$KEYWORD" xlink:title="KEYWORD">
<polygon fill="white" stroke="black" points="1063.36,-624.62 996.034,-624.62 996.034,-604.62 1063.36,-604.62 1063.36,-624.62"/>
<text text-anchor="middle" x="1029.7" y="-611.62" font-family="Helvetica,sans-Serif" font-size="10.00">KEYWORD</text>
</a>
</g>
</g>
<!-- LOCATION_STATE -->
<g id="node12" class="node"><title>LOCATION_STATE</title>
<g id="a_node12"><a xlink:href="#table$LOCATION_STATE" xlink:title="LOCATION_STATE">
<polygon fill="white" stroke="black" points="1245.21,-152.62 1140.42,-152.62 1140.42,-132.62 1245.21,-132.62 1245.21,-152.62"/>
<text text-anchor="middle" x="1192.82" y="-139.62" font-family="Helvetica,sans-Serif" font-size="10.00">LOCATION_STATE</text>
</a>
</g>
</g>
<!-- LOCATION_STATE->LOCATION_COUNTRY -->
<g id="edge16" class="edge"><title>LOCATION_STATE->LOCATION_COUNTRY</title>
<path fill="none" stroke="black" d="M1213.7,-152.701C1227.84,-160.472 1246.73,-172.149 1260.82,-185.62 1298.56,-221.726 1330.88,-274.619 1346.62,-302.612"/>
<polygon fill="black" stroke="black" points="1343.58,-304.348 1351.48,-311.407 1349.71,-300.962 1343.58,-304.348"/>
</g>
<!-- USER_X_INTEREST_GUIDE -->
<g id="node14" class="node"><title>USER_X_INTEREST_GUIDE</title>
<g id="a_node14"><a xlink:href="#table$USER_X_INTEREST_GUIDE" xlink:title="USER_X_INTEREST_GUIDE">
<polygon fill="white" stroke="black" points="730.464,-144.62 582.006,-144.62 582.006,-124.62 730.464,-124.62 730.464,-144.62"/>
<text text-anchor="middle" x="656.235" y="-131.62" font-family="Helvetica,sans-Serif" font-size="10.00">USER_X_INTEREST_GUIDE</text>
</a>
</g>
</g>
<!-- USER_X_INTEREST_GUIDE->user -->
<g id="edge17" class="edge"><title>USER_X_INTEREST_GUIDE->user</title>
<path fill="none" stroke="black" d="M718.266,-144.664C776.468,-155.996 865.278,-177.95 934.581,-215.62 1014.11,-258.847 1028.63,-281.012 1088.82,-348.62 1127.66,-392.259 1163.68,-451.323 1181.01,-481.357"/>
<polygon fill="black" stroke="black" points="1178.15,-483.413 1186.15,-490.366 1184.23,-479.945 1178.15,-483.413"/>
</g>
<!-- GUIDE -->
<g id="node15" class="node"><title>GUIDE</title>
<g id="a_node15"><a xlink:href="#table$GUIDE" xlink:title="GUIDE">
<polygon fill="white" stroke="black" points="875.249,-97.6202 827.916,-97.6202 827.916,-77.6202 875.249,-77.6202 875.249,-97.6202"/>
<text text-anchor="middle" x="851.583" y="-84.6202" font-family="Helvetica,sans-Serif" font-size="10.00">GUIDE</text>
</a>
</g>
</g>
<!-- USER_X_INTEREST_GUIDE->GUIDE -->
<g id="edge18" class="edge"><title>USER_X_INTEREST_GUIDE->GUIDE</title>
<path fill="none" stroke="black" d="M698.713,-124.538C734.357,-115.873 785.057,-103.549 817.889,-95.5676"/>
<polygon fill="black" stroke="black" points="818.989,-98.9022 827.879,-93.1391 817.335,-92.1003 818.989,-98.9022"/>
</g>
<!-- GUIDE->user -->
<g id="edge19" class="edge"><title>GUIDE->user</title>
<path fill="none" stroke="black" d="M875.575,-81.4039C921.841,-70.4009 1027.03,-53.1981 1088.82,-104.62 1148.29,-154.116 1181.13,-406.131 1189.6,-480.152"/>
<polygon fill="black" stroke="black" points="1186.16,-480.896 1190.75,-490.445 1193.12,-480.118 1186.16,-480.896"/>
</g>
<!-- GUIDE_EVENT_TYPE -->
<g id="node16" class="node"><title>GUIDE_EVENT_TYPE</title>
<g id="a_node16"><a xlink:href="#table$GUIDE_EVENT_TYPE" xlink:title="GUIDE_EVENT_TYPE">
<polygon fill="white" stroke="black" points="1088.93,-57.6202 970.464,-57.6202 970.464,-37.6202 1088.93,-37.6202 1088.93,-57.6202"/>
<text text-anchor="middle" x="1029.7" y="-44.6202" font-family="Helvetica,sans-Serif" font-size="10.00">GUIDE_EVENT_TYPE</text>
</a>
</g>
</g>
<!-- GUIDE->GUIDE_EVENT_TYPE -->
<g id="edge20" class="edge"><title>GUIDE->GUIDE_EVENT_TYPE</title>
<path fill="none" stroke="black" d="M875.607,-82.3909C900.533,-76.7295 941.169,-67.5002 974.312,-59.9726"/>
<polygon fill="black" stroke="black" points="975.355,-63.3249 984.331,-57.697 973.804,-56.4988 975.355,-63.3249"/>
</g>
<!-- LOCATION_CITY -->
<g id="node17" class="node"><title>LOCATION_CITY</title>
<g id="a_node17"><a xlink:href="#table$LOCATION_CITY" xlink:title="LOCATION_CITY">
<polygon fill="white" stroke="black" points="1077.65,-133.62 981.75,-133.62 981.75,-113.62 1077.65,-113.62 1077.65,-133.62"/>
<text text-anchor="middle" x="1029.7" y="-120.62" font-family="Helvetica,sans-Serif" font-size="10.00">LOCATION_CITY</text>
</a>
</g>
</g>
<!-- GUIDE->LOCATION_CITY -->
<g id="edge21" class="edge"><title>GUIDE->LOCATION_CITY</title>
<path fill="none" stroke="black" d="M875.607,-92.3266C899.942,-97.301 939.249,-105.336 971.94,-112.018"/>
<polygon fill="black" stroke="black" points="971.351,-115.47 981.849,-114.044 972.753,-108.612 971.351,-115.47"/>
</g>
<!-- LOCATION_CITY->LOCATION_STATE -->
<g id="edge22" class="edge"><title>LOCATION_CITY->LOCATION_STATE</title>
<path fill="none" stroke="black" d="M1077.73,-129.167C1094.12,-131.099 1112.75,-133.296 1130.14,-135.347"/>
<polygon fill="black" stroke="black" points="1129.87,-138.839 1140.21,-136.535 1130.69,-131.887 1129.87,-138.839"/>
</g>
<!-- TOURIST_FACEBOOK -->
<g id="node18" class="node"><title>TOURIST_FACEBOOK</title>
<g id="a_node18"><a xlink:href="#table$TOURIST_FACEBOOK" xlink:title="TOURIST_FACEBOOK">
<polygon fill="white" stroke="black" points="912.087,-434.62 791.078,-434.62 791.078,-414.62 912.087,-414.62 912.087,-434.62"/>
<text text-anchor="middle" x="851.583" y="-421.62" font-family="Helvetica,sans-Serif" font-size="10.00">TOURIST_FACEBOOK</text>
</a>
</g>
</g>
<!-- TOURIST -->
<g id="node19" class="node"><title>TOURIST</title>
<g id="a_node19"><a xlink:href="#table$TOURIST" xlink:title="TOURIST">
<polygon fill="white" stroke="black" points="1059.58,-377.62 999.815,-377.62 999.815,-357.62 1059.58,-357.62 1059.58,-377.62"/>
<text text-anchor="middle" x="1029.7" y="-364.62" font-family="Helvetica,sans-Serif" font-size="10.00">TOURIST</text>
</a>
</g>
</g>
<!-- TOURIST_FACEBOOK->TOURIST -->
<g id="edge23" class="edge"><title>TOURIST_FACEBOOK->TOURIST</title>
<path fill="none" stroke="black" d="M901.483,-414.607C912.461,-411.995 923.99,-408.963 934.581,-405.62 955.849,-398.908 979.091,-389.545 997.158,-381.792"/>
<polygon fill="black" stroke="black" points="998.843,-384.876 1006.62,-377.678 996.051,-378.457 998.843,-384.876"/>
</g>
<!-- TOURIST->user -->
<g id="edge24" class="edge"><title>TOURIST->user</title>
<path fill="none" stroke="black" d="M1045.27,-377.904C1057.18,-386.423 1074.34,-398.975 1088.82,-410.62 1119.22,-435.088 1153.04,-465.235 1173.36,-483.683"/>
<polygon fill="black" stroke="black" points="1171.19,-486.447 1180.94,-490.597 1175.91,-481.274 1171.19,-486.447"/>
</g>
<!-- TOUR_SKETCH -->
<g id="node20" class="node"><title>TOUR_SKETCH</title>
<g id="a_node20"><a xlink:href="#table$TOUR_SKETCH" xlink:title="TOUR_SKETCH">
<polygon fill="white" stroke="black" points="701.675,-566.62 610.795,-566.62 610.795,-546.62 701.675,-546.62 701.675,-566.62"/>
<text text-anchor="middle" x="656.235" y="-553.62" font-family="Helvetica,sans-Serif" font-size="10.00">TOUR_SKETCH</text>
</a>
</g>
</g>
<!-- TOUR_SKETCH->TOUR_PLAN -->
<g id="edge25" class="edge"><title>TOUR_SKETCH->TOUR_PLAN</title>
<path fill="none" stroke="black" d="M701.553,-547.147C711.87,-544.475 722.718,-541.281 732.584,-537.62 749.355,-531.397 751.754,-525.681 768.584,-519.62 779.643,-515.638 791.848,-512.282 803.387,-509.552"/>
<polygon fill="black" stroke="black" points="804.325,-512.929 813.31,-507.315 802.785,-506.1 804.325,-512.929"/>
</g>
<!-- GUIDE_X_LANGUAGE -->
<g id="node21" class="node"><title>GUIDE_X_LANGUAGE</title>
<g id="a_node21"><a xlink:href="#table$GUIDE_X_LANGUAGE" xlink:title="GUIDE_X_LANGUAGE">
<polygon fill="white" stroke="black" points="716.749,-59.6202 595.721,-59.6202 595.721,-39.6202 716.749,-39.6202 716.749,-59.6202"/>
<text text-anchor="middle" x="656.235" y="-46.6202" font-family="Helvetica,sans-Serif" font-size="10.00">GUIDE_X_LANGUAGE</text>
</a>
</g>
</g>
<!-- GUIDE_X_LANGUAGE->GUIDE -->
<g id="edge26" class="edge"><title>GUIDE_X_LANGUAGE->GUIDE</title>
<path fill="none" stroke="black" d="M708.288,-59.654C743.016,-66.4794 787.936,-75.3078 817.925,-81.2018"/>
<polygon fill="black" stroke="black" points="817.382,-84.6619 827.869,-83.1562 818.732,-77.7933 817.382,-84.6619"/>
</g>
<!-- LANGUAGE -->
<g id="node22" class="node"><title>LANGUAGE</title>
<g id="a_node22"><a xlink:href="#table$LANGUAGE" xlink:title="LANGUAGE">
<polygon fill="white" stroke="black" points="887.146,-59.6202 816.019,-59.6202 816.019,-39.6202 887.146,-39.6202 887.146,-59.6202"/>
<text text-anchor="middle" x="851.583" y="-46.6202" font-family="Helvetica,sans-Serif" font-size="10.00">LANGUAGE</text>
</a>
</g>
</g>
<!-- GUIDE_X_LANGUAGE->LANGUAGE -->
<g id="edge27" class="edge"><title>GUIDE_X_LANGUAGE->LANGUAGE</title>
<path fill="none" stroke="black" d="M716.823,-49.6202C745.524,-49.6202 779.365,-49.6202 805.827,-49.6202"/>
<polygon fill="black" stroke="black" points="805.945,-53.1203 815.945,-49.6202 805.945,-46.1203 805.945,-53.1203"/>
</g>
<!-- COUNTRY_X_LANGUAGE -->
<g id="node23" class="node"><title>COUNTRY_X_LANGUAGE</title>
<g id="a_node23"><a xlink:href="#table$COUNTRY_X_LANGUAGE" xlink:title="COUNTRY_X_LANGUAGE">
<polygon fill="white" stroke="black" points="725.517,-21.6202 586.953,-21.6202 586.953,-1.62022 725.517,-1.62022 725.517,-21.6202"/>
<text text-anchor="middle" x="656.235" y="-8.62022" font-family="Helvetica,sans-Serif" font-size="10.00">COUNTRY_X_LANGUAGE</text>
</a>
</g>
</g>
<!-- COUNTRY_X_LANGUAGE->LOCATION_COUNTRY -->
<g id="edge28" class="edge"><title>COUNTRY_X_LANGUAGE->LOCATION_COUNTRY</title>
<path fill="none" stroke="black" d="M725.637,-4.7467C812.023,1.78024 964.401,6.07973 1088.82,-28.6202 1172.93,-52.0819 1200.72,-60.255 1260.82,-123.62 1311.55,-177.11 1340.37,-262.45 1351.49,-301.241"/>
<polygon fill="black" stroke="black" points="1348.23,-302.587 1354.27,-311.292 1354.98,-300.721 1348.23,-302.587"/>
</g>
<!-- COUNTRY_X_LANGUAGE->LANGUAGE -->
<g id="edge29" class="edge"><title>COUNTRY_X_LANGUAGE->LANGUAGE</title>
<path fill="none" stroke="black" d="M708.288,-21.654C738.612,-27.6139 776.708,-35.1011 805.848,-40.8282"/>
<polygon fill="black" stroke="black" points="805.267,-44.281 815.755,-42.7752 806.617,-37.4124 805.267,-44.281"/>
</g>
<!-- PRODUCT_X_CITY -->
<g id="node24" class="node"><title>PRODUCT_X_CITY</title>
<g id="a_node24"><a xlink:href="#table$PRODUCT_X_CITY" xlink:title="PRODUCT_X_CITY">
<polygon fill="white" stroke="black" points="904.579,-282.62 798.586,-282.62 798.586,-262.62 904.579,-262.62 904.579,-282.62"/>
<text text-anchor="middle" x="851.583" y="-269.62" font-family="Helvetica,sans-Serif" font-size="10.00">PRODUCT_X_CITY</text>
</a>
</g>
</g>
<!-- PRODUCT_X_CITY->PRODUCT -->
<g id="edge30" class="edge"><title>PRODUCT_X_CITY->PRODUCT</title>
<path fill="none" stroke="black" d="M904.583,-274.795C915.926,-277.722 926.838,-282.862 934.581,-291.62 1035.82,-406.123 874.494,-514.762 970.581,-633.62 974.93,-639 980.832,-642.872 987.213,-645.656"/>
<polygon fill="black" stroke="black" points="986.186,-649.004 996.781,-649.003 988.498,-642.397 986.186,-649.004"/>
</g>
<!-- PRODUCT_X_CITY->LOCATION_CITY -->
<g id="edge31" class="edge"><title>PRODUCT_X_CITY->LOCATION_CITY</title>
<path fill="none" stroke="black" d="M904.755,-266.417C915.206,-263.599 925.693,-259.519 934.581,-253.62 976.761,-225.626 1006.48,-171.887 1020.17,-143.047"/>
<polygon fill="black" stroke="black" points="1023.5,-144.191 1024.49,-133.642 1017.14,-141.271 1023.5,-144.191"/>
</g>
<!-- SERVICE -->
<g id="node25" class="node"><title>SERVICE</title>
<g id="a_node25"><a xlink:href="#table$SERVICE" xlink:title="SERVICE">
<polygon fill="white" stroke="black" points="881.476,-738.62 821.689,-738.62 821.689,-718.62 881.476,-718.62 881.476,-738.62"/>
<text text-anchor="middle" x="851.583" y="-725.62" font-family="Helvetica,sans-Serif" font-size="10.00">SERVICE</text>
</a>
</g>
</g>
<!-- SERVICE->PRODUCT -->
<g id="edge32" class="edge"><title>SERVICE->PRODUCT</title>
<path fill="none" stroke="black" d="M881.794,-726.034C898.17,-723.591 918.476,-718.842 934.581,-709.62 954.77,-698.059 950.922,-684.061 970.581,-671.62 975.695,-668.384 981.414,-665.647 987.215,-663.347"/>
<polygon fill="black" stroke="black" points="988.714,-666.528 996.962,-659.878 986.367,-659.933 988.714,-666.528"/>
</g>
<!-- SERVICE_TYPE -->
<g id="node26" class="node"><title>SERVICE_TYPE</title>
<g id="a_node26"><a xlink:href="#table$SERVICE_TYPE" xlink:title="SERVICE_TYPE">
<polygon fill="white" stroke="black" points="1075.27,-700.62 984.129,-700.62 984.129,-680.62 1075.27,-680.62 1075.27,-700.62"/>
<text text-anchor="middle" x="1029.7" y="-687.62" font-family="Helvetica,sans-Serif" font-size="10.00">SERVICE_TYPE</text>
</a>
</g>
</g>
<!-- SERVICE->SERVICE_TYPE -->
<g id="edge33" class="edge"><title>SERVICE->SERVICE_TYPE</title>
<path fill="none" stroke="black" d="M881.664,-722.345C906.681,-716.948 943.449,-709.014 973.959,-702.431"/>
<polygon fill="black" stroke="black" points="975.003,-705.787 984.04,-700.256 973.526,-698.944 975.003,-705.787"/>
</g>
<!-- ADMIN -->
<g id="node27" class="node"><title>ADMIN</title>
<g id="a_node27"><a xlink:href="#table$ADMIN" xlink:title="ADMIN">
<polygon fill="white" stroke="black" points="1053.91,-548.62 1005.48,-548.62 1005.48,-528.62 1053.91,-528.62 1053.91,-548.62"/>
<text text-anchor="middle" x="1029.7" y="-535.62" font-family="Helvetica,sans-Serif" font-size="10.00">ADMIN</text>
</a>
</g>
</g>
<!-- ADMIN->user -->
<g id="edge34" class="edge"><title>ADMIN->user</title>
<path fill="none" stroke="black" d="M1054.13,-533.095C1083.48,-526.171 1133.69,-514.33 1164.68,-507.02"/>
<polygon fill="black" stroke="black" points="1165.85,-510.341 1174.78,-504.639 1164.24,-503.528 1165.85,-510.341"/>
</g>
<!-- TOURIST_KAKAOTALK -->
<g id="node28" class="node"><title>TOURIST_KAKAOTALK</title>
<g id="a_node28"><a xlink:href="#table$TOURIST_KAKAOTALK" xlink:title="TOURIST_KAKAOTALK">
<polygon fill="white" stroke="black" points="913.986,-396.62 789.179,-396.62 789.179,-376.62 913.986,-376.62 913.986,-396.62"/>
<text text-anchor="middle" x="851.583" y="-383.62" font-family="Helvetica,sans-Serif" font-size="10.00">TOURIST_KAKAOTALK</text>
</a>
</g>
</g>
<!-- TOURIST_KAKAOTALK->TOURIST -->
<g id="edge35" class="edge"><title>TOURIST_KAKAOTALK->TOURIST</title>
<path fill="none" stroke="black" d="M914.179,-379.975C939.183,-377.277 967.326,-374.241 989.455,-371.854"/>
<polygon fill="black" stroke="black" points="989.913,-375.325 999.48,-370.772 989.162,-368.365 989.913,-375.325"/>
</g>
<!-- THEME->THEME -->
<g id="edge36" class="edge"><title>THEME->THEME</title>
<path fill="none" stroke="black" d="M1004.34,-814.668C992.767,-823.392 1001.22,-832.62 1029.7,-832.62 1048.39,-832.62 1058.45,-828.646 1059.89,-823.448"/>
<polygon fill="black" stroke="black" points="1062.95,-821.741 1055.06,-814.668 1056.82,-825.116 1062.95,-821.741"/>
</g>
<!-- THEME->PUBLIC_FILE -->
<g id="edge37" class="edge"><title>THEME->PUBLIC_FILE</title>
<path fill="none" stroke="black" d="M1055.26,-802.391C1097.38,-798.493 1186.08,-789.96 1260.82,-780.62 1276.17,-778.702 1292.86,-776.358 1307.96,-774.142"/>
<polygon fill="black" stroke="black" points="1308.75,-777.564 1318.13,-772.635 1307.72,-770.64 1308.75,-777.564"/>
</g>
<!-- TOUR_SCHEDULE -->
<g id="node30" class="node"><title>TOUR_SCHEDULE</title>
<g id="a_node30"><a xlink:href="#table$TOUR_SCHEDULE" xlink:title="TOUR_SCHEDULE">
<polygon fill="white" stroke="black" points="708.563,-528.62 603.907,-528.62 603.907,-508.62 708.563,-508.62 708.563,-528.62"/>
<text text-anchor="middle" x="656.235" y="-515.62" font-family="Helvetica,sans-Serif" font-size="10.00">TOUR_SCHEDULE</text>
</a>
</g>
</g>
<!-- TOUR_SCHEDULE->TOUR_PLAN -->
<g id="edge38" class="edge"><title>TOUR_SCHEDULE->TOUR_PLAN</title>
<path fill="none" stroke="black" d="M708.541,-513.844C737.934,-511.107 774.564,-507.697 803.264,-505.025"/>
<polygon fill="black" stroke="black" points="803.818,-508.489 813.451,-504.077 803.169,-501.519 803.818,-508.489"/>
</g>
<!-- TOUR_SCHEDULE_NODE_MEDIA_FILE -->
<g id="node31" class="node"><title>TOUR_SCHEDULE_NODE_MEDIA_FILE</title>
<g id="a_node31"><a xlink:href="#table$TOUR_SCHEDULE_NODE_MEDIA_FILE" xlink:title="TOUR_SCHEDULE_NODE_MEDIA_FILE">
<polygon fill="white" stroke="black" points="202.507,-733.62 0.164233,-733.62 0.164233,-713.62 202.507,-713.62 202.507,-733.62"/>
<text text-anchor="middle" x="101.335" y="-720.62" font-family="Helvetica,sans-Serif" font-size="10.00">TOUR_SCHEDULE_NODE_MEDIA_FILE</text>
</a>
</g>
</g>
<!-- TOUR_SCHEDULE_NODE -->
<g id="node32" class="node"><title>TOUR_SCHEDULE_NODE</title>
<g id="a_node32"><a xlink:href="#table$TOUR_SCHEDULE_NODE" xlink:title="TOUR_SCHEDULE_NODE">
<polygon fill="white" stroke="black" points="377.329,-690.62 238.785,-690.62 238.785,-670.62 377.329,-670.62 377.329,-690.62"/>
<text text-anchor="middle" x="308.057" y="-677.62" font-family="Helvetica,sans-Serif" font-size="10.00">TOUR_SCHEDULE_NODE</text>
</a>
</g>
</g>
<!-- TOUR_SCHEDULE_NODE_MEDIA_FILE->TOUR_SCHEDULE_NODE -->
<g id="edge39" class="edge"><title>TOUR_SCHEDULE_NODE_MEDIA_FILE->TOUR_SCHEDULE_NODE</title>
<path fill="none" stroke="black" d="M150.075,-713.593C179.714,-707.368 217.993,-699.327 249.331,-692.745"/>
<polygon fill="black" stroke="black" points="250.175,-696.144 259.242,-690.663 248.736,-689.294 250.175,-696.144"/>
</g>
<!-- TOUR_SCHEDULE_NODE_MEDIA_FILE->PUBLIC_FILE -->
<g id="edge40" class="edge"><title>TOUR_SCHEDULE_NODE_MEDIA_FILE->PUBLIC_FILE</title>
<path fill="none" stroke="black" d="M155.878,-733.648C228.498,-746.354 362.394,-766.62 477.665,-766.62 477.665,-766.62 477.665,-766.62 1030.7,-766.62 1129.26,-766.62 1244.58,-766.62 1308.31,-766.62"/>
<polygon fill="black" stroke="black" points="1308.46,-770.12 1318.46,-766.62 1308.46,-763.12 1308.46,-770.12"/>
</g>
<!-- TOUR_SCHEDULE_DAY -->
<g id="node33" class="node"><title>TOUR_SCHEDULE_DAY</title>
<g id="a_node33"><a xlink:href="#table$TOUR_SCHEDULE_DAY" xlink:title="TOUR_SCHEDULE_DAY">
<polygon fill="white" stroke="black" points="544.108,-528.62 413.221,-528.62 413.221,-508.62 544.108,-508.62 544.108,-528.62"/>
<text text-anchor="middle" x="478.665" y="-515.62" font-family="Helvetica,sans-Serif" font-size="10.00">TOUR_SCHEDULE_DAY</text>
</a>
</g>
</g>
<!-- TOUR_SCHEDULE_NODE->TOUR_SCHEDULE_DAY -->
<g id="edge41" class="edge"><title>TOUR_SCHEDULE_NODE->TOUR_SCHEDULE_DAY</title>
<path fill="none" stroke="black" d="M313.525,-670.561C325.634,-644.465 361.687,-574.098 413.443,-537.62 415.849,-535.925 418.407,-534.379 421.063,-532.969"/>
<polygon fill="black" stroke="black" points="422.768,-536.038 430.396,-528.684 419.848,-529.676 422.768,-536.038"/>
</g>
<!-- COURSE -->
<g id="node34" class="node"><title>COURSE</title>
<g id="a_node34"><a xlink:href="#table$COURSE" xlink:title="COURSE">
<polygon fill="white" stroke="black" points="507.939,-690.62 449.39,-690.62 449.39,-670.62 507.939,-670.62 507.939,-690.62"/>
<text text-anchor="middle" x="478.665" y="-677.62" font-family="Helvetica,sans-Serif" font-size="10.00">COURSE</text>
</a>
</g>
</g>
<!-- TOUR_SCHEDULE_NODE->COURSE -->
<g id="edge42" class="edge"><title>TOUR_SCHEDULE_NODE->COURSE</title>
<path fill="none" stroke="black" d="M377.636,-680.62C398.519,-680.62 420.736,-680.62 438.914,-680.62"/>
<polygon fill="black" stroke="black" points="439.11,-684.12 449.11,-680.62 439.11,-677.12 439.11,-684.12"/>
</g>
<!-- TOUR_SCHEDULE_DAY->TOUR_SCHEDULE -->
<g id="edge43" class="edge"><title>TOUR_SCHEDULE_DAY->TOUR_SCHEDULE</title>
<path fill="none" stroke="black" d="M544.044,-518.62C560.26,-518.62 577.627,-518.62 593.7,-518.62"/>
<polygon fill="black" stroke="black" points="594.051,-522.12 604.051,-518.62 594.051,-515.12 594.051,-522.12"/>
</g>
<!-- COURSE->UNIT_TOUR -->
<g id="edge44" class="edge"><title>COURSE->UNIT_TOUR</title>
<path fill="none" stroke="black" d="M508.264,-672.801C535.619,-665.322 577.328,-653.919 609.335,-645.169"/>
<polygon fill="black" stroke="black" points="610.632,-648.443 619.355,-642.43 608.786,-641.691 610.632,-648.443"/>
</g>
<!-- TOURIST_TWITTER -->
<g id="node36" class="node"><title>TOURIST_TWITTER</title>
<g id="a_node36"><a xlink:href="#table$TOURIST_TWITTER" xlink:title="TOURIST_TWITTER">
<polygon fill="white" stroke="black" points="906.458,-358.62 796.707,-358.62 796.707,-338.62 906.458,-338.62 906.458,-358.62"/>
<text text-anchor="middle" x="851.583" y="-345.62" font-family="Helvetica,sans-Serif" font-size="10.00">TOURIST_TWITTER</text>
</a>
</g>
</g>
<!-- TOURIST_TWITTER->TOURIST -->
<g id="edge45" class="edge"><title>TOURIST_TWITTER->TOURIST</title>
<path fill="none" stroke="black" d="M906.86,-354.476C933.656,-357.367 965.37,-360.788 989.724,-363.416"/>
<polygon fill="black" stroke="black" points="989.358,-366.896 999.675,-364.489 990.109,-359.937 989.358,-366.896"/>
</g>
<!-- USER_X_INTEREST_PRODUCT -->
<g id="node37" class="node"><title>USER_X_INTEREST_PRODUCT</title>
<g id="a_node37"><a xlink:href="#table$USER_X_INTEREST_PRODUCT" xlink:title="USER_X_INTEREST_PRODUCT">
<polygon fill="white" stroke="black" points="934.58,-548.62 768.585,-548.62 768.585,-528.62 934.58,-528.62 934.58,-548.62"/>
<text text-anchor="middle" x="851.583" y="-535.62" font-family="Helvetica,sans-Serif" font-size="10.00">USER_X_INTEREST_PRODUCT</text>
</a>
</g>
</g>
<!-- USER_X_INTEREST_PRODUCT->user -->
<g id="edge46" class="edge"><title>USER_X_INTEREST_PRODUCT->user</title>
<path fill="none" stroke="black" d="M903.479,-548.638C924.204,-552.24 948.449,-555.85 970.581,-557.62 1022.96,-561.81 1037.94,-570.759 1088.82,-557.62 1119.36,-549.732 1150.52,-530.633 1170.44,-516.711"/>
<polygon fill="black" stroke="black" points="1172.68,-519.412 1178.77,-510.737 1168.6,-513.725 1172.68,-519.412"/>
</g>
<!-- USER_X_INTEREST_PRODUCT->PRODUCT -->
<g id="edge47" class="edge"><title>USER_X_INTEREST_PRODUCT->PRODUCT</title>
<path fill="none" stroke="black" d="M919.884,-548.726C925.153,-551.119 930.143,-554.045 934.581,-557.62 963.689,-581.065 942.536,-608.914 970.581,-633.62 975.39,-637.857 981.163,-641.152 987.178,-643.714"/>
<polygon fill="black" stroke="black" points="986.132,-647.057 996.726,-647.166 988.512,-640.474 986.132,-647.057"/>
</g>
<!-- NOTICE -->
<g id="node38" class="node"><title>NOTICE</title>
<g id="a_node38"><a xlink:href="#table$NOTICE" xlink:title="NOTICE">
<polygon fill="white" stroke="black" points="1056.47,-510.62 1002.92,-510.62 1002.92,-490.62 1056.47,-490.62 1056.47,-510.62"/>
<text text-anchor="middle" x="1029.7" y="-497.62" font-family="Helvetica,sans-Serif" font-size="10.00">NOTICE</text>
</a>
</g>
</g>
<!-- NOTICE->user -->
<g id="edge48" class="edge"><title>NOTICE->user</title>
<path fill="none" stroke="black" d="M1056.58,-500.62C1086.21,-500.62 1134.53,-500.62 1164.67,-500.62"/>
<polygon fill="black" stroke="black" points="1164.89,-504.12 1174.89,-500.62 1164.89,-497.12 1164.89,-504.12"/>
</g>
<!-- CUSTOM_TOUR -->
<g id="node39" class="node"><title>CUSTOM_TOUR</title>
<g id="a_node39"><a xlink:href="#table$CUSTOM_TOUR" xlink:title="CUSTOM_TOUR">
<polygon fill="white" stroke="black" points="702.944,-604.62 609.526,-604.62 609.526,-584.62 702.944,-584.62 702.944,-604.62"/>
<text text-anchor="middle" x="656.235" y="-591.62" font-family="Helvetica,sans-Serif" font-size="10.00">CUSTOM_TOUR</text>
</a>
</g>
</g>
<!-- CUSTOM_TOUR->TOUR_PLAN -->
<g id="edge50" class="edge"><title>CUSTOM_TOUR->TOUR_PLAN</title>
<path fill="none" stroke="black" d="M703.075,-588.853C713.442,-586.032 723.93,-581.841 732.584,-575.62 756.609,-558.351 744.393,-536.657 768.584,-519.62 778.758,-512.455 791.237,-507.954 803.361,-505.138"/>
<polygon fill="black" stroke="black" points="804.275,-508.525 813.403,-503.148 802.914,-501.659 804.275,-508.525"/>
</g>
<!-- CUSTOM_TOUR->TOUR -->
<g id="edge49" class="edge"><title>CUSTOM_TOUR->TOUR</title>
<path fill="none" stroke="black" d="M703.056,-599.36C738.873,-603.065 787.71,-608.117 819.199,-611.374"/>
<polygon fill="black" stroke="black" points="818.861,-614.858 829.168,-612.405 819.581,-607.895 818.861,-614.858"/>
</g>
<!-- FAQ_CATEGORY -->
<g id="node40" class="node"><title>FAQ_CATEGORY</title>
<g id="a_node40"><a xlink:href="#table$FAQ_CATEGORY" xlink:title="FAQ_CATEGORY">
<polygon fill="white" stroke="black" points="1242.04,-682.62 1143.59,-682.62 1143.59,-662.62 1242.04,-662.62 1242.04,-682.62"/>
<text text-anchor="middle" x="1192.82" y="-669.62" font-family="Helvetica,sans-Serif" font-size="10.00">FAQ_CATEGORY</text>
</a>
</g>
</g>
<!-- FAQ_CATEGORY->FAQ_CATEGORY -->
<g id="edge51" class="edge"><title>FAQ_CATEGORY->FAQ_CATEGORY</title>
<path fill="none" stroke="black" d="M1167.45,-682.668C1155.89,-691.392 1164.34,-700.62 1192.82,-700.62 1211.5,-700.62 1221.57,-696.646 1223.01,-691.448"/>
<polygon fill="black" stroke="black" points="1226.07,-689.741 1218.18,-682.668 1219.93,-693.116 1226.07,-689.741"/>
</g>
<!-- TOUR_PLAN_X_THEME -->
<g id="node41" class="node"><title>TOUR_PLAN_X_THEME</title>
<g id="a_node41"><a xlink:href="#table$TOUR_PLAN_X_THEME" xlink:title="TOUR_PLAN_X_THEME">
<polygon fill="white" stroke="black" points="720.518,-833.62 591.952,-833.62 591.952,-813.62 720.518,-813.62 720.518,-833.62"/>
<text text-anchor="middle" x="656.235" y="-820.62" font-family="Helvetica,sans-Serif" font-size="10.00">TOUR_PLAN_X_THEME</text>
</a>
</g>
</g>
<!-- TOUR_PLAN_X_THEME->TOUR_PLAN -->
<g id="edge52" class="edge"><title>TOUR_PLAN_X_THEME->TOUR_PLAN</title>
<path fill="none" stroke="black" d="M662.364,-813.364C675.397,-787.023 710.323,-714.636 732.584,-651.62 752.839,-594.283 724.764,-561.782 768.584,-519.62 777.973,-510.586 790.769,-505.54 803.46,-502.8"/>
<polygon fill="black" stroke="black" points="804.286,-506.21 813.548,-501.065 803.099,-499.311 804.286,-506.21"/>
</g>
<!-- TOUR_PLAN_X_THEME->THEME -->
<g id="edge53" class="edge"><title>TOUR_PLAN_X_THEME->THEME</title>
<path fill="none" stroke="black" d="M720.751,-827.201C777.081,-829.524 861.516,-830.922 934.581,-823.62 954.547,-821.625 976.546,-817.305 994.252,-813.288"/>
<polygon fill="black" stroke="black" points="995.192,-816.663 1004.13,-810.978 993.598,-809.847 995.192,-816.663"/>
</g>
<!-- SELLER_IMPOSSIBLE_DATE -->
<g id="node42" class="node"><title>SELLER_IMPOSSIBLE_DATE</title>
<g id="a_node42"><a xlink:href="#table$SELLER_IMPOSSIBLE_DATE" xlink:title="SELLER_IMPOSSIBLE_DATE">
<polygon fill="white" stroke="black" points="732.433,-97.6202 580.037,-97.6202 580.037,-77.6202 732.433,-77.6202 732.433,-97.6202"/>
<text text-anchor="middle" x="656.235" y="-84.6202" font-family="Helvetica,sans-Serif" font-size="10.00">SELLER_IMPOSSIBLE_DATE</text>
</a>
</g>
</g>
<!-- SELLER_IMPOSSIBLE_DATE->GUIDE -->
<g id="edge54" class="edge"><title>SELLER_IMPOSSIBLE_DATE->GUIDE</title>
<path fill="none" stroke="black" d="M732.542,-87.6202C761.966,-87.6202 794.17,-87.6202 817.497,-87.6202"/>
<polygon fill="black" stroke="black" points="817.548,-91.1203 827.548,-87.6202 817.548,-84.1203 817.548,-91.1203"/>
</g>
<!-- MESSAGE -->
<g id="node43" class="node"><title>MESSAGE</title>
<g id="a_node43"><a xlink:href="#table$MESSAGE" xlink:title="MESSAGE">
<polygon fill="white" stroke="black" points="689.19,-472.62 623.28,-472.62 623.28,-452.62 689.19,-452.62 689.19,-472.62"/>
<text text-anchor="middle" x="656.235" y="-459.62" font-family="Helvetica,sans-Serif" font-size="10.00">MESSAGE</text>
</a>
</g>
</g>
<!-- MESSAGE->TOUR_PLAN -->
<g id="edge57" class="edge"><title>MESSAGE->TOUR_PLAN</title>
<path fill="none" stroke="black" d="M689.162,-468.895C720.206,-474.996 767.735,-484.338 803.191,-491.306"/>
<polygon fill="black" stroke="black" points="802.823,-494.801 813.31,-493.295 804.173,-487.932 802.823,-494.801"/>
</g>
<!-- MESSAGE->user -->
<g id="edge56" class="edge"><title>MESSAGE->user</title>
<path fill="none" stroke="black" d="M689.107,-461.131C760.882,-458.294 940.504,-454.094 1088.82,-474.62 1115.23,-478.276 1144.66,-486.095 1165.27,-492.209"/>
<polygon fill="black" stroke="black" points="1164.33,-495.578 1174.91,-495.133 1166.36,-488.88 1164.33,-495.578"/>
</g>
<!-- MESSAGE->MESSAGE -->
<g id="edge55" class="edge"><title>MESSAGE->MESSAGE</title>
<path fill="none" stroke="black" d="M628.681,-472.668C616.113,-481.392 625.298,-490.62 656.235,-490.62 676.538,-490.62 687.472,-486.646 689.039,-481.448"/>
<polygon fill="black" stroke="black" points="691.925,-479.454 683.789,-472.668 685.917,-483.047 691.925,-479.454"/>
</g>
<!-- GUIDE_X_LICENSE -->
<g id="node44" class="node"><title>GUIDE_X_LICENSE</title>
<g id="a_node44"><a xlink:href="#table$GUIDE_X_LICENSE" xlink:title="GUIDE_X_LICENSE">
<polygon fill="white" stroke="black" points="710.47,-187.62 602,-187.62 602,-167.62 710.47,-167.62 710.47,-187.62"/>
<text text-anchor="middle" x="656.235" y="-174.62" font-family="Helvetica,sans-Serif" font-size="10.00">GUIDE_X_LICENSE</text>
</a>
</g>
</g>
<!-- GUIDE_X_LICENSE->GUIDE -->
<g id="edge58" class="edge"><title>GUIDE_X_LICENSE->GUIDE</title>
<path fill="none" stroke="black" d="M693.806,-167.596C706.305,-163.745 720.24,-158.973 732.584,-153.62 766.424,-138.946 803.181,-117.418 826.522,-102.981"/>
<polygon fill="black" stroke="black" points="828.445,-105.906 835.07,-97.6383 824.735,-99.9701 828.445,-105.906"/>
</g>
<!-- GUIDE_X_LICENSE->PUBLIC_FILE -->
<g id="edge59" class="edge"><title>GUIDE_X_LICENSE->PUBLIC_FILE</title>
<path fill="none" stroke="black" d="M710.364,-176.5C767.936,-177.164 861.374,-183.793 934.581,-215.62 1106.15,-290.21 1154.27,-327.842 1260.82,-481.62 1321.23,-568.82 1346.25,-697.123 1354,-746.361"/>
<polygon fill="black" stroke="black" points="1350.56,-747.003 1355.51,-756.371 1357.48,-745.962 1350.56,-747.003"/>
</g>
<!-- TOUR_SKETCH_NODE -->
<g id="node45" class="node"><title>TOUR_SKETCH_NODE</title>
<g id="a_node45"><a xlink:href="#table$TOUR_SKETCH_NODE" xlink:title="TOUR_SKETCH_NODE">
<polygon fill="white" stroke="black" points="541.049,-566.62 416.28,-566.62 416.28,-546.62 541.049,-546.62 541.049,-566.62"/>
<text text-anchor="middle" x="478.665" y="-553.62" font-family="Helvetica,sans-Serif" font-size="10.00">TOUR_SKETCH_NODE</text>
</a>
</g>
</g>
<!-- TOUR_SKETCH_NODE->UNIT_TOUR -->
<g id="edge63" class="edge"><title>TOUR_SKETCH_NODE->UNIT_TOUR</title>
<path fill="none" stroke="black" d="M494.305,-566.639C513.281,-579.217 547.754,-600.709 579.886,-613.62 589.275,-617.393 599.629,-620.585 609.578,-623.214"/>
<polygon fill="black" stroke="black" points="608.791,-626.625 619.341,-625.656 610.489,-619.834 608.791,-626.625"/>
</g>
<!-- TOUR_SKETCH_NODE->TOUR_SKETCH -->
<g id="edge60" class="edge"><title>TOUR_SKETCH_NODE->TOUR_SKETCH</title>
<path fill="none" stroke="black" d="M541.071,-550.149C560.511,-549.726 581.854,-549.784 600.772,-550.322"/>
<polygon fill="black" stroke="black" points="600.892,-553.828 611.006,-550.671 601.13,-546.833 600.892,-553.828"/>
</g>
<!-- TOUR_SKETCH_NODE->TOUR_SKETCH -->
<g id="edge61" class="edge"><title>TOUR_SKETCH_NODE->TOUR_SKETCH</title>
<path fill="none" stroke="black" d="M541.071,-563.092C560.511,-563.514 581.854,-563.456 600.772,-562.918"/>
<polygon fill="black" stroke="black" points="601.13,-566.408 611.006,-562.57 600.892,-559.412 601.13,-566.408"/>
</g>
<!-- TOUR_SKETCH_NODE->TOUR_SKETCH_NODE -->
<g id="edge62" class="edge"><title>TOUR_SKETCH_NODE->TOUR_SKETCH_NODE</title>
<path fill="none" stroke="black" d="M452.05,-566.668C439.91,-575.392 448.782,-584.62 478.665,-584.62 498.275,-584.62 508.837,-580.646 510.35,-575.448"/>
<polygon fill="black" stroke="black" points="513.311,-573.577 505.279,-566.668 507.249,-577.078 513.311,-573.577"/>
</g>
<!-- TOURIST_EMAIL -->
<g id="node46" class="node"><title>TOURIST_EMAIL</title>
<g id="a_node46"><a xlink:href="#table$TOURIST_EMAIL" xlink:title="TOURIST_EMAIL">
<polygon fill="white" stroke="black" points="899.531,-320.62 803.634,-320.62 803.634,-300.62 899.531,-300.62 899.531,-320.62"/>
<text text-anchor="middle" x="851.583" y="-307.62" font-family="Helvetica,sans-Serif" font-size="10.00">TOURIST_EMAIL</text>
</a>
</g>
</g>
<!-- TOURIST_EMAIL->TOURIST -->
<g id="edge64" class="edge"><title>TOURIST_EMAIL->TOURIST</title>
<path fill="none" stroke="black" d="M899.324,-320.123C910.939,-322.847 923.293,-326.058 934.581,-329.62 955.849,-336.333 979.091,-345.696 997.158,-353.448"/>
<polygon fill="black" stroke="black" points="996.051,-356.783 1006.62,-357.562 998.843,-350.364 996.051,-356.783"/>
</g>
<!-- PRODUCT_PRICE -->
<g id="node47" class="node"><title>PRODUCT_PRICE</title>
<g id="a_node47"><a xlink:href="#table$PRODUCT_PRICE" xlink:title="PRODUCT_PRICE">
<polygon fill="white" stroke="black" points="902.131,-662.62 801.034,-662.62 801.034,-642.62 902.131,-642.62 902.131,-662.62"/>
<text text-anchor="middle" x="851.583" y="-649.62" font-family="Helvetica,sans-Serif" font-size="10.00">PRODUCT_PRICE</text>
</a>
</g>
</g>
<!-- PRODUCT_PRICE->PRODUCT -->
<g id="edge65" class="edge"><title>PRODUCT_PRICE->PRODUCT</title>
<path fill="none" stroke="black" d="M902.579,-652.62C929.214,-652.62 961.602,-652.62 986.887,-652.62"/>
<polygon fill="black" stroke="black" points="986.9,-656.12 996.9,-652.62 986.9,-649.12 986.9,-656.12"/>
</g>
<!-- FAQ -->
<g id="node48" class="node"><title>FAQ</title>
<g id="a_node48"><a xlink:href="#table$FAQ" xlink:title="FAQ">
<polygon fill="white" stroke="black" points="1047.76,-738.62 1011.64,-738.62 1011.64,-718.62 1047.76,-718.62 1047.76,-738.62"/>
<text text-anchor="middle" x="1029.7" y="-725.62" font-family="Helvetica,sans-Serif" font-size="10.00">FAQ</text>
</a>
</g>
</g>
<!-- FAQ->user -->
<g id="edge66" class="edge"><title>FAQ->user</title>
<path fill="none" stroke="black" d="M1047.98,-726.942C1060.74,-724.851 1077.74,-720.157 1088.82,-709.62 1121.23,-678.783 1105.49,-655.968 1124.82,-615.62 1141.67,-580.427 1165.44,-541.622 1179.67,-519.285"/>
<polygon fill="black" stroke="black" points="1182.68,-521.084 1185.14,-510.779 1176.79,-517.299 1182.68,-521.084"/>
</g>
<!-- FAQ->FAQ_CATEGORY -->
<g id="edge67" class="edge"><title>FAQ->FAQ_CATEGORY</title>
<path fill="none" stroke="black" d="M1047.78,-723.179C1059.38,-719.448 1075.06,-714.339 1088.82,-709.62 1110.8,-702.079 1135.3,-693.296 1154.88,-686.18"/>
<polygon fill="black" stroke="black" points="1156.15,-689.442 1164.35,-682.73 1153.76,-682.865 1156.15,-689.442"/>
</g>
<!-- TOURIST_GOOGLEPLUS -->
<g id="node49" class="node"><title>TOURIST_GOOGLEPLUS</title>
<g id="a_node49"><a xlink:href="#table$TOURIST_GOOGLEPLUS" xlink:title="TOURIST_GOOGLEPLUS">
<polygon fill="white" stroke="black" points="918.985,-244.62 784.18,-244.62 784.18,-224.62 918.985,-224.62 918.985,-244.62"/>
<text text-anchor="middle" x="851.583" y="-231.62" font-family="Helvetica,sans-Serif" font-size="10.00">TOURIST_GOOGLEPLUS</text>
</a>
</g>
</g>
<!-- TOURIST_GOOGLEPLUS->TOURIST -->
<g id="edge68" class="edge"><title>TOURIST_GOOGLEPLUS->TOURIST</title>
<path fill="none" stroke="black" d="M915.626,-244.707C922.281,-247.078 928.741,-250.006 934.581,-253.62 973.285,-277.572 1003.53,-323.047 1018.46,-348.731"/>
<polygon fill="black" stroke="black" points="1015.46,-350.53 1023.42,-357.519 1021.56,-347.09 1015.46,-350.53"/>
</g>
<!-- COURSE_X_MEDIA_FILE -->
<g id="node50" class="node"><title>COURSE_X_MEDIA_FILE</title>
<g id="a_node50"><a xlink:href="#table$COURSE_X_MEDIA_FILE" xlink:title="COURSE_X_MEDIA_FILE">
<polygon fill="white" stroke="black" points="375.458,-899.62 240.656,-899.62 240.656,-879.62 375.458,-879.62 375.458,-899.62"/>
<text text-anchor="middle" x="308.057" y="-886.62" font-family="Helvetica,sans-Serif" font-size="10.00">COURSE_X_MEDIA_FILE</text>
</a>
</g>
</g>
<!-- COURSE_X_MEDIA_FILE->COURSE -->
<g id="edge69" class="edge"><title>COURSE_X_MEDIA_FILE->COURSE</title>
<path fill="none" stroke="black" d="M317.189,-879.54C343.775,-846.585 428.381,-741.71 462.843,-698.992"/>
<polygon fill="black" stroke="black" points="465.662,-701.073 469.217,-691.092 460.214,-696.677 465.662,-701.073"/>
</g>
<!-- COURSE_X_MEDIA_FILE->PUBLIC_FILE -->
<g id="edge70" class="edge"><title>COURSE_X_MEDIA_FILE->PUBLIC_FILE</title>
<path fill="none" stroke="black" d="M332.903,-899.705C388.378,-922.22 530.845,-974.62 655.235,-974.62 655.235,-974.62 655.235,-974.62 1030.7,-974.62 1171.64,-974.62 1300.7,-834.842 1342.64,-784.455"/>
<polygon fill="black" stroke="black" points="1345.4,-786.607 1349.03,-776.652 1339.98,-782.172 1345.4,-786.607"/>
</g>
<!-- PRODUCT_X_THEME -->
<g id="node51" class="node"><title>PRODUCT_X_THEME</title>
<g id="a_node51"><a xlink:href="#table$PRODUCT_X_THEME" xlink:title="PRODUCT_X_THEME">
<polygon fill="white" stroke="black" points="910.798,-814.62 792.367,-814.62 792.367,-794.62 910.798,-794.62 910.798,-814.62"/>
<text text-anchor="middle" x="851.583" y="-801.62" font-family="Helvetica,sans-Serif" font-size="10.00">PRODUCT_X_THEME</text>
</a>
</g>
</g>
<!-- PRODUCT_X_THEME->PRODUCT -->
<g id="edge71" class="edge"><title>PRODUCT_X_THEME->PRODUCT</title>
<path fill="none" stroke="black" d="M872.69,-794.579C890.814,-784.695 917.21,-768.124 934.581,-747.62 958.741,-719.103 942.536,-696.327 970.581,-671.62 975.39,-667.384 981.163,-664.089 987.178,-661.527"/>
<polygon fill="black" stroke="black" points="988.512,-664.766 996.726,-658.074 986.132,-658.183 988.512,-664.766"/>
</g>
<!-- PRODUCT_X_THEME->THEME -->
<g id="edge72" class="edge"><title>PRODUCT_X_THEME->THEME</title>
<path fill="none" stroke="black" d="M910.737,-804.62C938.193,-804.62 970.05,-804.62 993.732,-804.62"/>
<polygon fill="black" stroke="black" points="993.993,-808.12 1003.99,-804.62 993.992,-801.12 993.993,-808.12"/>
</g>
<!-- PRODUCT_X_KEYWORD -->
<g id="node52" class="node"><title>PRODUCT_X_KEYWORD</title>
<g id="a_node52"><a xlink:href="#table$PRODUCT_X_KEYWORD" xlink:title="PRODUCT_X_KEYWORD">
<polygon fill="white" stroke="black" points="918.966,-586.62 784.199,-586.62 784.199,-566.62 918.966,-566.62 918.966,-586.62"/>
<text text-anchor="middle" x="851.583" y="-573.62" font-family="Helvetica,sans-Serif" font-size="10.00">PRODUCT_X_KEYWORD</text>
</a>
</g>
</g>
<!-- PRODUCT_X_KEYWORD->PRODUCT -->
<g id="edge73" class="edge"><title>PRODUCT_X_KEYWORD->PRODUCT</title>
<path fill="none" stroke="black" d="M914.102,-586.676C921.249,-589.052 928.24,-591.989 934.581,-595.62 954.77,-607.181 950.922,-621.18 970.581,-633.62 975.695,-636.857 981.414,-639.594 987.215,-641.894"/>
<polygon fill="black" stroke="black" points="986.367,-645.307 996.962,-645.362 988.714,-638.712 986.367,-645.307"/>
</g>
<!-- PRODUCT_X_KEYWORD->KEYWORD -->
<g id="edge74" class="edge"><title>PRODUCT_X_KEYWORD->KEYWORD</title>
<path fill="none" stroke="black" d="M899.316,-586.704C926.215,-592.508 959.767,-599.747 985.962,-605.399"/>
<polygon fill="black" stroke="black" points="985.459,-608.871 995.973,-607.559 986.936,-602.029 985.459,-608.871"/>
</g>
</g>
</svg>
</div>
<a name="table$ADMIN"></a>
<div class="panel panel-default">
<div class="panel-heading">
<h4>ADMIN<small><i>user of admin type</i></small></h4>
<div style="text-align: center;"><?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 2.38.0 (20140413.2041)
-->
<!-- Title: ADMIN Pages: 1 -->
<svg width="56pt" height="84pt"
viewBox="0.00 0.00 56.21 84.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 80)">
<title>ADMIN</title>
<polygon fill="white" stroke="none" points="-4,4 -4,-80 52.215,-80 52.215,4 -4,4"/>
<!-- ADMIN -->
<g id="node1" class="node"><title>ADMIN</title>
<polygon fill="#bfbfbf" stroke="black" points="48.323,-76 -0.107982,-76 -0.107982,-56 48.323,-56 48.323,-76"/>
<text text-anchor="middle" x="24.1075" y="-63" font-family="Helvetica,sans-Serif" font-size="10.00">ADMIN</text>
</g>
<!-- user -->
<g id="node2" class="node"><title>user</title>
<g id="a_node2"><a xlink:href="#table$user" xlink:title="user">
<polygon fill="white" stroke="black" points="42.0574,-20 6.15765,-20 6.15765,-0 42.0574,-0 42.0574,-20"/>
<text text-anchor="middle" x="24.1075" y="-7" font-family="Helvetica,sans-Serif" font-size="10.00">user</text>
</a>
</g>
</g>
<!-- ADMIN->user -->
<g id="edge1" class="edge"><title>ADMIN->user</title>
<path fill="none" stroke="black" d="M24.1075,-55.5939C24.1075,-48.7024 24.1075,-39.1024 24.1075,-30.5741"/>
<polygon fill="black" stroke="black" points="27.6076,-30.2983 24.1075,-20.2983 20.6076,-30.2983 27.6076,-30.2983"/>
</g>
</g>
</svg>
</div>
</div>
<table class="table table-condensed" style="table-layout: fixed;">
<colgroup>
<col style="width: 20%"/>
<col style="width: 20%"/>
<col style="width: 6%"/>
<col style="width: 6%"/>
<col style="width: 8%"/>
<col style="width: 20%"/>
<col style="width: 20%"/>
</colgroup>
<thead>
<tr class="info">
<th>column</th>
<th>type</th>
<th style="text-align: center;">nullable</th>
<th style="text-align: center;">pkey</th>
<th style="text-align: center;">defaulted</th>
<th>referred</th>
<th>refer</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-ellipsis" title="ID">ID</td>
<td title="BIGINT" class="text-ellipsis">BIGINT</td>
<td style="text-align: center;">
</td>
<td style="text-align: center;">
<div class="glyphicon glyphicon-ok"></div>
</td>
<td style="text-align: center;">
</td>
<td>
</td>
<td>
<div>
<a href="#key$CONSTRAINT_3" class="text-ellipsis"
title="[user] ID">
[user] ID
</a>
</div>
</td>
</tr>
<tr>
<td class="text-ellipsis" title="LOGIN_ID">LOGIN_ID</td>
<td title="VARCHAR (100)" class="text-ellipsis">VARCHAR (100)</td>
<td style="text-align: center;">
</td>
<td style="text-align: center;">
</td>
<td style="text-align: center;">
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td class="text-ellipsis" title="LOGIN_PASSWORD">LOGIN_PASSWORD</td>
<td title="VARCHAR (100)" class="text-ellipsis">VARCHAR (100)</td>
<td style="text-align: center;">
</td>
<td style="text-align: center;">
</td>
<td style="text-align: center;">
</td>
<td>
</td>
<td>
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed" style="table-layout: fixed;">
<colgroup>
<col style="width: 20%"/>
<col style="width: 30%"/>
<col style="width: 50%"/>
</colgroup>
<thead>
<tr class="info">
<th>unique key</th>
<th>columns</th>
<th>description</th>
</tr>
</thead>
<tbody>