hyb
2026-01-30 15bc7727b58bf9ca0c8f21702fa893daac232b8d
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
Ë
hñúhÄã    óþ—dZddlZddlZddlZddlZddlZddlmZmZm    Z    ddl
Z ddl Z ddl ZddlZej dk\rddlmZnddlZe j(«5e j*ded¬«ddlmZdd    lmZddd«d
d lmZGd „d «ZGd„d«ZdZ    dZ     e Z!    Gd„de"«Z#d„Z$Gd„dedgd¢««Z%Gd„d«Z&Gd„de'«Z(Gd„de&«Z)Gd„de&«Z*Gd„d e*«Z+Gd!„d"e*«Z,Gd#„d$e*«Z-Gd%„d&e&«Z.Gd'„d(e&«Z/Gd)„d*e/«Z0Gd+„d,e/«Z1Gd-„d.e1«Z2Gd/„d0e/«Z3Gd1„d2e/«Z4Gd3„d4e/«Z5Gd5„d6e/«Z6Gd7„d8e5e6«Z7Gd9„d:e6«Z8Gd;„d<e/«Z9Gd=„d>e6«Z:Gd?„d@e/«Z;GdA„dBe/«Z<dCa=dDa>dEa?dFa@dGaAdHaBdI„ZCdJ„ZDdZ!GdK„dLejŠ«ZFGdM„dNe«ZGy#1swYŒvxYw)Oa
Find modules used by a script, using bytecode analysis.
 
Based on the stdlib modulefinder by Thomas Heller and Just van Rossum,
but uses a graph data structure and 2.3 features
 
XXX: Verify all calls to _import_hook (and variants) to ensure that
imports are done in the right way.
éN)ÚdequeÚ
namedtupleÚ defaultdict)éé
Úignorezpkg_resources is deprecated)ÚcategoryÚmessage)Ú ObjectGraph)Ú
GraphErroré)Úutilcó—eZdZd„Zy)ÚBUILTIN_MODULEcó—y©NF©)Úfqnames úZH:\Change_password\venv_build\Lib\site-packages\PyInstaller/lib/modulegraph/modulegraph.pyÚ
is_packagezBUILTIN_MODULE.is_package2s€ØóN)Ú__name__Ú
__module__Ú __qualname__rrrrrr1s„órrcó—eZdZd„Zd„Zy)ÚNAMESPACE_PACKAGEcó—||_y©N)Únamespace_dirs)Úselfrs  rÚ__init__zNAMESPACE_PACKAGE.__init__7s
€Ø,ˆÕrcó—y©NTr)r rs  rrzNAMESPACE_PACKAGE.is_package:s€ØrN)rrrr!rrrrrr6s „ò-órréÿÿÿÿcó —eZdZy)ÚInvalidRelativeImportErrorN©rrrrrrr&r&[ó„Ørr&cój—tjdt|««}||jd«S|S)Nz^No module named (\S+)$r )ÚreÚmatchÚstrÚgroup)ÚexcÚdefaultÚms   rÚ_path_from_importerrorr1_s1€ô     ‰Ð+¬S°«XÓ6€AØ€}؏w‰wq‹zÐà €Nrcó—eZdZdZd„Zy)ÚDependencyInforcó¾—|js|js |jr$|js?|js3|js'tddd|jxr |j¬«St|jxs |j|jxs |j|jxs |j|jxr |j¬«S)NF©Ú conditionalÚfunctionÚ    tryexceptÚfromlist)r6r7r8r3r9)r Úothers  rÚ_mergedzDependencyInfo._mergedqs¥€Ø× Ò ¨¯ª¸t¿~º~Ø×$Ò$¨U¯^ª^ÀEÇOÂOÜ!Ø!ØØØŸ™Ò9¨5¯>©>ô    ;ð ;ô"Ø $× 0Ñ 0Ò E°E×4EÑ4EØ!Ÿ]™]Ò<¨e¯n©nØ"Ÿn™nÒ?°·±Ø!Ÿ]™]Ò=¨u¯~©~ô    ?ð ?rN)rrrÚ    __slots__r;rrrr3r3ms „à€Ió?rr3r5có„—eZdZdZgd¢Zd„Zd„Zd„Zd„Zd„Z    d„Z
d    „Z d
„Z d „Z d „Zd „Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zy)ÚNodea
    Abstract base class (ABC) of all objects added to a `ModuleGraph`.
 
    Attributes
    ----------
    code : codeobject
        Code object of the pure-Python module corresponding to this graph node
        if any _or_ `None` otherwise.
    graphident : str
        Synonym of `identifier` required by the `ObjectGraph` superclass of the
        `ModuleGraph` class. For readability, the `identifier` attribute should
        typically be used instead.
    filename : str
        Absolute path of this graph node's corresponding module, package, or C
        extension if any _or_ `None` otherwise.
    identifier : str
        Fully-qualified name of this graph node's corresponding module,
        package, or C extension.
    packagepath : str
        List of the absolute paths of all directories comprising this graph
        node's corresponding package. If this is a:
        * Non-namespace package, this list contains exactly one path.
        * Namespace package, this list contains one or more paths.
    _deferred_imports : list
        List of all target modules imported by the source module corresponding
        to this graph node whole importations have been deferred for subsequent
        processing in between calls to the `_ModuleGraph._scan_code()` and
        `_ModuleGraph._process_imports()` methods for this source module _or_
        `None` otherwise. Each element of this list is a 3-tuple
        `(have_star, _safe_import_hook_args, _safe_import_hook_kwargs)`
        collecting the importation of a target module from this source module
        for subsequent processing, where:
        * `have_star` is a boolean `True` only if this is a `from`-style star
          import (e.g., resembling `from {target_module_name} import *`).
        * `_safe_import_hook_args` is a (typically non-empty) sequence of all
          positional arguments to be passed to the `_safe_import_hook()` method
          to add this importation to the graph.
        * `_safe_import_hook_kwargs` is a (typically empty) dictionary of all
          keyword arguments to be passed to the `_safe_import_hook()` method
          to add this importation to the graph.
        Unlike functional languages, Python imposes a maximum depth on the
        interpreter stack (and hence recursion). On breaching this depth,
        Python raises a fatal `RuntimeError` exception. Since `ModuleGraph`
        parses imports recursively rather than iteratively, this depth _was_
        commonly breached before the introduction of this list. Python
        environments installing a large number of modules (e.g., Anaconda) were
        particularly susceptible. Why? Because `ModuleGraph` concurrently
        descended through both the abstract syntax trees (ASTs) of all source
        modules being parsed _and_ the graph of all target modules imported by
        these source modules being built. The stack thus consisted of
        alternating layers of AST and graph traversal. To unwind such
        alternation and effectively halve the stack depth, `ModuleGraph` now
        descends through the abstract syntax tree (AST) of each source module
        being parsed and adds all importations originating within this module
        to this list _before_ descending into the graph of these importations.
        See pyinstaller/pyinstaller/#1289 for further details.
    _global_attr_names : set
        Set of the unqualified names of all global attributes (e.g., classes,
        variables) defined in the pure-Python module corresponding to this
        graph node if any _or_ the empty set otherwise. This includes the names
        of all attributes imported via `from`-style star imports from other
        existing modules (e.g., `from {target_module_name} import *`). This
        set is principally used to differentiate the non-ignorable importation
        of non-existent submodules in a package from the ignorable importation
        of existing global attributes defined in that package's pure-Python
        `__init__` submodule in `from`-style imports (e.g., `bar` in
        `from foo import bar`, which may be either a submodule or attribute of
        `foo`), as such imports ambiguously allow both. This set is _not_ used
        to differentiate submodules from attributes in `import`-style imports
        (e.g., `bar` in `import foo.bar`, which _must_ be a submodule of
        `foo`), as such imports unambiguously allow only submodules.
    _starimported_ignored_module_names : set
        Set of the fully-qualified names of all existing unparsable modules
        that the existing parsable module corresponding to this graph node
        attempted to perform one or more "star imports" from. If this module
        either does _not_ exist or does but is unparsable, this is the empty
        set. Equivalently, this set contains each fully-qualified name
        `{trg_module_name}` for which:
        * This module contains an import statement of the form
          `from {trg_module_name} import *`.
        * The module whose name is `{trg_module_name}` exists but is _not_
          parsable by `ModuleGraph` (e.g., due to _not_ being pure-Python).
        **This set is currently defined but otherwise ignored.**
    _submodule_basename_to_node : dict
        Dictionary mapping from the unqualified name of each submodule
        contained by the parent module corresponding to this graph node to that
        submodule's graph node. If this dictionary is non-empty, this parent
        module is typically but _not_ always a package (e.g., the non-package
        `os` module containing the `os.path` submodule).
    )    ÚcodeÚfilenameÚ
graphidentÚ
identifierÚ packagepathÚ_deferred_importsÚ_global_attr_namesÚ"_starimported_ignored_module_namesÚ_submodule_basename_to_nodecó²—d|_d|_||_||_d|_d|_t «|_t «|_t«|_
y)zÞ
        Initialize this graph node.
 
        Parameters
        ----------
        identifier : str
            Fully-qualified name of this graph node's corresponding module,
            package, or C extension.
        N) r?r@rArBrCrDÚsetrErFÚdictrG)r rBs  rr!z Node.__init__ôsN€ðˆŒ    ØˆŒ Ø$ˆŒØ$ˆŒØˆÔØ!%ˆÔÜ"%£%ˆÔÜ25³%ˆÔ/Ü+/«6ˆÕ(rcó—||jvS)aÛ
        `True` only if the pure-Python module corresponding to this graph node
        defines a global attribute (e.g., class, variable) with the passed
        name.
 
        If this module is actually a package, this method instead returns
        `True` only if this package's pure-Python `__init__` submodule defines
        such a global attribute. In this case, note that this package may still
        contain an importable submodule of the same name. Callers should
        attempt to import this attribute as a submodule of this package
        _before_ assuming this attribute to be an ignorable global. See
        "Examples" below for further details.
 
        Parameters
        ----------
        attr_name : str
            Unqualified name of the attribute to be tested.
 
        Returns
        ----------
        bool
            `True` only if this module defines this global attribute.
 
        Examples
        ----------
        Consider a hypothetical module `foo` containing submodules `bar` and
        `__init__` where the latter assigns `bar` to be a global variable
        (possibly star-exported via the special `__all__` global variable):
 
        >>> # In "foo.__init__":
        >>> bar = 3.1415
 
        Python 2 and 3 both permissively permit this. This method returns
        `True` in this case (i.e., when called on the `foo` package's graph
        node, passed the attribute name `bar`) despite the importability of the
        `foo.bar` submodule.
        )rE©r Ú    attr_names  rÚis_global_attrzNode.is_global_attr
s€ðN˜D×3Ñ3Ð3Ð3rcó—||jvS)a#
        `True` only if the parent module corresponding to this graph node
        contains the submodule with the passed name.
 
        If `True`, this parent module is typically but _not_ always a package
        (e.g., the non-package `os` module containing the `os.path` submodule).
 
        Parameters
        ----------
        submodule_basename : str
            Unqualified name of the submodule to be tested.
 
        Returns
        ----------
        bool
            `True` only if this parent module contains this submodule.
        ©rG©r Úsubmodule_basenames  rÚ is_submodulezNode.is_submodule4s€ð&" T×%EÑ%EÐEÐErcó:—|jj|«y)aÚ
        Record the global attribute (e.g., class, variable) with the passed
        name to be defined by the pure-Python module corresponding to this
        graph node.
 
        If this module is actually a package, this method instead records this
        attribute to be defined by this package's pure-Python `__init__`
        submodule.
 
        Parameters
        ----------
        attr_name : str
            Unqualified name of the attribute to be added.
        N)rEÚaddrLs  rÚadd_global_attrzNode.add_global_attrJs€ð      ×Ñ×#Ñ# IÕ.rcóN—|jj|j«y)a&
        Record all global attributes (e.g., classes, variables) defined by the
        target module corresponding to the passed graph node to also be defined
        by the source module corresponding to this graph node.
 
        If the source module is actually a package, this method instead records
        these attributes to be defined by this package's pure-Python `__init__`
        submodule.
 
        Parameters
        ----------
        target_module : Node
            Graph node of the target module to import attributes from.
        N)rEÚupdate)r Ú target_modules  rÚadd_global_attrs_from_modulez!Node.add_global_attrs_from_module]s€ð      ×Ñ×&Ñ& }×'GÑ'GÕHrcó"—||j|<y)a
 
        Add the submodule with the passed name and previously imported graph
        node to the parent module corresponding to this graph node.
 
        This parent module is typically but _not_ always a package (e.g., the
        non-package `os` module containing the `os.path` submodule).
 
        Parameters
        ----------
        submodule_basename : str
            Unqualified name of the submodule to add to this parent module.
        submodule_node : Node
            Graph node of this submodule.
        NrP)r rRÚsubmodule_nodes   rÚ add_submodulezNode.add_submoduleps€ð @Nˆ×(Ñ(Ð);Ò<rcó —|j|S)aW
        Graph node of the submodule with the passed name in the parent module
        corresponding to this graph node.
 
        If this parent module does _not_ contain this submodule, an exception
        is raised. Else, this parent module is typically but _not_ always a
        package (e.g., the non-package `os` module containing the `os.path`
        submodule).
 
        Parameters
        ----------
        module_basename : str
            Unqualified name of the submodule to retrieve.
 
        Returns
        ----------
        Node
            Graph node of this submodule.
        rPrQs  rÚ get_submodulezNode.get_submoduleƒs€ð*×/Ñ/Ð0BÑCÐCrcó8—|jj|«S)a€
        Graph node of the submodule with the passed unqualified name in the
        parent module corresponding to this graph node if this module contains
        this submodule _or_ `None`.
 
        This parent module is typically but _not_ always a package (e.g., the
        non-package `os` module containing the `os.path` submodule).
 
        Parameters
        ----------
        submodule_basename : str
            Unqualified name of the submodule to retrieve.
 
        Returns
        ----------
        Node
            Graph node of this submodule if this parent module contains this
            submodule _or_ `None`.
        )rGÚgetrQs  rÚget_submodule_or_nonezNode.get_submodule_or_none›s€ð*×/Ñ/×3Ñ3Ð4FÓGÐGrcó^—|j|«r|jj|«yy)a
        Record the global attribute (e.g., class, variable) with the passed
        name if previously recorded as defined by the pure-Python module
        corresponding to this graph node to be subsequently undefined by the
        same module.
 
        If this module is actually a package, this method instead records this
        attribute to be undefined by this package's pure-Python `__init__`
        submodule.
 
        This method is intended to be called on globals previously defined by
        this module that are subsequently undefined via the `del` built-in by
        this module, thus "forgetting" or "undoing" these globals.
 
        For safety, there exists no corresponding `remove_global_attr()`
        method. While defining this method is trivial, doing so would invite
        `KeyError` exceptions on scanning valid Python that lexically deletes a
        global in a scope under this module's top level (e.g., in a function)
        _before_ defining this global at this top level. Since `ModuleGraph`
        cannot and should not (re)implement a full-blown Python interpreter,
        ignoring out-of-order deletions is the only sane policy.
 
        Parameters
        ----------
        attr_name : str
            Unqualified name of the attribute to be removed.
        N)rNrEÚremoverLs  rÚremove_global_attr_if_foundz Node.remove_global_attr_if_found³s+€ð: × Ñ ˜yÔ )Ø × #Ñ #× *Ñ *¨9Õ 5ð *rcóX—    t|d«}|j|k(S#t$rYywxYw)NrAF©ÚgetattrÚAttributeErrorrA©r r:Ú
