This repository has been archived by the owner on Mar 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.doctr-files
2238 lines (2238 loc) · 135 KB
/
.doctr-files
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
./_downloads/550b7ae58f41cd63ecb2ee93099a9ca2/TaurusTest.py
./_downloads/d70cd0c667a3cb4d1e4f5422d61d4c7b/parentmodel_issue_demo.py
./_images/designer01.png
./_images/edit01.png
./_images/edit02.png
./_images/edit03.png
./_images/forms-pendingops01.png
./_images/forms01.png
./_images/forms02.png
./_images/forms03.png
./_images/inheritance-003c26647daefd45f4f04c5e20112b70aac60898.png
./_images/inheritance-003c26647daefd45f4f04c5e20112b70aac60898.png.map
./_images/inheritance-00a04b55657f41903f50efd3ac963ca057514ab6.png
./_images/inheritance-00a04b55657f41903f50efd3ac963ca057514ab6.png.map
./_images/inheritance-02a19b3ba1a51d4c4359a88d207900abbc0c6068.png
./_images/inheritance-02a19b3ba1a51d4c4359a88d207900abbc0c6068.png.map
./_images/inheritance-02ea930be30d04415dfaab673730ef1cba963904.png
./_images/inheritance-02ea930be30d04415dfaab673730ef1cba963904.png.map
./_images/inheritance-034f22ee0011ee337c9bf538993b88b51026cced.png
./_images/inheritance-034f22ee0011ee337c9bf538993b88b51026cced.png.map
./_images/inheritance-038fa374c13aeb9085428fd4e21d0f945b097203.png
./_images/inheritance-038fa374c13aeb9085428fd4e21d0f945b097203.png.map
./_images/inheritance-03beffd458da79958099c014fa88577336e2d933.png
./_images/inheritance-03beffd458da79958099c014fa88577336e2d933.png.map
./_images/inheritance-03cb373a2634fcd2eacfbb787ed2be29ca75a645.png
./_images/inheritance-03cb373a2634fcd2eacfbb787ed2be29ca75a645.png.map
./_images/inheritance-048e12bba6a5c8392915bb2faeb18e3a17dcbe2a.png
./_images/inheritance-048e12bba6a5c8392915bb2faeb18e3a17dcbe2a.png.map
./_images/inheritance-0625054d18a0cd57c2707ff9db78c447fe39df1d.png
./_images/inheritance-0625054d18a0cd57c2707ff9db78c447fe39df1d.png.map
./_images/inheritance-06954f72182ee3b8ccb6862bf7469b310c662f29.png
./_images/inheritance-06954f72182ee3b8ccb6862bf7469b310c662f29.png.map
./_images/inheritance-079edeefa71db68999e1d1e88bc9eb183ee3ab56.png
./_images/inheritance-079edeefa71db68999e1d1e88bc9eb183ee3ab56.png.map
./_images/inheritance-0850c7c41a0749eee92df5c42d3409724c06a749.png
./_images/inheritance-0850c7c41a0749eee92df5c42d3409724c06a749.png.map
./_images/inheritance-0854d0ee026e16154269cf25af57e1f447d579e5.png
./_images/inheritance-0854d0ee026e16154269cf25af57e1f447d579e5.png.map
./_images/inheritance-08604ba5af29e70021a8da9a5dcbceacfc695417.png
./_images/inheritance-08604ba5af29e70021a8da9a5dcbceacfc695417.png.map
./_images/inheritance-08662de8469bfa654fdee1d7ad6036e347eefc17.png
./_images/inheritance-08662de8469bfa654fdee1d7ad6036e347eefc17.png.map
./_images/inheritance-08a0fd3ca91d4b25289861695bf3d68af14621cc.png
./_images/inheritance-08a0fd3ca91d4b25289861695bf3d68af14621cc.png.map
./_images/inheritance-095035807f6203fc0ff17b8e3d0ea52ae7b043b8.png
./_images/inheritance-095035807f6203fc0ff17b8e3d0ea52ae7b043b8.png.map
./_images/inheritance-0a1f7020aebe4f1bb467a3e642fdd8883a395eaf.png
./_images/inheritance-0a1f7020aebe4f1bb467a3e642fdd8883a395eaf.png.map
./_images/inheritance-0ae4209bc7d5bbb906b6baf89921a04438b1aa7e.png
./_images/inheritance-0ae4209bc7d5bbb906b6baf89921a04438b1aa7e.png.map
./_images/inheritance-0aef0a69b0672c7033c1ea6801e8df3cf35fe7d0.png
./_images/inheritance-0aef0a69b0672c7033c1ea6801e8df3cf35fe7d0.png.map
./_images/inheritance-0b5e9c89e743233e1e722ad8508159a9ad2bd523.png
./_images/inheritance-0b5e9c89e743233e1e722ad8508159a9ad2bd523.png.map
./_images/inheritance-0d675f52b262dcb1e47acd42ee15ae2972df6e40.png
./_images/inheritance-0d675f52b262dcb1e47acd42ee15ae2972df6e40.png.map
./_images/inheritance-0e6ba0208bfe36839e2b1548295f568beb6fb9a8.png
./_images/inheritance-0e6ba0208bfe36839e2b1548295f568beb6fb9a8.png.map
./_images/inheritance-0eb3ca9343d5795a40a6939a58903e4283502c70.png
./_images/inheritance-0eb3ca9343d5795a40a6939a58903e4283502c70.png.map
./_images/inheritance-0f90b9b2bb56de3546adecc517d46920c0a794b7.png
./_images/inheritance-0f90b9b2bb56de3546adecc517d46920c0a794b7.png.map
./_images/inheritance-0faf4c36830192fc6432c9e36179d4657ac42093.png
./_images/inheritance-0faf4c36830192fc6432c9e36179d4657ac42093.png.map
./_images/inheritance-0ffdaf803a990220b417cdff01582c940d567692.png
./_images/inheritance-0ffdaf803a990220b417cdff01582c940d567692.png.map
./_images/inheritance-10149f89feacf1aa43ac35d264a86aad5f661aff.png
./_images/inheritance-10149f89feacf1aa43ac35d264a86aad5f661aff.png.map
./_images/inheritance-109fa51f7e92cbd5744316b8845e0920bd3100e0.png
./_images/inheritance-109fa51f7e92cbd5744316b8845e0920bd3100e0.png.map
./_images/inheritance-11aa5d1432b162e358dbaf19d1cf1977406685eb.png
./_images/inheritance-11aa5d1432b162e358dbaf19d1cf1977406685eb.png.map
./_images/inheritance-1226c04c54282fe68f06c83138b1700addb6d88f.png
./_images/inheritance-1226c04c54282fe68f06c83138b1700addb6d88f.png.map
./_images/inheritance-132ebb87078e8b2d773dc343b5afe6c3a7d48e29.png
./_images/inheritance-132ebb87078e8b2d773dc343b5afe6c3a7d48e29.png.map
./_images/inheritance-13dd0ee52262a6f066d50001057b1e70d8d25dc8.png
./_images/inheritance-13dd0ee52262a6f066d50001057b1e70d8d25dc8.png.map
./_images/inheritance-1406252611e45d1f6ed9f6c1fa21d2ae20c012f6.png
./_images/inheritance-1406252611e45d1f6ed9f6c1fa21d2ae20c012f6.png.map
./_images/inheritance-14426b7bd8b981f2889eb1308898a583cc413fec.png
./_images/inheritance-14426b7bd8b981f2889eb1308898a583cc413fec.png.map
./_images/inheritance-15a356aad1ce82680d573839af44953460b53a59.png
./_images/inheritance-15a356aad1ce82680d573839af44953460b53a59.png.map
./_images/inheritance-15bb1ee6d92dde0e719e17321733782e7fd00a62.png
./_images/inheritance-15bb1ee6d92dde0e719e17321733782e7fd00a62.png.map
./_images/inheritance-1626d446f237c88523dbde87ac55388993df5871.png
./_images/inheritance-1626d446f237c88523dbde87ac55388993df5871.png.map
./_images/inheritance-1741c7e7423a6982bc7126b015c7e57b94292078.png
./_images/inheritance-1741c7e7423a6982bc7126b015c7e57b94292078.png.map
./_images/inheritance-18d213ee6b6186123a5128e4a88dd6bfc6b06c99.png
./_images/inheritance-18d213ee6b6186123a5128e4a88dd6bfc6b06c99.png.map
./_images/inheritance-1918497041265943cf8f497eef1221f5a6b9b6cf.png
./_images/inheritance-1918497041265943cf8f497eef1221f5a6b9b6cf.png.map
./_images/inheritance-19356ee5d50931458584e36a1331f0e8fbf47c6a.png
./_images/inheritance-19356ee5d50931458584e36a1331f0e8fbf47c6a.png.map
./_images/inheritance-1ade78468adac758770ab8426771a75bcaed2794.png
./_images/inheritance-1ade78468adac758770ab8426771a75bcaed2794.png.map
./_images/inheritance-1b0060632f6628b4e1585a28c74e4eb39ce8837e.png
./_images/inheritance-1b0060632f6628b4e1585a28c74e4eb39ce8837e.png.map
./_images/inheritance-1b9e2118c9bea2596025a178d777f5f1b0e5c256.png
./_images/inheritance-1b9e2118c9bea2596025a178d777f5f1b0e5c256.png.map
./_images/inheritance-1cbd94bacca2b9eb2f4fc57812a40c570e395816.png
./_images/inheritance-1cbd94bacca2b9eb2f4fc57812a40c570e395816.png.map
./_images/inheritance-1d48f89908eef29f13b3619213fef934fabd971c.png
./_images/inheritance-1d48f89908eef29f13b3619213fef934fabd971c.png.map
./_images/inheritance-1e21dc4d2ba9591d17cf8d22e8f186b286a74634.png
./_images/inheritance-1e21dc4d2ba9591d17cf8d22e8f186b286a74634.png.map
./_images/inheritance-1f0850506d2fdd694a1b94e3d43fd1591b2e3bff.png
./_images/inheritance-1f0850506d2fdd694a1b94e3d43fd1591b2e3bff.png.map
./_images/inheritance-1f717e568e89225f592cf326e3773fcfa42c6f51.png
./_images/inheritance-1f717e568e89225f592cf326e3773fcfa42c6f51.png.map
./_images/inheritance-205c29ad9113d5a066626c92d82438f5c5c979c1.png
./_images/inheritance-205c29ad9113d5a066626c92d82438f5c5c979c1.png.map
./_images/inheritance-210f0c9a789cf5faa3de3d714e966f3d223aa844.png
./_images/inheritance-210f0c9a789cf5faa3de3d714e966f3d223aa844.png.map
./_images/inheritance-212fac58060b48b8abf40da148685c927b6d6f91.png
./_images/inheritance-212fac58060b48b8abf40da148685c927b6d6f91.png.map
./_images/inheritance-2182bdb2b0a45a66b694ad199bddf7f1a221f590.png
./_images/inheritance-2182bdb2b0a45a66b694ad199bddf7f1a221f590.png.map
./_images/inheritance-2239424474432b2b0ed0d1ffa54bbed33b3fdb62.png
./_images/inheritance-2239424474432b2b0ed0d1ffa54bbed33b3fdb62.png.map
./_images/inheritance-23201ec3479c4aca73f0f268326119dcdca82d72.png
./_images/inheritance-23201ec3479c4aca73f0f268326119dcdca82d72.png.map
./_images/inheritance-23225daf9c71ec36d03df1e504a8809311503576.png
./_images/inheritance-23225daf9c71ec36d03df1e504a8809311503576.png.map
./_images/inheritance-247b361e83a623d6868f8d26ce3a8bf1072f30ad.png
./_images/inheritance-247b361e83a623d6868f8d26ce3a8bf1072f30ad.png.map
./_images/inheritance-24e5d6db0086f15b008a4d26c1b096a28a6d2a7f.png
./_images/inheritance-24e5d6db0086f15b008a4d26c1b096a28a6d2a7f.png.map
./_images/inheritance-25d833b27f21f13a1ed95cf1e7aa6bd2e1e096db.png
./_images/inheritance-25d833b27f21f13a1ed95cf1e7aa6bd2e1e096db.png.map
./_images/inheritance-26359fc5b390dea652d45eb6fe2615003bfbdbfb.png
./_images/inheritance-26359fc5b390dea652d45eb6fe2615003bfbdbfb.png.map
./_images/inheritance-26488a65ed44c4eefac64b55b87d75ff0b8d18b1.png
./_images/inheritance-26488a65ed44c4eefac64b55b87d75ff0b8d18b1.png.map
./_images/inheritance-27306b4f034281ac9adc8580d6249f77c53c450f.png
./_images/inheritance-27306b4f034281ac9adc8580d6249f77c53c450f.png.map
./_images/inheritance-286cfa64fbcd2bec8e06b9e78facc890aab584ce.png
./_images/inheritance-286cfa64fbcd2bec8e06b9e78facc890aab584ce.png.map
./_images/inheritance-28e6f5b11e621b57fc4251ccf4a67674893e6fd9.png
./_images/inheritance-28e6f5b11e621b57fc4251ccf4a67674893e6fd9.png.map
./_images/inheritance-2a97b9e3d622a84f0b1052a91cf849e5e7bf4969.png
./_images/inheritance-2a97b9e3d622a84f0b1052a91cf849e5e7bf4969.png.map
./_images/inheritance-2b3996e98c8f2ff77987ace073d3b99d6c50744c.png
./_images/inheritance-2b3996e98c8f2ff77987ace073d3b99d6c50744c.png.map
./_images/inheritance-2bd513be18aa6b3124037ba3cb32b8952e46155d.png
./_images/inheritance-2bd513be18aa6b3124037ba3cb32b8952e46155d.png.map
./_images/inheritance-2c02f74afbc228f2946e13c883df859bd362808c.png
./_images/inheritance-2c02f74afbc228f2946e13c883df859bd362808c.png.map
./_images/inheritance-2c6562586bd35cc38b8267b2b23ca399d3061e30.png
./_images/inheritance-2c6562586bd35cc38b8267b2b23ca399d3061e30.png.map
./_images/inheritance-2d10e8546b0cf74ac46552b175969872d3a4fd17.png
./_images/inheritance-2d10e8546b0cf74ac46552b175969872d3a4fd17.png.map
./_images/inheritance-2dff318ce4c697173a15f00a0f6a77c9d261f3d3.png
./_images/inheritance-2dff318ce4c697173a15f00a0f6a77c9d261f3d3.png.map
./_images/inheritance-2eaf7d6fffa267a4e43a142b04107d69f0437d5c.png
./_images/inheritance-2eaf7d6fffa267a4e43a142b04107d69f0437d5c.png.map
./_images/inheritance-2f15f9c4637af93f9d13726d3445fa1ba3705137.png
./_images/inheritance-2f15f9c4637af93f9d13726d3445fa1ba3705137.png.map
./_images/inheritance-30e1807d092cd0d092e128743d89fe417498bcc1.png
./_images/inheritance-30e1807d092cd0d092e128743d89fe417498bcc1.png.map
./_images/inheritance-310035d8477ee80509d95d9d072f5cb0b35f3578.png
./_images/inheritance-310035d8477ee80509d95d9d072f5cb0b35f3578.png.map
./_images/inheritance-31557d6dc8e1fea6b630cebdacf0b1989a8c6d97.png
./_images/inheritance-31557d6dc8e1fea6b630cebdacf0b1989a8c6d97.png.map
./_images/inheritance-3420b809299d74a5d01ac8f53acbb4fc8489d1f7.png
./_images/inheritance-3420b809299d74a5d01ac8f53acbb4fc8489d1f7.png.map
./_images/inheritance-3422100b8f9b9321ac7fceba419161c62dc3b873.png
./_images/inheritance-3422100b8f9b9321ac7fceba419161c62dc3b873.png.map
./_images/inheritance-34b610df40ab19dfd0eb1a01f0649c7338514ec7.png
./_images/inheritance-34b610df40ab19dfd0eb1a01f0649c7338514ec7.png.map
./_images/inheritance-34e2d734363ef0f3c81e4130c5c5478c233b03be.png
./_images/inheritance-34e2d734363ef0f3c81e4130c5c5478c233b03be.png.map
./_images/inheritance-37a9741285c49ef14fe22ec3261d6c3bf45c4ccc.png
./_images/inheritance-37a9741285c49ef14fe22ec3261d6c3bf45c4ccc.png.map
./_images/inheritance-37abbf79474ea947a97c9e782f36cb003f78fdf8.png
./_images/inheritance-37abbf79474ea947a97c9e782f36cb003f78fdf8.png.map
./_images/inheritance-38190237fdebb34f44b8a94a96e54741b0c70ba4.png
./_images/inheritance-38190237fdebb34f44b8a94a96e54741b0c70ba4.png.map
./_images/inheritance-387db90d210e8e6201c15c4c781efc9a767cf1f1.png
./_images/inheritance-387db90d210e8e6201c15c4c781efc9a767cf1f1.png.map
./_images/inheritance-3a147863916c00f7449e8a2de5cd085ccb85872f.png
./_images/inheritance-3a147863916c00f7449e8a2de5cd085ccb85872f.png.map
./_images/inheritance-3b8f4bf52faaa55b7e1e2de069f9cfd3e7386f5d.png
./_images/inheritance-3b8f4bf52faaa55b7e1e2de069f9cfd3e7386f5d.png.map
./_images/inheritance-3c19e35abc9117efeb825634b2345b7511498c49.png
./_images/inheritance-3c19e35abc9117efeb825634b2345b7511498c49.png.map
./_images/inheritance-3dc0d2ece4e62951dd1e6811a621462da90b54ba.png
./_images/inheritance-3dc0d2ece4e62951dd1e6811a621462da90b54ba.png.map
./_images/inheritance-3f152aa982c49f4ff233dd287d6d1a30f16166ad.png
./_images/inheritance-3f152aa982c49f4ff233dd287d6d1a30f16166ad.png.map
./_images/inheritance-3fb503c0c738e8829dc92c8f1777d80a6b666dcc.png
./_images/inheritance-3fb503c0c738e8829dc92c8f1777d80a6b666dcc.png.map
./_images/inheritance-4044290391dae2a7a99ec30901ec5e6b0f6008a2.png
./_images/inheritance-4044290391dae2a7a99ec30901ec5e6b0f6008a2.png.map
./_images/inheritance-405494ba578ce1e0b70475c1be490c9695356643.png
./_images/inheritance-405494ba578ce1e0b70475c1be490c9695356643.png.map
./_images/inheritance-407d873507504af03c69ad023c99f27040d21157.png
./_images/inheritance-407d873507504af03c69ad023c99f27040d21157.png.map
./_images/inheritance-40d60842290cfe1e5aadc9a86305799a0f6798c2.png
./_images/inheritance-40d60842290cfe1e5aadc9a86305799a0f6798c2.png.map
./_images/inheritance-4101dcd521380c1428a0732f3b54693b1b0e93ee.png
./_images/inheritance-4101dcd521380c1428a0732f3b54693b1b0e93ee.png.map
./_images/inheritance-410df447a6225824d0585436547ead709356027c.png
./_images/inheritance-410df447a6225824d0585436547ead709356027c.png.map
./_images/inheritance-4176409ddd9a497037e908ba8efc1fe694512992.png
./_images/inheritance-4176409ddd9a497037e908ba8efc1fe694512992.png.map
./_images/inheritance-419860f7ca28e548edda4bb5d6cdd11825ad56b0.png
./_images/inheritance-419860f7ca28e548edda4bb5d6cdd11825ad56b0.png.map
./_images/inheritance-41acdbadb16dcfd651e6ce6a88b93c68a7348ba8.png
./_images/inheritance-41acdbadb16dcfd651e6ce6a88b93c68a7348ba8.png.map
./_images/inheritance-4247ba7900f371a0261d3e35a61df0b3b6fe1405.png
./_images/inheritance-4247ba7900f371a0261d3e35a61df0b3b6fe1405.png.map
./_images/inheritance-42b385e0b47dd22b07d9fe50b606ffc8af7c40e4.png
./_images/inheritance-42b385e0b47dd22b07d9fe50b606ffc8af7c40e4.png.map
./_images/inheritance-43560043672c13b103fd61aee9d01adb3aee6421.png
./_images/inheritance-43560043672c13b103fd61aee9d01adb3aee6421.png.map
./_images/inheritance-43ae7bac2d4672da6fa36079b49a15cdd7becda6.png
./_images/inheritance-43ae7bac2d4672da6fa36079b49a15cdd7becda6.png.map
./_images/inheritance-44a300a306716f1ca451d86c82b137fc53cf2b8f.png
./_images/inheritance-44a300a306716f1ca451d86c82b137fc53cf2b8f.png.map
./_images/inheritance-4568fb414bb87f0ee4837e8eb6b89a9310638cf7.png
./_images/inheritance-4568fb414bb87f0ee4837e8eb6b89a9310638cf7.png.map
./_images/inheritance-457a645512281c04d720081bbd4f7b4c55a3b164.png
./_images/inheritance-457a645512281c04d720081bbd4f7b4c55a3b164.png.map
./_images/inheritance-4587839b8d94eeaa46a03e2c400906952c739298.png
./_images/inheritance-4587839b8d94eeaa46a03e2c400906952c739298.png.map
./_images/inheritance-45b89bdfba408c292511c4bda9501d70f8d01726.png
./_images/inheritance-45b89bdfba408c292511c4bda9501d70f8d01726.png.map
./_images/inheritance-45e05497ae070c8830ec8ca99b5999ce293ed357.png
./_images/inheritance-45e05497ae070c8830ec8ca99b5999ce293ed357.png.map
./_images/inheritance-46b556bcf89e99c17afa6ba27b4ad89698238cc3.png
./_images/inheritance-46b556bcf89e99c17afa6ba27b4ad89698238cc3.png.map
./_images/inheritance-471f294ce2a1a4bf3d776d1d751ec36940c0b251.png
./_images/inheritance-471f294ce2a1a4bf3d776d1d751ec36940c0b251.png.map
./_images/inheritance-487cb34134eb378991449dfaa30715bd8c32ea80.png
./_images/inheritance-487cb34134eb378991449dfaa30715bd8c32ea80.png.map
./_images/inheritance-4b2d67d681caebbc7d67f24298dfca1b49096b5e.png
./_images/inheritance-4b2d67d681caebbc7d67f24298dfca1b49096b5e.png.map
./_images/inheritance-4c144bcb63eb068c59eb9fc2b25a25001ef139d7.png
./_images/inheritance-4c144bcb63eb068c59eb9fc2b25a25001ef139d7.png.map
./_images/inheritance-4c5d019836ab292f21fa831df9b0f40ca7227b29.png
./_images/inheritance-4c5d019836ab292f21fa831df9b0f40ca7227b29.png.map
./_images/inheritance-4e47fa98934025ddc05c7b92ec1f3c0fc290fb20.png
./_images/inheritance-4e47fa98934025ddc05c7b92ec1f3c0fc290fb20.png.map
./_images/inheritance-4f2f62aa77838f094fc48a6f9154e7f2202ba8f5.png
./_images/inheritance-4f2f62aa77838f094fc48a6f9154e7f2202ba8f5.png.map
./_images/inheritance-503b8f6dc4a5e86cbe80cc53ee185d72acfdf051.png
./_images/inheritance-503b8f6dc4a5e86cbe80cc53ee185d72acfdf051.png.map
./_images/inheritance-504c11d1e1127ca865dbb1e18cb10bf9f161ae5d.png
./_images/inheritance-504c11d1e1127ca865dbb1e18cb10bf9f161ae5d.png.map
./_images/inheritance-50a8258e0c746c9e07340f6c73fb75832ff5d98d.png
./_images/inheritance-50a8258e0c746c9e07340f6c73fb75832ff5d98d.png.map
./_images/inheritance-51785826b357bf84b78e0fb39332b5e28cc5a70a.png
./_images/inheritance-51785826b357bf84b78e0fb39332b5e28cc5a70a.png.map
./_images/inheritance-51b05976e0dddab1d9dbbe420974ff43daa038bf.png
./_images/inheritance-51b05976e0dddab1d9dbbe420974ff43daa038bf.png.map
./_images/inheritance-51d1745d33a35fa09b5b17f5beb102da2412b10f.png
./_images/inheritance-51d1745d33a35fa09b5b17f5beb102da2412b10f.png.map
./_images/inheritance-521b4ae4622eb9dcdbf16d426b423f14147a3d4f.png
./_images/inheritance-521b4ae4622eb9dcdbf16d426b423f14147a3d4f.png.map
./_images/inheritance-52ceea9c3bdb4441f6bc1b2c973caa6462a9813e.png
./_images/inheritance-52ceea9c3bdb4441f6bc1b2c973caa6462a9813e.png.map
./_images/inheritance-53b2d378959109f76408eb514044db3c000ecdd9.png
./_images/inheritance-53b2d378959109f76408eb514044db3c000ecdd9.png.map
./_images/inheritance-53cc4ea8c367645dd04e06ec2641a47de0e8800e.png
./_images/inheritance-53cc4ea8c367645dd04e06ec2641a47de0e8800e.png.map
./_images/inheritance-540a2c8535f90579431215d97a56c58039d68606.png
./_images/inheritance-540a2c8535f90579431215d97a56c58039d68606.png.map
./_images/inheritance-542b509f03ec7e4dba9fd0754a39eb62edcf8849.png
./_images/inheritance-542b509f03ec7e4dba9fd0754a39eb62edcf8849.png.map
./_images/inheritance-555497f39efc52092ba6a07813e4fa9dd539d226.png
./_images/inheritance-555497f39efc52092ba6a07813e4fa9dd539d226.png.map
./_images/inheritance-556c161e6f0a7c2c151fea59a1706ae9cb65630d.png
./_images/inheritance-556c161e6f0a7c2c151fea59a1706ae9cb65630d.png.map
./_images/inheritance-57b457ddbcf6d5e4ff5573f50ca471d6977fc892.png
./_images/inheritance-57b457ddbcf6d5e4ff5573f50ca471d6977fc892.png.map
./_images/inheritance-5b7b76ae0f4981d25c36e1410dd4b44c6f4c2fea.png
./_images/inheritance-5b7b76ae0f4981d25c36e1410dd4b44c6f4c2fea.png.map
./_images/inheritance-5b869d72787106ce0623a97b278a3d54b77821a2.png
./_images/inheritance-5b869d72787106ce0623a97b278a3d54b77821a2.png.map
./_images/inheritance-5bf3f87ea8c4da50acf2338af23b3dffda8d69cb.png
./_images/inheritance-5bf3f87ea8c4da50acf2338af23b3dffda8d69cb.png.map
./_images/inheritance-5c20d3fda52c328b64ce09b898537d02449d1554.png
./_images/inheritance-5c20d3fda52c328b64ce09b898537d02449d1554.png.map
./_images/inheritance-5ca45779ff0d170320a10f651776dfcd89b1fd5a.png
./_images/inheritance-5ca45779ff0d170320a10f651776dfcd89b1fd5a.png.map
./_images/inheritance-5cd43b0a75d4ff55b4ef4cd36f41dc33d8fc9385.png
./_images/inheritance-5cd43b0a75d4ff55b4ef4cd36f41dc33d8fc9385.png.map
./_images/inheritance-5d895017219504ffabfd077c0dd348e577c21e5a.png
./_images/inheritance-5d895017219504ffabfd077c0dd348e577c21e5a.png.map
./_images/inheritance-5da1ef523edbed79b173bcf8b9d03adbe7511e69.png
./_images/inheritance-5da1ef523edbed79b173bcf8b9d03adbe7511e69.png.map
./_images/inheritance-5ea253b376339350cf125d95d04a4f9aa2bbfa71.png
./_images/inheritance-5ea253b376339350cf125d95d04a4f9aa2bbfa71.png.map
./_images/inheritance-5f698127eabe2c9213ce47a178ff9b4dd394d5f9.png
./_images/inheritance-5f698127eabe2c9213ce47a178ff9b4dd394d5f9.png.map
./_images/inheritance-5fa5ac551707064e1562dafa27bf6a8525a81c35.png
./_images/inheritance-5fa5ac551707064e1562dafa27bf6a8525a81c35.png.map
./_images/inheritance-601cb3edb7557a671c98dd705b49127710afaa3b.png
./_images/inheritance-601cb3edb7557a671c98dd705b49127710afaa3b.png.map
./_images/inheritance-6123ca21fd0029a48e0610d130d443cddaab3f47.png
./_images/inheritance-6123ca21fd0029a48e0610d130d443cddaab3f47.png.map
./_images/inheritance-612ace4230866ecc8bb40081f82daa67aca20293.png
./_images/inheritance-612ace4230866ecc8bb40081f82daa67aca20293.png.map
./_images/inheritance-6159b8865e711b9a6ed5d491dd892b3c7780b403.png
./_images/inheritance-6159b8865e711b9a6ed5d491dd892b3c7780b403.png.map
./_images/inheritance-6444168ec01205bbcddfa5fec1fdd0f1bfb12e95.png
./_images/inheritance-6444168ec01205bbcddfa5fec1fdd0f1bfb12e95.png.map
./_images/inheritance-6453ab71bc114245ecc8789b5b940efa2f51051c.png
./_images/inheritance-6453ab71bc114245ecc8789b5b940efa2f51051c.png.map
./_images/inheritance-65866082bfbda1c570639b08b5fb8532c5480726.png
./_images/inheritance-65866082bfbda1c570639b08b5fb8532c5480726.png.map
./_images/inheritance-6586d099071735cee7c6dfd4843391d8c3342986.png
./_images/inheritance-6586d099071735cee7c6dfd4843391d8c3342986.png.map
./_images/inheritance-66e27a1af61ecee9a9883b6bcf75a2b7e25e2372.png
./_images/inheritance-66e27a1af61ecee9a9883b6bcf75a2b7e25e2372.png.map
./_images/inheritance-66f21a6c6a31df66d52bc3314011d87ff3128441.png
./_images/inheritance-66f21a6c6a31df66d52bc3314011d87ff3128441.png.map
./_images/inheritance-672a65a4a967f74df9c35f11bba91a4715f761d0.png
./_images/inheritance-672a65a4a967f74df9c35f11bba91a4715f761d0.png.map
./_images/inheritance-67dabf4aa8c59757f70970674d57a7752dd01600.png
./_images/inheritance-67dabf4aa8c59757f70970674d57a7752dd01600.png.map
./_images/inheritance-68c794738eeb54e340ecf75567885c043155f4ff.png
./_images/inheritance-68c794738eeb54e340ecf75567885c043155f4ff.png.map
./_images/inheritance-6a280ff7bc9f9cee042f323639bbbcc1684dc3ba.png
./_images/inheritance-6a280ff7bc9f9cee042f323639bbbcc1684dc3ba.png.map
./_images/inheritance-6a2d1535c85ab3fcc99dbc53ad0275a435906c7e.png
./_images/inheritance-6a2d1535c85ab3fcc99dbc53ad0275a435906c7e.png.map
./_images/inheritance-6a624d9e0740d8028f54be2052740c06aacaa1b7.png
./_images/inheritance-6a624d9e0740d8028f54be2052740c06aacaa1b7.png.map
./_images/inheritance-6a98ecb7aeecf0811c3d8334759b0ab5bdfb2109.png
./_images/inheritance-6a98ecb7aeecf0811c3d8334759b0ab5bdfb2109.png.map
./_images/inheritance-6b570cdda01533df4b4710031ceb54b2424201e1.png
./_images/inheritance-6b570cdda01533df4b4710031ceb54b2424201e1.png.map
./_images/inheritance-6b67b52a739214ea453613e722d40ce0342715eb.png
./_images/inheritance-6b67b52a739214ea453613e722d40ce0342715eb.png.map
./_images/inheritance-6baacc0e34ed397b8524ab76ba0834b5ec1e61e1.png
./_images/inheritance-6baacc0e34ed397b8524ab76ba0834b5ec1e61e1.png.map
./_images/inheritance-6bba3364738bf92a82f1da08190bda8411960771.png
./_images/inheritance-6bba3364738bf92a82f1da08190bda8411960771.png.map
./_images/inheritance-6c449e46c96e57c18b86aea8d104e9fd7ebe6357.png
./_images/inheritance-6c449e46c96e57c18b86aea8d104e9fd7ebe6357.png.map
./_images/inheritance-6cc982189392a8fccaea8d6fdf5a00a407751d27.png
./_images/inheritance-6cc982189392a8fccaea8d6fdf5a00a407751d27.png.map
./_images/inheritance-6ef9520d3db7e23a9314ac72b3da8288417237f7.png
./_images/inheritance-6ef9520d3db7e23a9314ac72b3da8288417237f7.png.map
./_images/inheritance-70da40f8a144a551172ee7dbd284e4b64e975d53.png
./_images/inheritance-70da40f8a144a551172ee7dbd284e4b64e975d53.png.map
./_images/inheritance-70e999d289d1533146281ce98675e78898b9a8a3.png
./_images/inheritance-70e999d289d1533146281ce98675e78898b9a8a3.png.map
./_images/inheritance-71f120d42b45b77f970a42a79bd7c6c51ed1a416.png
./_images/inheritance-71f120d42b45b77f970a42a79bd7c6c51ed1a416.png.map
./_images/inheritance-7323a5cbf3715485f2e6c45e09818884872974ab.png
./_images/inheritance-7323a5cbf3715485f2e6c45e09818884872974ab.png.map
./_images/inheritance-7499e1e7ea723089b175a68306450b16c17fcd54.png
./_images/inheritance-7499e1e7ea723089b175a68306450b16c17fcd54.png.map
./_images/inheritance-75502da3a8e4e1150693cdcb98d29cf7facc9fce.png
./_images/inheritance-75502da3a8e4e1150693cdcb98d29cf7facc9fce.png.map
./_images/inheritance-7695e2a028833a7686bfb6301c72fa025e35fd16.png
./_images/inheritance-7695e2a028833a7686bfb6301c72fa025e35fd16.png.map
./_images/inheritance-77e8b51651c55f78a3399fd5348ee3333af980dc.png
./_images/inheritance-77e8b51651c55f78a3399fd5348ee3333af980dc.png.map
./_images/inheritance-78fedb55d1596b122820f71cc4ec4421ed963c10.png
./_images/inheritance-78fedb55d1596b122820f71cc4ec4421ed963c10.png.map
./_images/inheritance-79c2d74ed3891712dee48891e69254a9d6d3663b.png
./_images/inheritance-79c2d74ed3891712dee48891e69254a9d6d3663b.png.map
./_images/inheritance-79cbe3f503087e9f66738c9fbd74d68ac094105f.png
./_images/inheritance-79cbe3f503087e9f66738c9fbd74d68ac094105f.png.map
./_images/inheritance-7a76f04a6ea975c00b5ee9b6e35cf8ac37c8addd.png
./_images/inheritance-7a76f04a6ea975c00b5ee9b6e35cf8ac37c8addd.png.map
./_images/inheritance-7b193d2edc4823d7918b0f7ae890c6535e054013.png
./_images/inheritance-7b193d2edc4823d7918b0f7ae890c6535e054013.png.map
./_images/inheritance-7b7f35b40141709f293120492820d6af6e5b0bd8.png
./_images/inheritance-7b7f35b40141709f293120492820d6af6e5b0bd8.png.map
./_images/inheritance-7bb0b3cebb3062f8c09e2716e08416f5468e2afb.png
./_images/inheritance-7bb0b3cebb3062f8c09e2716e08416f5468e2afb.png.map
./_images/inheritance-7c26fae5adcdbd7f8f9fa133ff36ddce176c0fbe.png
./_images/inheritance-7c26fae5adcdbd7f8f9fa133ff36ddce176c0fbe.png.map
./_images/inheritance-7cb6b4ecbbbf71aa8fb4824f7e767c750ef1da0a.png
./_images/inheritance-7cb6b4ecbbbf71aa8fb4824f7e767c750ef1da0a.png.map
./_images/inheritance-7cf08bb099f6bb30452e319176bc9b81f247bfdd.png
./_images/inheritance-7cf08bb099f6bb30452e319176bc9b81f247bfdd.png.map
./_images/inheritance-7d0f082b7293c8bd2b0b5af3f62938a303fcbd66.png
./_images/inheritance-7d0f082b7293c8bd2b0b5af3f62938a303fcbd66.png.map
./_images/inheritance-7d9fd5dff4031542f9dead9481fc0d4314cc9d8b.png
./_images/inheritance-7d9fd5dff4031542f9dead9481fc0d4314cc9d8b.png.map
./_images/inheritance-7db8fa475c7c3a3d4ba298b2c192ea854accf851.png
./_images/inheritance-7db8fa475c7c3a3d4ba298b2c192ea854accf851.png.map
./_images/inheritance-7dbded0e3994fa9b6b852d98aee9b642405af623.png
./_images/inheritance-7dbded0e3994fa9b6b852d98aee9b642405af623.png.map
./_images/inheritance-7dd46b4f1b42f0509bd1b133e75c43523a5468a7.png
./_images/inheritance-7dd46b4f1b42f0509bd1b133e75c43523a5468a7.png.map
./_images/inheritance-7de579b617535bb3b1f692c7a8d38111407f1e27.png
./_images/inheritance-7de579b617535bb3b1f692c7a8d38111407f1e27.png.map
./_images/inheritance-7e2aeb8c8c97a3d27e2d7b99e748f606d8a93e6d.png
./_images/inheritance-7e2aeb8c8c97a3d27e2d7b99e748f606d8a93e6d.png.map
./_images/inheritance-7eb53d9fd1d113cc2c84046df1106a65587e29a2.png
./_images/inheritance-7eb53d9fd1d113cc2c84046df1106a65587e29a2.png.map
./_images/inheritance-802136843d38affb26a4cc95a8bf16e00fe0066a.png
./_images/inheritance-802136843d38affb26a4cc95a8bf16e00fe0066a.png.map
./_images/inheritance-81741fcdb0f521c77dd906ffc917521405dd5810.png
./_images/inheritance-81741fcdb0f521c77dd906ffc917521405dd5810.png.map
./_images/inheritance-8203b0dc47b4f47e907de536849c37c637b6bdde.png
./_images/inheritance-8203b0dc47b4f47e907de536849c37c637b6bdde.png.map
./_images/inheritance-82b25d2befdee0404f3131b6bd84419cdb7654d5.png
./_images/inheritance-82b25d2befdee0404f3131b6bd84419cdb7654d5.png.map
./_images/inheritance-82eb6f19a955db40f6fe247e8694cde813055361.png
./_images/inheritance-82eb6f19a955db40f6fe247e8694cde813055361.png.map
./_images/inheritance-83742d37c081904f3f426da9cbbdf344bcf44ff3.png
./_images/inheritance-83742d37c081904f3f426da9cbbdf344bcf44ff3.png.map
./_images/inheritance-83bfdb18aff07dc9ff333af2dd2834aa8d0e1dfc.png
./_images/inheritance-83bfdb18aff07dc9ff333af2dd2834aa8d0e1dfc.png.map
./_images/inheritance-8417af23ba41c28d0896ebc7129fd18eada2ddab.png
./_images/inheritance-8417af23ba41c28d0896ebc7129fd18eada2ddab.png.map
./_images/inheritance-8538c6e8f544067343ebc5941162df98c055fa94.png
./_images/inheritance-8538c6e8f544067343ebc5941162df98c055fa94.png.map
./_images/inheritance-853f11c2f506d0fe7f1195ec16963f625ed85d0b.png
./_images/inheritance-853f11c2f506d0fe7f1195ec16963f625ed85d0b.png.map
./_images/inheritance-85c8222dbcea7704758700bb0129a49e2f6e168a.png
./_images/inheritance-85c8222dbcea7704758700bb0129a49e2f6e168a.png.map
./_images/inheritance-86009044ac765deee849de51f82da366c31af6e6.png
./_images/inheritance-86009044ac765deee849de51f82da366c31af6e6.png.map
./_images/inheritance-864a2a477f8b39bf074ca660d0e46f5276296045.png
./_images/inheritance-864a2a477f8b39bf074ca660d0e46f5276296045.png.map
./_images/inheritance-86e80692773ffee1d959affe0d8a2e5a1669249f.png
./_images/inheritance-86e80692773ffee1d959affe0d8a2e5a1669249f.png.map
./_images/inheritance-87bc8033c771bd1db41673c1d46179fdd2cc16e7.png
./_images/inheritance-87bc8033c771bd1db41673c1d46179fdd2cc16e7.png.map
./_images/inheritance-87caff5bf65d6e0e4e17a7bf878e749533a6175f.png
./_images/inheritance-87caff5bf65d6e0e4e17a7bf878e749533a6175f.png.map
./_images/inheritance-885542a87c09294edea25f993b5ccbded67b0a8b.png
./_images/inheritance-885542a87c09294edea25f993b5ccbded67b0a8b.png.map
./_images/inheritance-89863ff2dd2529569451d11321748b32a9634673.png
./_images/inheritance-89863ff2dd2529569451d11321748b32a9634673.png.map
./_images/inheritance-89bf5a9232e4410a9671fdc33a4d28eaf74dddf7.png
./_images/inheritance-89bf5a9232e4410a9671fdc33a4d28eaf74dddf7.png.map
./_images/inheritance-89f48754278e99db900ec9178971695d690877d7.png
./_images/inheritance-89f48754278e99db900ec9178971695d690877d7.png.map
./_images/inheritance-8ac02b23871d13c902ecb844503831486d89e9aa.png
./_images/inheritance-8ac02b23871d13c902ecb844503831486d89e9aa.png.map
./_images/inheritance-8bbb79bcc4a6748b994ac547aa0ca842f9db019f.png
./_images/inheritance-8bbb79bcc4a6748b994ac547aa0ca842f9db019f.png.map
./_images/inheritance-8be2e70d6f39dd0c8f72f2ded0ab14183eb858ed.png
./_images/inheritance-8be2e70d6f39dd0c8f72f2ded0ab14183eb858ed.png.map
./_images/inheritance-8c7da7cb01dd5d8d782ff88ad309af8fb1ae7143.png
./_images/inheritance-8c7da7cb01dd5d8d782ff88ad309af8fb1ae7143.png.map
./_images/inheritance-8eb9c9cb84e96e810bc5b6de1da29d6f17a58b83.png
./_images/inheritance-8eb9c9cb84e96e810bc5b6de1da29d6f17a58b83.png.map
./_images/inheritance-8ef7cfb2a14310af175c0befcc8928ab18f3bf1a.png
./_images/inheritance-8ef7cfb2a14310af175c0befcc8928ab18f3bf1a.png.map
./_images/inheritance-8f55e4f5f2c978f90757e850bcb12b891343f108.png
./_images/inheritance-8f55e4f5f2c978f90757e850bcb12b891343f108.png.map
./_images/inheritance-8f60fe2dcaa7597e7055daea1ff110085cb777b9.png
./_images/inheritance-8f60fe2dcaa7597e7055daea1ff110085cb777b9.png.map
./_images/inheritance-8f6ea64c7fa9f10db88afdbdaa6ac97d75332268.png
./_images/inheritance-8f6ea64c7fa9f10db88afdbdaa6ac97d75332268.png.map
./_images/inheritance-9021fcc9c2878b522e509f6c6e16be7c3fed49f3.png
./_images/inheritance-9021fcc9c2878b522e509f6c6e16be7c3fed49f3.png.map
./_images/inheritance-9053a3ef433bdf4446efde9de684999c1b86243b.png
./_images/inheritance-9053a3ef433bdf4446efde9de684999c1b86243b.png.map
./_images/inheritance-908592ad9b5fd77e0b59f37096e9485566ffc802.png
./_images/inheritance-908592ad9b5fd77e0b59f37096e9485566ffc802.png.map
./_images/inheritance-90de6f1d5bcbb4060a3e34a6ae8d7979e4183eba.png
./_images/inheritance-90de6f1d5bcbb4060a3e34a6ae8d7979e4183eba.png.map
./_images/inheritance-918bbb4cccdf34904764269dcf3d8301e6d7d713.png
./_images/inheritance-918bbb4cccdf34904764269dcf3d8301e6d7d713.png.map
./_images/inheritance-93cd1204f2b5cdc89cc99f27d9df2753092a5fae.png
./_images/inheritance-93cd1204f2b5cdc89cc99f27d9df2753092a5fae.png.map
./_images/inheritance-9471ed2daed35d47b49a88fb50315aefa931d364.png
./_images/inheritance-9471ed2daed35d47b49a88fb50315aefa931d364.png.map
./_images/inheritance-947a6e14914c13bc780575abdf20f74e10ba8a6f.png
./_images/inheritance-947a6e14914c13bc780575abdf20f74e10ba8a6f.png.map
./_images/inheritance-9588f598441561f41217c978ebe1495688ec1e54.png
./_images/inheritance-9588f598441561f41217c978ebe1495688ec1e54.png.map
./_images/inheritance-964edf437e0136bb656d3da523126a39aab582f2.png
./_images/inheritance-964edf437e0136bb656d3da523126a39aab582f2.png.map
./_images/inheritance-9689e54a86646187e8cda59bbd95ca0b6b4e6476.png
./_images/inheritance-9689e54a86646187e8cda59bbd95ca0b6b4e6476.png.map
./_images/inheritance-96f75221858261b8445e87457827343519633e9d.png
./_images/inheritance-96f75221858261b8445e87457827343519633e9d.png.map
./_images/inheritance-97eeacf5e1359c40a381f46e3b49bc1abe231064.png
./_images/inheritance-97eeacf5e1359c40a381f46e3b49bc1abe231064.png.map
./_images/inheritance-9abd05d7187c8e2c604029b08440d5ec6050654f.png
./_images/inheritance-9abd05d7187c8e2c604029b08440d5ec6050654f.png.map
./_images/inheritance-9ac57d0d8b66d5f730cad55a3278c19b77c20fe6.png
./_images/inheritance-9ac57d0d8b66d5f730cad55a3278c19b77c20fe6.png.map
./_images/inheritance-9add41ee2b67ebad1cf477136f8a4b63198e52de.png
./_images/inheritance-9add41ee2b67ebad1cf477136f8a4b63198e52de.png.map
./_images/inheritance-9b294ad925b522a1585e796160b7d4339b365fd4.png
./_images/inheritance-9b294ad925b522a1585e796160b7d4339b365fd4.png.map
./_images/inheritance-9b7ccbf541757a928c3147965249b5d4c0eb1c51.png
./_images/inheritance-9b7ccbf541757a928c3147965249b5d4c0eb1c51.png.map
./_images/inheritance-9be25d4d9e2581bdcbefe912996847bbd59c4963.png
./_images/inheritance-9be25d4d9e2581bdcbefe912996847bbd59c4963.png.map
./_images/inheritance-9c44f723dd275feb72db0bf4183b358ca51978e7.png
./_images/inheritance-9c44f723dd275feb72db0bf4183b358ca51978e7.png.map
./_images/inheritance-9c559e4776e68caa83e6099fbfb8465e933ba2d9.png
./_images/inheritance-9c559e4776e68caa83e6099fbfb8465e933ba2d9.png.map
./_images/inheritance-9e5994a1fbb534da8f3c107a4d9ba4b1c6accf18.png
./_images/inheritance-9e5994a1fbb534da8f3c107a4d9ba4b1c6accf18.png.map
./_images/inheritance-a03337debe93e624f380377b961ad3d00e0cade1.png
./_images/inheritance-a03337debe93e624f380377b961ad3d00e0cade1.png.map
./_images/inheritance-a0614d7ef34a483827d93e284adde1abbb56d530.png
./_images/inheritance-a0614d7ef34a483827d93e284adde1abbb56d530.png.map
./_images/inheritance-a0dc4847e409def023c48f106af0d29806588f84.png
./_images/inheritance-a0dc4847e409def023c48f106af0d29806588f84.png.map
./_images/inheritance-a24955a84ae0a81f2d4a192c3dd8d4f70c0e13c9.png
./_images/inheritance-a24955a84ae0a81f2d4a192c3dd8d4f70c0e13c9.png.map
./_images/inheritance-a26e3d6b5a60acc6e53d6a7a5fe51956f65e37e3.png
./_images/inheritance-a26e3d6b5a60acc6e53d6a7a5fe51956f65e37e3.png.map
./_images/inheritance-a346d1a8b05c37f8a56cb22fa3f4630675b1743f.png
./_images/inheritance-a346d1a8b05c37f8a56cb22fa3f4630675b1743f.png.map
./_images/inheritance-a3473434cace8c5dba2c361b5751eebc54796896.png
./_images/inheritance-a3473434cace8c5dba2c361b5751eebc54796896.png.map
./_images/inheritance-a366270d8844c63f79ee8cf68ca8220887d5af00.png
./_images/inheritance-a366270d8844c63f79ee8cf68ca8220887d5af00.png.map
./_images/inheritance-a38ca306f1695685d928e59bb40c6252e65b999c.png
./_images/inheritance-a38ca306f1695685d928e59bb40c6252e65b999c.png.map
./_images/inheritance-a532668f389b35820768bb91028e1401201c0790.png
./_images/inheritance-a532668f389b35820768bb91028e1401201c0790.png.map
./_images/inheritance-a6f6dff5bcff95996aa3ca5f87ab80fbdf61a323.png
./_images/inheritance-a6f6dff5bcff95996aa3ca5f87ab80fbdf61a323.png.map
./_images/inheritance-a7cef9f0af1bbcdec66054888563a51f49169a26.png
./_images/inheritance-a7cef9f0af1bbcdec66054888563a51f49169a26.png.map
./_images/inheritance-a7db16b77bc2d05fb1076d3fd7bb32523a31eaea.png
./_images/inheritance-a7db16b77bc2d05fb1076d3fd7bb32523a31eaea.png.map
./_images/inheritance-a9270a185f09d5333559dd8dc4e16befeaaa308a.png
./_images/inheritance-a9270a185f09d5333559dd8dc4e16befeaaa308a.png.map
./_images/inheritance-aa82dd4c7dde95fa3acc20ceb88735ebe4cff83a.png
./_images/inheritance-aa82dd4c7dde95fa3acc20ceb88735ebe4cff83a.png.map
./_images/inheritance-ac819d487f9fcb0c77d03b61432ab12dbeac12c2.png
./_images/inheritance-ac819d487f9fcb0c77d03b61432ab12dbeac12c2.png.map
./_images/inheritance-ad32ecec5590ffd9f68fdb86cf2ea24dc68ac7db.png
./_images/inheritance-ad32ecec5590ffd9f68fdb86cf2ea24dc68ac7db.png.map
./_images/inheritance-ae4eb9c3a9360dcac26fc01d2cb0bb74245b8095.png
./_images/inheritance-ae4eb9c3a9360dcac26fc01d2cb0bb74245b8095.png.map
./_images/inheritance-af707a85579a077bfbc60458078bccbcfbb06289.png
./_images/inheritance-af707a85579a077bfbc60458078bccbcfbb06289.png.map
./_images/inheritance-af9f91d19975bce98b66688ab0d5e24d9d070b76.png
./_images/inheritance-af9f91d19975bce98b66688ab0d5e24d9d070b76.png.map
./_images/inheritance-afe112a92c3883e2ca7f233b337e7d70246a02c5.png
./_images/inheritance-afe112a92c3883e2ca7f233b337e7d70246a02c5.png.map
./_images/inheritance-b2304a94895bd6d0d6abab44dd4232adc2b781be.png
./_images/inheritance-b2304a94895bd6d0d6abab44dd4232adc2b781be.png.map
./_images/inheritance-b23bb73c33dcdd1759d656430d8ffd795510ce4d.png
./_images/inheritance-b23bb73c33dcdd1759d656430d8ffd795510ce4d.png.map
./_images/inheritance-b3023c2ba020bf98e0e26af60d8c7c68f729f87e.png
./_images/inheritance-b3023c2ba020bf98e0e26af60d8c7c68f729f87e.png.map
./_images/inheritance-b40c4e5fb6522e8b4b8a5bcebaa97a3b20a584d9.png
./_images/inheritance-b40c4e5fb6522e8b4b8a5bcebaa97a3b20a584d9.png.map
./_images/inheritance-b42db3881ddcb552bad2a889fcf6235478685779.png
./_images/inheritance-b42db3881ddcb552bad2a889fcf6235478685779.png.map
./_images/inheritance-b5995784e1d77b7dd15218ffc14814aa7b137964.png
./_images/inheritance-b5995784e1d77b7dd15218ffc14814aa7b137964.png.map
./_images/inheritance-b5d794863cddf64b56181fcd5966cdfd7c49b7b4.png
./_images/inheritance-b5d794863cddf64b56181fcd5966cdfd7c49b7b4.png.map
./_images/inheritance-b63a236d30fbbffbae0632be04232547dfa3348c.png
./_images/inheritance-b63a236d30fbbffbae0632be04232547dfa3348c.png.map
./_images/inheritance-b6b9209fdf12f6002a3886371dd89ab7345c37fc.png
./_images/inheritance-b6b9209fdf12f6002a3886371dd89ab7345c37fc.png.map
./_images/inheritance-b7618c1da67e9939d1d640c331a1b3df7d400f43.png
./_images/inheritance-b7618c1da67e9939d1d640c331a1b3df7d400f43.png.map
./_images/inheritance-b861a107fd7a3a2fe1ba94754f90cd2a3ebeb9fb.png
./_images/inheritance-b861a107fd7a3a2fe1ba94754f90cd2a3ebeb9fb.png.map
./_images/inheritance-b8a7185759ef64bc2e8262757b728d16a4a023d6.png
./_images/inheritance-b8a7185759ef64bc2e8262757b728d16a4a023d6.png.map
./_images/inheritance-b91845e6627fbfc2f61fe104511074650217019a.png
./_images/inheritance-b91845e6627fbfc2f61fe104511074650217019a.png.map
./_images/inheritance-b94abce01096ce5c175d730f6a1c329d27fff451.png
./_images/inheritance-b94abce01096ce5c175d730f6a1c329d27fff451.png.map
./_images/inheritance-b98fade38dc9f6feeb62a98e4ffa56330618c09e.png
./_images/inheritance-b98fade38dc9f6feeb62a98e4ffa56330618c09e.png.map
./_images/inheritance-bad2e6ad82c0c7d06d12476b34017fbc01208704.png
./_images/inheritance-bad2e6ad82c0c7d06d12476b34017fbc01208704.png.map
./_images/inheritance-bafaeff438abc456c2622315c86f9fe071d786f9.png
./_images/inheritance-bafaeff438abc456c2622315c86f9fe071d786f9.png.map
./_images/inheritance-bbea3fc1b7b13fd1bac12991542418b07636e156.png
./_images/inheritance-bbea3fc1b7b13fd1bac12991542418b07636e156.png.map
./_images/inheritance-bca5ddddffbd39c4e7865ceffd7820a3c3308fbf.png
./_images/inheritance-bca5ddddffbd39c4e7865ceffd7820a3c3308fbf.png.map
./_images/inheritance-bd2edf80d994b250d21c3faa376ab3c6e5d3179d.png
./_images/inheritance-bd2edf80d994b250d21c3faa376ab3c6e5d3179d.png.map
./_images/inheritance-be3bfbcffac754c7d3e87c47fe13426a7b6170d9.png
./_images/inheritance-be3bfbcffac754c7d3e87c47fe13426a7b6170d9.png.map
./_images/inheritance-bee6425ba94c7a953d789dc313b1f0b219c7c6eb.png
./_images/inheritance-bee6425ba94c7a953d789dc313b1f0b219c7c6eb.png.map
./_images/inheritance-bf4ba9dc2703461769b1fdf840833ca11a529707.png
./_images/inheritance-bf4ba9dc2703461769b1fdf840833ca11a529707.png.map
./_images/inheritance-c0621a19d875a95a052d152ca67441c219cf01b3.png
./_images/inheritance-c0621a19d875a95a052d152ca67441c219cf01b3.png.map
./_images/inheritance-c19d1eb98fb2377d17c3aff0a379595227b7cab6.png
./_images/inheritance-c19d1eb98fb2377d17c3aff0a379595227b7cab6.png.map
./_images/inheritance-c2c4bd5653aa05a5523c97ea046a86e3cfe20fdb.png
./_images/inheritance-c2c4bd5653aa05a5523c97ea046a86e3cfe20fdb.png.map
./_images/inheritance-c4c5411cd21522bf4dae3855f21beec8e5920bdc.png
./_images/inheritance-c4c5411cd21522bf4dae3855f21beec8e5920bdc.png.map
./_images/inheritance-c548252d8f1b6be2dd34f5d22e635c5f982f3b24.png
./_images/inheritance-c548252d8f1b6be2dd34f5d22e635c5f982f3b24.png.map
./_images/inheritance-c5703414a86e416ae407b36a68eaba12497fcf59.png
./_images/inheritance-c5703414a86e416ae407b36a68eaba12497fcf59.png.map
./_images/inheritance-c6af1b923a39d089a870d9871897f9debce0a568.png
./_images/inheritance-c6af1b923a39d089a870d9871897f9debce0a568.png.map
./_images/inheritance-c6c845bb4947b7a0807e59c34c86545b447227f5.png
./_images/inheritance-c6c845bb4947b7a0807e59c34c86545b447227f5.png.map
./_images/inheritance-c6fe55e5ff2555094a3b3d82ade01c41cdb89000.png
./_images/inheritance-c6fe55e5ff2555094a3b3d82ade01c41cdb89000.png.map
./_images/inheritance-c7c625dad71d0030b28a9659b2c604153a5d7dd8.png
./_images/inheritance-c7c625dad71d0030b28a9659b2c604153a5d7dd8.png.map
./_images/inheritance-c8459af8b2d3f39071a47cadf79d0711a6701b6d.png
./_images/inheritance-c8459af8b2d3f39071a47cadf79d0711a6701b6d.png.map
./_images/inheritance-c938cc99d819f739e73a57f2d8759e938ef038af.png
./_images/inheritance-c938cc99d819f739e73a57f2d8759e938ef038af.png.map
./_images/inheritance-ca3cf61f5b16dbbb7ab0e74ed9691aff481b6495.png
./_images/inheritance-ca3cf61f5b16dbbb7ab0e74ed9691aff481b6495.png.map
./_images/inheritance-ca7b370058be80acf1eec728b34e59448cf07f3c.png
./_images/inheritance-ca7b370058be80acf1eec728b34e59448cf07f3c.png.map
./_images/inheritance-cadd838cd9df174651c81c896a2b6f474a430b68.png
./_images/inheritance-cadd838cd9df174651c81c896a2b6f474a430b68.png.map
./_images/inheritance-caeb0e90e213671e6210dc558bb45dc6233ec9f5.png
./_images/inheritance-caeb0e90e213671e6210dc558bb45dc6233ec9f5.png.map
./_images/inheritance-cc4ffe5c485229664df0fb66acc493f668eaf9f1.png
./_images/inheritance-cc4ffe5c485229664df0fb66acc493f668eaf9f1.png.map
./_images/inheritance-ccd68928b4c282a68fbc5ce66639eb4a949bcafd.png
./_images/inheritance-ccd68928b4c282a68fbc5ce66639eb4a949bcafd.png.map
./_images/inheritance-ce0e8b90dfa2473630aa540916a671a444246caf.png
./_images/inheritance-ce0e8b90dfa2473630aa540916a671a444246caf.png.map
./_images/inheritance-cf68a4280e5ab8a584e138e734b5fbc08f7dae63.png
./_images/inheritance-cf68a4280e5ab8a584e138e734b5fbc08f7dae63.png.map
./_images/inheritance-cf6a115fe9c94ad36f5250975cb51008e305fe1b.png
./_images/inheritance-cf6a115fe9c94ad36f5250975cb51008e305fe1b.png.map
./_images/inheritance-d018c6a917e9de7035bf068f4e518133fbf44eda.png
./_images/inheritance-d018c6a917e9de7035bf068f4e518133fbf44eda.png.map
./_images/inheritance-d06dd5ff6441a03efd4ea5f41828e5a55b6bdbb7.png
./_images/inheritance-d06dd5ff6441a03efd4ea5f41828e5a55b6bdbb7.png.map
./_images/inheritance-d0a4e37a02874fe893e4f2500dd130c7bdf645dd.png
./_images/inheritance-d0a4e37a02874fe893e4f2500dd130c7bdf645dd.png.map
./_images/inheritance-d0d48b8f7ce13869d35a63356a7072d6cbedaa5e.png
./_images/inheritance-d0d48b8f7ce13869d35a63356a7072d6cbedaa5e.png.map
./_images/inheritance-d14ef33113e116fc791ccf7a3940e0cf2b6f043b.png
./_images/inheritance-d14ef33113e116fc791ccf7a3940e0cf2b6f043b.png.map
./_images/inheritance-d16e0ae87b66f4de9162217271d89a2a1f4ede92.png
./_images/inheritance-d16e0ae87b66f4de9162217271d89a2a1f4ede92.png.map
./_images/inheritance-d2e6c114b384570edaa73aeeaad579d7c911f352.png
./_images/inheritance-d2e6c114b384570edaa73aeeaad579d7c911f352.png.map
./_images/inheritance-d35063900d9348dc8e7740a2a8106f9d10c2cc0b.png
./_images/inheritance-d35063900d9348dc8e7740a2a8106f9d10c2cc0b.png.map
./_images/inheritance-d38c6a69cc8f0c40234fa890a75bc554c9cba49b.png
./_images/inheritance-d38c6a69cc8f0c40234fa890a75bc554c9cba49b.png.map
./_images/inheritance-d401dd1c13d52be361819ba3e4b725dac3d01afb.png
./_images/inheritance-d401dd1c13d52be361819ba3e4b725dac3d01afb.png.map
./_images/inheritance-d4140a1dea5a901a30634cc251f5907d24f1fdc1.png
./_images/inheritance-d4140a1dea5a901a30634cc251f5907d24f1fdc1.png.map
./_images/inheritance-d421f5e043d6a5928f9503ac1c9a0ab1ded36c74.png
./_images/inheritance-d421f5e043d6a5928f9503ac1c9a0ab1ded36c74.png.map
./_images/inheritance-d43a484a1343da6ed0377d9294ddd0e52d8058f4.png
./_images/inheritance-d43a484a1343da6ed0377d9294ddd0e52d8058f4.png.map
./_images/inheritance-d5d37636c4226695bf7a26a7eb460f5d971f38bd.png
./_images/inheritance-d5d37636c4226695bf7a26a7eb460f5d971f38bd.png.map
./_images/inheritance-d81828763dbb208cbf92d1b02a7ce6c33c2fde57.png
./_images/inheritance-d81828763dbb208cbf92d1b02a7ce6c33c2fde57.png.map
./_images/inheritance-d84d5b8c0725b34411790d94c6bcf6d2efb4ac13.png
./_images/inheritance-d84d5b8c0725b34411790d94c6bcf6d2efb4ac13.png.map
./_images/inheritance-d94e29a69c95671286e66e65bed7e200e3013d33.png
./_images/inheritance-d94e29a69c95671286e66e65bed7e200e3013d33.png.map
./_images/inheritance-d9d6e339bd47235f32c3d5f61918d5771c96ca7b.png
./_images/inheritance-d9d6e339bd47235f32c3d5f61918d5771c96ca7b.png.map
./_images/inheritance-daa6db09f258889b447086a3555e8afba767da7d.png
./_images/inheritance-daa6db09f258889b447086a3555e8afba767da7d.png.map
./_images/inheritance-db32f9c8aca765bc20976481ca0b4027ccc15c8e.png
./_images/inheritance-db32f9c8aca765bc20976481ca0b4027ccc15c8e.png.map
./_images/inheritance-dc5c19255075225fbfa264272eb1478a785f8c03.png
./_images/inheritance-dc5c19255075225fbfa264272eb1478a785f8c03.png.map
./_images/inheritance-dc8183f26827e3a535e9e943c84673ccc65568f5.png
./_images/inheritance-dc8183f26827e3a535e9e943c84673ccc65568f5.png.map
./_images/inheritance-dd5719902e5a5e4ffa5b2493caefb6cb0ae7e89e.png
./_images/inheritance-dd5719902e5a5e4ffa5b2493caefb6cb0ae7e89e.png.map
./_images/inheritance-dd967299f7034e7d020b07a573adf3ceb5f71f81.png
./_images/inheritance-dd967299f7034e7d020b07a573adf3ceb5f71f81.png.map
./_images/inheritance-de4abcb83f469ea40a1551732b332377e8706648.png
./_images/inheritance-de4abcb83f469ea40a1551732b332377e8706648.png.map
./_images/inheritance-df4e5f8f95f21f24b6887e4c5f87796f26f19682.png
./_images/inheritance-df4e5f8f95f21f24b6887e4c5f87796f26f19682.png.map
./_images/inheritance-dfc9c966792ddd7fbe84fb52872d36dbb4f3aa48.png
./_images/inheritance-dfc9c966792ddd7fbe84fb52872d36dbb4f3aa48.png.map
./_images/inheritance-e29b40ba971725992fe0aef3d79a68941df1aa55.png
./_images/inheritance-e29b40ba971725992fe0aef3d79a68941df1aa55.png.map
./_images/inheritance-e2f4a09b025d786527cd82aa822cf23d63ea4ab9.png
./_images/inheritance-e2f4a09b025d786527cd82aa822cf23d63ea4ab9.png.map
./_images/inheritance-e3a385f734f3c4a808eacf3814f06bb4e91f0593.png
./_images/inheritance-e3a385f734f3c4a808eacf3814f06bb4e91f0593.png.map
./_images/inheritance-e3f75ea7758f39947e7e01313331e0fc231851a5.png
./_images/inheritance-e3f75ea7758f39947e7e01313331e0fc231851a5.png.map
./_images/inheritance-e419b73afe2591b0473aa6744bc3eedccb129317.png
./_images/inheritance-e419b73afe2591b0473aa6744bc3eedccb129317.png.map
./_images/inheritance-e4ab05f721952cef86a670c1e4828ba56d87fd52.png
./_images/inheritance-e4ab05f721952cef86a670c1e4828ba56d87fd52.png.map
./_images/inheritance-e4e8005fe12014484191bcaa1923ac4e79105d2b.png
./_images/inheritance-e4e8005fe12014484191bcaa1923ac4e79105d2b.png.map
./_images/inheritance-e522e94f382b1975483ae587aebbb5459ebce186.png
./_images/inheritance-e522e94f382b1975483ae587aebbb5459ebce186.png.map
./_images/inheritance-e559e6c4b3d071ffd16a9d6c3d47e9bdd3756fc3.png
./_images/inheritance-e559e6c4b3d071ffd16a9d6c3d47e9bdd3756fc3.png.map
./_images/inheritance-e56fcb86bf673791f26e2a01448c6a277f42004d.png
./_images/inheritance-e56fcb86bf673791f26e2a01448c6a277f42004d.png.map
./_images/inheritance-e6157b847d1cbdc5c9b2d403b3fbb16da3c484c8.png
./_images/inheritance-e6157b847d1cbdc5c9b2d403b3fbb16da3c484c8.png.map
./_images/inheritance-e658fe5f65937e09dce87c9fc06390de52fedc45.png
./_images/inheritance-e658fe5f65937e09dce87c9fc06390de52fedc45.png.map
./_images/inheritance-e698688875e3caed89d0734bd9a5dbd3461bbf7a.png
./_images/inheritance-e698688875e3caed89d0734bd9a5dbd3461bbf7a.png.map
./_images/inheritance-e70974cc4b640d71e00e8468b8ce1bdc65ba7de3.png
./_images/inheritance-e70974cc4b640d71e00e8468b8ce1bdc65ba7de3.png.map
./_images/inheritance-e8762fe0dade5962f9d0bda7dd80893c811ff49e.png
./_images/inheritance-e8762fe0dade5962f9d0bda7dd80893c811ff49e.png.map
./_images/inheritance-e899a81ca91df168850769bc6bb35a34db69f400.png
./_images/inheritance-e899a81ca91df168850769bc6bb35a34db69f400.png.map
./_images/inheritance-e94d6938cb10f199b88c98bfa14ef46693d52e4c.png
./_images/inheritance-e94d6938cb10f199b88c98bfa14ef46693d52e4c.png.map
./_images/inheritance-e9ce71c16f8568a5f8742d4d91dba22e0b044d3c.png
./_images/inheritance-e9ce71c16f8568a5f8742d4d91dba22e0b044d3c.png.map
./_images/inheritance-ea4528cac3c2f43f49d67577d41f3c133e652f46.png
./_images/inheritance-ea4528cac3c2f43f49d67577d41f3c133e652f46.png.map
./_images/inheritance-ea714b7cb1bb8d62a37e83d48f765cb1e21cd32a.png
./_images/inheritance-ea714b7cb1bb8d62a37e83d48f765cb1e21cd32a.png.map
./_images/inheritance-eb2972b32e360a24a1c281d2fb8832e6ab29169c.png
./_images/inheritance-eb2972b32e360a24a1c281d2fb8832e6ab29169c.png.map
./_images/inheritance-eb5756b20d703e89ef661ec20adf61f287cf1e56.png
./_images/inheritance-eb5756b20d703e89ef661ec20adf61f287cf1e56.png.map
./_images/inheritance-ecfeef2011131ba12007c108aecfdaf8fa595c48.png
./_images/inheritance-ecfeef2011131ba12007c108aecfdaf8fa595c48.png.map
./_images/inheritance-eeb12189a1907d0d4e5404d1120105d4be7a6ab4.png
./_images/inheritance-eeb12189a1907d0d4e5404d1120105d4be7a6ab4.png.map
./_images/inheritance-ef47e3e7651ca3077b432569cced78acc299b956.png
./_images/inheritance-ef47e3e7651ca3077b432569cced78acc299b956.png.map
./_images/inheritance-ef8fa42006147ab27a07c9bbf1c32df86afa89f2.png
./_images/inheritance-ef8fa42006147ab27a07c9bbf1c32df86afa89f2.png.map
./_images/inheritance-efa47ca9a0aa286ac5e465eb413bd210338e709c.png
./_images/inheritance-efa47ca9a0aa286ac5e465eb413bd210338e709c.png.map
./_images/inheritance-f031423639189e88bf19f4f3f7be20551afbdcdd.png
./_images/inheritance-f031423639189e88bf19f4f3f7be20551afbdcdd.png.map
./_images/inheritance-f14c1ccba1771690c39004e1c460b9cb35306df6.png
./_images/inheritance-f14c1ccba1771690c39004e1c460b9cb35306df6.png.map
./_images/inheritance-f34a45c80040a1705b8e2a94f1f0df4d0524ad3e.png
./_images/inheritance-f34a45c80040a1705b8e2a94f1f0df4d0524ad3e.png.map
./_images/inheritance-f38efa64c7666d87beeee0a50d66535e47e80987.png
./_images/inheritance-f38efa64c7666d87beeee0a50d66535e47e80987.png.map
./_images/inheritance-f399d66ef1684b90bd4124a228830fcb6a5fdc7f.png
./_images/inheritance-f399d66ef1684b90bd4124a228830fcb6a5fdc7f.png.map
./_images/inheritance-f49c2b6f4091dd9373b97471b05b2a6032b8501c.png
./_images/inheritance-f49c2b6f4091dd9373b97471b05b2a6032b8501c.png.map
./_images/inheritance-f582cee9a39bd173dc4e786815deeed8041014ab.png
./_images/inheritance-f582cee9a39bd173dc4e786815deeed8041014ab.png.map
./_images/inheritance-f68b9d55cf686f3d8a74f18581a06e4c4cbc94e3.png
./_images/inheritance-f68b9d55cf686f3d8a74f18581a06e4c4cbc94e3.png.map
./_images/inheritance-f6e535960dfeefb21ada4d909ddbe9766080e9da.png
./_images/inheritance-f6e535960dfeefb21ada4d909ddbe9766080e9da.png.map
./_images/inheritance-f73ac345f2db8bc681120e944d99648dec2bda4b.png
./_images/inheritance-f73ac345f2db8bc681120e944d99648dec2bda4b.png.map
./_images/inheritance-f754d0f8410ad85684dca6ea94eb46c083c3be58.png
./_images/inheritance-f754d0f8410ad85684dca6ea94eb46c083c3be58.png.map
./_images/inheritance-f8291057661402c48eb3125cb579cccf6e45eb74.png
./_images/inheritance-f8291057661402c48eb3125cb579cccf6e45eb74.png.map
./_images/inheritance-f846f5b65882e97ba40cf71bc5c6c906c8785f77.png
./_images/inheritance-f846f5b65882e97ba40cf71bc5c6c906c8785f77.png.map
./_images/inheritance-f876a6827f1ba4c08e92b9d16a499e0bcc33a81f.png
./_images/inheritance-f876a6827f1ba4c08e92b9d16a499e0bcc33a81f.png.map
./_images/inheritance-f913494ba990893536d81d6ce28411932af22959.png
./_images/inheritance-f913494ba990893536d81d6ce28411932af22959.png.map
./_images/inheritance-f95482e7bb7d486fc9d3b77e74777dd0704b1dd3.png
./_images/inheritance-f95482e7bb7d486fc9d3b77e74777dd0704b1dd3.png.map
./_images/inheritance-fb6bedc7ca7f6d9d3d948c2a907a08af86cbac40.png
./_images/inheritance-fb6bedc7ca7f6d9d3d948c2a907a08af86cbac40.png.map
./_images/inheritance-fc320b311e3e378a0635f84ddbc7fe778959f16a.png
./_images/inheritance-fc320b311e3e378a0635f84ddbc7fe778959f16a.png.map
./_images/inheritance-fc9a742c7ba6293c18df01999d8eebff0d0d7b0d.png
./_images/inheritance-fc9a742c7ba6293c18df01999d8eebff0d0d7b0d.png.map
./_images/inheritance-fda79c57a5898910dd4b53605f89138bf48e3909.png
./_images/inheritance-fda79c57a5898910dd4b53605f89138bf48e3909.png.map
./_images/inheritance-fdf9b333b41a93ea618e2622f8ecff7c6f6f6b08.png
./_images/inheritance-fdf9b333b41a93ea618e2622f8ecff7c6f6f6b08.png.map
./_images/inheritance-feb652e5b6dd3f9b44919fd5e94a64b0c752a8c9.png
./_images/inheritance-feb652e5b6dd3f9b44919fd5e94a64b0c752a8c9.png.map
./_images/inheritance-ff0ad8d741a58ccbf2cc81108320347dfbe9903b.png
./_images/inheritance-ff0ad8d741a58ccbf2cc81108320347dfbe9903b.png.map
./_images/inheritance-ffdd6cdbd97dd24da02f75dd7802389572239a07.png
./_images/inheritance-ffdd6cdbd97dd24da02f75dd7802389572239a07.png.map
./_images/label01.png
./_images/label02.png
./_images/label03.png
./_images/macrogui01.png
./_images/perspectives-toolbar01.png
./_images/synoptic01.png
./_images/taurus_showcase01.png
./_images/taurusarrayeditor01.png
./_images/taurusconfigbrowser.png
./_images/taurusdemo.png
./_images/taurusform_example01.png
./_images/taurusgui-extapp.png
./_images/taurusgui-newgui01.png
./_images/taurusgui-newpanel01.png
./_images/taurusgui-permanentpanels01.png
./_images/taurusgui01.png
./_images/taurusiconcatalog-01.png
./_images/taurusiconcatalog-details01.png
./_images/taurusimage01.png
./_images/taurusmodelchooser01.png
./_images/taurusplot-config01.png
./_images/taurusplot-context01.png
./_images/taurusplot-datainfo01.png
./_images/taurusplot-datainfo02.png
./_images/taurusplot-datainfo03.png
./_images/taurusplot-exportascii01.png
./_images/taurusplot-inputdata02.png
./_images/taurusplot-timesupport01.png
./_images/taurusplot-timesupport02.png
./_images/taurusplot01.png
./_images/taurusplot02.png
./_images/taurusplot03.png
./_images/taurusplot04.png
./_images/taurustrend-fixedRange01.png
./_images/taurustrend01.png
./_images/taurustrend02.png
./_images/taurustrend03.png
./_images/taurustrend2d.png
./_images/taurusvalue01.png
./_images/whatsthiscursor.png
./_modules/index.html
./_modules/taurus.html
./_modules/taurus/cli/alt.html
./_modules/taurus/cli/cli.html
./_modules/taurus/console/list.html
./_modules/taurus/console/table.html
./_modules/taurus/core/epics/epicsfactory.html
./_modules/taurus/core/epics/epicsvalidator.html
./_modules/taurus/core/evaluation/evalattribute.html
./_modules/taurus/core/evaluation/evalauthority.html
./_modules/taurus/core/evaluation/evaldevice.html
./_modules/taurus/core/evaluation/evalfactory.html
./_modules/taurus/core/resource/resfactory.html
./_modules/taurus/core/resource/resvalidator.html
./_modules/taurus/core/tango/enums.html
./_modules/taurus/core/tango/img.html
./_modules/taurus/core/tango/img/img.html
./_modules/taurus/core/tango/starter.html
./_modules/taurus/core/tango/tangoattribute.html
./_modules/taurus/core/tango/tangoconfiguration.html
./_modules/taurus/core/tango/tangodatabase.html
./_modules/taurus/core/tango/tangodevice.html
./_modules/taurus/core/tango/tangofactory.html
./_modules/taurus/core/tango/tangovalidator.html
./_modules/taurus/core/tango/util/formatter.html
./_modules/taurus/core/taurusattribute.html
./_modules/taurus/core/taurusauthority.html
./_modules/taurus/core/taurusbasetypes.html
./_modules/taurus/core/taurusconfiguration.html
./_modules/taurus/core/taurusdevice.html
./_modules/taurus/core/taurusexception.html
./_modules/taurus/core/taurusfactory.html
./_modules/taurus/core/tauruslistener.html
./_modules/taurus/core/taurusmanager.html
./_modules/taurus/core/taurusmodel.html
./_modules/taurus/core/taurusoperation.html
./_modules/taurus/core/tauruspollingtimer.html
./_modules/taurus/core/taurusvalidator.html
./_modules/taurus/core/util/argparse/taurusargparse.html
./_modules/taurus/core/util/codecs.html
./_modules/taurus/core/util/colors.html
./_modules/taurus/core/util/console.html
./_modules/taurus/core/util/containers.html
./_modules/taurus/core/util/decorator/decorator.html
./_modules/taurus/core/util/decorator/memoize.html
./_modules/taurus/core/util/decorator/typecheck.html
./_modules/taurus/core/util/enumeration.html
./_modules/taurus/core/util/event.html
./_modules/taurus/core/util/init_bkcomp.html
./_modules/taurus/core/util/init_lightweight.html
./_modules/taurus/core/util/lock.html
./_modules/taurus/core/util/log.html
./_modules/taurus/core/util/object.html
./_modules/taurus/core/util/parse_args.html
./_modules/taurus/core/util/prop.html
./_modules/taurus/core/util/property_parser.html
./_modules/taurus/core/util/propertyfile.html
./_modules/taurus/core/util/remotelogmonitor.html
./_modules/taurus/core/util/report/report.html
./_modules/taurus/core/util/safeeval.html
./_modules/taurus/core/util/singleton.html
./_modules/taurus/core/util/sourcecode.html
./_modules/taurus/core/util/tablepprint.html
./_modules/taurus/core/util/tb.html
./_modules/taurus/core/util/threadpool.html
./_modules/taurus/core/util/timer.html
./_modules/taurus/core/util/user.html
./_modules/taurus/core/util/whichexecutable.html
./_modules/taurus/qt/qtcore/communication/communication.html
./_modules/taurus/qt/qtcore/configuration/configuration.html
./_modules/taurus/qt/qtcore/model/taurusdatabasemodel.html
./_modules/taurus/qt/qtcore/model/taurusmodel.html
./_modules/taurus/qt/qtcore/taurusqlistener.html
./_modules/taurus/qt/qtcore/util/emitter.html
./_modules/taurus/qt/qtcore/util/properties.html
./_modules/taurus/qt/qtcore/util/signal.html
./_modules/taurus/qt/qtcore/util/tauruslog.html
./_modules/taurus/qt/qtdesigner/containerplugin.html
./_modules/taurus/qt/qtdesigner/taurusdesigner.html
./_modules/taurus/qt/qtdesigner/taurusplugin/taurusplugin.html
./_modules/taurus/qt/qtdesigner/tauruspluginplugin.html
./_modules/taurus/qt/qtgui/application/taurusapplication.html
./_modules/taurus/qt/qtgui/base/taurusbase.html
./_modules/taurus/qt/qtgui/base/tauruscontroller.html
./_modules/taurus/qt/qtgui/button/qbuttonbox.html
./_modules/taurus/qt/qtgui/button/taurusbutton.html
./_modules/taurus/qt/qtgui/compact/abstractswitcher.html
./_modules/taurus/qt/qtgui/compact/basicswitcher.html
./_modules/taurus/qt/qtgui/console.html
./_modules/taurus/qt/qtgui/container/qcontainer.html
./_modules/taurus/qt/qtgui/container/taurusbasecontainer.html
./_modules/taurus/qt/qtgui/container/taurusframe.html
./_modules/taurus/qt/qtgui/container/taurusgroupbox.html
./_modules/taurus/qt/qtgui/container/taurusgroupwidget.html
./_modules/taurus/qt/qtgui/container/taurusmainwindow.html
./_modules/taurus/qt/qtgui/container/taurusscrollarea.html
./_modules/taurus/qt/qtgui/container/tauruswidget.html
./_modules/taurus/qt/qtgui/dialog/taurusconfigurationdialog.html
./_modules/taurus/qt/qtgui/dialog/taurusinputdialog.html
./_modules/taurus/qt/qtgui/dialog/taurusmessagebox.html
./_modules/taurus/qt/qtgui/display/demo/qpixmapwidgetdemo.html
./_modules/taurus/qt/qtgui/display/demo/tauruslabeldemo.html
./_modules/taurus/qt/qtgui/display/demo/tauruslcddemo.html
./_modules/taurus/qt/qtgui/display/demo/taurusleddemo.html
./_modules/taurus/qt/qtgui/display/qfallback.html
./_modules/taurus/qt/qtgui/display/qled.html
./_modules/taurus/qt/qtgui/display/qlogo.html
./_modules/taurus/qt/qtgui/display/qpixmapwidget.html
./_modules/taurus/qt/qtgui/display/qsevensegment.html
./_modules/taurus/qt/qtgui/display/tauruslabel.html
./_modules/taurus/qt/qtgui/display/tauruslcd.html
./_modules/taurus/qt/qtgui/display/taurusled.html
./_modules/taurus/qt/qtgui/editor/tauruseditor.html
./_modules/taurus/qt/qtgui/extra_guiqwt/plot.html
./_modules/taurus/qt/qtgui/extra_guiqwt/taurustrend2d.html
./_modules/taurus/qt/qtgui/extra_nexus/taurusnexuswidget.html
./_modules/taurus/qt/qtgui/graphic/jdraw/jdraw.html
./_modules/taurus/qt/qtgui/graphic/jdraw/jdraw_view.html
./_modules/taurus/qt/qtgui/graphic/taurusgraphic.html
./_modules/taurus/qt/qtgui/graphic/taurusgraphicview.html
./_modules/taurus/qt/qtgui/help/aboutdialog.html
./_modules/taurus/qt/qtgui/help/assistant.html
./_modules/taurus/qt/qtgui/help/helppanel.html
./_modules/taurus/qt/qtgui/icon/catalog.html
./_modules/taurus/qt/qtgui/icon/icon.html
./_modules/taurus/qt/qtgui/input/choicedlg.html
./_modules/taurus/qt/qtgui/input/qwheel.html
./_modules/taurus/qt/qtgui/input/tauruscheckbox.html
./_modules/taurus/qt/qtgui/input/tauruscombobox.html
./_modules/taurus/qt/qtgui/input/tauruslineedit.html
./_modules/taurus/qt/qtgui/input/taurusspinbox.html
./_modules/taurus/qt/qtgui/input/tauruswheel.html
./_modules/taurus/qt/qtgui/model/qbasemodel.html
./_modules/taurus/qt/qtgui/panel/qdataexportdialog.html
./_modules/taurus/qt/qtgui/panel/qdoublelist.html
./_modules/taurus/qt/qtgui/panel/qrawdatachooser.html
./_modules/taurus/qt/qtgui/panel/report/albareport.html
./_modules/taurus/qt/qtgui/panel/report/basicreport.html
./_modules/taurus/qt/qtgui/panel/taurusconfigeditor.html
./_modules/taurus/qt/qtgui/panel/taurusconfigurationpanel.html
./_modules/taurus/qt/qtgui/panel/taurusdemo.html
./_modules/taurus/qt/qtgui/panel/taurusdevicepanel.html
./_modules/taurus/qt/qtgui/panel/taurusform.html
./_modules/taurus/qt/qtgui/panel/taurusinputpanel.html
./_modules/taurus/qt/qtgui/panel/taurusmessagepanel.html
./_modules/taurus/qt/qtgui/panel/taurusmodelchooser.html
./_modules/taurus/qt/qtgui/panel/taurusmodellist.html
./_modules/taurus/qt/qtgui/panel/taurusvalue.html
./_modules/taurus/qt/qtgui/style.html
./_modules/taurus/qt/qtgui/style/nebula.html
./_modules/taurus/qt/qtgui/table/qdictionary.html
./_modules/taurus/qt/qtgui/table/qlogtable.html
./_modules/taurus/qt/qtgui/table/qtable.html
./_modules/taurus/qt/qtgui/table/taurusdbtable.html
./_modules/taurus/qt/qtgui/table/taurusdevicepropertytable.html
./_modules/taurus/qt/qtgui/table/taurusgrid.html
./_modules/taurus/qt/qtgui/table/taurustable.html
./_modules/taurus/qt/qtgui/table/taurusvaluestable.html
./_modules/taurus/qt/qtgui/taurusgui/PermanentCustomPanelsDlg.html
./_modules/taurus/qt/qtgui/taurusgui/appsettingswizard.html
./_modules/taurus/qt/qtgui/taurusgui/paneldescriptionwizard.html
./_modules/taurus/qt/qtgui/taurusgui/taurusgui.html
./_modules/taurus/qt/qtgui/tree/qtree.html
./_modules/taurus/qt/qtgui/tree/taurusdbtree.html
./_modules/taurus/qt/qtgui/tree/taurustree.html
./_modules/taurus/qt/qtgui/util/qdraganddropdebug.html
./_modules/taurus/qt/qtgui/util/taurusaction.html
./_modules/taurus/qt/qtgui/util/taurusactionfactory.html
./_modules/taurus/qt/qtgui/util/tauruscolor.html
./_modules/taurus/qt/qtgui/util/taurusropepatch.html
./_modules/taurus/qt/qtgui/util/taurusscreenshot.html
./_modules/taurus/qt/qtgui/util/tauruswidgetfactory.html