-
Notifications
You must be signed in to change notification settings - Fork 3
/
flame.html
2165 lines (2157 loc) · 217 KB
/
flame.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
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="1458" onload="init(evt)" viewBox="0 0 1200 1458" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs >
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#f8f8f8" offset="5%" />
<stop stop-color="#e8e8e8" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
svg = document.getElementsByTagName("svg")[0];
}
function s(info) { details.nodeValue = "Function: " + info; }
function c() { details.nodeValue = ' '; }
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_orig_"+attr);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x=txt.length-2; x>0; x--) {
if (t.getSubStringLength(0, x+2) <= w) {
t.textContent = txt.substring(0,x) + "..";
return;
}
}
t.textContent = "";
}
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_child(c[i], x-10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = 10;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr["width"].value);
var xmin = parseFloat(attr["x"].value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr["y"].value);
var ratio = (svg.width.baseVal.value - 2*10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
for(var i=0;i<el.length;i++){
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a["x"].value);
var ew = parseFloat(a["width"].value);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1458.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="1441" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<g class="func_g" onmouseover="s('org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean (10 samples, 13.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean (10 samples, 13.16%)</title><rect x="910.5" y="977" width="155.3" height="15.0" fill="rgb(225,19,51)" rx="2" ry="2" />
<text text-anchor="" x="913.53" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.springframework..</text>
</g>
<g class="func_g" onmouseover="s('JDWP Event Helper Thread (25 samples, 32.89%)')" onmouseout="c()" onclick="zoom(this)">
<title>JDWP Event Helper Thread (25 samples, 32.89%)</title><rect x="10.0" y="1393" width="388.2" height="15.0" fill="rgb(240,59,39)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JDWP Event Helper Thread</text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processors.validation.ValidationProcessor.process (3 samples, 3.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processors.validation.ValidationProcessor.process (3 samples, 3.95%)</title><rect x="832.9" y="1089" width="46.6" height="15.0" fill="rgb(236,201,2)" rx="2" ry="2" />
<text text-anchor="" x="835.89" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com...</text>
</g>
<g class="func_g" onmouseover="s('com.google.common.collect.ImmutableList.indexOf (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.google.common.collect.ImmutableList.indexOf (1 samples, 1.32%)</title><rect x="863.9" y="273" width="15.6" height="15.0" fill="rgb(220,8,13)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.mozilla.javascript.Parser.andExpr (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.mozilla.javascript.Parser.andExpr (1 samples, 1.32%)</title><rect x="848.4" y="193" width="15.5" height="15.0" fill="rgb(254,219,29)" rx="2" ry="2" />
<text text-anchor="" x="851.42" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.mozilla.javascript.Parser.orExpr (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.mozilla.javascript.Parser.orExpr (1 samples, 1.32%)</title><rect x="848.4" y="209" width="15.5" height="15.0" fill="rgb(214,158,10)" rx="2" ry="2" />
<text text-anchor="" x="851.42" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.regex.Pattern.sequence (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.regex.Pattern.sequence (1 samples, 1.32%)</title><rect x="817.4" y="833" width="15.5" height="15.0" fill="rgb(236,142,21)" rx="2" ry="2" />
<text text-anchor="" x="820.37" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.wordnik.swagger.jaxrs.config.DefaultJaxrsConfig.init (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.wordnik.swagger.jaxrs.config.DefaultJaxrsConfig.init (2 samples, 2.63%)</title><rect x="879.5" y="1185" width="31.0" height="15.0" fill="rgb(252,77,21)" rx="2" ry="2" />
<text text-anchor="" x="882.47" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s('com.google.common.cache.LocalCache.getOrLoad (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.google.common.cache.LocalCache.getOrLoad (1 samples, 1.32%)</title><rect x="863.9" y="577" width="15.6" height="15.0" fill="rgb(208,2,52)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.net.URLClassLoader.defineClass (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader.defineClass (1 samples, 1.32%)</title><rect x="879.5" y="817" width="15.5" height="15.0" fill="rgb(215,119,29)" rx="2" ry="2" />
<text text-anchor="" x="882.47" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.ClassLoader.loadClass (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.loadClass (1 samples, 1.32%)</title><rect x="801.8" y="961" width="15.6" height="15.0" fill="rgb(229,25,27)" rx="2" ry="2" />
<text text-anchor="" x="804.84" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.catalina.loader.WebappClassLoader.loadClass (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.catalina.loader.WebappClassLoader.loadClass (1 samples, 1.32%)</title><rect x="941.6" y="689" width="15.5" height="15.0" fill="rgb(241,45,24)" rx="2" ry="2" />
<text text-anchor="" x="944.58" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.misc.Launcher$AppClassLoader.loadClass (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.misc.Launcher$AppClassLoader.loadClass (1 samples, 1.32%)</title><rect x="972.6" y="641" width="15.6" height="15.0" fill="rgb(250,148,36)" rx="2" ry="2" />
<text text-anchor="" x="975.63" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('scala.collection.mutable.HashTable$HashUtils$class.elemHashCode (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>scala.collection.mutable.HashTable$HashUtils$class.elemHashCode (1 samples, 1.32%)</title><rect x="895.0" y="753" width="15.5" height="15.0" fill="rgb(241,120,9)" rx="2" ry="2" />
<text text-anchor="" x="898.00" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processors.validation.ValidationProcessor.processArray (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processors.validation.ValidationProcessor.processArray (1 samples, 1.32%)</title><rect x="863.9" y="865" width="15.6" height="15.0" fill="rgb(218,23,22)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.catalina.core.StandardWrapper.initServlet (21 samples, 27.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.catalina.core.StandardWrapper.initServlet (21 samples, 27.63%)</title><rect x="801.8" y="1201" width="326.1" height="15.0" fill="rgb(231,23,12)" rx="2" ry="2" />
<text text-anchor="" x="804.84" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.apache.catalina.core.StandardWrapper.ini..</text>
</g>
<g class="func_g" onmouseover="s('java.util.zip.InflaterInputStream.read (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.zip.InflaterInputStream.read (1 samples, 1.32%)</title><rect x="1127.9" y="929" width="15.5" height="15.0" fill="rgb(94,94,229)" rx="2" ry="2" />
<text text-anchor="" x="1130.89" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.net.URLClassLoader.findClass (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader.findClass (1 samples, 1.32%)</title><rect x="879.5" y="897" width="15.5" height="15.0" fill="rgb(241,195,26)" rx="2" ry="2" />
<text text-anchor="" x="882.47" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.google.common.cache.LocalCache.get (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.google.common.cache.LocalCache.get (2 samples, 2.63%)</title><rect x="832.9" y="1009" width="31.0" height="15.0" fill="rgb(216,144,36)" rx="2" ry="2" />
<text text-anchor="" x="835.89" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s('sun.misc.URLClassPath.getResource (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.misc.URLClassPath.getResource (1 samples, 1.32%)</title><rect x="1003.7" y="545" width="15.5" height="15.0" fill="rgb(214,107,32)" rx="2" ry="2" />
<text text-anchor="" x="1006.68" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processing.CachingProcessor$1.load (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processing.CachingProcessor$1.load (1 samples, 1.32%)</title><rect x="863.9" y="705" width="15.6" height="15.0" fill="rgb(210,72,18)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.mozilla.javascript.Context.compileString (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.mozilla.javascript.Context.compileString (1 samples, 1.32%)</title><rect x="848.4" y="513" width="15.5" height="15.0" fill="rgb(252,139,50)" rx="2" ry="2" />
<text text-anchor="" x="851.42" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.springframework.web.context.support.ServletContextResourcePatternResolver.doFindPathMatchingFileResources (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.web.context.support.ServletContextResourcePatternResolver.doFindPathMatchingFileResources (1 samples, 1.32%)</title><rect x="1112.4" y="721" width="15.5" height="15.0" fill="rgb(212,127,15)" rx="2" ry="2" />
<text text-anchor="" x="1115.37" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.catalina.loader.WebappClassLoader.findClass (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.catalina.loader.WebappClassLoader.findClass (1 samples, 1.32%)</title><rect x="957.1" y="641" width="15.5" height="15.0" fill="rgb(244,6,14)" rx="2" ry="2" />
<text text-anchor="" x="960.11" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Class.forName (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Class.forName (2 samples, 2.63%)</title><rect x="972.6" y="721" width="31.1" height="15.0" fill="rgb(235,125,40)" rx="2" ry="2" />
<text text-anchor="" x="975.63" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text>
</g>
<g class="func_g" onmouseover="s('java.lang.Class.forName (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Class.forName (1 samples, 1.32%)</title><rect x="957.1" y="705" width="15.5" height="15.0" fill="rgb(235,125,40)" rx="2" ry="2" />
<text text-anchor="" x="960.11" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.catalina.loader.WebappClassLoader.loadClass (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.catalina.loader.WebappClassLoader.loadClass (2 samples, 2.63%)</title><rect x="972.6" y="689" width="31.1" height="15.0" fill="rgb(241,45,24)" rx="2" ry="2" />
<text text-anchor="" x="975.63" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s('java.lang.ClassLoader.loadClass (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.loadClass (1 samples, 1.32%)</title><rect x="972.6" y="625" width="15.6" height="15.0" fill="rgb(229,25,27)" rx="2" ry="2" />
<text text-anchor="" x="975.63" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.mozilla.javascript.Parser.shiftExpr (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.mozilla.javascript.Parser.shiftExpr (1 samples, 1.32%)</title><rect x="848.4" y="97" width="15.5" height="15.0" fill="rgb(220,42,31)" rx="2" ry="2" />
<text text-anchor="" x="851.42" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.catalina.core.StandardWrapper.load (21 samples, 27.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.catalina.core.StandardWrapper.load (21 samples, 27.63%)</title><rect x="801.8" y="1233" width="326.1" height="15.0" fill="rgb(236,175,3)" rx="2" ry="2" />
<text text-anchor="" x="804.84" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.apache.catalina.core.StandardWrapper.load</text>
</g>
<g class="func_g" onmouseover="s('java.lang.Class.getDeclaredConstructors0 (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Class.getDeclaredConstructors0 (1 samples, 1.32%)</title><rect x="910.5" y="865" width="15.6" height="15.0" fill="rgb(253,67,6)" rx="2" ry="2" />
<text text-anchor="" x="913.53" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.google.common.cache.LocalCache.get (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.google.common.cache.LocalCache.get (1 samples, 1.32%)</title><rect x="863.9" y="561" width="15.6" height="15.0" fill="rgb(216,144,36)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.regex.Pattern.group0 (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.regex.Pattern.group0 (1 samples, 1.32%)</title><rect x="817.4" y="913" width="15.5" height="15.0" fill="rgb(229,52,0)" rx="2" ry="2" />
<text text-anchor="" x="820.37" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Class.newInstance (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Class.newInstance (1 samples, 1.32%)</title><rect x="926.1" y="625" width="15.5" height="15.0" fill="rgb(219,138,46)" rx="2" ry="2" />
<text text-anchor="" x="929.05" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.regex.Pattern.sequence (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.regex.Pattern.sequence (1 samples, 1.32%)</title><rect x="817.4" y="929" width="15.5" height="15.0" fill="rgb(236,142,21)" rx="2" ry="2" />
<text text-anchor="" x="820.37" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processors.validation.ValidationProcessor.processObject (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processors.validation.ValidationProcessor.processObject (1 samples, 1.32%)</title><rect x="863.9" y="897" width="15.6" height="15.0" fill="rgb(206,59,37)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.ClassLoader.defineClass1 (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.defineClass1 (1 samples, 1.32%)</title><rect x="879.5" y="769" width="15.5" height="15.0" fill="rgb(236,93,5)" rx="2" ry="2" />
<text text-anchor="" x="882.47" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.net.URLClassLoader$1.run (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader$1.run (1 samples, 1.32%)</title><rect x="941.6" y="545" width="15.5" height="15.0" fill="rgb(207,170,48)" rx="2" ry="2" />
<text text-anchor="" x="944.58" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('all (76 samples, 100%)')" onmouseout="c()" onclick="zoom(this)">
<title>all (76 samples, 100%)</title><rect x="10.0" y="1409" width="1180.0" height="15.0" fill="rgb(229,64,53)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.mozilla.javascript.Parser.statement (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.mozilla.javascript.Parser.statement (1 samples, 1.32%)</title><rect x="848.4" y="401" width="15.5" height="15.0" fill="rgb(215,219,27)" rx="2" ry="2" />
<text text-anchor="" x="851.42" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('scala.util.control.BreakControl.fillInStackTrace (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>scala.util.control.BreakControl.fillInStackTrace (1 samples, 1.32%)</title><rect x="895.0" y="961" width="15.5" height="15.0" fill="rgb(234,159,36)" rx="2" ry="2" />
<text text-anchor="" x="898.00" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.intuit.qbo.bl.misc.PluginStartupServlet.init (5 samples, 6.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.intuit.qbo.bl.misc.PluginStartupServlet.init (5 samples, 6.58%)</title><rect x="801.8" y="1185" width="77.7" height="15.0" fill="rgb(216,223,20)" rx="2" ry="2" />
<text text-anchor="" x="804.84" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com.intu..</text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processing.CachingProcessor.process (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processing.CachingProcessor.process (1 samples, 1.32%)</title><rect x="863.9" y="609" width="15.6" height="15.0" fill="rgb(237,89,13)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Class.forName0 (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Class.forName0 (1 samples, 1.32%)</title><rect x="1003.7" y="737" width="15.5" height="15.0" fill="rgb(239,197,16)" rx="2" ry="2" />
<text text-anchor="" x="1006.68" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.tomcat.util.bcel.classfile.Code.(init) (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.tomcat.util.bcel.classfile.Code.(init) (1 samples, 1.32%)</title><rect x="1158.9" y="1025" width="15.6" height="15.0" fill="rgb(224,87,32)" rx="2" ry="2" />
<text text-anchor="" x="1161.95" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('javax.servlet.GenericServlet.init (14 samples, 18.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>javax.servlet.GenericServlet.init (14 samples, 18.42%)</title><rect x="910.5" y="1185" width="217.4" height="15.0" fill="rgb(245,102,36)" rx="2" ry="2" />
<text text-anchor="" x="913.53" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >javax.servlet.GenericServlet..</text>
</g>
<g class="func_g" onmouseover="s('java.util.regex.Pattern.expr (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.regex.Pattern.expr (1 samples, 1.32%)</title><rect x="1112.4" y="513" width="15.5" height="15.0" fill="rgb(245,162,36)" rx="2" ry="2" />
<text text-anchor="" x="1115.37" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.springframework.beans.factory.xml.XmlBeanDefinitionReader.registerBeanDefinitions (4 samples, 5.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.beans.factory.xml.XmlBeanDefinitionReader.registerBeanDefinitions (4 samples, 5.26%)</title><rect x="1065.8" y="913" width="62.1" height="15.0" fill="rgb(239,98,9)" rx="2" ry="2" />
<text text-anchor="" x="1068.79" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.sp..</text>
</g>
<g class="func_g" onmouseover="s('java.lang.ClassLoader.loadClass (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.loadClass (1 samples, 1.32%)</title><rect x="879.5" y="1105" width="15.5" height="15.0" fill="rgb(229,25,27)" rx="2" ry="2" />
<text text-anchor="" x="882.47" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processors.syntax.SyntaxProcessor.validate (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processors.syntax.SyntaxProcessor.validate (1 samples, 1.32%)</title><rect x="863.9" y="385" width="15.6" height="15.0" fill="rgb(254,141,41)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.security.AccessController.doPrivileged (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.security.AccessController.doPrivileged (1 samples, 1.32%)</title><rect x="941.6" y="577" width="15.5" height="15.0" fill="rgb(227,210,5)" rx="2" ry="2" />
<text text-anchor="" x="944.58" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.mozilla.javascript.Parser.relExpr (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.mozilla.javascript.Parser.relExpr (1 samples, 1.32%)</title><rect x="848.4" y="113" width="15.5" height="15.0" fill="rgb(217,192,46)" rx="2" ry="2" />
<text text-anchor="" x="851.42" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.springframework.beans.factory.xml.BeanDefinitionParserDelegate.parseCustomElement (4 samples, 5.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.beans.factory.xml.BeanDefinitionParserDelegate.parseCustomElement (4 samples, 5.26%)</title><rect x="1065.8" y="865" width="62.1" height="15.0" fill="rgb(232,77,24)" rx="2" ry="2" />
<text text-anchor="" x="1068.79" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.sp..</text>
</g>
<g class="func_g" onmouseover="s('java.net.URLClassLoader$1.run (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader$1.run (1 samples, 1.32%)</title><rect x="1003.7" y="561" width="15.5" height="15.0" fill="rgb(207,170,48)" rx="2" ry="2" />
<text text-anchor="" x="1006.68" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.ClassLoader.loadClass (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.loadClass (1 samples, 1.32%)</title><rect x="941.6" y="641" width="15.5" height="15.0" fill="rgb(229,25,27)" rx="2" ry="2" />
<text text-anchor="" x="944.58" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.sun.beans.finder.ClassFinder.findClass (3 samples, 3.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.sun.beans.finder.ClassFinder.findClass (3 samples, 3.95%)</title><rect x="957.1" y="737" width="46.6" height="15.0" fill="rgb(212,183,42)" rx="2" ry="2" />
<text text-anchor="" x="960.11" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com...</text>
</g>
<g class="func_g" onmouseover="s('scala.sys.SystemProperties$.noTraceSupression$lzycompute (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>scala.sys.SystemProperties$.noTraceSupression$lzycompute (1 samples, 1.32%)</title><rect x="895.0" y="881" width="15.5" height="15.0" fill="rgb(237,195,43)" rx="2" ry="2" />
<text text-anchor="" x="898.00" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processing.ProcessingResult.of (3 samples, 3.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processing.ProcessingResult.of (3 samples, 3.95%)</title><rect x="832.9" y="1105" width="46.6" height="15.0" fill="rgb(228,118,42)" rx="2" ry="2" />
<text text-anchor="" x="835.89" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com...</text>
</g>
<g class="func_g" onmouseover="s('org.apache.tomcat.util.bcel.classfile.FieldOrMethod.(init) (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.tomcat.util.bcel.classfile.FieldOrMethod.(init) (2 samples, 2.63%)</title><rect x="1143.4" y="1057" width="31.1" height="15.0" fill="rgb(231,125,24)" rx="2" ry="2" />
<text text-anchor="" x="1146.42" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.format.draftv3.PhoneAttribute.(clinit) (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.format.draftv3.PhoneAttribute.(clinit) (1 samples, 1.32%)</title><rect x="817.4" y="1025" width="15.5" height="15.0" fill="rgb(244,64,51)" rx="2" ry="2" />
<text text-anchor="" x="820.37" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.misc.URLClassPath$JarLoader.getResource (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.misc.URLClassPath$JarLoader.getResource (1 samples, 1.32%)</title><rect x="1019.2" y="545" width="15.5" height="15.0" fill="rgb(219,182,47)" rx="2" ry="2" />
<text text-anchor="" x="1022.21" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.catalina.startup.ContextConfig.configureStart (4 samples, 5.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.catalina.startup.ContextConfig.configureStart (4 samples, 5.26%)</title><rect x="1127.9" y="1201" width="62.1" height="15.0" fill="rgb(207,196,52)" rx="2" ry="2" />
<text text-anchor="" x="1130.89" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.ap..</text>
</g>
<g class="func_g" onmouseover="s('java.beans.Introspector.getBeanInfo (6 samples, 7.89%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.beans.Introspector.getBeanInfo (6 samples, 7.89%)</title><rect x="941.6" y="849" width="93.1" height="15.0" fill="rgb(252,19,52)" rx="2" ry="2" />
<text text-anchor="" x="944.58" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java.beans...</text>
</g>
<g class="func_g" onmouseover="s('scala.util.control.BreakControl.(init) (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>scala.util.control.BreakControl.(init) (1 samples, 1.32%)</title><rect x="895.0" y="993" width="15.5" height="15.0" fill="rgb(218,207,0)" rx="2" ry="2" />
<text text-anchor="" x="898.00" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.regex.Pattern.expr (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.regex.Pattern.expr (1 samples, 1.32%)</title><rect x="817.4" y="849" width="15.5" height="15.0" fill="rgb(245,162,36)" rx="2" ry="2" />
<text text-anchor="" x="820.37" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons (10 samples, 13.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons (10 samples, 13.16%)</title><rect x="910.5" y="1057" width="155.3" height="15.0" fill="rgb(230,180,41)" rx="2" ry="2" />
<text text-anchor="" x="913.53" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.springframework..</text>
</g>
<g class="func_g" onmouseover="s('java.lang.ClassLoader.defineClass1 (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.defineClass1 (1 samples, 1.32%)</title><rect x="879.5" y="945" width="15.5" height="15.0" fill="rgb(236,93,5)" rx="2" ry="2" />
<text text-anchor="" x="882.47" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.beans.Introspector.getBeanInfo (3 samples, 3.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.beans.Introspector.getBeanInfo (3 samples, 3.95%)</title><rect x="957.1" y="785" width="46.6" height="15.0" fill="rgb(252,19,52)" rx="2" ry="2" />
<text text-anchor="" x="960.11" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java..</text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processing.ProcessingResult.of (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processing.ProcessingResult.of (2 samples, 2.63%)</title><rect x="832.9" y="673" width="31.0" height="15.0" fill="rgb(228,118,42)" rx="2" ry="2" />
<text text-anchor="" x="835.89" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s('java.security.AccessController.doPrivileged (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.security.AccessController.doPrivileged (2 samples, 2.63%)</title><rect x="1034.7" y="705" width="31.1" height="15.0" fill="rgb(227,210,5)" rx="2" ry="2" />
<text text-anchor="" x="1037.74" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text>
</g>
<g class="func_g" onmouseover="s('org.springframework.beans.BeanUtils.instantiateClass (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.beans.BeanUtils.instantiateClass (1 samples, 1.32%)</title><rect x="926.1" y="897" width="15.5" height="15.0" fill="rgb(229,153,54)" rx="2" ry="2" />
<text text-anchor="" x="929.05" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.beans.Introspector.getBeanInfo (3 samples, 3.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.beans.Introspector.getBeanInfo (3 samples, 3.95%)</title><rect x="957.1" y="817" width="46.6" height="15.0" fill="rgb(252,19,52)" rx="2" ry="2" />
<text text-anchor="" x="960.11" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java..</text>
</g>
<g class="func_g" onmouseover="s('java.lang.ClassLoader.findBootstrapClass (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.findBootstrapClass (1 samples, 1.32%)</title><rect x="801.8" y="929" width="15.6" height="15.0" fill="rgb(218,90,6)" rx="2" ry="2" />
<text text-anchor="" x="804.84" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.springframework.core.io.support.PathMatchingResourcePatternResolver.doFindPathMatchingFileResources (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.core.io.support.PathMatchingResourcePatternResolver.doFindPathMatchingFileResources (1 samples, 1.32%)</title><rect x="1112.4" y="705" width="15.5" height="15.0" fill="rgb(228,116,0)" rx="2" ry="2" />
<text text-anchor="" x="1115.37" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.DataInputStream.readInt (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.DataInputStream.readInt (1 samples, 1.32%)</title><rect x="1143.4" y="1025" width="15.5" height="15.0" fill="rgb(90,90,205)" rx="2" ry="2" />
<text text-anchor="" x="1146.42" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.net.URLClassLoader.findClass (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader.findClass (1 samples, 1.32%)</title><rect x="879.5" y="1073" width="15.5" height="15.0" fill="rgb(241,195,26)" rx="2" ry="2" />
<text text-anchor="" x="882.47" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.charset.Charset.availableCharsets (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.charset.Charset.availableCharsets (1 samples, 1.32%)</title><rect x="926.1" y="785" width="15.5" height="15.0" fill="rgb(235,99,47)" rx="2" ry="2" />
<text text-anchor="" x="929.05" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.google.common.cache.LocalCache$Segment.get (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.google.common.cache.LocalCache$Segment.get (1 samples, 1.32%)</title><rect x="863.9" y="769" width="15.6" height="15.0" fill="rgb(209,52,0)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.jar.JarFile.getJarEntry (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.jar.JarFile.getJarEntry (1 samples, 1.32%)</title><rect x="941.6" y="497" width="15.5" height="15.0" fill="rgb(253,121,16)" rx="2" ry="2" />
<text text-anchor="" x="944.58" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.jar.JarFile.getEntry (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.jar.JarFile.getEntry (2 samples, 2.63%)</title><rect x="1034.7" y="609" width="31.1" height="15.0" fill="rgb(219,225,43)" rx="2" ry="2" />
<text text-anchor="" x="1037.74" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text>
</g>
<g class="func_g" onmouseover="s('java.util.regex.Pattern.atom (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.regex.Pattern.atom (1 samples, 1.32%)</title><rect x="1112.4" y="481" width="15.5" height="15.0" fill="rgb(225,207,30)" rx="2" ry="2" />
<text text-anchor="" x="1115.37" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (25 samples, 32.89%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (25 samples, 32.89%)</title><rect x="801.8" y="1377" width="388.2" height="15.0" fill="rgb(220,108,9)" rx="2" ry="2" />
<text text-anchor="" x="804.84" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java.lang.Thread.run</text>
</g>
<g class="func_g" onmouseover="s('org.apache.tomcat.util.bcel.classfile.LocalVariableTable.(init) (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.tomcat.util.bcel.classfile.LocalVariableTable.(init) (1 samples, 1.32%)</title><rect x="1158.9" y="993" width="15.6" height="15.0" fill="rgb(206,89,40)" rx="2" ry="2" />
<text text-anchor="" x="1161.95" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.zip.ZipFile.getEntry (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.zip.ZipFile.getEntry (2 samples, 2.63%)</title><rect x="1034.7" y="593" width="31.1" height="15.0" fill="rgb(247,4,34)" rx="2" ry="2" />
<text text-anchor="" x="1037.74" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text>
</g>
<g class="func_g" onmouseover="s('java.lang.ClassLoader.loadClass (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.loadClass (1 samples, 1.32%)</title><rect x="879.5" y="1089" width="15.5" height="15.0" fill="rgb(229,25,27)" rx="2" ry="2" />
<text text-anchor="" x="882.47" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('scala.util.control.Breaks.(init) (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>scala.util.control.Breaks.(init) (1 samples, 1.32%)</title><rect x="895.0" y="1009" width="15.5" height="15.0" fill="rgb(251,59,54)" rx="2" ry="2" />
<text text-anchor="" x="898.00" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.security.AccessController.doPrivileged (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.security.AccessController.doPrivileged (1 samples, 1.32%)</title><rect x="879.5" y="1057" width="15.5" height="15.0" fill="rgb(227,210,5)" rx="2" ry="2" />
<text text-anchor="" x="882.47" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.net.URLClassLoader.findClass (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader.findClass (1 samples, 1.32%)</title><rect x="1003.7" y="609" width="15.5" height="15.0" fill="rgb(241,195,26)" rx="2" ry="2" />
<text text-anchor="" x="1006.68" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.springframework.beans.factory.xml.NamespaceHandlerSupport.parse (4 samples, 5.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.beans.factory.xml.NamespaceHandlerSupport.parse (4 samples, 5.26%)</title><rect x="1065.8" y="833" width="62.1" height="15.0" fill="rgb(243,63,14)" rx="2" ry="2" />
<text text-anchor="" x="1068.79" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.sp..</text>
</g>
<g class="func_g" onmouseover="s('org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader.parseBeanDefinitions (4 samples, 5.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader.parseBeanDefinitions (4 samples, 5.26%)</title><rect x="1065.8" y="881" width="62.1" height="15.0" fill="rgb(207,215,18)" rx="2" ry="2" />
<text text-anchor="" x="1068.79" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.sp..</text>
</g>
<g class="func_g" onmouseover="s('java.lang.Class.forName0 (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Class.forName0 (1 samples, 1.32%)</title><rect x="957.1" y="689" width="15.5" height="15.0" fill="rgb(239,197,16)" rx="2" ry="2" />
<text text-anchor="" x="960.11" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.jar.JarFile.getJarEntry (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.jar.JarFile.getJarEntry (1 samples, 1.32%)</title><rect x="1019.2" y="529" width="15.5" height="15.0" fill="rgb(253,121,16)" rx="2" ry="2" />
<text text-anchor="" x="1022.21" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.load.DefaultDownloadersDictionary.(clinit) (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.load.DefaultDownloadersDictionary.(clinit) (1 samples, 1.32%)</title><rect x="801.8" y="1073" width="15.6" height="15.0" fill="rgb(245,140,53)" rx="2" ry="2" />
<text text-anchor="" x="804.84" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.google.common.cache.LocalCache$Segment.get (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.google.common.cache.LocalCache$Segment.get (2 samples, 2.63%)</title><rect x="832.9" y="769" width="31.0" height="15.0" fill="rgb(209,52,0)" rx="2" ry="2" />
<text text-anchor="" x="835.89" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processors.validation.ValidationProcessor.process (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processors.validation.ValidationProcessor.process (1 samples, 1.32%)</title><rect x="863.9" y="881" width="15.6" height="15.0" fill="rgb(236,201,2)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.intuit.qbo.bl.misc.PluginManager.validatePluginConfig (3 samples, 3.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.intuit.qbo.bl.misc.PluginManager.validatePluginConfig (3 samples, 3.95%)</title><rect x="832.9" y="1153" width="46.6" height="15.0" fill="rgb(250,78,18)" rx="2" ry="2" />
<text text-anchor="" x="835.89" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com...</text>
</g>
<g class="func_g" onmouseover="s('org.springframework.asm.ClassReader.accept (3 samples, 3.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.asm.ClassReader.accept (3 samples, 3.95%)</title><rect x="1065.8" y="689" width="46.6" height="15.0" fill="rgb(235,182,41)" rx="2" ry="2" />
<text text-anchor="" x="1068.79" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org...</text>
</g>
<g class="func_g" onmouseover="s('java.util.zip.ZipFile.getEntry (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.zip.ZipFile.getEntry (1 samples, 1.32%)</title><rect x="941.6" y="465" width="15.5" height="15.0" fill="rgb(247,4,34)" rx="2" ry="2" />
<text text-anchor="" x="944.58" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.catalina.startup.ContextConfig.webConfig (4 samples, 5.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.catalina.startup.ContextConfig.webConfig (4 samples, 5.26%)</title><rect x="1127.9" y="1185" width="62.1" height="15.0" fill="rgb(220,195,9)" rx="2" ry="2" />
<text text-anchor="" x="1130.89" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.ap..</text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processing.CachingProcessor$1.load (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processing.CachingProcessor$1.load (1 samples, 1.32%)</title><rect x="863.9" y="689" width="15.6" height="15.0" fill="rgb(210,72,18)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.security.AccessController.doPrivileged (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.security.AccessController.doPrivileged (1 samples, 1.32%)</title><rect x="1003.7" y="593" width="15.5" height="15.0" fill="rgb(227,210,5)" rx="2" ry="2" />
<text text-anchor="" x="1006.68" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.catalina.startup.ContextConfig.processAnnotations (3 samples, 3.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.catalina.startup.ContextConfig.processAnnotations (3 samples, 3.95%)</title><rect x="1127.9" y="1169" width="46.6" height="15.0" fill="rgb(213,217,16)" rx="2" ry="2" />
<text text-anchor="" x="1130.89" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org...</text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.jsonpointer.JsonPointer.of (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.jsonpointer.JsonPointer.of (1 samples, 1.32%)</title><rect x="863.9" y="321" width="15.6" height="15.0" fill="rgb(247,52,0)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.keyword.syntax.AbstractSyntaxChecker.checkSyntax (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.keyword.syntax.AbstractSyntaxChecker.checkSyntax (1 samples, 1.32%)</title><rect x="863.9" y="369" width="15.6" height="15.0" fill="rgb(253,157,4)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.catalina.startup.ContextConfig.processJarsForWebFragments (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.catalina.startup.ContextConfig.processJarsForWebFragments (1 samples, 1.32%)</title><rect x="1174.5" y="1169" width="15.5" height="15.0" fill="rgb(234,42,27)" rx="2" ry="2" />
<text text-anchor="" x="1177.47" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Reference Handler (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>Reference Handler (1 samples, 1.32%)</title><rect x="786.3" y="1393" width="15.5" height="15.0" fill="rgb(217,227,42)" rx="2" ry="2" />
<text text-anchor="" x="789.32" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.catalina.loader.WebappClassLoader.loadClass (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.catalina.loader.WebappClassLoader.loadClass (2 samples, 2.63%)</title><rect x="1034.7" y="833" width="31.1" height="15.0" fill="rgb(241,45,24)" rx="2" ry="2" />
<text text-anchor="" x="1037.74" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s('java.lang.Class.forName0 (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Class.forName0 (1 samples, 1.32%)</title><rect x="941.6" y="657" width="15.5" height="15.0" fill="rgb(239,197,16)" rx="2" ry="2" />
<text text-anchor="" x="944.58" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.main.JsonSchemaFactoryBuilder.(init) (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.main.JsonSchemaFactoryBuilder.(init) (2 samples, 2.63%)</title><rect x="801.8" y="1121" width="31.1" height="15.0" fill="rgb(229,94,34)" rx="2" ry="2" />
<text text-anchor="" x="804.84" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s('java.lang.ClassLoader.loadClass (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.loadClass (1 samples, 1.32%)</title><rect x="879.5" y="913" width="15.5" height="15.0" fill="rgb(229,25,27)" rx="2" ry="2" />
<text text-anchor="" x="882.47" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.regex.Pattern.group0 (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.regex.Pattern.group0 (1 samples, 1.32%)</title><rect x="817.4" y="865" width="15.5" height="15.0" fill="rgb(229,52,0)" rx="2" ry="2" />
<text text-anchor="" x="820.37" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.wordnik.swagger.config.ConfigFactory$.(clinit) (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.wordnik.swagger.config.ConfigFactory$.(clinit) (2 samples, 2.63%)</title><rect x="879.5" y="1169" width="31.0" height="15.0" fill="rgb(235,15,23)" rx="2" ry="2" />
<text text-anchor="" x="882.47" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s('java.util.regex.Pattern.compile (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.regex.Pattern.compile (1 samples, 1.32%)</title><rect x="1112.4" y="561" width="15.5" height="15.0" fill="rgb(222,194,39)" rx="2" ry="2" />
<text text-anchor="" x="1115.37" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.net.URLClassLoader.access$100 (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader.access$100 (1 samples, 1.32%)</title><rect x="879.5" y="1009" width="15.5" height="15.0" fill="rgb(211,216,21)" rx="2" ry="2" />
<text text-anchor="" x="882.47" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.google.common.cache.LocalCache$Segment.loadSync (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.google.common.cache.LocalCache$Segment.loadSync (1 samples, 1.32%)</title><rect x="863.9" y="737" width="15.6" height="15.0" fill="rgb(208,127,26)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.(init) (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.(init) (1 samples, 1.32%)</title><rect x="926.1" y="817" width="15.5" height="15.0" fill="rgb(225,124,5)" rx="2" ry="2" />
<text text-anchor="" x="929.05" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.mozilla.javascript.Parser.assignExpr (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.mozilla.javascript.Parser.assignExpr (1 samples, 1.32%)</title><rect x="848.4" y="241" width="15.5" height="15.0" fill="rgb(227,172,4)" rx="2" ry="2" />
<text text-anchor="" x="851.42" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.regex.Pattern.expr (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.regex.Pattern.expr (1 samples, 1.32%)</title><rect x="817.4" y="945" width="15.5" height="15.0" fill="rgb(245,162,36)" rx="2" ry="2" />
<text text-anchor="" x="820.37" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.net.URLClassLoader$1.run (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader$1.run (1 samples, 1.32%)</title><rect x="879.5" y="849" width="15.5" height="15.0" fill="rgb(207,170,48)" rx="2" ry="2" />
<text text-anchor="" x="882.47" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.library.format.DraftV3FormatAttributesDictionary.(clinit) (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.library.format.DraftV3FormatAttributesDictionary.(clinit) (1 samples, 1.32%)</title><rect x="817.4" y="1041" width="15.5" height="15.0" fill="rgb(241,134,50)" rx="2" ry="2" />
<text text-anchor="" x="820.37" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.springframework.util.AntPathMatcher.matchStrings (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.util.AntPathMatcher.matchStrings (1 samples, 1.32%)</title><rect x="1112.4" y="609" width="15.5" height="15.0" fill="rgb(242,172,2)" rx="2" ry="2" />
<text text-anchor="" x="1115.37" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent (4 samples, 5.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent (4 samples, 5.26%)</title><rect x="1127.9" y="1233" width="62.1" height="15.0" fill="rgb(206,63,43)" rx="2" ry="2" />
<text text-anchor="" x="1130.89" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.ap..</text>
</g>
<g class="func_g" onmouseover="s('com.wordnik.swagger.core.SwaggerSpec$.(clinit) (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.wordnik.swagger.core.SwaggerSpec$.(clinit) (2 samples, 2.63%)</title><rect x="879.5" y="1137" width="31.0" height="15.0" fill="rgb(230,119,34)" rx="2" ry="2" />
<text text-anchor="" x="882.47" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s('org.mozilla.javascript.Context.compileImpl (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.mozilla.javascript.Context.compileImpl (1 samples, 1.32%)</title><rect x="848.4" y="481" width="15.5" height="15.0" fill="rgb(209,1,41)" rx="2" ry="2" />
<text text-anchor="" x="851.42" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.google.common.cache.LocalCache$Segment.loadSync (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.google.common.cache.LocalCache$Segment.loadSync (2 samples, 2.63%)</title><rect x="832.9" y="961" width="31.0" height="15.0" fill="rgb(208,127,26)" rx="2" ry="2" />
<text text-anchor="" x="835.89" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s('java.lang.Class.getDeclaredMethods0 (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Class.getDeclaredMethods0 (1 samples, 1.32%)</title><rect x="1096.8" y="593" width="15.6" height="15.0" fill="rgb(252,144,49)" rx="2" ry="2" />
<text text-anchor="" x="1099.84" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.mozilla.javascript.Context.evaluateString (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.mozilla.javascript.Context.evaluateString (1 samples, 1.32%)</title><rect x="848.4" y="529" width="15.5" height="15.0" fill="rgb(208,98,52)" rx="2" ry="2" />
<text text-anchor="" x="851.42" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.FutureTask.run (25 samples, 32.89%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.FutureTask.run (25 samples, 32.89%)</title><rect x="801.8" y="1329" width="388.2" height="15.0" fill="rgb(223,140,10)" rx="2" ry="2" />
<text text-anchor="" x="804.84" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java.util.concurrent.FutureTask.run</text>
</g>
<g class="func_g" onmouseover="s('org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext (14 samples, 18.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext (14 samples, 18.42%)</title><rect x="910.5" y="1121" width="217.4" height="15.0" fill="rgb(241,132,18)" rx="2" ry="2" />
<text text-anchor="" x="913.53" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.springframework.web.serv..</text>
</g>
<g class="func_g" onmouseover="s('java.util.regex.Pattern.sequence (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.regex.Pattern.sequence (1 samples, 1.32%)</title><rect x="1112.4" y="497" width="15.5" height="15.0" fill="rgb(236,142,21)" rx="2" ry="2" />
<text text-anchor="" x="1115.37" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.zip.ZipFile.getEntry (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.zip.ZipFile.getEntry (1 samples, 1.32%)</title><rect x="1003.7" y="465" width="15.5" height="15.0" fill="rgb(247,4,34)" rx="2" ry="2" />
<text text-anchor="" x="1006.68" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processing.ProcessingResult.of (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processing.ProcessingResult.of (2 samples, 2.63%)</title><rect x="832.9" y="897" width="31.0" height="15.0" fill="rgb(228,118,42)" rx="2" ry="2" />
<text text-anchor="" x="835.89" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s('scala.collection.mutable.HashMap.findOrAddEntry (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>scala.collection.mutable.HashMap.findOrAddEntry (1 samples, 1.32%)</title><rect x="895.0" y="801" width="15.5" height="15.0" fill="rgb(226,158,51)" rx="2" ry="2" />
<text text-anchor="" x="898.00" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.DataInputStream.readFully (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.DataInputStream.readFully (1 samples, 1.32%)</title><rect x="1127.9" y="993" width="15.5" height="15.0" fill="rgb(90,90,203)" rx="2" ry="2" />
<text text-anchor="" x="1130.89" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.google.common.collect.Lists.indexOfImpl (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.google.common.collect.Lists.indexOfImpl (1 samples, 1.32%)</title><rect x="863.9" y="257" width="15.6" height="15.0" fill="rgb(216,189,38)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Class.privateGetDeclaredMethods (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Class.privateGetDeclaredMethods (1 samples, 1.32%)</title><rect x="1096.8" y="609" width="15.6" height="15.0" fill="rgb(228,221,1)" rx="2" ry="2" />
<text text-anchor="" x="1099.84" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.regex.Pattern.sequence (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.regex.Pattern.sequence (1 samples, 1.32%)</title><rect x="817.4" y="737" width="15.5" height="15.0" fill="rgb(236,142,21)" rx="2" ry="2" />
<text text-anchor="" x="820.37" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.net.URL.toExternalForm (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URL.toExternalForm (1 samples, 1.32%)</title><rect x="1174.5" y="1073" width="15.5" height="15.0" fill="rgb(243,19,25)" rx="2" ry="2" />
<text text-anchor="" x="1177.47" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.catalina.loader.WebappClassLoader.findClass (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.catalina.loader.WebappClassLoader.findClass (1 samples, 1.32%)</title><rect x="988.2" y="657" width="15.5" height="15.0" fill="rgb(244,6,14)" rx="2" ry="2" />
<text text-anchor="" x="991.16" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.net.URLStreamHandler.toExternalForm (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLStreamHandler.toExternalForm (1 samples, 1.32%)</title><rect x="1174.5" y="1057" width="15.5" height="15.0" fill="rgb(224,209,30)" rx="2" ry="2" />
<text text-anchor="" x="1177.47" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.tomcat.util.bcel.classfile.ClassParser.readConstantPool (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.tomcat.util.bcel.classfile.ClassParser.readConstantPool (1 samples, 1.32%)</title><rect x="1127.9" y="1089" width="15.5" height="15.0" fill="rgb(83,83,198)" rx="2" ry="2" />
<text text-anchor="" x="1130.89" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.tomcat.util.scan.StandardJarScanner.process (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.tomcat.util.scan.StandardJarScanner.process (1 samples, 1.32%)</title><rect x="1174.5" y="1137" width="15.5" height="15.0" fill="rgb(222,181,6)" rx="2" ry="2" />
<text text-anchor="" x="1177.47" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.net.URLClassLoader.findClass (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.net.URLClassLoader.findClass (1 samples, 1.32%)</title><rect x="941.6" y="593" width="15.5" height="15.0" fill="rgb(241,195,26)" rx="2" ry="2" />
<text text-anchor="" x="944.58" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.DataInputStream.readUTF (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.DataInputStream.readUTF (1 samples, 1.32%)</title><rect x="1127.9" y="1025" width="15.5" height="15.0" fill="rgb(107,107,233)" rx="2" ry="2" />
<text text-anchor="" x="1130.89" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processing.ProcessingResult.of (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processing.ProcessingResult.of (1 samples, 1.32%)</title><rect x="863.9" y="449" width="15.6" height="15.0" fill="rgb(228,118,42)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.catalina.core.StandardContext.startInternal (25 samples, 32.89%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.catalina.core.StandardContext.startInternal (25 samples, 32.89%)</title><rect x="801.8" y="1265" width="388.2" height="15.0" fill="rgb(234,167,19)" rx="2" ry="2" />
<text text-anchor="" x="804.84" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.apache.catalina.core.StandardContext.startInternal</text>
</g>
<g class="func_g" onmouseover="s('org.apache.tomcat.util.bcel.classfile.Method.(init) (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.tomcat.util.bcel.classfile.Method.(init) (2 samples, 2.63%)</title><rect x="1143.4" y="1073" width="31.1" height="15.0" fill="rgb(236,72,51)" rx="2" ry="2" />
<text text-anchor="" x="1146.42" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.catalina.loader.WebappClassLoader.loadClass (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.catalina.loader.WebappClassLoader.loadClass (1 samples, 1.32%)</title><rect x="1019.2" y="737" width="15.5" height="15.0" fill="rgb(241,45,24)" rx="2" ry="2" />
<text text-anchor="" x="1022.21" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.library.DraftV3Library.(clinit) (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.library.DraftV3Library.(clinit) (1 samples, 1.32%)</title><rect x="817.4" y="1057" width="15.5" height="15.0" fill="rgb(242,48,1)" rx="2" ry="2" />
<text text-anchor="" x="820.37" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('scala.Predef$.(clinit) (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>scala.Predef$.(clinit) (1 samples, 1.32%)</title><rect x="895.0" y="1105" width="15.5" height="15.0" fill="rgb(245,192,5)" rx="2" ry="2" />
<text text-anchor="" x="898.00" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.springframework.util.ClassUtils.forName (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.util.ClassUtils.forName (2 samples, 2.63%)</title><rect x="1034.7" y="849" width="31.1" height="15.0" fill="rgb(224,160,43)" rx="2" ry="2" />
<text text-anchor="" x="1037.74" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.tomcat.util.bcel.classfile.ClassParser.readMethods (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.tomcat.util.bcel.classfile.ClassParser.readMethods (2 samples, 2.63%)</title><rect x="1143.4" y="1089" width="31.1" height="15.0" fill="rgb(95,95,194)" rx="2" ry="2" />
<text text-anchor="" x="1146.42" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s('com.google.common.cache.LocalCache$Segment.lockedGetOrLoad (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.google.common.cache.LocalCache$Segment.lockedGetOrLoad (2 samples, 2.63%)</title><rect x="832.9" y="977" width="31.0" height="15.0" fill="rgb(226,117,42)" rx="2" ry="2" />
<text text-anchor="" x="835.89" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s('JDWP Transport Listener: dt_socket (25 samples, 32.89%)')" onmouseout="c()" onclick="zoom(this)">
<title>JDWP Transport Listener: dt_socket (25 samples, 32.89%)</title><rect x="398.2" y="1393" width="388.1" height="15.0" fill="rgb(250,144,53)" rx="2" ry="2" />
<text text-anchor="" x="401.16" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JDWP Transport Listener: dt_socket</text>
</g>
<g class="func_g" onmouseover="s('com.sun.beans.finder.ClassFinder.findClass (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.sun.beans.finder.ClassFinder.findClass (2 samples, 2.63%)</title><rect x="1003.7" y="785" width="31.0" height="15.0" fill="rgb(212,183,42)" rx="2" ry="2" />
<text text-anchor="" x="1006.68" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s('java.util.regex.Pattern.sequence (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.regex.Pattern.sequence (1 samples, 1.32%)</title><rect x="817.4" y="785" width="15.5" height="15.0" fill="rgb(236,142,21)" rx="2" ry="2" />
<text text-anchor="" x="820.37" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.jar.JarFile.getEntry (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.jar.JarFile.getEntry (1 samples, 1.32%)</title><rect x="1003.7" y="497" width="15.5" height="15.0" fill="rgb(219,225,43)" rx="2" ry="2" />
<text text-anchor="" x="1006.68" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.springframework.asm.ClassReader.accept (3 samples, 3.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.asm.ClassReader.accept (3 samples, 3.95%)</title><rect x="1065.8" y="705" width="46.6" height="15.0" fill="rgb(235,182,41)" rx="2" ry="2" />
<text text-anchor="" x="1068.79" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org...</text>
</g>
<g class="func_g" onmouseover="s('org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions (4 samples, 5.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions (4 samples, 5.26%)</title><rect x="1065.8" y="1041" width="62.1" height="15.0" fill="rgb(207,10,19)" rx="2" ry="2" />
<text text-anchor="" x="1068.79" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.sp..</text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedInputStream.read (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedInputStream.read (1 samples, 1.32%)</title><rect x="1127.9" y="977" width="15.5" height="15.0" fill="rgb(113,113,237)" rx="2" ry="2" />
<text text-anchor="" x="1130.89" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Class.forName (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Class.forName (1 samples, 1.32%)</title><rect x="941.6" y="737" width="15.5" height="15.0" fill="rgb(235,125,40)" rx="2" ry="2" />
<text text-anchor="" x="944.58" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processors.syntax.SyntaxProcessor.validate (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processors.syntax.SyntaxProcessor.validate (1 samples, 1.32%)</title><rect x="848.4" y="609" width="15.5" height="15.0" fill="rgb(254,141,41)" rx="2" ry="2" />
<text text-anchor="" x="851.42" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.regex.Pattern.newSlice (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.regex.Pattern.newSlice (1 samples, 1.32%)</title><rect x="1112.4" y="465" width="15.5" height="15.0" fill="rgb(216,174,36)" rx="2" ry="2" />
<text text-anchor="" x="1115.37" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.regex.Pattern.expr (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.regex.Pattern.expr (1 samples, 1.32%)</title><rect x="817.4" y="897" width="15.5" height="15.0" fill="rgb(245,162,36)" rx="2" ry="2" />
<text text-anchor="" x="820.37" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.google.common.cache.LocalCache$LocalLoadingCache.get (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.google.common.cache.LocalCache$LocalLoadingCache.get (2 samples, 2.63%)</title><rect x="832.9" y="1041" width="31.0" height="15.0" fill="rgb(237,147,36)" rx="2" ry="2" />
<text text-anchor="" x="835.89" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processors.validation.ValidationProcessor.process (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processors.validation.ValidationProcessor.process (1 samples, 1.32%)</title><rect x="863.9" y="913" width="15.6" height="15.0" fill="rgb(236,201,2)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.catalina.startup.ContextConfig.processAnnotationsUrl (3 samples, 3.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.catalina.startup.ContextConfig.processAnnotationsUrl (3 samples, 3.95%)</title><rect x="1127.9" y="1153" width="46.6" height="15.0" fill="rgb(242,223,51)" rx="2" ry="2" />
<text text-anchor="" x="1130.89" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org...</text>
</g>
<g class="func_g" onmouseover="s('org.mozilla.javascript.Parser.statementHelper (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.mozilla.javascript.Parser.statementHelper (1 samples, 1.32%)</title><rect x="848.4" y="385" width="15.5" height="15.0" fill="rgb(212,111,28)" rx="2" ry="2" />
<text text-anchor="" x="851.42" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.springframework.beans.BeanWrapperImpl.getPropertyDescriptors (8 samples, 10.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.beans.BeanWrapperImpl.getPropertyDescriptors (8 samples, 10.53%)</title><rect x="941.6" y="913" width="124.2" height="15.0" fill="rgb(238,213,11)" rx="2" ry="2" />
<text text-anchor="" x="944.58" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.springframe..</text>
</g>
<g class="func_g" onmouseover="s('org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions (4 samples, 5.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions (4 samples, 5.26%)</title><rect x="1065.8" y="945" width="62.1" height="15.0" fill="rgb(235,98,6)" rx="2" ry="2" />
<text text-anchor="" x="1068.79" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.sp..</text>
</g>
<g class="func_g" onmouseover="s('java.util.regex.Pattern.group0 (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.regex.Pattern.group0 (1 samples, 1.32%)</title><rect x="817.4" y="769" width="15.5" height="15.0" fill="rgb(229,52,0)" rx="2" ry="2" />
<text text-anchor="" x="820.37" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.ClassNotFoundException.(init) (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassNotFoundException.(init) (1 samples, 1.32%)</title><rect x="988.2" y="625" width="15.5" height="15.0" fill="rgb(217,222,18)" rx="2" ry="2" />
<text text-anchor="" x="991.16" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processors.validation.ValidationChain.process (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processors.validation.ValidationChain.process (2 samples, 2.63%)</title><rect x="832.9" y="865" width="31.0" height="15.0" fill="rgb(243,193,34)" rx="2" ry="2" />
<text text-anchor="" x="835.89" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s('sun.nio.cs.AbstractCharsetProvider$1.next (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.cs.AbstractCharsetProvider$1.next (1 samples, 1.32%)</title><rect x="926.1" y="673" width="15.5" height="15.0" fill="rgb(220,86,5)" rx="2" ry="2" />
<text text-anchor="" x="929.05" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.springframework.web.servlet.FrameworkServlet.initWebApplicationContext (14 samples, 18.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.web.servlet.FrameworkServlet.initWebApplicationContext (14 samples, 18.42%)</title><rect x="910.5" y="1137" width="217.4" height="15.0" fill="rgb(241,57,12)" rx="2" ry="2" />
<text text-anchor="" x="913.53" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org.springframework.web.serv..</text>
</g>
<g class="func_g" onmouseover="s('scala.sys.SystemProperties$.bool (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>scala.sys.SystemProperties$.bool (1 samples, 1.32%)</title><rect x="895.0" y="865" width="15.5" height="15.0" fill="rgb(239,46,48)" rx="2" ry="2" />
<text text-anchor="" x="898.00" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.google.common.cache.LocalCache$Segment.lockedGetOrLoad (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.google.common.cache.LocalCache$Segment.lockedGetOrLoad (1 samples, 1.32%)</title><rect x="863.9" y="529" width="15.6" height="15.0" fill="rgb(226,117,42)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.cs.AbstractCharsetProvider$1.next (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.cs.AbstractCharsetProvider$1.next (1 samples, 1.32%)</title><rect x="926.1" y="689" width="15.5" height="15.0" fill="rgb(220,86,5)" rx="2" ry="2" />
<text text-anchor="" x="929.05" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.cs.AbstractCharsetProvider.lookup (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.cs.AbstractCharsetProvider.lookup (1 samples, 1.32%)</title><rect x="926.1" y="641" width="15.5" height="15.0" fill="rgb(235,178,14)" rx="2" ry="2" />
<text text-anchor="" x="929.05" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.mozilla.javascript.Parser.statement (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.mozilla.javascript.Parser.statement (1 samples, 1.32%)</title><rect x="848.4" y="289" width="15.5" height="15.0" fill="rgb(215,219,27)" rx="2" ry="2" />
<text text-anchor="" x="851.42" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.google.common.cache.LocalCache$LoadingValueReference.loadFuture (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.google.common.cache.LocalCache$LoadingValueReference.loadFuture (1 samples, 1.32%)</title><rect x="863.9" y="721" width="15.6" height="15.0" fill="rgb(208,131,13)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.google.common.cache.LocalCache$LocalLoadingCache.get (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.google.common.cache.LocalCache$LocalLoadingCache.get (1 samples, 1.32%)</title><rect x="863.9" y="593" width="15.6" height="15.0" fill="rgb(237,147,36)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.springframework.core.type.filter.AbstractTypeHierarchyTraversingFilter.match (3 samples, 3.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.core.type.filter.AbstractTypeHierarchyTraversingFilter.match (3 samples, 3.95%)</title><rect x="1065.8" y="753" width="46.6" height="15.0" fill="rgb(245,105,29)" rx="2" ry="2" />
<text text-anchor="" x="1068.79" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org...</text>
</g>
<g class="func_g" onmouseover="s('org.apache.tomcat.util.scan.JarFactory.newInstance (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.tomcat.util.scan.JarFactory.newInstance (1 samples, 1.32%)</title><rect x="1174.5" y="1105" width="15.5" height="15.0" fill="rgb(254,10,11)" rx="2" ry="2" />
<text text-anchor="" x="1177.47" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processing.ProcessorChain$ProcessorMerger.process (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processing.ProcessorChain$ProcessorMerger.process (2 samples, 2.63%)</title><rect x="832.9" y="657" width="31.0" height="15.0" fill="rgb(220,208,39)" rx="2" ry="2" />
<text text-anchor="" x="835.89" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s('java.io.DataInputStream.readUnsignedShort (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.DataInputStream.readUnsignedShort (1 samples, 1.32%)</title><rect x="1158.9" y="961" width="15.6" height="15.0" fill="rgb(117,117,222)" rx="2" ry="2" />
<text text-anchor="" x="1161.95" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.ReflectiveOperationException.(init) (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ReflectiveOperationException.(init) (1 samples, 1.32%)</title><rect x="988.2" y="609" width="15.5" height="15.0" fill="rgb(207,213,12)" rx="2" ry="2" />
<text text-anchor="" x="991.16" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processors.validation.ValidationChain.process (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processors.validation.ValidationChain.process (2 samples, 2.63%)</title><rect x="832.9" y="849" width="31.0" height="15.0" fill="rgb(243,193,34)" rx="2" ry="2" />
<text text-anchor="" x="835.89" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s('java.beans.Introspector.findCustomizerClass (3 samples, 3.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.beans.Introspector.findCustomizerClass (3 samples, 3.95%)</title><rect x="957.1" y="753" width="46.6" height="15.0" fill="rgb(244,162,2)" rx="2" ry="2" />
<text text-anchor="" x="960.11" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java..</text>
</g>
<g class="func_g" onmouseover="s('sun.misc.URLClassPath$JarLoader.getResource (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.misc.URLClassPath$JarLoader.getResource (1 samples, 1.32%)</title><rect x="1003.7" y="529" width="15.5" height="15.0" fill="rgb(219,182,47)" rx="2" ry="2" />
<text text-anchor="" x="1006.68" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processors.syntax.SyntaxProcessor.process (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processors.syntax.SyntaxProcessor.process (1 samples, 1.32%)</title><rect x="848.4" y="625" width="15.5" height="15.0" fill="rgb(241,128,19)" rx="2" ry="2" />
<text text-anchor="" x="851.42" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('scala.runtime.ScalaRunTime$.(init) (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>scala.runtime.ScalaRunTime$.(init) (1 samples, 1.32%)</title><rect x="895.0" y="721" width="15.5" height="15.0" fill="rgb(226,27,53)" rx="2" ry="2" />
<text text-anchor="" x="898.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processors.ref.RefResolver.loadRef (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processors.ref.RefResolver.loadRef (1 samples, 1.32%)</title><rect x="832.9" y="609" width="15.5" height="15.0" fill="rgb(215,1,28)" rx="2" ry="2" />
<text text-anchor="" x="835.89" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.regex.Pattern.(init) (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.regex.Pattern.(init) (1 samples, 1.32%)</title><rect x="817.4" y="977" width="15.5" height="15.0" fill="rgb(212,117,38)" rx="2" ry="2" />
<text text-anchor="" x="820.37" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.mozilla.javascript.Parser.parse (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.mozilla.javascript.Parser.parse (1 samples, 1.32%)</title><rect x="848.4" y="449" width="15.5" height="15.0" fill="rgb(232,204,3)" rx="2" ry="2" />
<text text-anchor="" x="851.42" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.sun.beans.finder.InstanceFinder.instantiate (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.sun.beans.finder.InstanceFinder.instantiate (1 samples, 1.32%)</title><rect x="941.6" y="785" width="15.5" height="15.0" fill="rgb(212,83,47)" rx="2" ry="2" />
<text text-anchor="" x="944.58" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.processing.CachingProcessor$1.load (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.processing.CachingProcessor$1.load (2 samples, 2.63%)</title><rect x="832.9" y="705" width="31.0" height="15.0" fill="rgb(210,72,18)" rx="2" ry="2" />
<text text-anchor="" x="835.89" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s('org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance (2 samples, 2.63%)</title><rect x="910.5" y="945" width="31.1" height="15.0" fill="rgb(220,136,45)" rx="2" ry="2" />
<text text-anchor="" x="913.53" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.tomcat.util.bcel.classfile.Attribute.readAttribute (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.tomcat.util.bcel.classfile.Attribute.readAttribute (1 samples, 1.32%)</title><rect x="1158.9" y="1009" width="15.6" height="15.0" fill="rgb(98,98,214)" rx="2" ry="2" />
<text text-anchor="" x="1161.95" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.ClassLoader.loadClass (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ClassLoader.loadClass (1 samples, 1.32%)</title><rect x="941.6" y="625" width="15.5" height="15.0" fill="rgb(229,25,27)" rx="2" ry="2" />
<text text-anchor="" x="944.58" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.util.RhinoHelper.(clinit) (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.util.RhinoHelper.(clinit) (1 samples, 1.32%)</title><rect x="848.4" y="545" width="15.5" height="15.0" fill="rgb(216,95,29)" rx="2" ry="2" />
<text text-anchor="" x="851.42" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Class.forName (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Class.forName (1 samples, 1.32%)</title><rect x="1019.2" y="769" width="15.5" height="15.0" fill="rgb(235,125,40)" rx="2" ry="2" />
<text text-anchor="" x="1022.21" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.beans.Introspector.findCustomizerClass (2 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.beans.Introspector.findCustomizerClass (2 samples, 2.63%)</title><rect x="1003.7" y="801" width="31.0" height="15.0" fill="rgb(244,162,2)" rx="2" ry="2" />
<text text-anchor="" x="1006.68" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text>
</g>
<g class="func_g" onmouseover="s('com.google.common.cache.LocalCache$LoadingValueReference.loadFuture (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.google.common.cache.LocalCache$LoadingValueReference.loadFuture (1 samples, 1.32%)</title><rect x="863.9" y="497" width="15.6" height="15.0" fill="rgb(208,131,13)" rx="2" ry="2" />
<text text-anchor="" x="866.95" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.github.fge.jsonschema.cfg.LoadingConfigurationBuilder.(init) (1 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.github.fge.jsonschema.cfg.LoadingConfigurationBuilder.(init) (1 samples, 1.32%)</title><rect x="801.8" y="1089" width="15.6" height="15.0" fill="rgb(220,46,21)" rx="2" ry="2" />
<text text-anchor="" x="804.84" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>