otherIdents   rÚ__eq__z Node.__eq__Ós8€ð    Ü  ¨ Ó5ˆJð‰ *Ñ,Ð,øôò    Ùð    úó ‚     )¨)cóX—    t|d«}|j|k7S#t$rYywxYw)NrATrgrjs   rÚ__ne__z Node.__ne__Ûs8€ð    Ü  ¨ Ó5ˆJð‰ *Ñ,Ð,øôò    Ùð    úrmcód—    t|d«}|j|kS#t$r    tcYSwxYw©NrA©rhriÚNotImplementedrArjs   rÚ__lt__z Node.__lt__ãó;€ð    "Ü  ¨ Ó5ˆJð‰ Ñ+Ð+øôò    "Ü!Ò !ð    "úó ‚ /®/cód—    t|d«}|j|kS#t$r    tcYSwxYwrqrrrjs   rÚ__le__z Node.__le__ëó;€ð    "Ü  ¨ Ó5ˆJð‰ *Ñ,Ð,øôò    "Ü!Ò !ð    "úrvcód—    t|d«}|j|kDS#t$r    tcYSwxYwrqrrrjs   rÚ__gt__z Node.__gt__órurvcód—    t|d«}|j|k\S#t$r    tcYSwxYwrqrrrjs   rÚ__ge__z Node.__ge__ûryrvcó,—t|j«Sr)ÚhashrA©r s rÚ__hash__z Node.__hash__s€ÜD—O‘OÓ$Ð$rcó—|jfSr)rBr€s rÚ    infoTuplezNode.infoTuples€Ø—‘Ð!Ð!rcóP—t|«j›|j«›Sr)Útyperrƒr€s rÚ__repr__z Node.__repr__    s€Ü˜d›×,Ò,¨d¯n©nÔ.>Ð?Ð?rN)rrrÚ__doc__r<r!rNrSrVrZr]r_rbrerlrortrxr{r}rrƒr†rrrr>r>Œsr„ñYòv
€Iò2ò,'4òTFò,/ò&Iò&Nò&Dò0Hò06ò@-ò-ò,ò-ò,ò-ò%ò"ó@rr>có—eZdZdZy)ÚAliasa
    Placeholder aliasing an existing source module to a non-existent target
    module (i.e., the desired alias).
 
    For obscure reasons, this class subclasses `str`. Each instance of this
    class is the fully-qualified name of the existing source module being
    aliased. Unlike the related `AliasNode` class, instances of this class are
    _not_ actual nodes and hence _not_ added to the graph; they only facilitate
    communication between the `ModuleGraph.alias_module()` and
    `ModuleGraph.find_node()` methods.
    N©rrrr‡rrrr‰r‰ s„ò
rr‰có0‡—eZdZdZdˆfd„    Zd„Zd„ZˆxZS)Ú    AliasNodez’
    Graph node representing the aliasing of an existing source module under a
    non-existent target module name (i.e., the desired alias).
    cóN•—tt| |«|j|«y)aä
        Initialize this alias.
 
        Parameters
        ----------
        name : str
            Fully-qualified name of the non-existent target module to be
            created (as an alias of the existing source module).
        node : Node
            Graph node of the existing source module being aliased. Optional;
            if not provided here, the attributes from referred node should
            be copied later using `copyAttributesFromReferredNode` method.
        N)ÚsuperrŒr!ÚcopyAttributesFromReferredNode)r ÚnameÚnodeÚ    __class__s   €rr!zAliasNode.__init__!s$ø€ô    Œi˜Ñ'¨Ô-ð     ×+Ñ+¨DÕ1rc    óZ—dD]&}t||«sŒt||t||««Œ(y)zh
        Copy a subset of attributes from referred node (source module) into this target alias.
        )rBrCrErFrGN)ÚhasattrÚsetattrrh)r r‘rMs   rrz(AliasNode.copyAttributesFromReferredNode4s4€ð+ò    CˆIôt˜YÕ'ܘ˜i¬°°yÓ)AÕBñ     Crcó2—|j|jfSr)rArBr€s rrƒzAliasNode.infoTupleBs€Ø—‘ §¡Ð1Ð1rr)rrrr‡r!rrƒÚ __classcell__©r’s@rrŒrŒsø„ñõ
2ò& Cö2rrŒcó —eZdZy)Ú    BadModuleNr'rrrršršFr(rršcó —eZdZy)ÚExcludedModuleNr'rrrrœrœJr(rrœcó —eZdZy)Ú MissingModuleNr'rrrržržNr(rržcó$‡—eZdZˆfd„Zd„ZˆxZS)ÚInvalidRelativeImportcóŠ•—|}|jd«r||z }n|d|zz }tt||«||_||_y)Nú.)ÚendswithrŽr r!Ú relative_pathÚ    from_name)r r¤r¥rBr’s    €rr!zInvalidRelativeImport.__init__SsMø€Ø"ˆ
Ø × !Ñ ! #Ô &Ø ˜)Ñ #‰Jà ˜#     ™/Ñ )ˆJÜ Ô# TÑ3°JÔ?Ø*ˆÔØ"ˆrcó2—|j|jfSr)r¤r¥r€s rrƒzInvalidRelativeImport.infoTuple]s€Ø×"Ñ" D§N¡NÐ3Ð3r©rrrr!rƒr—r˜s@rr r Rs ø„ô#ö4rr có$‡—eZdZˆfd„Zd„ZˆxZS)ÚScriptcó:•—tt| |«||_yr)rŽr©r!r@)r r@r’s  €rr!zScript.__init__bsø€Ü ŒfdÑ$ XÔ.Ø ˆ rcó—|jfSr)r@r€s rrƒzScript.infoTuplefs€Ø— ‘ ÐÐrr§r˜s@rr©r©as ø„ô!ö rr©có&‡—eZdZdˆfd„    Zd„ZˆxZS)Ú
BaseModulecóH•—tt| |«||_||_yr)rŽr­r!r@rC)r rr@Úpathr’s    €rr!zBaseModule.__init__ks!ø€Ü Œj˜$Ñ(¨Ô.Ø ˆŒ ؈Õrcón—ttd|j|j|jf««Sr)ÚtupleÚfilterrBr@rCr€s rrƒzBaseModule.infoTupleps)€Ü”V˜D 4§?¡?°D·M±MÀ4×CSÑCSÐ"TÓUÓVÐVr)NNr§r˜s@rr­r­jsø„õ ö
Wrr­có —eZdZy)Ú BuiltinModuleNr'rrrr´r´tr(rr´có —eZdZy)Ú SourceModuleNr'rrrr¶r¶xr(rr¶có —eZdZy)ÚInvalidSourceModuleNr'rrrr¸r¸|r(rr¸có —eZdZy)ÚCompiledModuleNr'rrrrºrº€r(rrºcó —eZdZy)ÚInvalidCompiledModuleNr'rrrr¼r¼„r(rr¼có —eZdZy)Ú    ExtensionNr'rrrr¾r¾ˆr(rr¾có—eZdZdZy)ÚPackagez:
    Graph node representing a non-namespace package.
    NrŠrrrrÀrÀŒó „ñð    rrÀcó—eZdZdZy)ÚExtensionPackageza
    Graph node representing a package where the __init__ module is an extension
    module.
    NrŠrrrrÃrÓs „ñð    rrÃcó—eZdZdZy)ÚNamespacePackagez6
    Graph node representing a namespace package.
    NrŠrrrrÅrśrÁrrÅcó—eZdZdZy)Ú RuntimeModulea<
    Graph node representing a non-package Python module dynamically defined at
    runtime.
 
    Most modules are statically defined on-disk as standard Python files.
    Some modules, however, are dynamically defined in-memory at runtime
    (e.g., `gi.repository.Gst`, dynamically defined by the statically
    defined `gi.repository.__init__` module).
 
    This node represents such a runtime module. Since this is _not_ a package,
    all attempts to import submodules from this module in `from`-style import
    statements (e.g., the `queue` submodule in `from six.moves import queue`)
    will be silently ignored.
 
    To ensure that the parent package of this module if any is also imported
    and added to the graph, this node is typically added to the graph by
    calling the `ModuleGraph.add_module()` method.
    NrŠrrrrÇrÇ¢ó „ñð$    rrÇcó—eZdZdZy)ÚRuntimePackageaQ
    Graph node representing a non-namespace Python package dynamically defined
    at runtime.
 
    Most packages are statically defined on-disk as standard subdirectories
    containing `__init__.py` files. Some packages, however, are dynamically
    defined in-memory at runtime (e.g., `six.moves`, dynamically defined by
    the statically defined `six` module).
 
    This node represents such a runtime package. All attributes imported from
    this package in `from`-style import statements that are submodules of this
    package (e.g., the `queue` submodule in `from six.moves import queue`) will
    be imported rather than ignored.
 
    To ensure that the parent package of this package if any is also imported
    and added to the graph, this node is typically added to the graph by
    calling the `ModuleGraph.add_module()` method.
    NrŠrrrrÊrʸrÈrrÊcó‡—eZdZˆfd„ZˆxZS)Ú FlatPackagecó`•—tjdt«ttg|¢­i|¤Žy©Nz=This class will be removed in a future version of modulegraph©ÚwarningsÚwarnÚDeprecationWarningrŽrÌ©r ÚargsÚkwdsr’s   €rr!zFlatPackage.__init__Ñó)ø€Ü ‰ Ø KÜ ô     ô    ŒkÐ)˜DÒ) DÓ)r©rrrr!r—r˜s@rrÌrÌÐó ø„÷*ð*rrÌcó‡—eZdZˆfd„ZˆxZS)Ú ArchiveModulecó`•—tjdt«ttg|¢­i|¤ŽyrÎrÏrÓs   €rr!zArchiveModule.__init__ÛrÖrr×r˜s@rrÚrÚÚrØrrÚa…<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>%(TITLE)s</title>
    <style>
      .node { padding: 0.5em 0 0.5em; border-top: thin grey dotted; }
      .moduletype { font: smaller italic }
      .node a { text-decoration: none; color: #006699; }
      .node a:visited { text-decoration: none; color: #2f0099; }
    </style>
  </head>
  <body>
    <h1>%(TITLE)s</h1>zB
<div class="node">
  <a name="%(NAME)s"></a>
  %(CONTENT)s
</div>z:<tt>%(NAME)s</tt> <span class="moduletype">%(TYPE)s</span>zp<a target="code" href="%(URL)s" type="text/plain"><tt>%(NAME)s</tt></a>
<span class="moduletype">%(TYPE)s</span>z6  <div class="import">
%(HEAD)s:
  %(LINKS)s
  </div>
z
  </body>
</html>cóڗg}|D]I}t|tj«r|j|j«Œ9|j|«ŒK|Dcgc]
}|dk7sŒ    |‘Œ }}|Scc}w)NÚ__main__)Ú
isinstanceÚastÚaliasÚappendr)ÚnamesÚresultÚnmÚrs    rÚ
_ast_namesræse€Ø €FØòˆÜ bœ#Ÿ)™)Ô $Ø M‰M˜"Ÿ'™'Õ "à M‰M˜"Õ ð    ð  Ö 3A 1¨
£?ŠaÐ 3€FÐ 3Ø €Mùò4s Á
A(Á A(cót—t«}|j}|Dcgc]}||vrŒ||«rŒ|‘Œc}Scc}w)z/Remove duplicates from a list, preserving order)rIrU)ÚseqÚseenÚseen_addÚxs    rÚuniqrìs4€ô ‹5€D؏x‰x€HØÖ =! 1¨¢9±¸µ ŠAÒ =Ð=ùÒ =s ›    5¥5®5cóº—eZdZd„Zed„«Zed„«Zed„«Zd„Zd„Z    d„Z
d„Z d    „Z e Z d
„Zd „Zd „ZeZeZeZeZeZeZeZeZeZeZeZeZeZeZeZeZeZy )Ú_Visitorcóf—||_||_t|_dg|_dg|_dg|_yr)Ú_graphÚ_moduleÚDEFAULT_IMPORT_LEVELÚ_levelÚ_in_ifÚ_in_defÚ _in_tryexcept)r ÚgraphÚmodules   rr!z_Visitor.__init__s3€ØˆŒ ؈Œ Ü*ˆŒ ؐgˆŒ ؐwˆŒ Ø#˜WˆÕrcó —|jdS©Nr$)rôr€s rÚin_ifz_Visitor.in_if&s€à{‰{˜2‰Ðrcó —|jdSrú)rõr€s rÚin_defz_Visitor.in_def*s€à|‰|˜BÑÐrcó —|jdSrú)rör€s rÚ in_tryexceptz_Visitor.in_tryexcept.s€à×!Ñ! "Ñ%Ð%rc ó—d}|"t|«}d|vr|jd«d}|jjj    |||j||fdt |j |j|jd¬«if«y)NFÚ*TÚ    edge_attr)r6r8r7r9)    rìrdrñrDrár3rûrÿrý)r rr9ÚlevelÚ    have_stars     rÚ_collect_importz_Visitor._collect_import3s‰€Øˆ    Ø РܘH“~ˆHؐh‰Ø—‘ Ô$Ø     ð      ‰ ×&Ñ&×-Ñ-Ø ØD—L‘L (¨EÐ 2Øœ>Ø!ŸZ™ZØ×,Ñ,ØŸ+™+Øô    !ð"ð #õ    $rcór—t|j«D]}|j|d|j«Œ!yr)rærârró)r r‘räs   rÚ visit_Importz_Visitor.visit_ImportGs0€Ü˜TŸZ™ZÓ(ò    8ˆBØ ×  Ñ    T¨4¯;©;Õ 7ñ    8rcóº—|jdk7r |jn |j}|j|jxsdt    |j
«|«y)NrÚ)rrórrørærâ)r r‘rs   rÚvisit_ImportFromz_Visitor.visit_ImportFromKs?€Ø"Ÿj™j¨Ašo—
’
°4·;±;ˆØ ×јTŸ[™[Ò.¨B´
¸4¿:¹:Ó0FÈÕNrcó—|jjd«|j|«|jj«yr#)rôráÚ generic_visitÚpop©r r‘s  rÚvisit_Ifz_Visitor.visit_IfOs0€Ø  ‰ ×ј4Ô Ø ×ј4Ô Ø  ‰ ‰Õrcó—|jjd«|j|«|jj«yr#)rõrár r rs  rÚvisit_FunctionDefz_Visitor.visit_FunctionDefTs2€Ø  ‰ ×јDÔ!Ø ×ј4Ô Ø  ‰ ×ÑÕrcó—|jjd«|j|«|jj«yr#©rörár r rs  rÚ    visit_Tryz_Visitor.visit_Try[ó6€Ø ×Ñ×!Ñ! $Ô'Ø ×ј4Ô Ø ×Ñ×ÑÕ rcó—|jjd«|j|«|jj«yr#rrs  rÚvisit_TryExceptz_Visitor.visit_TryExcept`rrcó—yrrrs  rÚvisit_Expressionz_Visitor.visit_Expressiones€ð     rN) rrrr!Úpropertyrûrýrÿrrr
rrÚvisit_AsyncFunctionDefrrrÚ visit_BoolOpÚ visit_BinOpÚ visit_UnaryOpÚ visit_LambdaÚ visit_IfExpÚ
visit_DictÚ    visit_SetÚvisit_ListCompÚ visit_SetCompÚvisit_GeneratorExpÚ visit_CompareÚ visit_YieldÚvisit_YieldFromÚ visit_AwaitÚ
visit_Callrrrrîrîs̄ò%ðñóððñ óð ðñ&óð&ò$ò(8òOòò
ð
/Ðò!ò
!ò
 ð$€LØ"€KØ$€MØ#€LØ"€KØ!€JØ €IØ%€NØ$€MØ%€NØ)ÐØ$€MØ"€KØ&€OØ"€KØ!€JØ"KrrîcóH‡—eZdZdZˆfd„Zd%ˆfd„    Zd„Zd&d„Zd„ZeZ    d'd„Z
e
Z d    „Z d
„Z d „Zd(ˆfd „    ZeZd'ˆfd „    ZeZej(Zd&d„Zddedfd„Zd„Zefd„Zd„Zd„Zd„Zd„Zd„Zd„Z d„Z!edfd„Z"    d&d„Z#d„Z$d„Z%d„Z&d&d„Z'd„Z(d&d „Z)d)d!„Z*d*d"„Z+d#„Z,d$„Z-ˆxZ.S)+Ú ModuleGraphzr
    Directed graph whose nodes represent modules and edges represent
    dependencies between these modules.
    có^•—|j|«}|€tt|||g|¢­i|¤Ž}|Sr)Ú    find_noderŽr,Ú
