-
Notifications
You must be signed in to change notification settings - Fork 3
/
final.arff
1071 lines (1069 loc) · 48.2 KB
/
final.arff
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
@relation final2
@attribute Identification {'7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00','7f 45 4c 46 01 01 01 03 00 00 00 00 00 00 00 00','7f 45 4c 46 02 01 01 00 00 00 00 00 00 00 00 00','7f 45 4c 46 01 02 01 00 00 00 00 00 00 00 00 00','7f 45 4c 46 02 01 01 03 00 00 00 00 00 00 00 00','7f 45 4c 46 01 01 01 00 00 00 00 00 b4 3b 00 00','7f 45 4c 46 01 01 01 09 00 00 00 00 00 00 00 00','7f 45 4c 46 01 01 01 00 00 00 00 00 25 32 00 00','7f 45 4c 46 01 01 01 00 00 00 00 00 20 3b 00 00','7f 45 4c 46 01 01 01 ab 01 4c 61 53 61 6c 6c 65','7f 45 4c 46 01 01 01 00 00 00 00 00 1a 42 00 00','7f 45 4c 46 01 01 01 00 00 00 00 00 4e 2f 00 00','7f 45 4c 46 01 01 01 00 00 00 00 00 e4 30 00 00','7f 45 4c 46 01 01 01 00 00 00 00 00 bc 3e 00 00','7f 45 4c 46 01 01 01 00 00 00 00 00 7b 31 00 00','7f 45 4c 46 01 01 01 00 00 00 00 00 1b 43 00 00','7f 45 4c 46 01 01 01 00 00 00 00 00 2c 28 00 00','7f 45 4c 46 01 01 01 00 00 00 00 00 6d 2a 00 00','7f 45 4c 46 01 01 01 00 00 00 00 00 ac 3b 00 00','7f 45 4c 46 01 01 01 00 00 00 00 00 39 31 00 00',<unknown>}
@attribute MachineType {'Intel 80386',<unknown>,'Advanced Micro Devices X86-64',Sparc,PowerPC,MC68000}
@attribute ELFVersion numeric
@attribute ProgramHeaderOffset numeric
@attribute SectionHeaderOffset numeric
@attribute Flags numeric
@attribute HeaderSize numeric
@attribute SizeProgramHeader numeric
@attribute EntriesProgram numeric
@attribute SizeSectionHeader numeric
@attribute EntriesSection numeric
@attribute StringTableIndex numeric
@attribute .text_type {PROGBITS,NOBITS,<unknown>}
@attribute .text_flags {AX,<unknown>}
@attribute .text_size numeric
@attribute .text_entsize numeric
@attribute .text_table_index_link numeric
@attribute .text_info numeric
@attribute .text_alignment numeric
@attribute .bss_type {NOBITS,PROGBITS,<unknown>}
@attribute .bss_flags {WA,<unknown>}
@attribute .bss_size numeric
@attribute .bss_entsize numeric
@attribute .bss_table_index_link numeric
@attribute .bss_info numeric
@attribute .bss_alignment numeric
@attribute .comment_type {PROGBITS,<unknown>}
@attribute .comment_flags {MS,<unknown>}
@attribute .comment_size numeric
@attribute .comment_entsize numeric
@attribute .comment_table_index_link numeric
@attribute .comment_info numeric
@attribute .comment_alignment numeric
@attribute .data_type {PROGBITS,NOBITS,<unknown>}
@attribute .data_flags {WA,<unknown>}
@attribute .data_size numeric
@attribute .data_entsize numeric
@attribute .data_table_index_link numeric
@attribute .data_info numeric
@attribute .data_alignment numeric
@attribute .data1_type {PROGBITS,<unknown>}
@attribute .data1_flags {WA,<unknown>}
@attribute .data1_size numeric
@attribute .data1_entsize numeric
@attribute .data1_table_index_link numeric
@attribute .data1_info numeric
@attribute .data1_alignment numeric
@attribute .debug_type numeric
@attribute .debug_flags numeric
@attribute .debug_size numeric
@attribute .debug_entsize numeric
@attribute .debug_table_index_link numeric
@attribute .debug_info numeric
@attribute .debug_alignment numeric
@attribute .dynamic_type {DYNAMIC,NOBITS,<unknown>}
@attribute .dynamic_flags {WA,<unknown>}
@attribute .dynamic_size numeric
@attribute .dynamic_entsize numeric
@attribute .dynamic_table_index_link numeric
@attribute .dynamic_info numeric
@attribute .dynamic_alignment numeric
@attribute .dynstr_type {STRTAB,NOBITS,<unknown>}
@attribute .dynstr_flags {A,<unknown>}
@attribute .dynstr_size numeric
@attribute .dynstr_entsize numeric
@attribute .dynstr_table_index_link numeric
@attribute .dynstr_info numeric
@attribute .dynstr_alignment numeric
@attribute .dynsym_type {DYNSYM,NOBITS,<unknown>}
@attribute .dynsym_flags {A,<unknown>}
@attribute .dynsym_size numeric
@attribute .dynsym_entsize numeric
@attribute .dynsym_table_index_link numeric
@attribute .dynsym_info numeric
@attribute .dynsym_alignment numeric
@attribute .fini_type {PROGBITS,NOBITS,<unknown>}
@attribute .fini_flags {AX,<unknown>}
@attribute .fini_size numeric
@attribute .fini_entsize numeric
@attribute .fini_table_index_link numeric
@attribute .fini_info numeric
@attribute .fini_alignment numeric
@attribute .hash_type {HASH,NOBITS,<unknown>}
@attribute .hash_flags {A,<unknown>}
@attribute .hash_size numeric
@attribute .hash_entsize numeric
@attribute .hash_table_index_link numeric
@attribute .hash_info numeric
@attribute .hash_alignment numeric
@attribute .gnu.hash_type {GNU_HASH,NOBITS,<unknown>}
@attribute .gnu.hash_flags {A,<unknown>}
@attribute .gnu.hash_size numeric
@attribute .gnu.hash_entsize numeric
@attribute .gnu.hash_table_index_link numeric
@attribute .gnu.hash_info numeric
@attribute .gnu.hash_alignment numeric
@attribute .init_type {PROGBITS,NOBITS,<unknown>}
@attribute .init_flags {AX,<unknown>}
@attribute .init_size numeric
@attribute .init_entsize numeric
@attribute .init_table_index_link numeric
@attribute .init_info numeric
@attribute .init_alignment numeric
@attribute .got_type {PROGBITS,NOBITS,<unknown>}
@attribute .got_flags {WA,WAX,<unknown>}
@attribute .got_size numeric
@attribute .got_entsize numeric
@attribute .got_table_index_link numeric
@attribute .got_info numeric
@attribute .got_alignment numeric
@attribute .interp_type {PROGBITS,NOBITS,<unknown>}
@attribute .interp_flags {A,<unknown>}
@attribute .interp_size numeric
@attribute .interp_entsize numeric
@attribute .interp_table_index_link numeric
@attribute .interp_info numeric
@attribute .interp_alignment numeric
@attribute .line_type numeric
@attribute .line_flags numeric
@attribute .line_size numeric
@attribute .line_entsize numeric
@attribute .line_table_index_link numeric
@attribute .line_info numeric
@attribute .line_alignment numeric
@attribute .note_type {NOTE,<unknown>}
@attribute .note_flags numeric
@attribute .note_size numeric
@attribute .note_entsize numeric
@attribute .note_table_index_link numeric
@attribute .note_info numeric
@attribute .note_alignment numeric
@attribute .plt_type {PROGBITS,NOBITS,<unknown>}
@attribute .plt_flags {AX,WAX,<unknown>}
@attribute .plt_size numeric
@attribute .plt_entsize numeric
@attribute .plt_table_index_link numeric
@attribute .plt_info numeric
@attribute .plt_alignment numeric
@attribute .rodata_type {PROGBITS,NOBITS,<unknown>}
@attribute .rodata_flags {A,AMS,AM,<unknown>}
@attribute .rodata_size numeric
@attribute .rodata_entsize numeric
@attribute .rodata_table_index_link numeric
@attribute .rodata_info numeric
@attribute .rodata_alignment numeric
@attribute rodata1_type numeric
@attribute rodata1_flags numeric
@attribute rodata1_size numeric
@attribute rodata1_entsize numeric
@attribute rodata1_table_index_link numeric
@attribute rodata1_info numeric
@attribute rodata1_alignment numeric
@attribute .shstrtab_type {STRTAB,<unknown>}
@attribute .shstrtab_flags numeric
@attribute .shstrtab_size numeric
@attribute .shstrtab_entsize numeric
@attribute .shstrtab_table_index_link numeric
@attribute .shstrtab_info numeric
@attribute .shstrtab_alignment numeric
@attribute .strtab_type {STRTAB,<unknown>}
@attribute .strtab_flags numeric
@attribute .strtab_size numeric
@attribute .strtab_entsize numeric
@attribute .strtab_table_index_link numeric
@attribute .strtab_info numeric
@attribute .strtab_alignment numeric
@attribute .symtab_type {SYMTAB,<unknown>}
@attribute .symtab_flags numeric
@attribute .symtab_size numeric
@attribute .symtab_entsize numeric
@attribute .symtab_table_index_link numeric
@attribute .symtab_info numeric
@attribute .symtab_alignment numeric
@attribute .sdata_type {PROGBITS,<unknown>}
@attribute .sdata_flags {WA,<unknown>}
@attribute .sdata_size numeric
@attribute .sdata_entsize numeric
@attribute .sdata_table_index_link numeric
@attribute .sdata_info numeric
@attribute .sdata_alignment numeric
@attribute .sbss_type {NOBITS,PROGBITS,<unknown>}
@attribute .sbss_flags {WA,W,<unknown>}
@attribute .sbss_size numeric
@attribute .sbss_entsize numeric
@attribute .sbss_table_index_link numeric
@attribute .sbss_info numeric
@attribute .sbss_alignment numeric
@attribute .lit8_type numeric
@attribute .lit8_flags numeric
@attribute .lit8_size numeric
@attribute .lit8_entsize numeric
@attribute .lit8_table_index_link numeric
@attribute .lit8_info numeric
@attribute .lit8_alignment numeric
@attribute .gptab_type numeric
@attribute .gptab_flags numeric
@attribute .gptab_size numeric
@attribute .gptab_entsize numeric
@attribute .gptab_table_index_link numeric
@attribute .gptab_info numeric
@attribute .gptab_alignment numeric
@attribute .conflict_type numeric
@attribute .conflict_flags numeric
@attribute .conflict_size numeric
@attribute .conflict_entsize numeric
@attribute .conflict_table_index_link numeric
@attribute .conflict_info numeric
@attribute .conflict_alignment numeric
@attribute .tdesc_type numeric
@attribute .tdesc_flags numeric
@attribute .tdesc_size numeric
@attribute .tdesc_entsize numeric
@attribute .tdesc_table_index_link numeric
@attribute .tdesc_info numeric
@attribute .tdesc_alignment numeric
@attribute .lit4_type numeric
@attribute .lit4_flags numeric
@attribute .lit4_size numeric
@attribute .lit4_entsize numeric
@attribute .lit4_table_index_link numeric
@attribute .lit4_info numeric
@attribute .lit4_alignment numeric
@attribute .reginfo_type numeric
@attribute .reginfo_flags numeric
@attribute .reginfo_size numeric
@attribute .reginfo_entsize numeric
@attribute .reginfo_table_index_link numeric
@attribute .reginfo_info numeric
@attribute .reginfo_alignment numeric
@attribute .liblist_type numeric
@attribute .liblist_flags numeric
@attribute .liblist_size numeric
@attribute .liblist_entsize numeric
@attribute .liblist_table_index_link numeric
@attribute .liblist_info numeric
@attribute .liblist_alignment numeric
@attribute .rel.dyn_type {REL,NOBITS,<unknown>}
@attribute .rel.dyn_flags {A,<unknown>}
@attribute .rel.dyn_size numeric
@attribute .rel.dyn_entsize numeric
@attribute .rel.dyn_table_index_link numeric
@attribute .rel.dyn_info numeric
@attribute .rel.dyn_alignment numeric
@attribute .rel.plt_type {REL,NOBITS,<unknown>}
@attribute .rel.plt_flags {A,AI,<unknown>}
@attribute .rel.plt_size numeric
@attribute .rel.plt_entsize numeric
@attribute .rel.plt_table_index_link numeric
@attribute .rel.plt_info numeric
@attribute .rel.plt_alignment numeric
@attribute .got.plt_type {PROGBITS,NOBITS,<unknown>}
@attribute .got.plt_flags {WA,<unknown>}
@attribute .got.plt_size numeric
@attribute .got.plt_entsize numeric
@attribute .got.plt_table_index_link numeric
@attribute .got.plt_info numeric
@attribute .got.plt_alignment numeric
@attribute STB_LOCAL numeric
@attribute dynamic_s_c numeric
@attribute STT_OBJECT_STB_GLOBAL numeric
@attribute STT_FUNC_STB_LOCAL numeric
@attribute STT_OBJECT_STB_WEAK numeric
@attribute STT_OBJECT_STB_LOCAL numeric
@attribute STT_NOTYPE_STB_WEAK numeric
@attribute STB_WEAK numeric
@attribute STT_NOTYPE_STB_LOCAL numeric
@attribute STT_FUNC numeric
@attribute STT_FUNC_STB_GLOBAL numeric
@attribute STT_NOTYPE_STB_GLOBAL numeric
@attribute STB_GLOBAL numeric
@attribute STT_NOTYPE numeric
@attribute STT_OBJECT numeric
@attribute STT_FUNC_STB_WEAK numeric
@attribute s_STT_FUNC_STB_LOCAL numeric
@attribute s_STT_SECTION_STB_GLOBAL numeric
@attribute symbol_tab numeric
@attribute s_STT_SECTION_STB_LOCAL numeric
@attribute s_STT_FUNC_STB_WEAK numeric
@attribute s_STT_FUNC numeric
@attribute s_STB_LOCAL numeric
@attribute s_STT_FUNC_STB_GLOBAL numeric
@attribute s_STB_GLOBAL numeric
@attribute s_STB_WEAK numeric
@attribute s_STT_OBJECT_STB_WEAK numeric
@attribute s_STT_OBJECT numeric
@attribute s_STT_OBJECT_STB_LOCAL numeric
@attribute s_STT_NOTYPE numeric
@attribute s_STT_NOTYPE_STB_GLOBAL numeric
@attribute s_STT_NOTYPE_STB_WEAK numeric
@attribute s_STT_NOTYPE_STB_LOCAL numeric
@attribute s_STT_OBJECT_STB_GLOBAL numeric
@attribute DYNRELAENT numeric
@attribute DYNFINI numeric
@attribute DYNPLTRELSZ numeric
@attribute DYNVERNEEDNUM numeric
@attribute DYNINIT_ARRAY numeric
@attribute DYNSTRSZ numeric
@attribute DYNSTRTAB numeric
@attribute DYNPLTREL numeric
@attribute DYNRELENT numeric
@attribute VERSYM numeric
@attribute DYN numeric
@attribute DYNJMPREL numeric
@attribute DYNSYMTAB numeric
@attribute DYNRPATH numeric
@attribute DYNFINI_ARRAYSZ numeric
@attribute DYNNEEDED numeric
@attribute DYNSYMENT numeric
@attribute DYNCOUNT numeric
@attribute DYNINIT numeric
@attribute DYNRELSZ numeric
@attribute DYNINIT_ARRAYSZ numeric
@attribute DYNVERNEED numeric
@attribute DYNRELASZ numeric
@attribute DYNREL numeric
@attribute DYNRELA numeric
@attribute DYNPLTGOT numeric
@attribute DYNHASH numeric
@attribute DYNDEBUG numeric
@attribute DYNFINI_ARRAY numeric
@attribute DYNNULL numeric
@attribute R_386_GOT32 numeric
@attribute R_386_RELATIVE numeric
@attribute R_386_GOTOFF numeric
@attribute R_386_PC16 numeric
@attribute R_386_GLOB_DAT numeric
@attribute R_386_JUMP_SLOT numeric
@attribute R_386_COPY numeric
@attribute R_386_NONE numeric
@attribute R_386_PC32 numeric
@attribute R_386_16 numeric
@attribute R_386_PC8 numeric
@attribute R_386_8 numeric
@attribute R_386_PLT32 numeric
@attribute R_386_32PLT numeric
@attribute R_386_32 numeric
@attribute R_386_GOTPC numeric
@attribute R_386_SIZE32 numeric
@attribute GOT_SIZE numeric
@attribute HASH_SIZE numeric
@attribute <_ZdlPv@plt> numeric
@attribute <__stack_chk_fail@plt> numeric
@attribute <strlen@plt> numeric
@attribute <free@plt> numeric
@attribute <dcgettext@plt> numeric
@attribute <memcpy@plt> numeric
@attribute <_Unwind_Resume@plt> numeric
@attribute <g_type_check_instance_cast@plt> numeric
@attribute <__fprintf_chk@plt> numeric
@attribute <_ZN5mongo21intrusive_ptr_releaseEPNS_7BSONObj6HolderE@@Base> numeric
@attribute <__printf_chk@plt> numeric
@attribute <_ZN5mongo6logger16LogstreamBuilder10makeStreamEv@@Base> numeric
@attribute <__errno_location@plt> numeric
@attribute <_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE15grow_reallocateEi@@Base> numeric
@attribute <__gmon_start__@plt+0x1e4a0> numeric
@attribute <_ZSt16__ostream_insertIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_PKS3_l@plt> numeric
@attribute <_ZNSs4_Rep10_M_disposeERKSaIcE@plt> numeric
@attribute <fwrite@plt> numeric
@attribute <__assert_fail@plt> numeric
@attribute <g_return_if_fail_warning@plt> numeric
@attribute <strcmp@plt> numeric
@attribute <__gmon_start__@plt+0x1de10> numeric
@attribute <malloc@plt> numeric
@attribute <PyErr_SetString@@Base> numeric
@attribute <__gmon_start__@plt+0x20460> numeric
@attribute <_ZN5mongo12verifyFailedEPKcS1_j@@Base> numeric
@attribute <_ZN5mongo6logger16LogstreamBuilderD1Ev@@Base> numeric
@attribute <__gmon_start__@plt+0x145990> numeric
@attribute <_Znwm@plt> numeric
@attribute <memcmp@plt> numeric
@attribute <exit@plt> numeric
@attribute <g_free@plt> numeric
@attribute <close@plt> numeric
@attribute <_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm@plt> numeric
@attribute <_ZNSs4_Rep10_M_destroyERKSaIcE@plt> numeric
@attribute <__gmon_start__@plt+0x2d6f0> numeric
@attribute <_ZN5mongo11msgassertedEiPKc@@Base> numeric
@attribute <_ZN5mongo14BSONObjBuilderD1Ev@@Base> numeric
@attribute <_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc@plt> numeric
@attribute <g_object_unref@plt> numeric
@attribute <__gmon_start__@plt+0x20520> numeric
@attribute <nm_logging_enabled@@Base> numeric
@attribute <__sprintf_chk@plt> numeric
@attribute <g_type_check_instance_is_a@plt> numeric
@attribute <strerror@plt> numeric
@attribute <strchr@plt> numeric
@attribute <_ZSt19__throw_logic_errorPKc@plt> numeric
@attribute <g_assertion_message_expr@plt> numeric
@attribute <_nm_log_impl@@Base> numeric
@attribute <__cxa_end_catch@plt> numeric
@attribute <_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_@plt> numeric
@attribute <__gmon_start__@plt+0x23870> numeric
@attribute <__cxa_atexit@plt> numeric
@attribute <PyErr_Format@@Base> numeric
@attribute <gettext@plt> numeric
@attribute <__cxa_begin_catch@plt> numeric
@attribute <_ZN5mongo6Status5unrefEPNS0_9ErrorInfoE@@Base> numeric
@attribute <__gmon_start__@plt+0x1ee60> numeric
@attribute <_ZN8CNetBase5CloseEi> numeric
@attribute <__snprintf_chk@plt> numeric
@attribute <g_log@plt> numeric
@attribute <__gmon_start__@plt+0x1e4e0> numeric
@attribute <PyErr_Occurred@@Base> numeric
@attribute <set_loc@@Base> numeric
@attribute <_ZN5mongo6logger16globalLogManagerEv@@Base> numeric
@attribute <fputs@plt> numeric
@attribute <__lxstat64@plt+0x7c90> numeric
@attribute <ERR_put_error@@Base> numeric
@attribute <memset@plt> numeric
@attribute <__gmon_start__@plt+0x133de0> numeric
@attribute <memmove@plt> numeric
@attribute <sh_xfree@@Base> numeric
@attribute <error@@Base> numeric
@attribute <g_type_check_class_cast@plt> numeric
@attribute <g_type_instance_get_private@plt> numeric
@attribute <_ZN11CAttackBaseD2Ev> numeric
@attribute <puts@plt> numeric
@attribute <_ZN5boost6system16generic_categoryEv@plt> numeric
@attribute <_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEE6appendERKNS_10StringDataE@@Base> numeric
@attribute <fclose@plt> numeric
@attribute <strcpy@plt> numeric
@attribute <fputc@plt> numeric
@attribute <_ZN15LogMessageFatalD1Ev@@Base> numeric
@attribute <PyModule_AddIntConstant@@Base> numeric
@attribute <strncmp@plt> numeric
@attribute <_ZNK5mongo7BSONObj8getFieldERKNS_10StringDataE@@Base> numeric
@attribute <__cxa_rethrow@plt> numeric
@attribute <abort@plt> numeric
@attribute <_IO_putc@plt> numeric
@attribute <r_fatal@@Base> numeric
@attribute <__gmon_start__@plt+0x1e980> numeric
@attribute <_ZN5mongo13getThreadNameB5cxx11Ev@@Base> numeric
@attribute <_ZNSsC1EPKcRKSaIcE@plt> numeric
@attribute <PyMem_Free@@Base> numeric
@attribute <strtol@plt> numeric
@attribute <__gmon_start__@plt+0x165610> numeric
@attribute <_ZN5mongo6logger16LogstreamBuilderC1EPNS0_9LogDomainINS0_21MessageEventEphemeralEEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS0_11LogSeverityE@@Base> numeric
@attribute <xmalloc@plt> numeric
@attribute <__lxstat64@plt+0x7aee> numeric
@attribute <__gmon_start__@plt+0x1dc660> numeric
@attribute <PyLong_FromLong@@Base> numeric
@attribute <__ctype_b_loc@plt> numeric
@attribute <pthread_mutex_unlock@plt> numeric
@attribute <g_strdup@plt> numeric
@attribute <_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_@plt> numeric
@attribute <_ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EED1Ev@@Base> numeric
@attribute <getenv@plt> numeric
@attribute <matches@@Base> numeric
@attribute <_ZN5mongo25BSONObjBuilderValueStream8endFieldERKNS_10StringDataE@@Base> numeric
@attribute <sh_xmalloc@@Base> numeric
@attribute <strstr@plt> numeric
@attribute <_ZN5boost6system12system_errorD1Ev@@Base> numeric
@attribute <realloc@plt> numeric
@attribute <strcasecmp@plt> numeric
@attribute <_ZNK5mongo11BSONElement13fieldNameSizeEv@@Base> numeric
@attribute <_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_appendEPKcm@plt> numeric
@attribute <pthread_mutex_lock@plt> numeric
@attribute <__gmon_start__@plt+0x23bf0> numeric
@attribute <_ZN5boost16thread_exceptionC1EiPKc@@Base> numeric
@attribute <PyDict_SetItemString@@Base> numeric
@attribute <_ZNK5mongo7BSONObj14_assertInvalidEv@@Base> numeric
@attribute <__gmon_start__@plt+0x2a8a0> numeric
@attribute <memcpy@@Base> numeric
@attribute <__gmon_start__@plt+0x1fc2e0> numeric
@attribute <__gmon_start__@plt+0x1e020> numeric
@attribute <__gmon_start__@plt+0x4e740> numeric
@attribute <__gmon_start__@plt+0x1dec0> numeric
@attribute <_ZNSt8ios_base4InitC1Ev@plt> numeric
@attribute <PyErr_Clear@@Base> numeric
@attribute <strncpy@plt> numeric
@attribute <perror@plt> numeric
@attribute <__gmon_start__@plt+0x146350> numeric
@attribute <PyType_IsSubtype@@Base> numeric
@attribute <fflush@plt> numeric
@attribute <Py_FatalError@@Base> numeric
@attribute <_ZN5mongo15invariantFailedEPKcS1_j@@Base> numeric
@attribute <getc@plt+0xd9890> numeric
@attribute <__gmon_start__@plt+0x1e090> numeric
@attribute <PyBuffer_Release@@Base> numeric
@attribute <_ZNKSt5ctypeIcE13_M_widen_initEv@plt> numeric
@attribute <__lxstat64@plt+0x7b5a> numeric
@attribute <g_object_ref@plt> numeric
@attribute <__cxa_allocate_exception@plt> numeric
@attribute <g_variant_unref@plt> numeric
@attribute <write@plt> numeric
@attribute <_ZN15LogMessageFatalC1EPKci@@Base> numeric
@attribute <__gmon_start__@plt+0x571c0> numeric
@attribute <error@plt> numeric
@attribute <ioctl@plt> numeric
@attribute <_obstack_newchunk@plt> numeric
@attribute <_ZNSo3putEc@plt> numeric
@attribute <_ZNSo5flushEv@plt> numeric
@attribute <_ZSt16__throw_bad_castv@plt> numeric
@attribute <g_mutex_lock@plt> numeric
@attribute <__lxstat64@plt+0x184834> numeric
@attribute <_ZNSsC1ERKSs@plt> numeric
@attribute <putchar@plt> numeric
@attribute <__lxstat64@plt+0x17802> numeric
@attribute <strtoul@plt> numeric
@attribute <g_type_name@plt> numeric
@attribute <g_strcmp0@plt> numeric
@attribute <fopen@plt> numeric
@attribute <PyErr_NoMemory@@Base> numeric
@attribute <_ZN5boost15throw_exceptionINS_10lock_errorEEEvRKT_@@Base> numeric
@attribute <g_strdup_printf@plt> numeric
@attribute <__gmon_start__@plt+0x23cd0> numeric
@attribute <_PyObject_GetAttrId@@Base> numeric
@attribute <r_unref@@Base> numeric
@attribute <__strdup@plt> numeric
@attribute <open@plt> numeric
@attribute <memchr@plt> numeric
@attribute <g_signal_connect_data@plt> numeric
@attribute <g_mutex_unlock@plt> numeric
@attribute <__gmon_start__@plt+0x11b720> numeric
@attribute <__gmon_start__@plt+0x11bc90> numeric
@attribute <_ZSt20__throw_length_errorPKc@plt> numeric
@attribute <calloc@plt> numeric
@attribute <_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7compareEPKc@plt> numeric
@attribute <_ZSt17__throw_bad_allocv@plt> numeric
@attribute <__cxa_throw@plt> numeric
@attribute <_ZN8CNetBase12CreateSocketEi> numeric
@attribute <_ZN5mongo17_makeStringVectorB5cxx11Eiz@@Base> numeric
@attribute <_ZN5mongo9uassertedEiPKc@@Base> numeric
@attribute <g_snprintf@plt> numeric
@attribute <strrchr@plt> numeric
@attribute <PyBytes_FromStringAndSize@@Base> numeric
@attribute <_ZNSt9basic_iosIcSt11char_traitsIcEE4initEPSt15basic_streambufIcS1_E@plt> numeric
@attribute <_PyUnicode_Ready@@Base> numeric
@attribute <CRYPTO_free@@Base> numeric
@attribute <getc@plt+0x37ab0> numeric
@attribute <__lxstat64@plt+0x1c813c> numeric
@attribute <g_dgettext@plt> numeric
@attribute <__gmon_start__@plt> numeric
@attribute <time@plt> numeric
@attribute <PyTuple_New@@Base> numeric
@attribute <__gmon_start__@plt+0x1ac70> numeric
@attribute <_ZN5mongo6StatusC1ENS_10ErrorCodes5ErrorERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi@@Base> numeric
@attribute <_ZN5mongo6StatusC1ENS_10ErrorCodes5ErrorEPKci@@Base> numeric
@attribute <__libc_start_main@plt> numeric
@attribute <g_object_class_install_property@plt> numeric
@attribute <__gmon_start__@plt+0x564e0> numeric
@attribute <__xstat@plt> numeric
@attribute <PyLong_AsLong@@Base> numeric
@attribute <g_dbus_proxy_get_type@plt> numeric
@attribute <setlocale@plt> numeric
@attribute <_ZN5mongo3logEv@@Base> numeric
@attribute <g_once_init_enter@plt> numeric
@attribute <__gmon_start__@plt+0x1e620> numeric
@attribute <__nl_langinfo_l@plt> numeric
@attribute <g_once_init_leave@plt> numeric
@attribute <fprintf@plt> numeric
@attribute <PyMem_Malloc@@Base> numeric
@attribute <PyObject_RichCompareBool@@Base> numeric
@attribute <read@plt> numeric
@attribute <access@plt> numeric
@attribute <__gmon_start__@plt+0x23c20> numeric
@attribute <PyList_Append@@Base> numeric
@attribute <__cxa_free_exception@plt> numeric
@attribute <_ZN5boost6system15system_categoryEv@plt> numeric
@attribute <fileno@plt> numeric
@attribute <PyEval_RestoreThread@@Base> numeric
@attribute <PyErr_ExceptionMatches@@Base> numeric
@attribute <__gmon_start__@plt+0x137f0> numeric
@attribute <_ZN8CNetBase4RecvEPiiPvji> numeric
@attribute <g_print@plt> numeric
@attribute <PyUnicode_FromString@@Base> numeric
@attribute <getpid@plt> numeric
@attribute <__gmon_start__@plt+0x17cc0> numeric
@attribute <PyList_New@@Base> numeric
@attribute <_ZNK5mongo11BSONElement4sizeEv@@Base> numeric
@attribute <fread@plt> numeric
@attribute <_ZN5mongo9uassertedEiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@@Base> numeric
@attribute <__lxstat64@plt+0x7c7a> numeric
@attribute <_PyObject_SetAttrId@@Base> numeric
@attribute <PyType_Ready@@Base> numeric
@attribute <_ZN12sinsp_logger3logESsNS_8severityE@@Base> numeric
@attribute <_ZNSt8ios_baseD2Ev@plt> numeric
@attribute <PyEval_SaveThread@@Base> numeric
@attribute <_ZNSolsEi@plt> numeric
@attribute <invarg@@Base> numeric
@attribute <__gmon_start__@plt+0x145a20> numeric
@attribute <_ZN9CStatBase7GateMacEv> numeric
@attribute <g_value_init@plt> numeric
@attribute <_ZN5mongo14BSONObjBuilderC1Ei@@Base> numeric
@attribute <ceilf@plt> numeric
@attribute <__gmon_start__@plt+0x1459b0> numeric
@attribute <_ZNSs6appendEPKcm@plt> numeric
@attribute <__ctype_get_mb_cur_max@plt> numeric
@attribute <g_intern_static_string@plt> numeric
@attribute <__gmon_start__@plt+0x1e0c0> numeric
@attribute <_PyArg_ParseTuple_SizeT@@Base> numeric
@attribute <PyObject_Free@@Base> numeric
@attribute <g_hash_table_lookup@plt> numeric
@attribute <g_error_free@plt> numeric
@attribute <snprintf@plt> numeric
@attribute <__gmon_start__@plt+0x109220> numeric
@attribute <__gmon_start__@plt+0x144df0> numeric
@attribute <g_clear_error@plt> numeric
@attribute <jv_free@@Base> numeric
@attribute <_ZN4Json5ValueD1Ev@@Base> numeric
@attribute <__gmon_start__@plt+0x1656a0> numeric
@attribute <g_variant_new@plt> numeric
@attribute <signal@plt> numeric
@attribute <gtk_builder_get_object@plt> numeric
@attribute <_ZNSs6appendERKSs@plt> numeric
@attribute <getc@plt+0x9d050> numeric
@attribute <__gmon_start__@plt+0x164a70> numeric
@attribute <_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7compareERKS4_@plt> numeric
@attribute <g_printerr@plt> numeric
@attribute <__gmon_start__@plt+0x165fd0> numeric
@attribute <__gmon_start__@plt+0x1a936> numeric
@attribute <memset@@Base> numeric
@attribute <_ZN8CNetBase8SetBlockEib> numeric
@attribute <_ZSt18_Rb_tree_incrementPKSt18_Rb_tree_node_base@plt> numeric
@attribute <__gmon_start__@plt+0x11c280> numeric
@attribute <array_vname@@Base> numeric
@attribute <PyErr_SetFromErrno@@Base> numeric
@attribute <__gmon_start__@plt+0x53e30> numeric
@attribute <g_object_new@plt> numeric
@attribute <_ZN8CNetBase4SendEPiiPKvji> numeric
@attribute <_PyObject_HasAttrId@@Base> numeric
@attribute <PyDict_SetItem@@Base> numeric
@attribute <_ZN8CNetBase6SendToEiPvijt> numeric
@attribute <fgets@plt> numeric
@attribute <__lxstat64@plt+0x1c687c> numeric
@attribute <PyArg_UnpackTuple@@Base> numeric
@attribute <_ZN5boost13intrusive_ptrIN5mongo7BSONObj6HolderEEaSERKS4_@@Base> numeric
@attribute <memcmp@@Base> numeric
@attribute <_ZN5boost11timed_mutex6unlockEv@@Base> numeric
@attribute <fcntl@plt> numeric
@attribute <__gmon_start__@plt+0x165630> numeric
@attribute <g_type_class_peek_parent@plt> numeric
@attribute <_ZN8CNetBase4RecvEiPvj> numeric
@attribute <_ZN8CNetBase7ConnectEPiiPKcti> numeric
@attribute <PyObject_IsInstance@@Base> numeric
@attribute <g_variant_type_checked_@plt> numeric
@attribute <g_set_error@plt> numeric
@attribute <_ZNSt6localeD1Ev@plt> numeric
@attribute <_ZNSsD1Ev@plt> numeric
@attribute <__lxstat64@plt+0x1c85bc> numeric
@attribute <addattr_l@@Base> numeric
@attribute <xrealloc@plt> numeric
@attribute <mbrtowc@plt> numeric
@attribute <__gmon_start__@plt+0x11b740> numeric
@attribute <__lxstat64@plt+0x174c6> numeric
@attribute <_ZNSt7__cxx1118basic_stringstreamIcSt11char_traitsIcESaIcEED1Ev@plt> numeric
@attribute <nm_device_get_iface@@Base> numeric
@attribute <strncasecmp@plt> numeric
@attribute <getc@plt+0x36d20> numeric
@attribute <__gmon_start__@plt+0x196b0> numeric
@attribute <_ZN5mongo11_BufBuilderINS_16TrivialAllocatorEE9appendNumEc@@Base> numeric
@attribute <__gmon_start__@plt+0x115030> numeric
@attribute <bcalloc@@Base> numeric
@attribute <ferror@plt> numeric
@attribute <__gmon_start__@plt+0x1a2e0> numeric
@attribute <pm_error@plt> numeric
@attribute <getc@plt+0x37390> numeric
@attribute <_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv@@Base> numeric
@attribute <_ZN5mongo17StringBuilderImplINS_16TrivialAllocatorEE5SBNUMIiEERS2_T_iPKc@@Base> numeric
@attribute <__gmon_start__@plt+0x7b0> numeric
@attribute <g_type_register_static_simple@plt> numeric
@attribute <_PyErr_BadInternalCall@@Base> numeric
@attribute <unlink@plt> numeric
@attribute <__lxstat64@plt+0x16f48> numeric
@attribute <__gmon_start__@plt+0xbf6f0> numeric
@attribute <__gmon_start__@plt+0x1a456> numeric
@attribute <__gmon_start__@plt+0x236b0> numeric
@attribute <_IO_getc@plt> numeric
@attribute <_ZSt18_Rb_tree_decrementPSt18_Rb_tree_node_base@plt> numeric
@attribute <_Unwind_GetTextRelBase> numeric
@attribute <_Unwind_GetDataRelBase> numeric
@attribute <__lxstat64@plt+0x1c2767> numeric
@attribute <PyLong_FromSsize_t@@Base> numeric
@attribute <fputs_unlocked@plt> numeric
@attribute <g_bytes_equal@plt+0x710b8> numeric
@attribute <__gmon_start__@plt+0x1ef80> numeric
@attribute <g_malloc0@plt> numeric
@attribute <_ZN5boost5mutex6unlockEv@@Base> numeric
@attribute <CRYPTO_malloc@@Base> numeric
@attribute <wcslen@plt> numeric
@attribute <PyObject_GC_UnTrack@@Base> numeric
@attribute <jv_get_kind@@Base> numeric
@attribute <__gmon_start__@plt+0x1ef40> numeric
@attribute <_ZNSs6assignERKSs@plt> numeric
@attribute <_ZN15sinsp_exceptionC1ESs@@Base> numeric
@attribute <PyArg_ParseTuple@@Base> numeric
@attribute <_ZN5mongo27GlobalInitializerRegistererC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKN5boost8functionIFNS_6StatusEPNS_18InitializerContextEEEERKSt6vectorIS6_SaIS6_EESM_@@Base> numeric
@attribute <g_object_set@plt> numeric
@attribute <__gmon_start__@plt+0x11b6f0> numeric
@attribute <_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_replaceEmmPKcm@plt> numeric
@attribute <sscanf@plt> numeric
@attribute <__gmon_start__@plt+0x111e7> numeric
@attribute <drmIoctl@plt> numeric
@attribute <_ZNSs4swapERSs@plt> numeric
@attribute <_ZN5mongo14BSONObjBuilder6appendERKNS_10StringDataEPKci@@Base> numeric
@attribute <.plt+0x40> numeric
@attribute <_ZNK5mongo10StringData7compareERKS0_@@Base> numeric
@attribute <_PyArg_ParseTupleAndKeywords_SizeT@@Base> numeric
@attribute <jv_copy@@Base> numeric
@attribute <_ZN11CAttackBaseC2Ev> numeric
@attribute <__ctype_toupper_loc@plt> numeric
@attribute <getc@plt+0x36cb0> numeric
@attribute <.plt+0x50> numeric
@attribute <_ZNK5mongo11BSONElement23embeddedObjectUserCheckEv@@Base> numeric
@attribute <g_bytes_equal@plt+0x6e418> numeric
@attribute <_ZN5boost15throw_exceptionINS_21thread_resource_errorEEEvRKT_@@Base> numeric
@attribute <PyUnicode_New@@Base> numeric
@attribute <__gmon_start__@plt+0x53150> numeric
@attribute <__lxstat64@plt+0x28dda> numeric
@attribute <__strcat_chk@plt> numeric
@attribute <pthread_mutex_destroy@plt> numeric
@attribute <_PyBytes_Resize@@Base> numeric
@attribute <__lxstat64@plt+0x7b36> numeric
@attribute <__gmon_start__@plt+0x84870> numeric
@attribute <__gmon_start__@plt+0x236d0> numeric
@attribute <__lxstat64@plt+0x1c2548> numeric
@attribute <_ZN5mongo14BSONObjBuilder3objEv@@Base> numeric
@attribute <g_signal_new@plt> numeric
@attribute <__xstat64@plt> numeric
@attribute <_ZN5mongo6logger16LogstreamBuilderlsEPNS0_3TeeE@@Base> numeric
@attribute <g_param_spec_string@plt> numeric
@attribute <nm_device_get_type@@Base> numeric
@attribute <__cxa_call_unexpected@plt> numeric
@attribute <Py_BuildValue@@Base> numeric
@attribute <mbsinit@plt> numeric
@attribute <__gmon_start__@plt+0x10a4f0> numeric
@attribute <__lxstat64@plt+0x1c814e> numeric
@attribute <_ZNSaIcED1Ev@plt> numeric
@attribute <dup2@plt> numeric
@attribute <__lxstat64@plt+0x1cd9a> numeric
@attribute <open64@plt> numeric
@attribute <g_list_append@plt> numeric
@attribute <__lxstat64@plt+0x5760> numeric
@attribute <eq_s_b@@Base> numeric
@attribute <PyDict_GetItem@@Base> numeric
@attribute <MSG@@Base> numeric
@attribute <gtk_widget_get_type@plt> numeric
@attribute <__gmon_start__@plt+0x21510> numeric
@attribute <slice_del@@Base> numeric
@attribute <PyType_GenericNew@@Base> numeric
@attribute <pthread_mutex_init@plt> numeric
@attribute <__gmon_start__@plt+0x63ff0> numeric
@attribute <PyModule_AddObject@@Base> numeric
@attribute <_ZNSo9_M_insertImEERSoT_@plt> numeric
@attribute <closedir@plt> numeric
@attribute <PyObject_GetBuffer@@Base> numeric
@attribute <CRYPTO_lock@@Base> numeric
@attribute <strtok@plt> numeric
@attribute <str2number@@Base> numeric
@attribute <__gmon_start__@plt+0x7f920> numeric
@attribute <__gmon_start__@plt+0x5d870> numeric
@attribute <qsort@plt> numeric
@attribute <__gmon_start__@plt+0x10d11> numeric
@attribute <_ZNK5mongo7BSONObj9woCompareERKS0_S2_b@@Base> numeric
@attribute <_ZSt29_Rb_tree_insert_and_rebalancebPSt18_Rb_tree_node_baseS0_RS_@plt> numeric
@attribute <__ctype_tolower_loc@plt> numeric
@attribute <_ZN5boost11unique_lockINS_11timed_mutexEE4lockEv@@Base> numeric
@attribute <PyObject_Malloc@@Base> numeric
@attribute <PyDict_New@@Base> numeric
@attribute <htons@plt> numeric
@attribute <_ZSt18_Rb_tree_incrementPSt18_Rb_tree_node_base@plt> numeric
@attribute <__lxstat64@plt+0x1c2771> numeric
@attribute <fillbytes@@Base> numeric
@attribute <_Py_asdl_seq_new@@Base> numeric
@attribute <_ZNSt6localeC1Ev@plt> numeric
@attribute <__gmon_start__@plt+0x14f990> numeric
@attribute <_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EERKS8_SA_@@Base> numeric
@attribute <_ZN5mongo6Client7ContextD1Ev@@Base> numeric
@attribute <fopen64@plt> numeric
@attribute <g_variant_builder_add@plt> numeric
@attribute <__vfprintf_chk@plt> numeric
@attribute <__gmon_start__@plt+0x121730> numeric
@attribute <sigemptyset@plt> numeric
@attribute <__strcpy_chk@plt> numeric
@attribute <socket@plt> numeric
@attribute <feof@plt> numeric
@attribute <sigprocmask@plt> numeric
@attribute <__gmon_start__@plt+0x5c10> numeric
@attribute <PyArena_Malloc@@Base> numeric
@attribute <g_value_unset@plt> numeric
@attribute <nm_connection_error_quark@@Base> numeric
@attribute <PyErr_CheckSignals@@Base> numeric
@attribute <__gmon_start__@plt+0xb280> numeric
@attribute <_ZNK5mongo7BSONObj8toStringERNS_17StringBuilderImplINS_16TrivialAllocatorEEEbbi@@Base> numeric
@attribute <PyArg_ParseTupleAndKeywords@@Base> numeric
@attribute <isatty@plt> numeric
@attribute <PyFloat_FromDouble@@Base> numeric
@attribute <__gmon_start__@plt+0x6f00> numeric
@attribute <_ZNSt8ios_baseC2Ev@plt> numeric
@attribute <atoi@plt> numeric
@attribute <__gmon_start__@plt+0x133eb0> numeric
@attribute <errx@plt> numeric
@attribute <PyUnicode_CompareWithASCIIString@@Base> numeric
@attribute <PyObject_GetIter@@Base> numeric
@attribute <__gmon_start__@plt+0x56cd0> numeric
@attribute <PyIter_Next@@Base> numeric
@attribute <_ZNK4Json5Value6isNullEv@@Base> numeric
@attribute <find_among_b@@Base> numeric
@attribute <__gmon_start__@plt+0x23aa0> numeric
@attribute <__gmon_start__@plt+0x115460> numeric
@attribute <geteuid@plt+0x23d88> numeric
@attribute <g_strfreev@plt> numeric
@attribute <xmalloc@@Base> numeric
@attribute <__gmon_start__@plt+0x81bb0> numeric
@attribute <_ZdaPv@plt> numeric
@attribute <_ZN8CNetBase14SetSendBufSizeEij> numeric
@attribute <sigaction@plt> numeric
@attribute <g_object_notify@plt> numeric
@attribute <err@plt> numeric
@attribute <__gmon_start__@plt+0x24210> numeric
@attribute <getc@plt+0x37b90> numeric
@attribute <sk_num@@Base> numeric
@attribute <__gmon_start__@plt+0x7490> numeric
@attribute <_ZN5mongo9ActionSet9addActionERKNS_10ActionTypeE@@Base> numeric
@attribute <__gmon_start__@plt+0x10> numeric
@attribute <XML_ErrorString@plt> numeric
@attribute <_ZNK4Json5ValueixEPKc@@Base> numeric
@attribute <setsockopt@plt> numeric
@attribute <g_ptr_array_add@plt> numeric
@attribute <g_type_interface_peek@plt> numeric
@attribute <getc@plt+0x3c2b0> numeric
@attribute <_ZN8S2RegionD1Ev@@Base> numeric
@attribute <warn@@Base> numeric
@attribute <gcry_mpi_release@plt> numeric
@attribute <PyTuple_Pack@@Base> numeric
@attribute <g_string_append@plt> numeric
@attribute <g_list_free@plt> numeric
@attribute <__gmon_start__@plt+0x1e3d0> numeric
@attribute <__gmon_start__@plt+0x2620> numeric
@attribute <PyUnicode_FromFormat@@Base> numeric
@attribute <g_value_get_boolean@plt> numeric
@attribute <_PyArg_Parse_SizeT@@Base> numeric
@attribute <_ZNKSs7compareEPKc@plt> numeric
@attribute <PyObject_IsTrue@@Base> numeric
@attribute <__gmon_start__@plt+0x53eb0> numeric
@attribute <__gmon_start__@plt+0x14a80> numeric
@attribute <_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_St9_IdentityIS5_ESt4lessIS5_ESaIS5_EE8_M_eraseEPSt13_Rb_tree_nodeIS5_E@@Base> numeric
@attribute <floor@plt> numeric
@attribute <__gmon_start__@plt+0x54d0> numeric
@attribute <__gmon_start__@plt+0x1463e0> numeric
@attribute <fork@plt> numeric
@attribute <nm_connection_get_type@@Base> numeric
@attribute <__gmon_start__@plt+0x105db0> numeric
@attribute <PyUnicode_InternFromString@@Base> numeric
@attribute <__memcpy_chk@plt> numeric
@attribute <_ZNSs6appendEPKc@plt> numeric
@attribute <sleep@plt> numeric
@attribute <__gmon_start__@plt+0x7c10> numeric
@attribute <_ZNKSt7__cxx1115basic_stringbufIcSt11char_traitsIcESaIcEE3strEv@plt> numeric
@attribute <_ZN8CNetBase8ShutdownEi> numeric
@attribute <sh_xrealloc@@Base> numeric
@attribute <g_type_class_adjust_private_offset@plt> numeric
@attribute <_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6assignEPKc@plt> numeric
@attribute <__lxstat64@plt+0x1c6866> numeric
@attribute <g_variant_builder_init@plt> numeric
@attribute <opendir@plt> numeric
@attribute <_ZN8CNetBase11GetSockNameEi> numeric
@attribute <PyObject_CallFunctionObjArgs@@Base> numeric
@attribute <__lxstat64@plt+0x46bd4> numeric
@attribute <__gmon_start__@plt+0x1ec20> numeric
@attribute <__lxstat64@plt+0x7c9e> numeric
@attribute <__gmon_start__@plt+0x1c23f0> numeric
@attribute <fseek@plt> numeric
@attribute <xstrdup@plt> numeric
@attribute <format_val@@Base> numeric
@attribute <_ZNSt9basic_iosIcSt11char_traitsIcEE5clearESt12_Ios_Iostate@plt> numeric
@attribute <PyDict_Next@@Base> numeric
@attribute <_ZN9CStatBase6CpuNumEv> numeric
@attribute <g_variant_get@plt> numeric
@attribute <__gmon_start__@plt+0x10ae60> numeric
@attribute <_ZN8CNetBase14SetRecvTimeOutEii> numeric
@attribute <sk_value@@Base> numeric
@attribute <g_set_error_literal@plt> numeric
@attribute <g_dbus_interface_skeleton_get_type@plt> numeric
@attribute <g_quark_to_string@plt> numeric
@attribute <printf@plt> numeric
@attribute <_exit@plt> numeric
@attribute <__gmon_start__@plt+0x1e8f0> numeric
@attribute <random@plt> numeric
@attribute <_ZN5mongo11msgassertedEiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@@Base> numeric
@attribute <kill@plt> numeric
@attribute <__gmon_start__@plt+0x5690> numeric
@attribute <g_dbus_proxy_get_cached_property@plt> numeric
@attribute <bindtextdomain@plt> numeric
@attribute <__lxstat64@plt+0x183f88> numeric
@attribute <fgetc@plt> numeric
@attribute <__gmon_start__@plt+0x11f8f0> numeric
@attribute <print_color_string@@Base> numeric
@attribute <fix_problem@@Base> numeric
@attribute <_Znam@plt> numeric
@attribute <__gmon_start__@plt+0x122210> numeric
@attribute <_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_@@Base> numeric
@attribute <_ZN5mongo15curTimeMicros64Ev@@Base> numeric
@attribute <nm_platform_get@@Base> numeric
@attribute <__gmon_start__@plt+0x1b5e0> numeric
@attribute <__gmon_start__@plt+0x12ae0> numeric
@attribute <__gmon_start__@plt+0x23680> numeric
@attribute <__dcgettext@plt> numeric
@attribute <getopt@plt> numeric
@attribute <__gmon_start__@plt+0x1ac7e> numeric
@attribute <_ZN5boost6detail12get_tss_dataEPKv@plt> numeric
@attribute <get_u32@@Base> numeric
@attribute <__gmon_start__@plt+0x4780> numeric
@attribute <__gmon_start__@plt+0x26bf4> numeric
@attribute <waitpid@plt> numeric
@attribute <__gmon_start__@plt+0x2181e8> numeric
@attribute <_ZNK5mongo11BSONElement3chkEi@@Base> numeric
@attribute <__gmon_start__@plt+0x11aaa0> numeric
@attribute <__gmon_start__@plt+0x1e340> numeric
@attribute <_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EEPKS5_RKS8_@@Base> numeric
@attribute <fdopen@plt> numeric
@attribute <__gmon_start__@plt+0x29840> numeric
@attribute <_PyObject_GC_New@@Base> numeric
@attribute <bcfree@@Base> numeric
@attribute <_ZNSt6vectorIN5mongo7BSONObjESaIS1_EED1Ev@@Base> numeric
@attribute <g_object_ref_sink@plt> numeric
@attribute <__gmon_start__@plt+0xbf750> numeric
@attribute <__getdelim@plt> numeric
@attribute <_ZNSs6insertEmPKcm@plt> numeric
@attribute <_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_S5_ESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE8_M_eraseEPSt13_Rb_tree_nodeIS8_E@@Base> numeric
@attribute <_ZN5boost11unique_lockINS_5mutexEE4lockEv@@Base> numeric
@attribute <g_value_get_string@plt> numeric
@attribute <find_variable@@Base> numeric
@attribute <strcat@plt> numeric
@attribute <__gmon_start__@plt+0x3e8c0> numeric
@attribute <__gmon_start__@plt+0x145fa0> numeric
@attribute <_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4findEcm@plt> numeric
@attribute <_init@@Base> numeric
@attribute <_ZN5mongo7CommandC1ENS_10StringDataEbS1_@@Base> numeric
@attribute <__gmon_start__@plt+0xa590> numeric
@attribute <dispose_words@@Base> numeric
@attribute <_ZN5mongo13fassertFailedEi@@Base> numeric
@attribute <inet_addr@plt> numeric
@attribute <strdup@plt> numeric
@attribute <_setjmp@plt> numeric
@attribute <PyNumber_AsSsize_t@@Base> numeric
@attribute <slice_from_s@@Base> numeric
@attribute <__gmon_start__@plt+0x61800> numeric
@attribute <PyErr_Restore@@Base> numeric
@attribute <pm_message@plt> numeric
@attribute <g_param_spec_boolean@plt> numeric
@attribute <__gmon_start__@plt+0x5130> numeric
@attribute <PyMem_Realloc@@Base> numeric
@attribute <__gmon_start__@plt+0x110f1> numeric
@attribute <getc@plt+0x3bab0> numeric
@attribute <PyByteArray_FromStringAndSize@@Base> numeric
@attribute <gtk_window_get_type@plt> numeric
@attribute <gtk_widget_show@plt> numeric
@attribute <__sprintf_chk@plt+0x1e30> numeric
@attribute <__gmon_start__@plt+0x123ca0> numeric
@attribute <_ZN5mongo7warningEv@@Base> numeric
@attribute <gettimeofday@plt> numeric
@attribute <__gmon_start__@plt+0x1666c0> numeric
@attribute <__gmon_start__@plt+0x146a40> numeric
@attribute <PyLong_AsSsize_t@@Base> numeric
@attribute <__overflow@plt> numeric
@attribute <__gmon_start__@plt+0x7300> numeric
@attribute <__asprintf_chk@plt> numeric
@attribute <PyThread_release_lock@@Base> numeric
@attribute <PyObject_CallMethodObjArgs@@Base> numeric
@attribute <getc@plt+0x3c4f0> numeric
@attribute <__gmon_start__@plt+0x167170> numeric
@attribute <__gmon_start__@plt+0x1474f0> numeric
@attribute <__gmon_start__@plt+0x2880> numeric
@attribute <__gmon_start__@plt+0x13510> numeric
@attribute <gtk_widget_hide@plt> numeric
@attribute <errmsgno@@Base> numeric
@attribute <__isoc99_sscanf@plt> numeric
@attribute <_PyTrash_thread_destroy_chain@@Base> numeric
@attribute <_PyTrash_thread_deposit_object@@Base> numeric
@attribute <g_object_class_override_property@plt> numeric
@attribute <g_hash_table_new_full@plt> numeric
@attribute <_ZNK5mongo7BSONObj4copyEv@@Base> numeric
@attribute <dgettext@plt> numeric
@attribute <__gmon_start__@plt+0x3a80> numeric
@attribute <_ZN8CNetBase14SetSendTimeOutEii> numeric
@attribute <PyObject_GetItem@@Base> numeric
@attribute <getc@plt+0x67bd0> numeric
@attribute <g_hash_table_insert@plt> numeric
@attribute <_ZNK5mongo11BSONElement14embeddedObjectEv@@Base> numeric
@attribute <g_type_class_add_private@plt> numeric
@attribute <_ZN5mongo15BSONObjIterator4nextEv@@Base> numeric
@attribute <__fxstat64@plt> numeric
@attribute <_ZN4Json5ValueixEPKc@@Base> numeric
@attribute <_ZN4Json5ValueaSERKS0_@@Base> numeric
@attribute <textdomain@plt> numeric
@attribute <__lxstat64@plt+0x7b42> numeric
@attribute <__gmon_start__@plt+0x1df40> numeric
@attribute <PyErr_SetObject@@Base> numeric
@attribute <__gmon_start__@plt+0x78f0> numeric
@attribute <getopt_long@plt> numeric
@attribute <g_object_notify_by_pspec@plt> numeric
@attribute <g_source_remove@plt> numeric
@attribute <parse_rtattr@@Base> numeric
@attribute <nm_setting_802_1x_get_type@@Base> numeric
@attribute <__gmon_start__@plt+0x6ee0> numeric
@attribute <stpcpy@plt> numeric
@attribute <__gmon_start__@plt+0x39f70> numeric