-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathesp32c3.dump
3187 lines (3182 loc) · 128 KB
/
esp32c3.dump
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
target/riscv32imc-unknown-none-elf/debug/esp32c3: file format elf32-littleriscv
target/riscv32imc-unknown-none-elf/debug/esp32c3
architecture: riscv:rv32, flags 0x00000112:
EXEC_P, HAS_SYMS, D_PAGED
start address 0x42000008
Program Header:
PHDR off 0x00000034 vaddr 0x3c001034 paddr 0x3c001034 align 2**2
filesz 0x000000e0 memsz 0x000000e0 flags r--
LOAD off 0x00000000 vaddr 0x3c001000 paddr 0x3c001000 align 2**12
filesz 0x00000114 memsz 0x00000114 flags r--
LOAD off 0x00001000 vaddr 0x42000000 paddr 0x00000000 align 2**12
filesz 0x00000008 memsz 0x00000008 flags r--
LOAD off 0x00001008 vaddr 0x42000008 paddr 0x00000008 align 2**12
filesz 0x00001e3a memsz 0x00001e3a flags r-x
LOAD off 0x00002e42 vaddr 0x3c001e42 paddr 0x00001e42 align 2**12
filesz 0x0000063a memsz 0x0000063a flags r--
STACK off 0x00000000 vaddr 0x00000000 paddr 0x00000000 align 2**0
filesz 0x00000000 memsz 0x00000000 flags rw-
Sections:
Idx Name Size VMA LMA File off Algn
0 .header 00000008 42000000 00000000 00001000 2**0
CONTENTS, ALLOC, LOAD, READONLY, DATA
1 .text.dummy 00000000 42000008 00000008 00001008 2**0
ALLOC, READONLY
2 .text 00001e3a 42000008 00000008 00001008 2**1
CONTENTS, ALLOC, LOAD, READONLY, CODE
3 .rodata 0000063a 3c001e42 00001e42 00002e42 2**4
CONTENTS, ALLOC, LOAD, READONLY, DATA
4 .data 00000000 3fc80000 3fc80000 0000347c 2**0
CONTENTS, ALLOC, LOAD, READONLY, DATA
5 .bss 00000000 3fc80000 3fc80000 0000347c 2**0
ALLOC
6 .heap 00000000 3fc80000 3fc80000 0000347c 2**0
ALLOC
7 .stack 00050000 3fc80000 3fc80000 0000347c 2**0
ALLOC
8 .eh_frame 00000268 00000000 00000000 0000347c 2**2
CONTENTS, READONLY
9 .debug_abbrev 00002288 00000000 00000000 000036e4 2**0
CONTENTS, READONLY, DEBUGGING, OCTETS
10 .debug_info 00025f57 00000000 00000000 0000596c 2**0
CONTENTS, READONLY, DEBUGGING, OCTETS
11 .debug_aranges 00001e88 00000000 00000000 0002b8c8 2**3
CONTENTS, READONLY, DEBUGGING, OCTETS
12 .debug_ranges 0000e720 00000000 00000000 0002d750 2**3
CONTENTS, READONLY, DEBUGGING, OCTETS
13 .debug_str 00030185 00000000 00000000 0003be70 2**0
CONTENTS, READONLY, DEBUGGING, OCTETS
14 .debug_pubnames 0000ddc2 00000000 00000000 0006bff5 2**0
CONTENTS, READONLY, DEBUGGING, OCTETS
15 .debug_pubtypes 00001968 00000000 00000000 00079db7 2**0
CONTENTS, READONLY, DEBUGGING, OCTETS
16 .riscv.attributes 00000026 00000000 00000000 0007b71f 2**0
CONTENTS, READONLY
17 .debug_frame 00000b08 00000000 00000000 0007b748 2**2
CONTENTS, READONLY, DEBUGGING, OCTETS
18 .debug_line 0001eca8 00000000 00000000 0007c250 2**0
CONTENTS, READONLY, DEBUGGING, OCTETS
19 .debug_loc 00000038 00000000 00000000 0009aef8 2**0
CONTENTS, READONLY, DEBUGGING, OCTETS
20 .comment 00000013 00000000 00000000 0009af30 2**0
CONTENTS, READONLY
SYMBOL TABLE:
00000000 l df *ABS* 00000000 29ucah73m9rc2aze
42000204 l .text 00000000
42000204 l .text 00000000
42000204 l .text 00000000
42000230 l .text 00000000
42000230 l .text 00000000
42000230 l .text 00000000
42000230 l .text 00000000
42000252 l .text 00000000
00000000 l .debug_info 00000000
00000000 l .debug_ranges 00000000
00000000 l .debug_frame 00000000
3c001e42 l O .rodata 00000002 .L__unnamed_1
00000000 l .debug_line 00000000 .Lline_table_start0
42000204 l F .text 0000002c .hidden <() as core::fmt::Debug>::fmt
42000230 l F .text 00000022 .hidden core::fmt::Arguments::new_v1
00000000 l df *ABS* 00000000 394gusu2iftwvz4n
42000252 l .text 00000000
42000252 l .text 00000000
42000252 l .text 00000000
0000047a l .debug_info 00000000
00000040 l .debug_frame 00000000
000000a1 l .debug_line 00000000 .Lline_table_start0
42000252 l F .text 0000000a .hidden core::str::converts::from_utf8_unchecked_mut
00000000 l df *ABS* 00000000 3janjfwwbm85lzd7
4200025c l .text 00000000
4200025c l .text 00000000
4200025c l .text 00000000
4200025e l .text 00000000
42000280 l .text 00000000
420002d0 l .text 00000000
42000340 l .text 00000000
00000532 l .debug_info 00000000
00000068 l .debug_frame 00000000
3c001e68 l O .rodata 00000008 .L__unnamed_1
3c001ef4 l O .rodata 00000008 .L__unnamed_10
3c001efc l O .rodata 00000010 .L__unnamed_11
3c001f0c l O .rodata 00000010 .L__unnamed_12
3c001f1c l O .rodata 00000010 .L__unnamed_13
3c001e44 l O .rodata 00000009 .L__unnamed_14
3c001e58 l O .rodata 0000000d .L__unnamed_15
3c001e70 l O .rodata 0000000b .L__unnamed_16
3c001e8c l O .rodata 00000001 .L__unnamed_17
3c001eb0 l O .rodata 00000005 .L__unnamed_18
3c001e70 l O .rodata 00000000 .L__unnamed_2
3c001e7c l O .rodata 00000010 .L__unnamed_3
3c001e90 l O .rodata 00000010 .L__unnamed_4
3c001ea0 l O .rodata 00000010 .L__unnamed_5
3c001eb8 l O .rodata 00000008 .L__unnamed_6
3c001ec0 l O .rodata 00000010 .L__unnamed_7
3c001ed0 l O .rodata 00000010 .L__unnamed_8
3c001ee0 l O .rodata 00000010 .L__unnamed_9
00000127 l .debug_line 00000000 .Lline_table_start0
3c001e50 l O .rodata 00000008 esp32c3::DATA_SECTION_TEST
00000000 l df *ABS* 00000000 3wdctvcd25mf1zzr
4200047a l .text 00000000
4200047a l .text 00000000
4200047a l .text 00000000
42000492 l .text 00000000
420004b4 l .text 00000000
420004b4 l .text 00000000
420004b4 l .text 00000000
420004b4 l .text 00000000
420004cc l .text 00000000
420004ee l .text 00000000
420004ee l .text 00000000
420004ee l .text 00000000
420004ee l .text 00000000
42000500 l .text 00000000
42000522 l .text 00000000
0000068e l .debug_info 00000000
00000018 l .debug_ranges 00000000
00000094 l .debug_frame 00000000
3c001f58 l O .rodata 00000010 .L__unnamed_1
3c001f68 l O .rodata 00000010 .L__unnamed_2
3c001f78 l O .rodata 00000010 .L__unnamed_3
3c001f2c l O .rodata 0000002b .L__unnamed_4
000001ee l .debug_line 00000000 .Lline_table_start0
4200047a l F .text 0000003a .hidden core::result::Result<T,E>::unwrap
420004b4 l F .text 0000003a .hidden core::result::Result<T,E>::unwrap
420004ee l F .text 00000034 .hidden core::result::Result<T,E>::unwrap
00000000 l df *ABS* 00000000 3y7dloffruf13hpp
42000522 l .text 00000000
42000522 l .text 00000000
42000522 l .text 00000000
00000880 l .debug_info 00000000
000000e4 l .debug_frame 00000000
000002b1 l .debug_line 00000000 .Lline_table_start0
42000522 l F .text 00000012 .hidden core::ptr::metadata::from_raw_parts_mut
00000000 l df *ABS* 00000000 4jlf7n80heeeccj8
42000534 l .text 00000000
42000534 l .text 00000000
42000534 l .text 00000000
42000574 l .text 00000000
42000574 l .text 00000000
42000574 l .text 00000000
42000574 l .text 00000000
420005b2 l .text 00000000
420005b2 l .text 00000000
420005b2 l .text 00000000
420005b2 l .text 00000000
420005d0 l .text 00000000
420005d0 l .text 00000000
420005d0 l .text 00000000
420005d0 l .text 00000000
42000606 l .text 00000000
42000606 l .text 00000000
42000606 l .text 00000000
42000606 l .text 00000000
42000626 l .text 00000000
00000000 l .debug_loc 00000000
0000001c l .debug_loc 00000000
00000958 l .debug_info 00000000
00000038 l .debug_ranges 00000000
0000010c l .debug_frame 00000000
3c001f88 l O .rodata 00000018 .L__unnamed_1
0000033f l .debug_line 00000000 .Lline_table_start0
42000534 l F .text 00000040 core::fmt::Write::write_char
420005b2 l F .text 0000001e <&mut W as core::fmt::Write>::write_char
420005d0 l F .text 00000036 <&mut W as core::fmt::Write>::write_fmt
42000606 l F .text 00000020 <&mut W as core::fmt::Write>::write_str
42000574 l F .text 0000003e .hidden core::fmt::Write::write_fmt
00000000 l df *ABS* 00000000 4rzowccomr99xelo
42000626 l .text 00000000
42000626 l .text 00000000
42000626 l .text 00000000
42000646 l .text 00000000
42000646 l .text 00000000
42000646 l .text 00000000
42000646 l .text 00000000
42000670 l .text 00000000
00000ed0 l .debug_info 00000000
00000068 l .debug_ranges 00000000
00000198 l .debug_frame 00000000
00000440 l .debug_line 00000000 .Lline_table_start0
42000626 l F .text 00000020 .hidden core::slice::index::<impl core::ops::index::IndexMut<I> for [T]>::index_mut
42000646 l F .text 0000002a .hidden core::slice::index::<impl core::ops::index::IndexMut<I> for [T]>::index_mut
00000000 l df *ABS* 00000000 57okb5jcqzpn2yzd
42000670 l .text 00000000
42000670 l .text 00000000
42000670 l .text 00000000
42000694 l .text 00000000
420006bc l .text 00000000
420006bc l .text 00000000
420006bc l .text 00000000
420006bc l .text 00000000
42000722 l .text 00000000
42000722 l .text 00000000
42000722 l .text 00000000
42000722 l .text 00000000
42000752 l .text 00000000
42000752 l .text 00000000
42000752 l .text 00000000
42000752 l .text 00000000
4200075c l .text 00000000
00001007 l .debug_info 00000000
00000080 l .debug_ranges 00000000
000001dc l .debug_frame 00000000
000004de l .debug_line 00000000 .Lline_table_start0
42000670 l F .text 0000004c <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::get_unchecked_mut
420006bc l F .text 00000066 <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::index_mut
42000722 l F .text 00000030 .hidden <core::ops::range::RangeTo<usize> as core::slice::index::SliceIndex<[T]>>::index_mut
42000752 l F .text 0000000a .hidden <core::ops::range::RangeFull as core::slice::index::SliceIndex<[T]>>::index_mut
00000000 l df *ABS* 00000000 5g13dlippelq0n9q
4200075c l .text 00000000
4200075c l .text 00000000
4200075c l .text 00000000
000012cf l .debug_info 00000000
0000024c l .debug_frame 00000000
00000629 l .debug_line 00000000 .Lline_table_start0
4200075c l F .text 0000002c .hidden core::ptr::slice_from_raw_parts_mut
00000000 l df *ABS* 00000000 8rsfdm1rt6qjs8p
42000788 l .text 00000000
42000788 l .text 00000000
42000788 l .text 00000000
420007a2 l .text 00000000
42000810 l .text 00000000
42000826 l .text 00000000
42000866 l .text 00000000
420008d4 l .text 00000000
4200090e l .text 00000000
42000932 l .text 00000000
4200093a l .text 00000000
42000944 l .text 00000000
4200098c l .text 00000000
420009ba l .text 00000000
420009ba l .text 00000000
420009ba l .text 00000000
420009ba l .text 00000000
420009ba l .text 00000000
420009ee l .text 00000000
420009ee l .text 00000000
420009ee l .text 00000000
420009ee l .text 00000000
42000a38 l .text 00000000
0000138a l .debug_info 00000000
000000d8 l .debug_ranges 00000000
000000c0 l .debug_ranges 00000000
000000a8 l .debug_ranges 00000000
00000278 l .debug_frame 00000000
3c001ff0 l O .rodata 00000010 .L__unnamed_1
3c002000 l O .rodata 00000010 .L__unnamed_2
3c00204c l O .rodata 00000018 .L__unnamed_3
3c002064 l O .rodata 00000010 .L__unnamed_4
3c001fa0 l O .rodata 00000050 .L__unnamed_5
3c002010 l O .rodata 00000012 .L__unnamed_6
3c002022 l O .rodata 00000013 .L__unnamed_7
3c002035 l O .rodata 00000015 .L__unnamed_8
000006b3 l .debug_line 00000000 .Lline_table_start0
42000788 l F .text 00000232 core::char::methods::encode_utf8_raw
420009ee l F .text 0000004a core::char::methods::len_utf8
420009ba l F .text 00000034 .hidden core::char::methods::<impl char>::encode_utf8
00000000 l df *ABS* 00000000 g0mc9l3a3ecx00t
42000a38 l .text 00000000
42000a38 l .text 00000000
42000a38 l .text 00000000
42000a40 l .text 00000000
42000a40 l .text 00000000
42000a40 l .text 00000000
42000a40 l .text 00000000
42000a48 l .text 00000000
42000a48 l .text 00000000
42000a48 l .text 00000000
42000a48 l .text 00000000
42000a50 l .text 00000000
42000a50 l .text 00000000
42000a50 l .text 00000000
42000a50 l .text 00000000
42000a58 l .text 00000000
00001607 l .debug_info 00000000
000000f8 l .debug_ranges 00000000
000002d0 l .debug_frame 00000000
000008b8 l .debug_line 00000000 .Lline_table_start0
42000a38 l F .text 00000008 .hidden core::ptr::drop_in_place<()>
42000a40 l F .text 00000008 .hidden core::ptr::drop_in_place<void::Void>
42000a48 l F .text 00000008 .hidden core::ptr::drop_in_place<core::fmt::Error>
42000a50 l F .text 00000008 .hidden core::ptr::drop_in_place<&mut esp32c3_lib::Uart>
00000000 l df *ABS* 00000000 hiw3dsmjx3z0qkb
42000a58 l .text 00000000
42000a58 l .text 00000000
42000a58 l .text 00000000
42000a7c l .text 00000000
42000a7c l .text 00000000
42000a7c l .text 00000000
42000a7c l .text 00000000
42000a9e l .text 00000000
42000a9e l .text 00000000
42000a9e l .text 00000000
42000a9e l .text 00000000
42000ac0 l .text 00000000
42000ac0 l .text 00000000
42000ac0 l .text 00000000
42000ac0 l .text 00000000
42000ae2 l .text 00000000
0000174f l .debug_info 00000000
00000120 l .debug_ranges 00000000
00000334 l .debug_frame 00000000
00000975 l .debug_line 00000000 .Lline_table_start0
42000a58 l F .text 00000024 .hidden <&T as core::fmt::Display>::fmt
42000a7c l F .text 00000022 .hidden core::fmt::ArgumentV1::new
42000a9e l F .text 00000022 .hidden core::fmt::ArgumentV1::new
42000ac0 l F .text 00000022 .hidden core::fmt::ArgumentV1::new
00000000 l df *ABS* 00000000 3fwf59e6yry5nw95
42000ae2 l .text 00000000
42000ae2 l .text 00000000
42000ae2 l .text 00000000
42000b38 l .text 00000000
42000b4c l .text 00000000
42000b68 l .text 00000000
42000bae l .text 00000000
42000bb4 l .text 00000000
42000bb4 l .text 00000000
42000bb4 l .text 00000000
42000bb4 l .text 00000000
42000c0c l .text 00000000
42000c0c l .text 00000000
42000c0c l .text 00000000
42000c0c l .text 00000000
42000c64 l .text 00000000
42000c64 l .text 00000000
42000c64 l .text 00000000
42000c64 l .text 00000000
42000c6e l .text 00000000
42000c6e l .text 00000000
42000c6e l .text 00000000
42000c6e l .text 00000000
42000c8c l .text 00000000
42000c8c l .text 00000000
42000c8c l .text 00000000
42000c8c l .text 00000000
42000c9a l .text 00000000
42000cbe l .text 00000000
42000cc2 l .text 00000000
42000ce0 l .text 00000000
42000cec l .text 00000000
42000cf0 l .text 00000000
42000cfa l .text 00000000
42000d04 l .text 00000000
42000d06 l .text 00000000
42000d06 l .text 00000000
42000d06 l .text 00000000
42000d06 l .text 00000000
42000d06 l .text 00000000
42000e32 l .text 00000000
00001b0c l .debug_info 00000000
00000190 l .debug_ranges 00000000
00000148 l .debug_ranges 00000000
00000178 l .debug_ranges 00000000
00000160 l .debug_ranges 00000000
0000039c l .debug_frame 00000000
3c002080 l O .rodata 00000010 .L__unnamed_1
3c0020b4 l O .rodata 00000010 .L__unnamed_2
3c0020ec l O .rodata 00000010 .L__unnamed_3
3c002124 l O .rodata 00000010 .L__unnamed_4
3c002134 l O .rodata 00000010 .L__unnamed_5
3c002074 l O .rodata 0000000a .L__unnamed_6
00000a60 l .debug_line 00000000 .Lline_table_start0
3c002090 l O .rodata 00000021 str.0
3c0020d0 l O .rodata 0000001c str.1
3c002100 l O .rodata 00000023 str.2
00000000 l df *ABS* 00000000 35g5enu0kvedl73w
42000e32 l .text 00000000
42000e32 l .text 00000000
42000e32 l .text 00000000
42000e44 l .text 00000000
42000e44 l .text 00000000
42000e44 l .text 00000000
42000e44 l .text 00000000
42000e52 l .text 00000000
42000e52 l .text 00000000
42000e52 l .text 00000000
42000e52 l .text 00000000
42000e60 l .text 00000000
00001e6e l .debug_info 00000000
000001d0 l .debug_ranges 00000000
00000454 l .debug_frame 00000000
00000c97 l .debug_line 00000000 .Lline_table_start0
00000000 l df *ABS* 00000000 75vaot41e7bdhzh
42000e60 l .text 00000000
42000e60 l .text 00000000
42000e60 l .text 00000000
42000e7a l .text 00000000
42000e9c l .text 00000000
42000eb0 l .text 00000000
42000eba l .text 00000000
42000ec8 l .text 00000000
42000ece l .text 00000000
42000ed6 l .text 00000000
42000edc l .text 00000000
42000edc l .text 00000000
42000edc l .text 00000000
42000edc l .text 00000000
42000efc l .text 00000000
42000efc l .text 00000000
42000efc l .text 00000000
42000efc l .text 00000000
42000f62 l .text 00000000
42000f74 l .text 00000000
42000f84 l .text 00000000
42000fb2 l .text 00000000
00001f85 l .debug_info 00000000
00000208 l .debug_ranges 00000000
000001f0 l .debug_ranges 00000000
000004a4 l .debug_frame 00000000
00000d49 l .debug_line 00000000 .Lline_table_start0
00000000 l df *ABS* 00000000 3sufvygf88ybmv21
42000fb2 l .text 00000000
42000fb2 l .text 00000000
42000fb2 l .text 00000000
42000fcc l .text 00000000
42000fcc l .text 00000000
42000fcc l .text 00000000
42000fcc l .text 00000000
42000fee l .text 00000000
000023f8 l .debug_info 00000000
00000228 l .debug_ranges 00000000
00000500 l .debug_frame 00000000
00000f77 l .debug_line 00000000 .Lline_table_start0
00000000 l df *ABS* 00000000 2idwj4jxj9ydgr44
42000fee l .text 00000000
42000fee l .text 00000000
42000fee l .text 00000000
42000ff8 l .text 00000000
42000ff8 l .text 00000000
42000ff8 l .text 00000000
42000ff8 l .text 00000000
42001000 l .text 00000000
000024c5 l .debug_info 00000000
00000240 l .debug_ranges 00000000
00000540 l .debug_frame 00000000
0000101a l .debug_line 00000000 .Lline_table_start0
00000000 l df *ABS* 00000000 21daqdv2x00ilwem
42001000 l .text 00000000
42001000 l .text 00000000
42001000 l .text 00000000
42001020 l .text 00000000
42001020 l .text 00000000
42001020 l .text 00000000
42001020 l .text 00000000
4200102a l .text 00000000
0000259f l .debug_info 00000000
00000258 l .debug_ranges 00000000
0000057c l .debug_frame 00000000
000010b7 l .debug_line 00000000 .Lline_table_start0
00000000 l df *ABS* 00000000 u02favo8dyr0on7
4200102a l .text 00000000
4200102a l .text 00000000
4200102a l .text 00000000
42001044 l .text 00000000
42001044 l .text 00000000
42001044 l .text 00000000
42001044 l .text 00000000
42001066 l .text 00000000
000026fb l .debug_info 00000000
00000270 l .debug_ranges 00000000
000005bc l .debug_frame 00000000
00001151 l .debug_line 00000000 .Lline_table_start0
00000000 l df *ABS* 00000000 void.7a9a8842-cgu.0
42001066 l .text 00000000
42001066 l .text 00000000
42001066 l .text 00000000
4200106c l .text 00000000
4200106e l .text 00000000
000027c8 l .debug_info 00000000
00000288 l .debug_ranges 00000000
000005fc l .debug_frame 00000000
000011f6 l .debug_line 00000000 .Lline_table_start0
00000000 l df *ABS* 00000000 core.cfc7edf8-cgu.0
4200106e l .text 00000000
4200106e l .text 00000000
4200106e l .text 00000000
42001072 l .text 00000000
42001072 l .text 00000000
42001072 l .text 00000000
42001072 l .text 00000000
42001074 l .text 00000000
42001074 l .text 00000000
42001074 l .text 00000000
42001074 l .text 00000000
42001086 l .text 00000000
42001086 l .text 00000000
42001086 l .text 00000000
42001086 l .text 00000000
42001090 l .text 00000000
420010b2 l .text 00000000
420010b2 l .text 00000000
420010b2 l .text 00000000
420010b2 l .text 00000000
420010ce l .text 00000000
420010f2 l .text 00000000
420010f2 l .text 00000000
420010f2 l .text 00000000
420010f2 l .text 00000000
420010f4 l .text 00000000
4200111a l .text 00000000
4200111a l .text 00000000
4200111a l .text 00000000
4200111a l .text 00000000
42001142 l .text 00000000
42001166 l .text 00000000
42001166 l .text 00000000
42001166 l .text 00000000
42001166 l .text 00000000
4200117e l .text 00000000
4200118c l .text 00000000
42001190 l .text 00000000
42001198 l .text 00000000
420011a2 l .text 00000000
420011ae l .text 00000000
420011c6 l .text 00000000
420011d8 l .text 00000000
420011ea l .text 00000000
420011ee l .text 00000000
420011f4 l .text 00000000
420011fc l .text 00000000
42001206 l .text 00000000
4200120a l .text 00000000
4200120e l .text 00000000
4200121a l .text 00000000
42001222 l .text 00000000
4200122c l .text 00000000
42001230 l .text 00000000
42001234 l .text 00000000
4200123e l .text 00000000
4200124a l .text 00000000
4200124c l .text 00000000
4200125a l .text 00000000
42001262 l .text 00000000
4200126e l .text 00000000
42001272 l .text 00000000
4200129c l .text 00000000
420012a4 l .text 00000000
420012e6 l .text 00000000
420012e6 l .text 00000000
420012e6 l .text 00000000
420012e6 l .text 00000000
4200130a l .text 00000000
42001320 l .text 00000000
42001324 l .text 00000000
42001328 l .text 00000000
4200132c l .text 00000000
42001334 l .text 00000000
42001336 l .text 00000000
42001342 l .text 00000000
42001344 l .text 00000000
42001346 l .text 00000000
42001348 l .text 00000000
42001354 l .text 00000000
42001358 l .text 00000000
42001360 l .text 00000000
42001364 l .text 00000000
42001376 l .text 00000000
4200137a l .text 00000000
4200138c l .text 00000000
42001394 l .text 00000000
4200139c l .text 00000000
420013f8 l .text 00000000
42001400 l .text 00000000
42001404 l .text 00000000
4200140a l .text 00000000
4200140e l .text 00000000
42001420 l .text 00000000
42001432 l .text 00000000
42001436 l .text 00000000
42001442 l .text 00000000
42001462 l .text 00000000
42001472 l .text 00000000
420014a8 l .text 00000000
420014b0 l .text 00000000
420014b2 l .text 00000000
420014c0 l .text 00000000
420014e0 l .text 00000000
420014ee l .text 00000000
42001518 l .text 00000000
4200151a l .text 00000000
4200151e l .text 00000000
42001520 l .text 00000000
42001522 l .text 00000000
4200152a l .text 00000000
4200152e l .text 00000000
4200153e l .text 00000000
42001540 l .text 00000000
42001546 l .text 00000000
42001546 l .text 00000000
42001546 l .text 00000000
42001546 l .text 00000000
42001546 l .text 00000000
42001592 l .text 00000000
42001592 l .text 00000000
42001592 l .text 00000000
42001592 l .text 00000000
420015ce l .text 00000000
420015d4 l .text 00000000
420015d6 l .text 00000000
420015e8 l .text 00000000
420015ea l .text 00000000
420015ee l .text 00000000
420015f2 l .text 00000000
420015f6 l .text 00000000
420015fa l .text 00000000
420015fe l .text 00000000
42001600 l .text 00000000
42001608 l .text 00000000
4200160c l .text 00000000
42001610 l .text 00000000
42001614 l .text 00000000
4200161c l .text 00000000
4200162e l .text 00000000
42001632 l .text 00000000
42001636 l .text 00000000
42001638 l .text 00000000
4200163c l .text 00000000
4200164a l .text 00000000
4200164e l .text 00000000
42001652 l .text 00000000
42001656 l .text 00000000
4200165e l .text 00000000
42001668 l .text 00000000
42001682 l .text 00000000
42001684 l .text 00000000
42001692 l .text 00000000
420016ae l .text 00000000
420016b2 l .text 00000000
420016ba l .text 00000000
420016be l .text 00000000
420016c2 l .text 00000000
420016c4 l .text 00000000
420016ce l .text 00000000
420016d4 l .text 00000000
420016d8 l .text 00000000
420016da l .text 00000000
420016de l .text 00000000
420016e0 l .text 00000000
420016e8 l .text 00000000
420016ec l .text 00000000
420016ee l .text 00000000
420016f4 l .text 00000000
42001702 l .text 00000000
42001706 l .text 00000000
42001708 l .text 00000000
42001714 l .text 00000000
42001716 l .text 00000000
4200171a l .text 00000000
42001726 l .text 00000000
4200172a l .text 00000000
4200172c l .text 00000000
42001738 l .text 00000000
4200173a l .text 00000000
42001740 l .text 00000000
42001742 l .text 00000000
42001744 l .text 00000000
42001746 l .text 00000000
42001758 l .text 00000000
4200175e l .text 00000000
42001766 l .text 00000000
42001786 l .text 00000000
420017a4 l .text 00000000
420017b4 l .text 00000000
420017d0 l .text 00000000
420017da l .text 00000000
420017dc l .text 00000000
420017ea l .text 00000000
420017f2 l .text 00000000
420017f6 l .text 00000000
420017fa l .text 00000000
420017fe l .text 00000000
42001802 l .text 00000000
4200180c l .text 00000000
42001812 l .text 00000000
42001814 l .text 00000000
42001818 l .text 00000000
42001838 l .text 00000000
4200183c l .text 00000000
42001840 l .text 00000000
42001854 l .text 00000000
4200185e l .text 00000000
42001864 l .text 00000000
42001864 l .text 00000000
42001864 l .text 00000000
42001864 l .text 00000000
42001864 l .text 00000000
42001874 l .text 00000000
42001874 l .text 00000000
42001874 l .text 00000000
42001874 l .text 00000000
42001890 l .text 00000000
420018b4 l .text 00000000
420018b4 l .text 00000000
420018b4 l .text 00000000
420018b4 l .text 00000000
420018d0 l .text 00000000
420018f4 l .text 00000000
420018f4 l .text 00000000
420018f4 l .text 00000000
420018f4 l .text 00000000
42001910 l .text 00000000
42001934 l .text 00000000
42001934 l .text 00000000
42001934 l .text 00000000
42001934 l .text 00000000
4200193c l .text 00000000
4200194e l .text 00000000
42001956 l .text 00000000
4200195a l .text 00000000
42001964 l .text 00000000
42001970 l .text 00000000
42001992 l .text 00000000
42001998 l .text 00000000
420019ae l .text 00000000
420019ae l .text 00000000
420019ae l .text 00000000
420019ae l .text 00000000
420019ae l .text 00000000
420019b0 l .text 00000000
420019be l .text 00000000
420019e2 l .text 00000000
42001a54 l .text 00000000
42001a58 l .text 00000000
42001a64 l .text 00000000
42001a66 l .text 00000000
42001a6e l .text 00000000
42001a76 l .text 00000000
42001a7e l .text 00000000
42001abc l .text 00000000
42001ac6 l .text 00000000
42001ad2 l .text 00000000
42001ad4 l .text 00000000
42001adc l .text 00000000
42001aea l .text 00000000
42001af4 l .text 00000000
42001b00 l .text 00000000
42001b02 l .text 00000000
42001b0a l .text 00000000
42001b0e l .text 00000000
42001b3a l .text 00000000
42001b3a l .text 00000000
42001b3a l .text 00000000
42001b3a l .text 00000000
42001b4c l .text 00000000
42001b4c l .text 00000000
42001b4c l .text 00000000
42001b4c l .text 00000000
42001b54 l .text 00000000
42001b54 l .text 00000000
42001b54 l .text 00000000
42001b54 l .text 00000000
42001b5a l .text 00000000
42001b64 l .text 00000000
00002a6a l .debug_info 00000000
0000cc88 l .debug_ranges 00000000
00003bf0 l .debug_ranges 00000000
00003c10 l .debug_ranges 00000000
00003c38 l .debug_ranges 00000000
00003c50 l .debug_ranges 00000000
00003c70 l .debug_ranges 00000000
00003c88 l .debug_ranges 00000000
00003ca0 l .debug_ranges 00000000
00003cc0 l .debug_ranges 00000000
00003cd8 l .debug_ranges 00000000
00003cf0 l .debug_ranges 00000000
00003d08 l .debug_ranges 00000000
00003d28 l .debug_ranges 00000000
00003d48 l .debug_ranges 00000000
00003d70 l .debug_ranges 00000000
00003d88 l .debug_ranges 00000000
00003da0 l .debug_ranges 00000000
00003db8 l .debug_ranges 00000000
00003dd0 l .debug_ranges 00000000
00003de8 l .debug_ranges 00000000
00003e00 l .debug_ranges 00000000
00003e18 l .debug_ranges 00000000
00003e30 l .debug_ranges 00000000
00003e48 l .debug_ranges 00000000
00003e60 l .debug_ranges 00000000
00003e78 l .debug_ranges 00000000
00003e90 l .debug_ranges 00000000
00003eb8 l .debug_ranges 00000000
00003ee0 l .debug_ranges 00000000
00003f08 l .debug_ranges 00000000
00003f20 l .debug_ranges 00000000
00003f38 l .debug_ranges 00000000
00003f50 l .debug_ranges 00000000
00003f68 l .debug_ranges 00000000
00003f90 l .debug_ranges 00000000
00003fb8 l .debug_ranges 00000000
00003fe0 l .debug_ranges 00000000
00003ff8 l .debug_ranges 00000000
00004010 l .debug_ranges 00000000
00004028 l .debug_ranges 00000000
00004040 l .debug_ranges 00000000
00004058 l .debug_ranges 00000000
00004070 l .debug_ranges 00000000
00004088 l .debug_ranges 00000000
000040a0 l .debug_ranges 00000000
000040b8 l .debug_ranges 00000000
000040d0 l .debug_ranges 00000000
000040f0 l .debug_ranges 00000000
00004108 l .debug_ranges 00000000
00004120 l .debug_ranges 00000000
00004138 l .debug_ranges 00000000
00004158 l .debug_ranges 00000000
00004170 l .debug_ranges 00000000
00004190 l .debug_ranges 00000000
000041b0 l .debug_ranges 00000000
000041c8 l .debug_ranges 00000000
000041e0 l .debug_ranges 00000000
00004200 l .debug_ranges 00000000
00004228 l .debug_ranges 00000000
00004250 l .debug_ranges 00000000
00004268 l .debug_ranges 00000000
00004288 l .debug_ranges 00000000
000042a8 l .debug_ranges 00000000
000042c0 l .debug_ranges 00000000
000042d8 l .debug_ranges 00000000
000042f0 l .debug_ranges 00000000
00004308 l .debug_ranges 00000000
00004320 l .debug_ranges 00000000
00004338 l .debug_ranges 00000000
00004350 l .debug_ranges 00000000
00003260 l .debug_ranges 00000000
00003278 l .debug_ranges 00000000
00003290 l .debug_ranges 00000000
000032a8 l .debug_ranges 00000000
00003130 l .debug_ranges 00000000
00003148 l .debug_ranges 00000000
00003160 l .debug_ranges 00000000
00003178 l .debug_ranges 00000000
00003190 l .debug_ranges 00000000
000031a8 l .debug_ranges 00000000
000031c0 l .debug_ranges 00000000
000031d8 l .debug_ranges 00000000
000031f0 l .debug_ranges 00000000
00003210 l .debug_ranges 00000000
00003230 l .debug_ranges 00000000
00003248 l .debug_ranges 00000000
000032c0 l .debug_ranges 00000000
000032e0 l .debug_ranges 00000000
000032f8 l .debug_ranges 00000000
00003310 l .debug_ranges 00000000
00003328 l .debug_ranges 00000000
00003340 l .debug_ranges 00000000
00003358 l .debug_ranges 00000000
00003370 l .debug_ranges 00000000
00003388 l .debug_ranges 00000000
000033a0 l .debug_ranges 00000000
000033b8 l .debug_ranges 00000000
000033d0 l .debug_ranges 00000000
000033e8 l .debug_ranges 00000000
00003400 l .debug_ranges 00000000
00003418 l .debug_ranges 00000000
00003430 l .debug_ranges 00000000
00003448 l .debug_ranges 00000000
00003468 l .debug_ranges 00000000
00003488 l .debug_ranges 00000000
000034a0 l .debug_ranges 00000000
000034c0 l .debug_ranges 00000000
000034e0 l .debug_ranges 00000000
000034f8 l .debug_ranges 00000000
00003510 l .debug_ranges 00000000
00003538 l .debug_ranges 00000000
00003550 l .debug_ranges 00000000
00003568 l .debug_ranges 00000000
00003588 l .debug_ranges 00000000
000035a0 l .debug_ranges 00000000
000035c8 l .debug_ranges 00000000
000035e0 l .debug_ranges 00000000
000035f8 l .debug_ranges 00000000
00003618 l .debug_ranges 00000000
00003630 l .debug_ranges 00000000
00003658 l .debug_ranges 00000000
00003670 l .debug_ranges 00000000
00003688 l .debug_ranges 00000000
000036a8 l .debug_ranges 00000000
000036c0 l .debug_ranges 00000000
000036e8 l .debug_ranges 00000000
00003700 l .debug_ranges 00000000
00003718 l .debug_ranges 00000000
00003738 l .debug_ranges 00000000
00003750 l .debug_ranges 00000000
00003778 l .debug_ranges 00000000
00003790 l .debug_ranges 00000000
000037a8 l .debug_ranges 00000000
000037c0 l .debug_ranges 00000000
000037d8 l .debug_ranges 00000000
000037f0 l .debug_ranges 00000000
00003808 l .debug_ranges 00000000
00003830 l .debug_ranges 00000000
00003848 l .debug_ranges 00000000
00003860 l .debug_ranges 00000000
00003878 l .debug_ranges 00000000
00003890 l .debug_ranges 00000000
000038a8 l .debug_ranges 00000000
000038d0 l .debug_ranges 00000000
000038e8 l .debug_ranges 00000000
00003900 l .debug_ranges 00000000
00003928 l .debug_ranges 00000000
00003940 l .debug_ranges 00000000
00008590 l .debug_ranges 00000000
000085a8 l .debug_ranges 00000000
000085c0 l .debug_ranges 00000000
000085d8 l .debug_ranges 00000000
000085f0 l .debug_ranges 00000000
00008608 l .debug_ranges 00000000
00008620 l .debug_ranges 00000000
00008638 l .debug_ranges 00000000
00008650 l .debug_ranges 00000000
00008668 l .debug_ranges 00000000
00008680 l .debug_ranges 00000000
00008698 l .debug_ranges 00000000
000086b0 l .debug_ranges 00000000
000086c8 l .debug_ranges 00000000
000086e0 l .debug_ranges 00000000
000086f8 l .debug_ranges 00000000
00003958 l .debug_ranges 00000000
00003970 l .debug_ranges 00000000
00003988 l .debug_ranges 00000000
000039a0 l .debug_ranges 00000000
000039b8 l .debug_ranges 00000000
000039d0 l .debug_ranges 00000000
000039e8 l .debug_ranges 00000000
00003a00 l .debug_ranges 00000000
00003a18 l .debug_ranges 00000000
00003a30 l .debug_ranges 00000000
00003a48 l .debug_ranges 00000000
00003a60 l .debug_ranges 00000000
00003a78 l .debug_ranges 00000000
00003a90 l .debug_ranges 00000000
00003aa8 l .debug_ranges 00000000
00003ac0 l .debug_ranges 00000000
00003ad8 l .debug_ranges 00000000
00008710 l .debug_ranges 00000000
00008728 l .debug_ranges 00000000
00008740 l .debug_ranges 00000000
00008758 l .debug_ranges 00000000
00008770 l .debug_ranges 00000000
00008788 l .debug_ranges 00000000
000087a0 l .debug_ranges 00000000
000087b8 l .debug_ranges 00000000
000087d0 l .debug_ranges 00000000
000087e8 l .debug_ranges 00000000
00008800 l .debug_ranges 00000000
00008818 l .debug_ranges 00000000
00008830 l .debug_ranges 00000000
00008848 l .debug_ranges 00000000
00008860 l .debug_ranges 00000000
00008878 l .debug_ranges 00000000
00008890 l .debug_ranges 00000000
000088b0 l .debug_ranges 00000000
000088c8 l .debug_ranges 00000000
000088e0 l .debug_ranges 00000000
000088f8 l .debug_ranges 00000000
00008918 l .debug_ranges 00000000
00008930 l .debug_ranges 00000000
00008948 l .debug_ranges 00000000
00008960 l .debug_ranges 00000000
00008980 l .debug_ranges 00000000
00008998 l .debug_ranges 00000000
000089b0 l .debug_ranges 00000000
000089c8 l .debug_ranges 00000000
000089e8 l .debug_ranges 00000000
00008a00 l .debug_ranges 00000000
00008a18 l .debug_ranges 00000000
00008a30 l .debug_ranges 00000000
00008a48 l .debug_ranges 00000000
00008a60 l .debug_ranges 00000000
00008a78 l .debug_ranges 00000000
00008a90 l .debug_ranges 00000000
00008aa8 l .debug_ranges 00000000
00008ac0 l .debug_ranges 00000000
00008ad8 l .debug_ranges 00000000
00008af0 l .debug_ranges 00000000
00008b08 l .debug_ranges 00000000
00008b20 l .debug_ranges 00000000
00008b38 l .debug_ranges 00000000