createNode)r ÚclsrrÔÚkwr0r’s      €rr/zModuleGraph.createNode†s8ø€Ø N‰N˜4Ó  ˆà ˆ9ä”k 4Ñ3°C¸ÐKÀÒKÈÑKˆAàˆrNcó•—tt| ||¬«|€tj}||_i|_|j
j t|««|D]}d|j
|<Œ||_i|_    i|_
y)N)r÷Údebug) rŽr,r!Úsysr¯Ú    lazynodesrXrJÚ replace_pathsÚ_package_path_mapÚ_legacy_ns_packages)    r r¯Úexcludesr6Úimpliesr÷r3r0r’s            €rr!zModuleGraph.__init__s‚ø€Ü Œk˜4Ñ)°¸UÐ)ÔCØ ˆ<Ü—8‘8ˆD؈Œ    ØˆŒà ‰×Ñœd 7›mÔ,Øò    %ˆAØ $ˆDN‰N˜1Ò ð    %à*ˆÔð"$ˆÔð$&ˆÕ rcóÞ—td„«}tj«D]’}|jd«}|€Œ|j    «}t |d«}|€Œ6|D]X}t jjt|j«g|jd«¢­Ž}||j|«ŒZŒ”|j«Dcic]\}}|t|«“Œc}}|_ycc}}w)z²
        Resolve extra package `__path__` entries for legacy setuptools-based
        namespace packages, by reading `namespace_packages.txt` from dist
        metadata.
        có—t«Sr)rIrrrú<lambda>z<ModuleGraph.scan_legacy_namespace_packages.<locals>.<lambda>©s€´³€rznamespace_packages.txtNÚ_pathr¢)rÚimportlib_metadataÚ distributionsÚ    read_textÚ
splitlinesrhÚosr¯Újoinr,ÚparentÚsplitrUÚitemsÚlistr8)r Úlegacy_ns_packagesÚdistÚ ns_packagesÚ    dist_pathÚ package_namer¯Úpathss        rÚscan_legacy_namespace_packagesz*ModuleGraph.scan_legacy_namespace_packages£sñ€ô )©Ó7Ðä&×4Ñ4Ó6ò    ;ˆDØŸ.™.Ð)AÓBˆKØÐ"ØØ%×0Ñ0Ó2ˆKä  gÓ.ˆIØÐ ØØ +ò ; Ü—w‘w—|‘|ܘ    ×(Ñ(Ó)ðà!×'Ñ'¨Ó,òð# <Ñ0×4Ñ4°TÕ:ñ  ;ð    ;ð&(:×'?Ñ'?Ó'A÷$
á# ˜eð œ$˜u›+Ñ %ó$
ˆÕ ùó$
sà   C)cóܗt|t«r|j|||«yt|t«r t    |«‚|j ||d«}|D]}|j|||«Œy)aU
        Create a reference from the passed source node to the passed other node,
        implying the former to depend upon the latter.
 
        While the source node _must_ be an existing graph node, the target node
        may be either an existing graph node _or_ a fully-qualified module name.
        In the latter case, the module with that name and all parent packages of
        that module will be imported _without_ raising exceptions and for each
        newly imported module or package:
 
        * A new graph node will be created for that module or package.
        * A reference from the passed source node to that module or package will
          be created.
 
        This method allows dependencies between Python objects _not_ importable
        with standard techniques (e.g., module aliases, C extensions).
 
        Parameters
        ----------
        node : str
            Graph node for this reference's source module or package.
        other : {Node, str}
            Either a graph node _or_ fully-qualified name for this reference's
            target module or package.
        N)rÞr>Ú_updateReferencer±Ú
ValueErrorÚ_safe_import_hook)r r‘r:Ú    edge_dataÚotherss     rÚimplyNodeReferencezModuleGraph.implyNodeReferenceÁsj€ô6 eœTÔ "Ø × !Ñ ! $¨¨yÕ 9ä˜%¤Ô'Ü  Ó'Ð'Ø×+Ñ+¨E°4¸Ó>ˆFØò >Ø×%Ñ% d¨E°9Õ=ñ >rcóP—|j|«}|j|«\}}|S)zt
        Yield all nodes that `fromnode` dependes on (that is,
        all modules that `fromnode` imports.
        )r.Ú    get_edges)r Úfromnoder‘Ú    out_edgesÚ_s     rÚoutgoingzModuleGraph.outgoingås*€ð ~‰~˜hÓ'ˆØ—~‘~ dÓ+‰ ˆ    1ØÐrc#óàK—|j|«}|j|«\}}|r8|D]2}t|t«r|j    |d«D]}|–—ŒŒ/|–—Œ4y|D]}|–—Œy­wr)r.rXrÞržÚincoming)r ÚtonodeÚcollapse_missing_modulesr‘r[Úin_edgesÚns       rr^zModuleGraph.incomingñs~èø€Ø~‰~˜fÓ%ˆØ—n‘n TÓ*‰ ˆˆ8á #Øò Ü˜a¤Ô/Ø!Ÿ]™]¨1¨eÓ4ò ˜Ø›ñ ð“Gñ  ðò Ø“ñ ùs‚A,A.có‚—|j|«}|j|«}|jj||«duS)z> Return True iff there is an edge from 'fromnode' to 'tonode' N)r.r÷Ú edge_by_node)r rYr_s   rÚhasEdgezModuleGraph.hasEdges:€à—>‘> (Ó+ˆØ—‘ Ó'ˆàz‰z×&Ñ& x°Ó8ÀÐDÐDrcó\—|j|«}|j«D]}|jj|jdz«sŒ-|j    |«\}}|D]Q}|jj|jdz«rŒ,|j ||«rŒ?|j ||d«ŒS|D]Q}|jj|jdz«rŒ,|j ||«rŒ?|j ||d«ŒS|jj|«Œ
y)zÁ
        Create edges to/from `packagenode` based on the edges to/from all
        submodules of that package _and_ then hide the graph nodes
        corresponding to those submodules.
        r¢zpkg-internal-importz
pkg-importN)    r.ÚnodesrBÚ
startswithrXrerQr÷Ú    hide_node)r Ú packagenodeÚpkgrbÚiter_outÚiter_incr:s       rÚfoldReferenceszModuleGraph.foldReferences s€ðn‰n˜[Ó)ˆà—‘“ó    $ˆAØ—<‘<×*Ñ*¨3¯>©>¸CÑ+?Ô@Øà!%§¡°Ó!2Ñ ˆHhØ!ò MØ×#Ñ#×.Ñ.¨s¯~©~ÀÑ/CÔDØà—|‘| C¨Õ/à×)Ñ)¨#¨uÐ6KÕLð  Mð"ò DØ×#Ñ#×.Ñ.¨s¯~©~ÀÑ/CÔDàà—|‘| E¨3Õ/Ø×)Ñ)¨%°°lÕCð  Dð J‰J×  Ñ   Ö #ñ+    $rcó&—    |j||«}t    |t
«rt    |t
«s|j |||«y|j |||j|««y#ttf$r|j|||«cYSwxYwr)ÚedgeDataÚKeyErrorr Úadd_edgerÞr3ÚupdateEdgeDatar;)r rYr_rTÚeds     rrQzModuleGraph._updateReference0s‚€ð    >Ø—‘˜x¨Ó0ˆBô˜2œ~Ô.´:¸iÌÔ3XØ × Ñ  ¨&°)Õ <à × Ñ  ¨&°"·*±*¸YÓ2GÕ Høô œ*Ð%ò    >Ø—=‘= ¨6°9Ó=Ò =ð    >ús‚A+Á+"BÂBcó0•—tt| |||¬«S)z<
        Create a reference from fromnode to tonode
        ©rT)rŽr,ÚcreateReference)r rYr_rTr’s    €rrrzModuleGraph.add_edge;sø€ô”[ $Ñ7¸À&ÐT]Ð7Ó^Ð^rcó
•—tt| |«}||S||jvrÝ|jj    |«}|€|j t |«}|St|t«r\|j t|«}|j|dd«j    «}|j|«|j||«|S|j|dd«j    «}|D]}|j||«Œ|Sy)a7
        Graph node uniquely identified by the passed fully-qualified module
        name if this module has been added to the graph _or_ `None` otherwise.
 
        If (in order):
 
        . A namespace package with this identifier exists _and_ the passed
          `create_nspkg` parameter is `True`, this package will be
          instantiated and returned.
        . A lazy node with this identifier and:
          * No dependencies exists, this node will be instantiated and
            returned.
          * Dependencies exists, this node and all transitive dependencies of
            this node be instantiated and this node returned.
        . A non-lazy node with this identifier exists, this node will be
          returned as is.
 
        Parameters
        ----------
        name : str
            Fully-qualified name of the module whose graph node is to be found.
        create_nspkg : bool
            Ignored.
 
        Returns
        ----------
        Node
            Graph node of this module if added to the graph _or_ `None`
            otherwise.
        N) rŽr,ÚfindNoder5r r/rœrÞr‰rŒrSrrV)    r rÚ create_nspkgÚdataÚdepsr0r:Údepr’s            €rr.zModuleGraph.find_nodeCs
ø€ô@”[ $Ñ0°Ó6ˆà Р؈Kà 4—>‘>Ñ !Ø—>‘>×%Ñ% dÓ+ˆDàˆ|à—O‘O¤N°DÓ9ð2ˆHô1˜D¤%Ô(ð—O‘O¤I¨tÓ4ð×.Ñ.¨t°T¸4Ó@×DÑDÓFð
×0Ñ0°Ô7à×'Ñ'¨¨5Ô1ð ˆHð    ×*Ñ*¨4°°tÓ<×@Ñ@ÓBØò4CØ×+Ñ+¨A¨sÕ3ð4ðˆHàrcóŒ—|jdd|«tjj|«}|j    |«}||St |d«5}|j «}ddd«tjj«}t||dtjd«}t||ddd«}|jt|«}|j||d«|j!|||«}|j#|«||_|j&r |j)|j$«|_|S#1swYŒÖxYw)z”
        Create a node by path (not module name).  It is expected to be a Python
        source file, and will be scanned for dependencies.
        éÚ
run_scriptNÚrbÚexecTr)ÚmsgrCr¯Úrealpathr.ÚopenÚreadÚ    importlibrÚ decode_sourceÚcompilerßÚ PyCF_ONLY_ASTr/r©rQÚ
_scan_codeÚ_process_importsr?r6Ú_replace_paths_in_code)    r ÚpathnameÚcallerr0ÚfpÚcontentsÚco_astÚcorbs             rÚ
add_scriptzModuleGraph.add_scripts€ð
     ‰L (Ô+ä—7‘7×#Ñ# HÓ-ˆØ N‰N˜8Ó $ˆØ ˆ=؈Hä (˜DÓ !ð    ! RØ—w‘w“yˆH÷    !ä—>‘>×/Ñ/°Ó9ˆä˜ 8¨V´S×5FÑ5FÈÓMˆÜ V˜X v¨q°$Ó 7ˆØ O‰OœF HÓ -ˆØ ×јf a¨Ô.Ø O‰O˜A˜r 6Ó *ˆØ ×јaԠ؈ŒØ × Ò Ø×0Ñ0°·±Ó8ˆAŒF؈÷    !ð    !ús ÁD:Ä:Ecó¢—|jdd||||«|j|«}|j|||«\}}|jdd||«|}|r|j    d«}    |    dkr t |«}    |d|    ||    dzd}}
|j ›d|
›} |j|
| |«}|€*|jdd    | «td
t| «z«‚|rŒ|jdd |«|} | g} |rCt| ttf«r-|j| |«D]}|| vsŒ| j|«Œ| D]} |j!|| |¬ «Œ| S) a«    
        Import the module with the passed name, all parent packages of this
        module, _and_ all submodules and attributes in this module with the
        passed names from the previously imported caller module signified by
        the passed graph node.
 
        Unlike most import methods (e.g., `_safe_import_hook()`), this method
        is designed to be publicly called by both external and internal
        callers and hence is public.
 
        Parameters
        ----------
        target_module_partname : str
            Partially-qualified name of the target module to be imported. See
            `_safe_import_hook()` for further details.
        source_module : Node
            Graph node for the previously imported **source module** (i.e.,
            module containing the `import` statement triggering the call to
            this method) _or_ `None` if this module is to be imported in a
            "disconnected" manner. **Passing `None` is _not_ recommended.**
            Doing so produces a disconnected graph in which the graph node
            created for the module to be imported will be disconnected and
            hence unreachable from all other nodes -- which frequently causes
            subtle issues in external callers (namely PyInstaller, which
            silently ignores unreachable nodes).
        target_attr_names : list
            List of the unqualified names of all submodules and attributes to
            be imported from the module to be imported if this is a "from"-
            style import (e.g., `[encode_base64, encode_noop]` for the import
            `from email.encoders import encode_base64, encode_noop`) _or_
            `None` otherwise.
        level : int
            Whether to perform an absolute or relative import. See
            `_safe_import_hook()` for further details.
 
        Returns
        ----------
        list
            List of the graph nodes created for all modules explicitly imported
            by this call, including the passed module and all submodules listed
            in `target_attr_names` _but_ excluding all parent packages
            implicitly imported by this call. If `target_attr_names` is `None`
            or the empty list, this is guaranteed to be a list of one element:
            the graph node created for the passed module.
 
        Raises
        ----------
        ImportError
            If the target module to be imported is unimportable.
        rÚ _import_hookéÚ    load_tailr¢rNr ú"raise ImportError: No module namedúNo module named z load_tail ->rv)rƒÚ_determine_parentÚ_find_head_packageÚmsginÚfindÚlenrBÚ_safe_import_moduleÚmsgoutÚ ImportErrorÚreprrÞrÀrŒÚ%_import_importable_package_submodulesrárQ)r Útarget_module_partnameÚ source_moduleÚtarget_attr_namesrrÚsource_packageÚtarget_packageÚ    submoduleÚiÚheadÚmnamerYÚtarget_modulesÚtarget_submodules               rÚ import_hookzModuleGraph.import_hook­s¦€ðt     ‰NÐ$:¸MÈ=ÐZ_Ô`à×/Ñ/° Ó>ˆØ15×1HÑ1HØ Ð2°Eó2;Ñ.ˆÐ.ð     
‰
1k >Ð3IÔJà"ˆ    Ù$Ø&×+Ñ+¨CÓ0ˆAؐ1ŠuÜÐ.Ó/Ø+Aؐð,Ø+¨A¨a©C¨DÐ1ð)ˆDà(×3Ó3±TÐ:ˆEØ×0Ñ0°°u¸iÓHˆIàР𗠑 ˜AÐCÀUÔKÜ!Ð"4´t¸E³{Ñ"BÓCÐCò%ð      ‰ A~ yÔ1à!ˆ Ø'˜ˆñ ¤¨MÜ-4´iÐ,@ô"Bà$(×$NÑ$NØÐ0ó%2ò <Рà#¨>Ò9Ø"×)Ñ)Ð*:Õ;ð <ð ,ò    CˆMØ × !Ñ !ؘ}¸    ð "õ Cð    CðÐrcó&—|jdd|«d}|rf|j}t|t«r|}nGd|vr&|d|j    d«}|j |«}n|j r|j |«}|jdd|«|S)z:
        Determine the package containing a node.
        r—Údetermine_parentNr¢zdetermine_parent ->)rrBrÞrÀÚrfindr.rCr¡)r rrEÚpnames    rr›zModuleGraph._determine_parents‘€ð     
‰
1Ð(¨&Ô1àˆÙ Ø×%Ñ%ˆEä˜&¤'Ô*Ø‘à˜‘ØÐ/˜uŸ{™{¨3Ó/Ð0ØŸ™¨Ó.‘à×#Ò#🙨Ó.à  ‰ AÐ,¨fÔ5؈ rc
ó¤—|jdd|||«d|vr|jdd«\}}n|}d}|tk(r|r|jdz|z}n |}n|tk(r|}d}nú|€'|j dd«t d    |›d
|›d |›d «‚t|dz
«D]Ÿ}d|jvr'|j dd«t d    |›d
|›d |›d «‚|jjdd«d }|j|«}    |    €'|j dd«t d    |›d
|›d |›d «‚|    |us    J|    |f«‚|    }Œ¡|r|jdz|z}n |j}|j|||«}
|
€"| |tkr|}d}|j|||«}
|
|jdd|
|f«|
|fS|jdd|«td|z«‚)a&
        Import the target package providing the target module with the passed
        name to be subsequently imported from the previously imported source
        package corresponding to the passed graph node.
 
        Parameters
        ----------
        source_package : Package
            Graph node for the previously imported **source package** (i.e.,
            package containing the module containing the `import` statement
            triggering the call to this method) _or_ `None` if this module is
            to be imported in a "disconnected" manner. **Passing `None` is
            _not_ recommended.** See the `_import_hook()` method for further
            details.
        target_module_partname : str
            Partially-qualified name of the target module to be imported. See
            `_safe_import_hook()` for further details.
        level : int
            Whether to perform absolute or relative imports. See the
            `_safe_import_hook()` method for further details.
 
        Returns
        ----------
        (target_package, target_module_tailname)
            2-tuple describing the imported target package, where:
            * `target_package` is the graph node created for this package.
            * `target_module_tailname` is the unqualified name of the target
              module to be subsequently imported (e.g., `text` when passed a
              `target_module_partname` of `email.mime.text`).
 
        Raises
        ----------
        ImportError
            If the package to be imported is unimportable.
        r—Úfind_head_packager¢r r    Nrz"Relative import outside of packagez)Relative import outside of package (name=z    , parent=ú, level=ú)rzfind_head_package ->r™rš) rrFÚ!ABSOLUTE_OR_RELATIVE_IMPORT_LEVELrBÚABSOLUTE_IMPORT_LEVELrƒr&ÚrangeÚrsplitr.r r¡r¢) r r¨r¥rÚtarget_module_headnameÚtarget_module_tailnameÚtarget_package_namer«Úp_fqdnÚ
new_parentr©s            rrœzModuleGraph._find_head_package8sn€ðP     
‰
1Ð)¨>Ð;QÐSXÔYð Ð(Ñ (à&×,Ñ,¨S°!Ó4ñ ;Ð "Ñ$:ð&<Ð "Ø%'Ð "ð Ô5Ò 5ÙØ&4×&?Ñ&?À#Ñ&EÐH^Ñ&^Ò#à&<Ò#à Ô+Ò +Ø"8Ð ð"‰NðÐ%Ø—‘˜Ð@ÔAÝ0â.²ÂðGóHðHô˜5 1™9Ó%ò ,Ø˜n×7Ñ7Ñ7Ø—H‘H˜QРDÔEÝ4â2²NÂEðKóLðLð(×2Ñ2×9Ñ9¸#¸qÓAÀ!ÑDØ!Ÿ^™^¨FÓ3
ØÐ%à—H‘H˜QРDÔEÝ4â2²NÂEðKóLðLð"¨Ñ7ð0Ø ð:0ó0Ð7à!+‘ð% ,ñ(&à"×-Ñ-°Ñ3Ð6LÑLñ$ð'5×&?Ñ&?Ð#ð×1Ñ1Ø "Ð$7¸óIˆð Ð ! nÐ&@ÀUÔNcÒEcØ"8Ð Ø!ˆNð"×5Ñ5Ø&Ð(;¸^óMˆNð Ð %Ø K‰K˜Ð1°NÐDZÐ3[Ô \Ø!Ð#9Ð9Ð 9ð      ‰ AÐ;Ð=PÔQÜÐ,Ð/BÑBÓCÐCrc#óÞK—t|«}|jdd||«d|vr1|j|j|««|j    d«|D]~}|j |«}|€e|j dz|z}|j|||«}|€>|j|«r|jdd|j |«Œmtd|z«‚|–—Œ€|jdd«y­w)    aÈ
        Generator importing and yielding each importable submodule (of the
        previously imported package corresponding to the passed graph node)
        whose unqualified name is in the passed list.
 
        Elements of this list that are _not_ importable submodules of this
        package are either:
 
        * Ignorable attributes (e.g., classes, globals) defined at the top
          level of this package's `__init__` submodule, which will be ignored.
        * Else, unignorable unimportable submodules, in which case an
          exception is raised.
 
        Parameters
        ----------
        package : Package
            Graph node of the previously imported package containing the
            modules to be imported and yielded.
 
        attr_names : list
            List of the unqualified names of all attributes of this package to
            attempt to import as submodules. This list will be internally
            converted into a set, safely ignoring any duplicates in this list
            (e.g., reducing the "from"-style import
            `from foo import bar, car, far, bar, car, far` to merely
            `from foo import bar, car, far`).
 
        Yields
        ----------
        Node
            Graph node created for the currently imported submodule.
 
        Raises
        ----------
        ImportError
            If any attribute whose name is in `attr_names` is neither:
            * An importable submodule of this package.
            * An ignorable global attribute (e.g., class, variable) defined at
              the top level of this package's `__init__` submodule.
            In this case, this attribute _must_ be an unimportable submodule of
            this package.
        r—r¤rNr¢zD_import_importable_package_submodules: ignoring from-imported globalršz(_import_importable_package_submodules ->) rIrrXÚ_find_all_submodulesrdrbrBr rNrƒr¢)r ÚpackageÚ
attr_namesrMrªÚsubmodule_names      rr¤z1ModuleGraph._import_importable_package_submodulesÂsèø€ôZ˜“_ˆ
Ø 
‰
1Ð=¸wÈ
ÔSð
*Ñ Ø × Ñ ˜d×7Ñ7¸Ó@Ô AØ × Ñ ˜cÔ "ð
$òZ    ˆIð
 ×5Ñ5°iÓ@ˆIðРà!(×!3Ñ!3°cÑ!9¸IÑ!Eð!×4Ñ4ؘ~¨wó8    ðÐ$ð~×-Ñ-¨iÔ8ØŸ™ Ð$jÐls×l~Ñl~ðAJôKØ ô*Ð*<¸~Ñ*MÓNÐNð‹OðuZ    ðx     
‰
1Ð@ÕAùs‚C+C-c#óÀK—|jsy|jD]Œ}    tj|«}|D]o}t jj«D]A}|j|«sŒtjj|«dt|« }nŒf|dk7sŒl|–—ŒqŒŽy#tjtf$r|j dd|«YŒ¾wxYw­w)Nrzcan't list directoryr!) rCrCÚlistdirÚerrorÚIOErrorrƒr‡Ú    machineryÚ all_suffixesr£r¯ÚbasenamerŸ)r r0r¯rârÚsuffixs      rrÃz ModuleGraph._find_all_submodules[sÖèø€Ø}Š}Ø ð—M‘Mò    ˆDð ÜŸ
™
 4Ó(ðò Ü'×1Ñ1×>Ñ>Ó@òFØ—}‘} VÕ,Ü!Ÿw™w×/Ñ/°Ó5°m¼¸F» °|ÐD˜Ùðð
ؘ:Ó%Ø“Jñ ñ     øô—H‘HœgÐ&ò Ø—‘˜Ð2°DÔ9Ùð üs3‚C B,µ7CÁ-5CÂ#    CÂ,,CÃCÃCÃCcóz—|jdd|›d|›d«t|t«sJdt|«z«‚t|t«sJdt|«z«‚|j|«}|1t|t«r|j
|k(st d|›d|›d    «‚t|«|j|<y)
a¹
        Alias the source module to the target module with the passed names.
 
        This method ensures that the next call to findNode() given the target
        module name will resolve this alias. This includes importing and adding
        a graph node for the source module if needed as well as adding a
        reference from the target to source module.
 
        Parameters
        ----------
        src_module_name : str
            Fully-qualified name of the existing **source module** (i.e., the
            module being aliased).
        trg_module_name : str
            Fully-qualified name of the non-existent **target module** (i.e.,
            the alias to be created).
        rzalias_module "z" -> "ú"z"%s" not a module name.NzTarget module "z" already imported as "z".)    rƒrÞr,r.rŒrBrRr‰r5)r Úsrc_module_nameÚtrg_module_nameÚ
trg_modules    rÚ alias_modulezModuleGraph.alias_modulers³€ð$     ‰‘²?ÂOÐTÔUä˜/¬3Ô/ÐaÐ1JÌSÐQ`ÓMaÑ1aÓaÐ/ܘ/¬3Ô/ÐaÐ1JÌSÐQ`ÓMaÑ1aÓaÐ/ð—^‘^ OÓ4ˆ
Ø Ð !Ü j¤)Ô ,Ø ×  Ñ   OÒ 3Ýâ#¢Zð1ó2ð 2ô
+0°Ó*@ˆ‰Ò'rcóˆ—|jdd|«|j|j«}|€|j|«n||k(sJd|›d|›d«‚|jj    d«\}}}|rL|j|«}|€|jdd|«y|j ||«|j ||«yy)    aš
        Add the passed module node to the graph if not already added.
 
        If that module has a parent module or package with a previously added
        node, this method also adds a reference from this module node to its
        parent node and adds this module node to its parent node's namespace.
 
        This high-level method wraps the low-level `addNode()` method, but is
        typically _only_ called by graph hooks adding runtime module nodes. For
        all other node types, the `import_module()` method should be called.
 
        Parameters
        ----------
        module : BaseModule
            Graph node of the module to be added.
        rÚ
add_moduleNz New module z  != previous r¢r—zadd_module parent not found:)rƒr.rBÚaddNodeÚ
rpartitionrrr])r røÚ module_addedÚ parent_namer[Úmodule_basenamerEs       rrÖzModuleGraph.add_module—s¾€ð"     ‰L &Ô)ð—~‘~ f×&7Ñ&7Ó8ˆ Ø Ð Ø L‰L˜Õ  à˜\Ò)Ñ cÊfÒVbÐ+cÓ cÐ)ð+1×*;Ñ*;×*FÑ*FÀsÓ*KÑ'ˆ Q˜Ù Ø—^‘^ KÓ0ˆF؈~Ø—‘˜Ð:¸KÕHà— ‘ ˜f fÔ-Ø×$Ñ$ _°fÕ=ð rcó^—|jj|g«}|j|«y)ax
        Modulegraph does a good job at simulating Python's, but it can not
        handle packagepath '__path__' modifications packages make at runtime.
 
        Therefore there is a mechanism whereby you can register extra paths
        in this map for a package, and it will be honored.
 
        NOTE: This method has to be called before a package is resolved by
              modulegraph.
 
        Parameters
        ----------
        module : str
            Fully-qualified module name.
        directory : str
            Absolute or relative path of the directory to append to the
            '__path__' attribute.
        N)r7Ú
setdefaultrá)r rMÚ    directoryrNs    rÚappend_package_pathzModuleGraph.append_package_path½s(€ð(×&Ñ&×1Ñ1°,ÀÓCˆØ  ‰ YÕrc
ó†—|jdd|||«|j|«}|€Öd}|,|j |j}n|jdd«y    |j    |||«\}}|j |||«\}}    |    w    t|    tj«r|    }
t|
|ddd«}    nd}
|j||    |
«} |j| «|jr|j|    «}    |    |_|H|j#d d |d |«|j)||t+dddd¬«¬«|j-||«|jdd|«|S#t
$r}|jdd|z«Yd}~yd}~wwxYw#t $r.|j#d    d
|«t$} |j'| |«}YŒÀwxYw)a‡
        Create a new graph node for the module with the passed name under the
        parent package signified by the passed graph node _without_ raising
        `ImportError` exceptions.
 
        If this module has already been imported, this module's existing graph
        node will be returned; else if this module is importable, a new graph
        node will be added for this module and returned; else this module is
        unimportable, in which case `None` will be returned. Like the
        `_safe_import_hook()` method, this method does _not_ raise
        `ImportError` exceptions when this module is unimportable.
 
        Parameters
        ----------
        module_partname : str
            Unqualified name of the module to be imported (e.g., `text`).
        module_name : str
            Fully-qualified name of this module (e.g., `email.mime.text`).
        parent_module : Package
            Graph node of the previously imported parent module containing this
            submodule _or_ `None` if this is a top-level module (i.e.,
            `module_name` contains no `.` delimiters). This parent module is
            typically but _not_ always a package (e.g., the `os.path` submodule
            contained by the `os` module).
 
        Returns
        ----------
        Node
            Graph node created for this module _or_ `None` if this module is
            unimportable.
        rÚsafe_import_moduleNz>safe_import_module -> None (parent_parent.packagepath is None)zsafe_import_module -> None (%r)r‚rTr z#safe_import_module: SyntaxError in r—z#safe_import_module create referencez->F)r6r9r7r8rvzsafe_import_module ->)rr.rCr¡Ú _find_moduler¢Ú _load_modulerÞrßÚASTr‰r‹rŒr6rr?Ú SyntaxErrorrƒr¸r/rQr3r]) r Úmodule_partnameÚ module_nameÚ parent_modulerøÚ search_dirsrŽÚloaderr.r“r’rbr0s              rr zModuleGraph._safe_import_moduleÕsô€ðB     
‰
1Ð*¨O¸[È-ÔXð—‘  Ó,ˆØ ˆ>ðˆKðÐ(ð!×,Ñ,Ð8Ø"/×";Ñ";‘Kð—K‘K Ð#cÔdØð Ø#'×#4Ñ#4Ø# [°-ó$AÑ ˜&ð  ×,Ñ,¨[¸(ÀFÓK‰LˆVR؈~ð?Ü! "¤c§g¡gÔ.Ø!#˜Ü$ V¨X°v¸qÀ$ÓG™à!%˜ØŸ™¨°°FÓ;AØ×)Ñ)¨!Ô,à×)Ò)Ø!×8Ñ8¸Ó<˜Ø"$F”Kð Ð $Ø H‰HQÐ=¸vÀtÈ]Ô [ð × !Ñ !ؘ ´Ø %Ø"Ø"Ø#ô    2ð "ô ð × 'Ñ '¨¸Ô @ð      ‰ AÐ.°Ô7؈ øôWò Ø— ‘ ˜AÐ@À3ÑFÔGÜûð ûô$#ò?Ø—H‘HØÐ@À(ôô.CØ!Ÿ_™_¨S°+Ó>’Fð ?ús+ÁE    A6F    Å    FÅ'FÆFÆ    4GÆ?Gc    óv—ddlm}|jdd|||jj«|j d«d}|j |«r8t|t«r2|jt|«}d|_ |jdd|_ n´|jj|g«}t||«r|jt |«}n|jt"|«}||_ t$j&j)|«j+d«sJ‚t$j&j-|«g|z|_ |j|j.j|g«z|_ t|t«r|dfSd}|t0urt2}    nwt||«rt4}    d    „}
|
|«}nY    |j7|«} | %    tE| |d tFjHd«}tJ}    n     |jQ|«}|tRntT}    |j|    |«}||_ |jWdd|«||fS#t8t:f$rp} t| t:«rt| j<t8«s‚|j?dd
|›d | ›d «|jA|«} |jC| «} Yd} ~ Œñd} ~ wwxYw#t:$r d}tL}    YŒÅtN$r$}tL}    |j?dd||«Yd}~Œìd}~wwxYw#tN$r%}|j?dd||«tT}    Yd}~Œd}~wwxYw)Nr)ÚExtensionFileLoaderrÚ load_moduler¢r$ú-z    __init__.có—tjj|«}tjj|«j    d«d}dD]‹}tjj |||z«}tjj |«sŒF    t|d«5}|j«}ddd«t|dtjd«}|cSy#1swYŒ,xYw#t$r
}Yd}~Œ©d}~wwxYw)Nr¢r>ú.pyú.pyirr‚T) rCr¯ÚdirnamerÍrFrDÚisfiler…r†r‰rßrŠÚ    Exception)    Úextension_filenamer¯rÍÚextÚ src_filenamerÚsrcr“Úes             rÚ_co_from_accompanying_sourcez>ModuleGraph._load_module.<locals>._co_from_accompanying_sourceks׀Ü—w‘w—‘Ð'9Ó:ÜŸ7™7×+Ñ+Ð,>Ó?×EÑEÀcÓJÈ1ÑMà*ò CÜ#%§7¡7§<¡<°°hÀ±nÓ#ELÜŸ7™7Ÿ>™>¨,Ô7Ø ðÜ! ,°Ó5ð,¸Ø"$§'¡'£)˜C÷,ä$ S¨,¸Ä×@QÑ@QÐSWÓX˜Ø!š    ñ ÷ ,ð,ûô%òÜûðús* C.Â&C"Â7&C.Ã"C+    Ã'C.Ã.    DÃ<Dz)load_module: failed to obtain source for z: z&! Falling back to reading as raw data!r‚Tz load_module: InvalidSourceModulez4load_module: InvalidCompiledModule, Cannot load codezload_module ->),Úimportlib._bootstrap_externalrìrr’rrØrrÞrr/rÅr@rrCr8rarÃrÀrCr¯rÍrhròr7rr´r¾Ú
get_sourceÚUnicodeDecodeErrorråÚ __context__rƒÚ get_filenameÚget_datar‰rßrŠr¶r¸rôÚget_coderºr¼r¡)r rrŽrêrìÚpartnamer0Ú ns_pkgpathsr“r0rúrørùr¯r.s               rrãzModuleGraph._load_module:s€ÝEØ 
‰
1m V¨XØ×#Ñ#×,Ñ,ô    .à×$Ñ$ SÓ)¨"Ñ-ˆà × Ñ ˜XÕ &ܘ&Ô"3Ô4à—O‘OÔ$4°fÓ=Ø ”
Ø &× 5Ñ 5±aР8• ð#×6Ñ6×:Ñ:¸6À2ÓF ä˜fÐ&9Ô:ØŸ™Ô(8¸&ÓA‘AàŸ™¬°Ó8AØ%”
ô—w‘w×'Ñ'¨Ó1×<Ñ<¸[ÔIÐIÐIÜ!#§¡§¡°Ó!:Р;¸kÑ I” ðŸM™M¨D×,BÑ,B×,FÑ,Fؘó-ñˆAŒMô˜!Ô-Ô.ؘ4yÐ à ˆØ ”^Ñ #܉CÜ ˜Р3Ô 4܈Cò ñ".¨hÓ7‰Bð ,Ø×'Ñ'¨Ó1ð>ˆð    "Ü   h°¼×8IÑ8IÈ4ÓPBÜ&‘Cð0ØŸ™¨Ó2BØ-/¨^>Ü 5ðð O‰O˜C Ó (ˆØˆŒ
à  ‰ AÐ'¨Ô+ؐ2ˆwˆøôq'¬ Ð4ò ,ô&˜a¤Ô-Ü% a§m¡mÔ5GÔHØà—‘˜ÐGØ$˜: R¨ sð+%ð%ô&ð×*Ñ*¨8Ó4Ø—o‘o dÓ+•ûð9 ,ûôD#ò.ؐBÜ-’CÜ ò"Ü-CØ—H‘H˜QРBÀHØ ÷"ñ"ûð"ûô!ò0Ø—H‘H˜Qð!0Ø19¸3ô@ä/–Cûð0úsOÆ>IÇ#KÇ7L
ÉKÉA&KËKËLËLË#LÌLÌ
    L8ÌL3Ì3L8c 󜇇‡‡‡—‰jdd‰‰‰‰«ˆˆˆˆfd„}ˆfd„}d}d}        ‰j‰‰d‰|¬«}t|«dk(sJdj|««‚|d}t|t«r:|    €8|«r1|‰«r)‰j|«‰j!‰‰dd|¬«}|St|t"«r|j%d¬«}‰r±t|t&t(f«rš‰D]”}|j+|«r=|j-|«}|*||vr%‰j ‰||¬ «|j|«ŒR|j.d
z|z}‰j1|«}|€É    ‰j‰‰|g‰|¬«‰j1|«}|€R|j3|«s!Jdj||j.««‚‰jd dd|j.|«Œô|    rJ‰j1|«r‰jdd|›d|›d«n‰jd d |›d!|›«||_|j5||«|€ŒV‰j |||¬ «‰j ‰||¬ «||vsŒ„|j|«Œ—|S#t$ri‰jdd‰‰‰«g}
‰xsd    D]D} ‰j    t
d
‰z‰z| «} ‰j ‰| |¬ «|
j| «ŒF|
cYSt$rú} |«r“‰jd d ‰›d‰›d‰›d«|‰«}    |    rm‰gŠdŠdЉjdd‰›d‰›d‰›d«    ‰j‰‰d‰|¬«}n2#t$r&} ‰jddt| ««Yd} ~ nd} ~ wwxYw|€S‰jddt ««‰j    tt| ‰««}‰j ‰||¬ «|g}Yd} ~ Œ¹d} ~ wwxYw#t$r=} ‰jddt| ««‰j    t|«}Yd} ~ Œd} ~ wwxYw)"a
        Import the module with the passed name and all parent packages of this
        module from the previously imported caller module signified by the
        passed graph node _without_ raising `ImportError` exceptions.
 
        This method wraps the lowel-level `_import_hook()` method. On catching
        an `ImportError` exception raised by that method, this method creates
        and adds a `MissingNode` instance describing the unimportable module to
        the graph instead.
 
        Parameters
        ----------
        target_module_partname : str
            Partially-qualified name of the module to be imported. If `level`
            is:
            * `ABSOLUTE_OR_RELATIVE_IMPORT_LEVEL` (e.g., the Python 2 default)
              or a positive integer (e.g., an explicit relative import), the
              fully-qualified name of this module is the concatenation of the
              fully-qualified name of the caller module's package and this
              parameter.
            * `ABSOLUTE_IMPORT_LEVEL` (e.g., the Python 3 default), this name
              is already fully-qualified.
            * A non-negative integer (e.g., `1`), this name is typically the
              empty string. In this case, this is a "from"-style relative
              import (e.g., "from . import bar") and the fully-qualified name
              of this module is dynamically resolved by import machinery.
        source_module : Node
            Graph node for the previously imported **caller module** (i.e.,
            module containing the `import` statement triggering the call to
            this method) _or_ `None` if this module is to be imported in a
            "disconnected" manner. **Passing `None` is _not_ recommended.**
            Doing so produces a disconnected graph in which the graph node
            created for the module to be imported will be disconnected and
            hence unreachable from all other nodes -- which frequently causes
            subtle issues in external callers (e.g., PyInstaller, which
            silently ignores unreachable nodes).
        target_attr_names : list
            List of the unqualified names of all submodules and attributes to
            be imported via a `from`-style import statement from this target
            module if any (e.g., the list `[encode_base64, encode_noop]` for
            the import `from email.encoders import encode_base64, encode_noop`)
            _or_ `None` otherwise. Ignored unless `source_module` is the graph
            node of a package (i.e., is an instance of the `Package` class).
            Why? Because:
            * Consistency. The `_import_importable_package_submodules()`
              method accepts a similar list applicable only to packages.
            * Efficiency. Unlike packages, modules cannot physically contain
              submodules. Hence, any target module imported via a `from`-style
              import statement as an attribute from another target parent
              module must itself have been imported in that target parent
              module. The import statement responsible for that import must
              already have been previously parsed by `ModuleGraph`, in which
              case that target module will already be frozen by PyInstaller.
              These imports are safely ignorable here.
        level : int
            Whether to perform an absolute or relative import. This parameter
            corresponds exactly to the parameter of the same name accepted by
            the `__import__()` built-in: "The default is -1 which indicates
            both absolute and relative imports will be attempted. 0 means only
            perform absolute imports. Positive values for level indicate the
            number of parent directories to search relative to the directory of
            the module calling `__import__()`." Defaults to -1 under Python 2
            and 0 under Python 3. Since this default depends on the major
            version of the current Python interpreter, depending on this
            default can result in unpredictable and non-portable behaviour.
            Callers are strongly recommended to explicitly pass this parameter
            rather than implicitly accept this default.
 
        Returns
        ----------
        list
            List of the graph nodes created for all modules explicitly imported
            by this call, including the passed module and all submodules listed
            in `target_attr_names` _but_ excluding all parent packages
            implicitly imported by this call. If `target_attr_names` is either
            `None` or the empty list, this is guaranteed to be a list of one
            element: the graph node created for the passed module. As above,
            `MissingNode` instances are created for all unimportable modules.
        rrScó •—‰duxrH‰duxrB‰tk(xr7t‰«tuxr$‰d‰jj    d«dzk(S)Nr[r¢r)rºr…r¶rBrØ)rr¦r§r¥s€€€€rÚis_swig_candidatez8ModuleGraph._safe_import_hook.<locals>.is_swig_candidatesrø€Ø!¨Ð-òHØ%¨Ð-òHàÔ2Ñ2òHô˜Ó'¬<Ð7òHð+ؘM×4Ñ4×?Ñ?ÀÓDÀQÑGÑGñHð     Ircó•—t|jd«5}|j«}ddd«tjj «}|r|j «dnd}‰jdd|z«d|vS#1swYŒXxYw)Nrrr    éz%SWIG wrapper candidate first line: %rzautomatically generated by SWIG)r…r@r†r‡rrˆrBrƒ)r¦rr‘Ú
first_liner s    €rÚis_swig_wrapperz6ModuleGraph._safe_import_hook.<locals>.is_swig_wrappersø€Üm×,Ñ,¨dÓ3ð %°rØŸ7™7›9÷ %ä —~‘~×3Ñ3°HÓ=ˆHÙ5=˜×,Ñ,Ó.¨qÒ1À2ˆJØ H‰HQÐ?À:ÑNÔ OØ4¸
ÐBÐ B÷  %ð %ús ˜BÂB    N)r§rrrzInvalid relative importrr¢rvr—zSWIG import candidate (name=z    , caller=r·r¸r    r zSWIG import (caller=z , fromlist=zSWIG ImportError:z ImportError:z@Expected import_hook() toreturn only one module but received: {}rT)r9z!No global named {} in {}.__init__z#ignoring imported non-module globalzSWIG import error: z
 basename z already existszSWIG import renamed from z to )rƒr°r&r¡r/r rQrár¢r,ržr1rŸÚformatrÞÚ
removeNoderSr3Ú_replacerÀrŒrSr_rBr.rNr])r r¥r¦r§rrrr
r®Úis_swig_importrãÚsubr0rƒrYÚtarget_submodule_partnamer¯Útarget_submodule_names`````             rrSzModuleGraph._safe_import_hookºsPü€ðd     ‰Ð'Ð)?ÀÐPaÐchÔi÷    Iô    Cð ˆð
ˆðZ    1Ø!×-Ñ-Ø&¨ Ø"&¨e¸yð.óJˆNôx>Ó" aÒ'ð    Nð 6ß6<±f¸^Ó6Ló    NÐ'ð
' qÑ)ˆ ä m¤]Ô 3ØÐ%Ñ*;Ô*=Ù˜}Ô-ð$ O‰O˜MÔ *à!×3Ñ3Ø&¨ Ø"&¨a¸9ð4óFˆNð
"Ð !ä i¤Ô 0Ø!×*Ñ*°DÐ*Ó9ˆIò ¤¨MÜ-4´iÐ,@õ"Bð.?óA @Ð)ð!×-Ñ-Ð.GÔHà'4×'BÑ'BØ1ó(3Ð$ð
(Ð3ð ,°>ÑAØ ×1Ñ1Ø -Ø 0Ø*3ð2ô5ð+×1Ñ1Ð2BÔCØ ð"×,Ñ,¨sÑ2Ð5NÑNð&ð$(§>¡>Ð2GÓ#HРð $Ð+ðKBð(×(Ñ(Ø2°MØ/HÐ.IØ"'Ø&/ð    )ô1ð,0¯>©>Ð:OÓ+PÐ(ð
,Ð3à#0×#?Ñ#?Ø 9ô$;ð?à C× JÑ JØ$=Ø$1×$<Ñ$<ó!>ó?ð$;ð!ŸH™H QÐ(;Ð=bÐdq×d|Ñd|ðXôYØ$ñ*ð $Ÿ~™~Ð.GÔHØ $§¡Ù$%ò)>Ú(Að%Cõ!Dð!%§¡Ù$%â(=Ù(Að%Cô!Dð %>ð!1Ô ;ð×+Ñ+Ø-Ð/?ôAà#Ò/Ø×)Ñ)Ø%Ð'7À9ð*ôNà×)Ñ)Ø%Ð'7À9ð*ôNð(¨~Ó=Ø&×-Ñ-Ð.>Ö?ðCA @ðHÐøôe*ò        Ø K‰K˜Ð4°eØ.Ð0Aô CàˆFØ(Ò/¨Cò !Ø—O‘OÔ$9Ø$'¨%¡KÐ2HÑ$HÈ#óOà×%Ñ% m°QÀ)Ð%ÔLØ— ‘ ˜aÕ ð     !ð
ŠMÜòJ    1ñD!Ô"Ø—‘Ùâ.² ºuðFôGñ"1°Ó!?Ù!ð *@Ð(@Ð%Ø-/Ð*ؐEØ—H‘H™Qâ -Ò/@Â%ðIôJðCØ)-×)9Ñ)9Ø2°MØ.2Ø"'Ø&/ð    *:ó*1™øô
'òCØŸ™ Ð$7¼¸S»×BÑBûðCúðÐ%Ø—‘˜˜N¬C°«HÔ5ð!%§¡Ü!Ü*¨3Ð0FÓGó!I ð×%Ñ%Ø! =¸Ið&ôGð#0 ÿùðUJ    1ûôl'òBØŸ™  N´C¸³HÔ=Ø+/¯?©?Ü)Ð+@ó,BÖ(ûðBúsj®JÅ-A;PÇ)A PÊA/PÌPÌAO=ÍM0Í/O=Í0    NÍ9NÎO=ÎNÎAO=Ï=PР   Q Ð2QÑQ có—g|_|(|j||«|j||d¬«|S|j||d¬«|S)a¦
        Parse and add all import statements from the passed code object of the
        passed source module to this graph, recursively.
 
        **This method is at the root of all `ModuleGraph` recursion.**
        Recursion begins here and ends when all import statements in all code
        objects of all modules transitively imported by the source module
        passed to the first call to this method have been added to the graph.
        Specifically, this method:
 
        1. If the passed `module_code_object_ast` parameter is non-`None`,
           parses all import statements from this object.
        2. Else, parses all import statements from the passed
           `module_code_object` parameter.
        1. For each such import statement:
           1. Adds to this `ModuleGraph` instance:
              1. Nodes for all target modules of these imports.
              1. Directed edges from this source module to these target
                 modules.
           2. Recursively calls this method with these target modules.
 
        Parameters
        ----------
        module : Node
            Graph node of the module to be parsed.
        module_code_object : PyCodeObject
            Code object providing this module's disassembled Python bytecode.
            Ignored unless `module_code_object_ast` is `None`.
        module_code_object_ast : optional[ast.AST]
            Optional abstract syntax tree (AST) of this module if any or `None`
            otherwise. Defaults to `None`, in which case the passed
            `module_code_object` is parsed instead.
        Returns
        ----------
        module : Node
            Graph node of the module to be parsed.
        F)Úis_scanning_importsT)rDÚ    _scan_astÚ_scan_bytecode)r røÚmodule_code_objectÚmodule_code_object_asts    rr‹zModuleGraph._scan_codeI    sn€ðZ$&ˆÔ ð
"Ð -à N‰N˜6Ð#9Ô :ð × Ñ ØÐ*Àð  ô Gðˆ ð × Ñ ØÐ*Àð  ô Fðˆ rcó>—t||«}|j|«y)a
        Parse and add all import statements from the passed abstract syntax
        tree (AST) of the passed source module to this graph, non-recursively.
 
        Parameters
        ----------
        module : Node
            Graph node of the module to be parsed.
        module_code_object_ast : ast.AST
            Abstract syntax tree (AST) of this module to be parsed.
        N)rîÚvisit)r rørÚvisitors    rrzModuleGraph._scan_astŠ    s€ô˜4 Ó(ˆØ ‰ Ð,Õ-rcó(—d}d}td¬«}tj|«D]i}|sŒ|jdk(rì|sŒtj
dk\r&|djdvsJ‚|djd    vs*J‚|djd
k(sJ‚|djd
k(sJ‚|dj }|dj }|t|«tusJ‚|j }d }    |"t|«}d |vr|jd «d }    |jj|    ||||fif«nW|jdvr|j }
|j|
«n+|jdvr|j }
|j|
«|j|«Œly)aì
        Parse and add all import statements from the passed code object of the
        passed source module to this graph, non-recursively.
 
        This method parses all reasonably parsable operations (i.e., operations
        that are both syntactically and semantically parsable _without_
        requiring Turing-complete interpretation) directly or indirectly
        involving module importation from this code object. This includes:
 
        * `IMPORT_NAME`, denoting an import statement. Ignored unless
          the passed `is_scanning_imports` parameter is `True`.
        * `STORE_NAME` and `STORE_GLOBAL`, denoting the
          declaration of a global attribute (e.g., class, variable) in this
          module. This method stores each such declaration for subsequent
          lookup. While global attributes are usually irrelevant to import
          parsing, they remain the only means of distinguishing erroneous
          non-ignorable attempts to import non-existent submodules of a package
          from successful ignorable attempts to import existing global
          attributes of a package's `__init__` submodule (e.g., the `bar` in
          `from foo import bar`, which is either a non-ignorable submodule of
          `foo` or an ignorable global attribute of `foo.__init__`).
        * `DELETE_NAME` and `DELETE_GLOBAL`, denoting the
          undeclaration of a previously declared global attribute in this
          module.
 
        Since `ModuleGraph` is _not_ intended to replicate the behaviour of a
        full-featured Turing-complete Python interpreter, this method ignores
        operations that are _not_ reasonably parsable from this code object --
        even those directly or indirectly involving module importation. This
        includes:
 
        * `STORE_ATTR(namei)`, implementing `TOS.name = TOS1`. If `TOS` is the
          name of a target module currently imported into the namespace of the
          passed source module, this opcode would ideally be parsed to add that
          global attribute to that target module. Since this addition only
          conditionally occurs on the importation of this source module and
          execution of the code branch in this module performing this addition,
          however, that global _cannot_ be unconditionally added to that target
          module. In short, only Turing-complete behaviour suffices.
        * `DELETE_ATTR(namei)`, implementing `del TOS.name`. If `TOS` is the
          name of a target module currently imported into the namespace of the
          passed source module, this opcode would ideally be parsed to remove
          that global attribute from that target module. Again, however, only
          Turing-complete behaviour suffices.
 
        Parameters
        ----------
        module : Node
            Graph node of the module to be parsed.
        module_code_object : PyCodeObject
            Code object of the module to be parsed.
        is_scanning_imports : bool
            `True` only if this method is parsing import statements from
            `IMPORT_NAME` opcodes. If `False`, no import statements will be
            parsed. This parameter is typically:
            * `True` when parsing this module's code object for such imports.
            * `False` when parsing this module's abstract syntax tree (AST)
              (rather than code object) for such imports. In this case, that
              parsing will have already parsed import statements, which this
              parsing must avoid repeating.
        Nr)ÚmaxlenÚ IMPORT_NAME)rééþÿÿÿ>Ú
LOAD_CONSTÚLOAD_SMALL_INTÚLOAD_CONST_IMMORTALr$>r r"r FrT)Ú
STORE_NAMEÚ STORE_GLOBAL)Ú DELETE_NAMEÚ DELETE_GLOBAL)rrÚiterate_instructionsÚopnamer4Ú version_infoÚargvalr…r±rìrdrDrárVre) r rørrrr9Ú
prev_instsÚinstr¥rrs            rrzModuleGraph._scan_bytecode¤    s¼€ð~ˆØˆô !”_ˆ
Ü×-Ñ-Ð.@ÓAóT    $ˆDÙØð{‰{˜mÒ+ñ+Øô×#Ñ# wÒ.Ø% b™>×0Ñ0Ð4kÑkÐkÐkØ% b™>×0Ñ0Ð4YÑYÐYÐYà% b™>×0Ñ0°LÒ@Ð@Ð@Ø% b™>×0Ñ0°LÒ@Ð@Ð@à" 2™×-Ñ-Ø% b™>×0Ñ0àÐ'¬4°«>¼UÑ+BÐBÐBØ)-¯©Ð&ð"    ØÐ'Ü# H›~Hؘh‘Ø Ÿ™¨Ô,Ø$(˜    ð×(Ñ(×/Ñ/ØØ+¨V°X¸uÐEØð1õð —‘Р>Ñ>ð—{‘{Ø×&Ñ& tÕ,à—‘Р@Ñ@ð
—{‘{Ø×2Ñ2°4Ô8à × Ñ ˜dÖ #ñiT    $rcóV—|jsy|jD]†\}}}|j|i|¤Ž}|sŒ|d}|sŒ$|j|«|jj    |j«|j
Œg|d}|jj |«Œˆd|_y)aª
        Graph all target modules whose importations were previously parsed from
        the passed source module by a prior call to the `_scan_code()` method
        and methods call by that method (e.g., `_scan_ast()`,
        `_scan_bytecode()`, `_scan_bytecode_stores()`).
 
        Parameters
        ----------
        source_module : Node
            Graph node of the source module to graph target imports for.
        Nr)rDrSrZrFrXr?rU)r r¦rÚ import_infoÚkwargsr®rYÚtarget_module_names        rrŒzModuleGraph._process_imports@
sǀð×.Ò.Ø ð/<×.MÑ.Mò(    ,Ñ *ˆI{ Fð4˜T×3Ñ3°[ÐKÀFÑKˆNÙ!ð Ø*¨1Ñ-ˆMòð×:Ñ:¸=ÔIà×@Ñ@×GÑGØ!×DÑDôFð
!×%Ñ%Ñ-Ø)4°Q©Ð&Ø!×DÑD×HÑHØ*õ,ðO(    ,ðV+/ˆ Õ'rcó—||jdz|z}n|}|j|«}||jdd|«t|«‚|€&|tj
vrdt fS|j}|j|||«S)aý
        3-tuple describing the physical location of the module with the passed
        name if this module is physically findable _or_ raise `ImportError`.
 
        This high-level method wraps the low-level `modulegraph.find_module()`
        function with additional support for graph-based module caching.
 
        Parameters
        ----------
        name : str
            Fully-qualified name of the Python module to be found.
        path : list
            List of the absolute paths of all directories to search for this
            module _or_ `None` if the default path list `self.path` is to be
            searched.
        parent : Node
            Package containing this module if this module is a submodule of a
            package _or_ `None` if this is a top-level module.
 
        Returns
        ----------
        (filename, loader)
            See `modulegraph._find_module()` for details.
 
        Raises
        ----------
        ImportError
            If this module is _not_ found.
        Nr¢rzfind_module: already included?)    rBr.rƒr¢r4Úbuiltin_module_namesrr¯Ú_find_module_path)r rr¯rEÚfullnamer‘s      rrâzModuleGraph._find_module€
s€ð> Ð à×(Ñ(¨3Ñ.°Ñ5‰HàˆHà~‰~˜hÓ'ˆØ Ð Ø H‰HQÐ8¸$Ô ?ܘdÓ#Ð #à ˆ<Ø”s×/Ñ/Ñ/ØœnÐ-Ð-à—9‘9ˆDà×%Ñ% h°°dÓ;Ð;rcó¸—|jdd||«d}g}    |D]3}tj|«}|€Œt|d«rAd}|j    |«}    |    Ž|    j
}|j |    jxsg«nbt|d«r&|j|«\}}
|j |
«n0t|d«r|j|«}ntd|›d|›d    «‚|€ŒÎd} t|d
«r|j|«} n+t|d «r |j} ntd|›d |›d «‚| €|jdd| «Œ0| |f}n|r|dt|«f}|j!dd|«|€tdt%|«z«‚|S#t$r} |j!dd| «Yd} ~ ŒOd} ~ wt"$r} |j!dd| «‚d} ~ wwxYw)a¥
        3-tuple describing the physical location of the module with the passed
        name if this module is physically findable _or_ raise `ImportError`.
 
        This low-level function is a variant on the standard `imp.find_module()`
        function with additional support for:
 
        * Multiple search paths. The passed list of absolute paths will be
          iteratively searched for the first directory containing a file
          corresponding to this module.
        * Compressed (e.g., zipped) packages.
 
        For efficiency, the higher level `ModuleGraph._find_module()` method
        wraps this function with support for module caching.
 
        Parameters
        ----------
        module_name : str
            Fully-qualified name of the module to be found.
        search_dirs : list
            List of the absolute paths of all directories to search for this
            module (in order). Searching will halt at the first directory
            containing this module.
 
        Returns
        ----------
        (filename, loader)
            2-tuple describing the physical location of this module, where:
            * `filename` is the absolute path of this file.
            * `loader` is the import loader.
              In case of a namespace package, this is a NAMESPACE_PACKAGE
              instance
 
        Raises
        ----------
        ImportError
            If this module is _not_ found.
        r—z_find_module_path <-NÚ    find_specÚ find_loaderÚ find_modulezModule z
 importer z loader unobtainablerÿr¯z loader z path unobtainablez _find_module_path path not foundrr z"_find_module_path -> unicode errorz_find_module_path -> exceptionz_find_module_path ->rš)rÚpkgutilÚ get_importerr”r6rêÚextendÚsubmodule_search_locationsr7r8r¢rÿr¯rƒrrýr¡rôr£) r r4rçréÚ    path_datarÚ
search_dirÚimporterrêÚspecÚloader_namespace_dirsrŽr.s              rr3zModuleGraph._find_module_path³
s-€ðN     
‰
1Ð,¨h¸ ÔDðˆ    ðˆðQ    Ø)óI D
ä"×/Ñ/°
Ó;ðÐ#àô˜8 [Ô1Ø!FØ#×-Ñ-¨kÓ:DØÐ'Ø!%§¡˜Ø&×-Ñ-¨d×.MÑ.MÒ.SÐQSÕTô˜X }Ô5Ø4<×4HÑ4HØ#ó5%Ñ1FÐ1à"×)Ñ)Ð*?Õ@ô˜X }Ô5Ø%×1Ñ1°+Ó>‘Fõ&ÚGRÒT\Ð]ó_ð_ð>à𠠐ô
˜6 >Ô2Ø%×2Ñ2°;Ó?‘Hä˜V VÔ,Ø%Ÿ{™{‘Hõ&ÚCNÒPVÐWóYðYð
Ð#Ø—H‘H˜QРBÀHÔMÙð& vÐ.    ÙðII DñN"Ø!/°Ñ!2Ü!2°>Ó!Bð!DIð      ‰ AÐ-¨yÔ9Ø Ð ÜÐ0´4¸ Ó3DÑDÓEÐ EàÐøô"ò    FØ K‰K˜Ð?À× EÑ Eûôò    Ø K‰K˜Ð;¸SÔ AØ ûð    ús$šE FÆ    GÆF4Æ4 GÇGÇGc    óì—|€tj}g}g}|j«D]b}tjj |j «}t|t«r|j||f«ŒP|j||f«Œd|j«|j«|Dcgc]\}}|‘Œ    }}}|j|«|}ddj|«z}    ttd|    iz|¬«d„}
|D]X\}}d} t|t«r t |ddœz} nxt|t"«rt |d    |j$zdœz} nNt&j(j+|j$xsd«} t,|| |j.j0d
œz} t3|
|j5|««\} }| rAg}| D]}|jd |›d |›d «Œdj|«}| t6d|dœzz } |rAg}|D]}|jd |›d |›d «Œdj|«}| t6d|dœzz } tt8|| dœz|¬«Œ[tt:|¬«ycc}}w)Nz modulegraph cross reference for z, ÚTITLE)Úfilecó¢—|Dcgc].}|sŒtjj|j«‘Œ0}}|j    «|Scc}wr)rCr¯rÍrAÚsort)ÚmodsÚmodÚlsts   rÚsorted_namelistz0ModuleGraph.create_xref.<locals>.sorted_namelistS s>€Ø?CÖK¸Âs”2—7‘7×#Ñ# C§N¡NÕ3ÐKˆCÐKØ H‰HŒJ؈JùòLs
…A +A r    z<i>(builtin module)</i>)ÚNAMEÚTYPEz <tt>%s</tt>)rKÚURLrLz   <a href="#z">z</a>
z     &#8226; Úimports)ÚHEADÚLINKSz imported by)rKÚCONTENT)r4ÚstdoutÚ
iter_graphrCr¯rÍrArÞr©rárFr;rDÚprintÚheaderr´Úcontplr¾r@ÚurllibÚrequestÚ pathname2urlÚ contpl_linkedr’rÚmaprXrNÚentryÚfooter)r ÚoutÚscriptsrGrHrÚsnr0Ú scriptnamesÚtitlerJÚcontentÚurlÚouteÚinceÚlinksrbs                 rÚ create_xrefzModuleGraph.create_xref> s`€à ˆ;Ü—*‘*ˆC؈؈ؗ?‘?Ó$ò    )ˆCÜ—7‘7×#Ñ# C§N¡NÓ3ˆDܘ#œvÔ&Ø—‘  c˜{Õ+à— ‘ ˜T 3˜KÕ(ð     )ð      ‰ ŒØ     ‰    Œ Ø'.×/™e˜b !’rÐ/ˆ Ñ/؏‰tÔØˆà2°T·Y±Y¸{Ó5KÑKˆÜ Œf˜ Ð'Ñ'¨cÕ2ò    ðó    H‰GˆD!؈Gܘ!œ]Ô+Ü ¨DØ,Eñ$GñG‘ä˜AœyÔ)Ü ¨DØ,9¸A¿J¹JÑ,Fñ$HñH‘ô—n‘n×1Ñ1°!·*±*Ò2BÀÓCÜ'°4ÀØ34·;±;×3GÑ3Gñ+IñIä˜_¨d¯n©n¸QÓ.?Ó@‰JˆD$ÙØØòJAØ—L’LÂ1ÂaÐ!HÕIðJð
$×(Ñ(¨Ó/Øœ7¨iÀ%Ñ%HÑHÑHÙؐØòJAØ—L’LÂ1ÂaÐ!HÕIðJð
$×(Ñ(¨Ó/Øœ7¨mÀeÑ%LÑLÑLÜ ”% 4°GÑ<Ñ<À3× Gð?    Hô@    Œf˜3ÖùóW0sÂ1 I0c #ó‡ ‡!‡"K—tt|jj|jj    |«««}|jj
Š!t «}t«}i}i}i}t«}    t|«}d„}
d„Š"d|›d–—tdd¬«} dŠ | j«D] } d    ‰ | z›d
–—Œ|D]W\} }}}t|d d«|| <t|t«sŒ)| ||j<t| g«|| <|j| «ŒY|D]Ë\} }}}ˆ!fd „|D«D]}|j|«Œd | ›ddj!|
| |||«j«D cgc]} ‰ | z‘Œ    c} «›d–—|j#| «}|€t«x}|| <|| }|€Œ•|j#|d|j%d««}|€Œ»|j|«ŒÍg}i}|D]}g||<Œ    |r!|j'«\}}}}||f|    vrŒ|    j||f«||}|||z}|sT|rRt)|«}t+|«dk7s|d|k7r1|j||||df«|j|d|d|f«Œ•|rt|j-«}||k(r|j||||f«n^||k(r||j|d||f«n@|j||||f«|j||||f«n|j||||f«|rŒ!ˆ ˆ"fd„}|j«D].\}}d|›d–—d||›d–—||d«D]}|–—Œd–—Œ0||d    «D]}|–—Œd–—ycc} w­w)Ncóԗt|t«s dt|«iSdt|«jz}t |j «ddd«D]\}}|d||fzz }Œ|ddœS)NÚlabelz<f0> r z
| <f%d> %sÚrecord)rkÚshape)rÞr>r,r…rÚ    enumeraterƒ)r‘r{r\r^Úsr«Úvs       rÚ nodevisitorz0ModuleGraph.itergraphreport.<locals>.nodevisitor‡ sw€Ü˜d¤DÔ)ؤ T£Ð+Ð+ðœ$˜t›*×-Ñ-Ñ-ˆAÜ! $§.¡.Ó"2°2°AÐ"6¸Ó:ò +‘1ؐ\ Q¨ FÑ*Ñ*‘ð +à¨Ñ2Ð 2rcó*—|dk(rddiS|dk(rddiSiS)NÚorphanÚstyleÚdashedÚpkgrefÚdottedr)Úedger{r¬Útails    rÚ edgevisitorz0ModuleGraph.itergraphreport.<locals>.edgevisitor’ s/€ðxÒØ Ð*Ð*ؘÒ!Ø Ð*Ð*؈Irzdigraph z {
charset="UTF-8";
ÚLRÚtrue)ÚrankdirÚ concentratez%s="%s"ú    z;
rAc3ó.•K—|] }‰|«–—Œy­wrr)Ú.0rùÚ describe_edges  €rú    <genexpr>z.ModuleGraph.itergraphreport.<locals>.<genexpr>¬ søèø€Ò<¨a™ q×)Ñ<ùsƒz    "z" [ú,z];
r¢r rrvr$c 3óÀ•K—|dz}|D]J\}}}}‰
||||«}|||dj|j«Dcgc]}‰    |z‘Œ    c}«fz–—ŒLycc}w­w)Nz"%s" -> "%s" [%s];
r„)rDrG) ÚedgesÚtabsÚedgestrrxr{r¬ryÚattribsÚitemÚcpattrzs          €€rÚdo_graphz-ModuleGraph.itergraphreport.<locals>.do_graphá syøèø€ØÐ3Ñ3ˆGà,1ò Ñ(t˜T 4Ù% d¨D°$¸Ó=ØØØØ—H‘H¸¿¹»ÖI°˜u t›|ÒIÓJð!ñóñ ùò
Jùsƒ;A¾ AÁ
Az    subgraph "cluster_z" {
z            label="z";
z        z    }
z}
)rHr[r÷Ú describe_nodeÚiterdfsr‚rrIrJrGrhrÞrÀrArUrárDrar³ÚpopleftÚsortedrŸr )#r rÚ flatpackagesrgr†Ú packagenodesÚ packageidentsÚ nodetoidentÚ
inpackagesÚ    mainedgesrqÚattrrŠr‘r{r\r^rxÚinsideÚidentÚpkgnoder÷Ú    subgraphsÚkeyr¬ryÚtailpkgsÚcommonÚusepkgsrŒÚgror‹r‚rzs#                                @@@rÚitergraphreportzModuleGraph.itergraphreporty sêúèø€ä”S˜Ÿ™×1Ñ1°4·:±:×3EÑ3EÀdÓ3KÓLÓMˆØŸ
™
×0Ñ0ˆ Ü“ˆÜ“uˆ ؈ ؈ ؈
Ü“Eˆ    ô˜LÓ)ˆ ò    3ó    ò59Ð:Ò:ܘD¨fÔ5ˆØˆØ—J‘J“Lò    .‰DØ$ t›|Ð-Ó -ð    .ð16ò    'Ñ ,ˆT4˜ 8Ü '¨¨l¸DÓ AˆK˜Ñ ܘ$¤Õ(Ø15 ˜dŸo™oÑ.Ü#&¨ v£;
˜4Ñ Ø× Ñ  Õ&ð     'ð16ò    $Ñ ,ˆT4˜ 8ã<°8Ô<ò #Ø— ‘ ˜TÕ"ñ #ò
Ø—‘á  d¨H°hÓ?×EÑEÓGöØ'+U˜T“\òõðò ð —^‘^ DÓ)ˆF؈~Ü,/«EÐ1˜ DÑ)Ø Ñ%ˆE؈}ØØ#×'Ñ'¨Ð.?¨u¯{©{¸3Ó/?Ð(@ÓAˆGØÑ"Ø—
‘
˜7Õ#ð-    $ð0ˆØˆ    Øò     ˆC؈IcŠNð     òØ%*§]¡]£_Ñ "ˆD$˜˜dؐt  Ñ*ØØ M‰M˜4 ˜,Ô 'Ø! $Ñ'ˆHØ Ñ%¨Ñ0ˆFÙ™hÜ  Ó*Üw“< 1Ò$¨°©
°dÒ(:Ø—L‘L $¨¨d°G¸A±JÐ!?Ô@Ø—L‘L $¨°'¸"±+¸tÐ!DÔEØÙØŸ™›Ø˜6’>Ø—L‘L $¨¨d°DÐ!9Õ:ؘV’^ؘfÑ%×,Ñ,¨d°H¸dÀDÐ-IÕJà—L‘L $¨¨f°dÐ!;Ô<Ø—L‘L $¨¨f°dÐ!;Õ<ð— ‘ ˜d D¨$°Ð5Ô6ó1õ4        ð"Ÿ™Ó)ò    ‰HˆA‰uÚ34Ð6Ó 6Ø)4°Q«Ð9Ò 9Ù˜e VÓ,ò Ø“ð à‹Mð     ñ˜% Ó&ò    ˆAØ‹Gð    ð‹ ùòIùs(…C/N Ã5BN Å; NÆAN Ç#EN Ì*A#N cój—|€tj}|j|j|¬««y)N)r‘)r4rRÚ
writelinesr¡)r Úfileobjr‘s   rÚ graphreportzModuleGraph.graphreportø s,€Ø ˆ?Ü—j‘jˆGØ×ј4×/Ñ/¸\Ð/ÓJÕKrc    ó¬—t«tddz«tddz«t|j«d„¬«D]}t|t«r=tt |«j d›d|jd›d|j›«ŒPtt |«j d›d|jd›d|jxsd    ›«Œ‘y
) z’Print a report to stdout, listing the found modules with their
        paths, as well as modules that are missing, or seem to be missing.
        z%-15s %-25s %s)ÚClassÚNameÚFile)z-----ú----rªcó—|jSr)rA)rbs rr=z$ModuleGraph.report.<locals>.<lambda> s
€¸¿¹€r)rœÚ15ú Ú25r    N)
rTrrSrÞrŒr…rrArBr@)r r0s  rÚreportzModuleGraph.reportý sœ€ô    ŒÜ ÐÐ!:Ñ:Ô;Ü ÐÐ!:Ñ:Ô;ܘŸ™Ó)Ñ/EÔFò    ]ˆAܘ!œYÔ'ܬ$¨q«'×*:Ô*:¸A¿L¼LÈ!Ï,Ê,ÐWÕXä¬$¨q«'×*:Ô*:¸A¿L¼LÈ!Ï*É*ÒJZÐXZÐJZÐ[Õ\ñ        ]rcó@—tjj|j«x}}|jD]i\}}tjj |d«}tjj |d«}|j |«sŒX||t|«dz}n|St|j«}tt|««D]2}t||t|««sŒ|j||«||<Œ4|jt|«|¬«S)Nr    )Ú    co_constsÚ co_filename)rCr¯Únormpathr²r6rDrhrŸrHr±r»rÞr…rÚreplacer±)r r“Ú new_filenameÚoriginal_filenameÚfråÚconstsr«s        rrz"ModuleGraph._replace_paths_in_code
sú€Ü+-¯7©7×+;Ñ+;¸B¿N¹NÓ+KÐKˆ Ð(Ø×&Ñ&ò    ‰DˆAˆqÜ—‘— ‘ ˜Q Ó#ˆAÜ—‘— ‘ ˜Q Ó#ˆAØ ×+Ñ+¨AÕ.Ø Ð#4´S¸³V°WÐ#=Ñ= Ùð     ðˆIäb—l‘lÓ#ˆÜ”s˜6“{Ó#ò    CˆAܘ& ™)¤T¨"£XÕ.Ø ×7Ñ7¸¸q¹    ÓBq’    ð    Cðz‰z¤E¨&£M¸|ˆzÓLÐLr)NrrrNrr)T)Údirect)ÚGr)Nr)/rrrr‡r/r!rOrVr\Ú getReferencesr^Ú getReferersrernrQrrrwr.ryr ÚflattenrSr”ròr°r›rœr¤rÃrÔrÖrßr rãrSr‹rrrŒrâr3rhr¡r¥r¯rr—r˜s@rr,r,sø„ñô õ&ò&
ó<">òHð€Móð"€KòEò$òJ    Iõ_ð €OõEðN€HØ×$Ñ$€JóðFØØ"Øó nòbð<#ó    DòTVBòrò."AòJ#>òL ò0còJ~ðD#¨dóLðf  $ó    ?òB.ò4Y$òx=/ó@0<òfHóV9 óv}ó~Lò
]öMrr,)Hr‡rßrCr9r4r*Ú collectionsrrrÚurllib.requestrWrÐÚimportlib.utilr‡Úimportlib.machineryr)Úimportlib.metadataÚmetadatar?Úcatch_warningsÚfilterwarningsÚ UserWarningÚaltgraph.ObjectGraphr Úaltgraphr r    rrrr¹rºròr¢r&r1r3r>r,r‰rŒršrœržr r©r­r´r¶r¸rºr¼r¾rÀrÃrÅrÇrÊrÌrÚrUr\rVrZrNr]rærìÚ NodeVisitorrîr,rrrú<module>rÊscðñó Û    ÛÛ
Û    ß6Ñ6ÛÛÛÛð×ѐwÒÞ3ãð
€X×ÑÓñ$Ø€H×ÑØØØ-õõ
1Ý#÷$õ÷ñ÷
ñð%'Ð!ððÐðð-Ððô     +ô    òô?‘jÐ!1ÚJóLô?÷>~@ñ~@ôB ˆCô ô(2ô(2ôV    ô    ô    Yô    ô    Iô    ô 4˜Yô 4ô ˆTô ôWôWô    Jô    ô    :ô    ô    ˜,ô    ô    Zô    ô    ˜Jô    ô    
ô    ô    ˆjô    ô    y 'ô    ô    wô    ô    Jô    ô,    Wô    ô0**ô*ô*Jô*ð
€ð    
€ð
 
J€ð,€ ð €ð 
€ò
    ò>ðÐô_#ˆs‰ô_#ôD\"M+õ\"M÷u$ñ$ús Á"G2Ç2G<