💾 Archived View for tris.fyi › pydoc › inspect captured on 2023-01-29 at 03:19:57. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-07-16)

🚧 View Differences

-=-=-=-=-=-=-

Back to module index

Go to module by name

inspect

Get useful information from live Python objects.

This module encapsulates the interface provided by the internal special
attributes (co_*, im_*, tb_*, etc.) in a friendlier fashion.
It also provides some help for examining source code and class layout.

Here are some of the useful functions provided by this module:

    ismodule(), isclass(), ismethod(), isfunction(), isgeneratorfunction(),
        isgenerator(), istraceback(), isframe(), iscode(), isbuiltin(),
        isroutine() - check object types
    getmembers() - get members of an object that satisfy a given condition

    getfile(), getsourcefile(), getsource() - find an object's source code
    getdoc(), getcomments() - get documentation on an object
    getmodule() - determine the module that an object came from
    getclasstree() - arrange classes so as to represent their hierarchy

    getargvalues(), getcallargs() - get info about function arguments
    getfullargspec() - same, with support for Python 3 features
    formatargvalues() - format an argument spec
    getouterframes(), getinnerframes() - get info about frames
    currentframe() - get the current stack frame
    stack(), trace() - get info about frames on the stack or in a traceback

    signature() - get a Signature object for the callable

    get_annotations() - safely compute an object's annotations

Classes

ArgInfo

ArgInfo(args, varargs, keywords, locals)
count(self, value, /)

  Return number of occurrences of value.
index(self, value, start=0, stop=9223372036854775807, /)

  Return first index of value.

  Raises ValueError if the value is not present.
args = _tuplegetter(0, 'Alias for field number 0')
  Alias for field number 0
keywords = _tuplegetter(2, 'Alias for field number 2')
  Alias for field number 2
locals = _tuplegetter(3, 'Alias for field number 3')
  Alias for field number 3
varargs = _tuplegetter(1, 'Alias for field number 1')
  Alias for field number 1

ArgSpec

ArgSpec(args, varargs, keywords, defaults)
count(self, value, /)

  Return number of occurrences of value.
index(self, value, start=0, stop=9223372036854775807, /)

  Return first index of value.

  Raises ValueError if the value is not present.
args = _tuplegetter(0, 'Alias for field number 0')
  Alias for field number 0
defaults = _tuplegetter(3, 'Alias for field number 3')
  Alias for field number 3
keywords = _tuplegetter(2, 'Alias for field number 2')
  Alias for field number 2
varargs = _tuplegetter(1, 'Alias for field number 1')
  Alias for field number 1

Arguments

Arguments(args, varargs, varkw)
count(self, value, /)

  Return number of occurrences of value.
index(self, value, start=0, stop=9223372036854775807, /)

  Return first index of value.

  Raises ValueError if the value is not present.
args = _tuplegetter(0, 'Alias for field number 0')
  Alias for field number 0
varargs = _tuplegetter(1, 'Alias for field number 1')
  Alias for field number 1
varkw = _tuplegetter(2, 'Alias for field number 2')
  Alias for field number 2

Attribute

Attribute(name, kind, defining_class, object)
count(self, value, /)

  Return number of occurrences of value.
index(self, value, start=0, stop=9223372036854775807, /)

  Return first index of value.

  Raises ValueError if the value is not present.
defining_class = _tuplegetter(2, 'Alias for field number 2')
  Alias for field number 2
kind = _tuplegetter(1, 'Alias for field number 1')
  Alias for field number 1
name = _tuplegetter(0, 'Alias for field number 0')
  Alias for field number 0
object = _tuplegetter(3, 'Alias for field number 3')
  Alias for field number 3

BlockFinder

Provide a tokeneater() method to detect the end of a code block.
tokeneater(self, type, token, srowcol, erowcol, line)

BoundArguments

Result of `Signature.bind` call.  Holds the mapping of arguments
    to the function's parameters.

    Has the following public attributes:

    * arguments : dict
        An ordered mutable mapping of parameters' names to arguments' values.
        Does not contain arguments' default values.
    * signature : Signature
        The Signature object that created this instance.
    * args : tuple
        Tuple of positional arguments values.
    * kwargs : dict
        Dict of keyword arguments values.
    
apply_defaults(self)

  Set default values for missing arguments.

          For variable-positional arguments (*args) the default is an
          empty tuple.

          For variable-keyword arguments (**kwargs) the default is an
          empty dict.
        
args = <property object at 0x7f75e331c4f0>
arguments = <member 'arguments' of 'BoundArguments' objects>
kwargs = <property object at 0x7f75e331c540>
signature = <property object at 0x7f75e331c4a0>

ClassFoundException

with_traceback(...)

  Exception.with_traceback(tb) --
      set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>

ClosureVars

ClosureVars(nonlocals, globals, builtins, unbound)
count(self, value, /)

  Return number of occurrences of value.
index(self, value, start=0, stop=9223372036854775807, /)

  Return first index of value.

  Raises ValueError if the value is not present.
builtins = _tuplegetter(2, 'Alias for field number 2')
  Alias for field number 2
globals = _tuplegetter(1, 'Alias for field number 1')
  Alias for field number 1
nonlocals = _tuplegetter(0, 'Alias for field number 0')
  Alias for field number 0
unbound = _tuplegetter(3, 'Alias for field number 3')
  Alias for field number 3

EndOfBlock

with_traceback(...)

  Exception.with_traceback(tb) --
      set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>

FrameInfo

FrameInfo(frame, filename, lineno, function, code_context, index)
count(self, value, /)

  Return number of occurrences of value.
code_context = _tuplegetter(4, 'Alias for field number 4')
  Alias for field number 4
filename = _tuplegetter(1, 'Alias for field number 1')
  Alias for field number 1
frame = _tuplegetter(0, 'Alias for field number 0')
  Alias for field number 0
function = _tuplegetter(3, 'Alias for field number 3')
  Alias for field number 3
index = _tuplegetter(5, 'Alias for field number 5')
  Alias for field number 5
lineno = _tuplegetter(2, 'Alias for field number 2')
  Alias for field number 2

FullArgSpec

FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations)
count(self, value, /)

  Return number of occurrences of value.
index(self, value, start=0, stop=9223372036854775807, /)

  Return first index of value.

  Raises ValueError if the value is not present.
annotations = _tuplegetter(6, 'Alias for field number 6')
  Alias for field number 6
args = _tuplegetter(0, 'Alias for field number 0')
  Alias for field number 0
defaults = _tuplegetter(3, 'Alias for field number 3')
  Alias for field number 3
kwonlyargs = _tuplegetter(4, 'Alias for field number 4')
  Alias for field number 4
kwonlydefaults = _tuplegetter(5, 'Alias for field number 5')
  Alias for field number 5
varargs = _tuplegetter(1, 'Alias for field number 1')
  Alias for field number 1
varkw = _tuplegetter(2, 'Alias for field number 2')
  Alias for field number 2

OrderedDict

Dictionary that remembers insertion order
clear(...)

  od.clear() -> None.  Remove all items from od.
copy(...)

  od.copy() -> a shallow copy of od
fromkeys(iterable, value=None)

  Create a new ordered dictionary with keys from iterable and values set to value.
get(self, key, default=None, /)

  Return the value for key if key is in the dictionary, else default.
items(...)
keys(...)
move_to_end(self, /, key, last=True)

  Move an existing element to the end (or beginning if last is false).

  Raise KeyError if the element does not exist.
pop(...)

  od.pop(key[,default]) -> v, remove specified key and return the corresponding value.

  If the key is not found, return the default if given; otherwise,
  raise a KeyError.
popitem(self, /, last=True)

  Remove and return a (key, value) pair from the dictionary.

  Pairs are returned in LIFO order if last is true or FIFO order if false.
setdefault(self, /, key, default=None)

  Insert key with a value of default if key is not in the dictionary.

  Return the value for key if key is in the dictionary, else default.
update(...)
values(...)

Parameter

Represents a parameter in a function signature.

    Has the following public attributes:

    * name : str
        The name of the parameter as a string.
    * default : object
        The default value for the parameter if specified.  If the
        parameter has no default value, this attribute is set to
        `Parameter.empty`.
    * annotation
        The annotation for the parameter if specified.  If the
        parameter has no annotation, this attribute is set to
        `Parameter.empty`.
    * kind : str
        Describes how argument values are bound to the parameter.
        Possible values: `Parameter.POSITIONAL_ONLY`,
        `Parameter.POSITIONAL_OR_KEYWORD`, `Parameter.VAR_POSITIONAL`,
        `Parameter.KEYWORD_ONLY`, `Parameter.VAR_KEYWORD`.
    

replace._empty

Marker object for Signature.empty and Parameter.empty.
replace(self, *, name=<class 'inspect._void'>, kind=<class 'inspect._void'>, annotation=<class 'inspect._void'>, default=<class 'inspect._void'>)

  Creates a customized copy of the Parameter.
KEYWORD_ONLY = <_ParameterKind.KEYWORD_ONLY: 3>
POSITIONAL_ONLY = <_ParameterKind.POSITIONAL_ONLY: 0>
POSITIONAL_OR_KEYWORD = <_ParameterKind.POSITIONAL_OR_KEYWORD: 1>
VAR_KEYWORD = <_ParameterKind.VAR_KEYWORD: 4>
VAR_POSITIONAL = <_ParameterKind.VAR_POSITIONAL: 2>
annotation = <property object at 0x7f75e331c360>
default = <property object at 0x7f75e331c220>
kind = <property object at 0x7f75e331c400>
name = <property object at 0x7f75e331c1d0>

Signature

A Signature object represents the overall signature of a function.
    It stores a Parameter object for each parameter accepted by the
    function, as well as information specific to the function itself.

    A Signature object has the following public attributes and methods:

    * parameters : OrderedDict
        An ordered mapping of parameters' names to the corresponding
        Parameter objects (keyword-only arguments are in the same order
        as listed in `code.co_varnames`).
    * return_annotation : object
        The annotation for the return type of the function if specified.
        If the function has no annotation for its return type, this
        attribute is set to `Signature.empty`.
    * bind(*args, **kwargs) -> BoundArguments
        Creates a mapping from positional and keyword arguments to
        parameters.
    * bind_partial(*args, **kwargs) -> BoundArguments
        Creates a partial mapping from positional and keyword arguments
        to parameters (simulating 'functools.partial' behavior.)
    

return_annotation._empty

Marker object for Signature.empty and Parameter.empty.
bind(self, /, *args, **kwargs)

  Get a BoundArguments object, that maps the passed `args`
          and `kwargs` to the function's signature.  Raises `TypeError`
          if the passed arguments can not be bound.
        
bind_partial(self, /, *args, **kwargs)

  Get a BoundArguments object, that partially maps the
          passed `args` and `kwargs` to the function's signature.
          Raises `TypeError` if the passed arguments can not be bound.
        
from_builtin(func)

  Constructs Signature for the given builtin function.

          Deprecated since Python 3.5, use `Signature.from_callable()`.
        
from_callable(obj, *, follow_wrapped=True, globals=None, locals=None, eval_str=False)

  Constructs Signature for the given callable object.
from_function(func)

  Constructs Signature for the given python function.

          Deprecated since Python 3.5, use `Signature.from_callable()`.
        
replace(self, *, parameters=<class 'inspect._void'>, return_annotation=<class 'inspect._void'>)

  Creates a customized copy of the Signature.
          Pass 'parameters' and/or 'return_annotation' arguments
          to override them in the new copy.
        
parameters = <property object at 0x7f75e331c5e0>
return_annotation = <property object at 0x7f75e331c630>

Traceback

Traceback(filename, lineno, function, code_context, index)
count(self, value, /)

  Return number of occurrences of value.
code_context = _tuplegetter(3, 'Alias for field number 3')
  Alias for field number 3
filename = _tuplegetter(0, 'Alias for field number 0')
  Alias for field number 0
function = _tuplegetter(2, 'Alias for field number 2')
  Alias for field number 2
index = _tuplegetter(4, 'Alias for field number 4')
  Alias for field number 4
lineno = _tuplegetter(1, 'Alias for field number 1')
  Alias for field number 1

attrgetter

attrgetter(attr, ...) --> attrgetter object

Return a callable object that fetches the given attribute(s) from its operand.
After f = attrgetter('name'), the call f(r) returns r.name.
After g = attrgetter('name', 'date'), the call g(r) returns (r.name, r.date).
After h = attrgetter('name.first', 'name.last'), the call h(r) returns
(r.name.first, r.name.last).

Functions

classify_class_attrs

classify_class_attrs(cls)

  Return list of attribute-descriptor tuples.

      For each name in dir(cls), the return list contains a 4-tuple
      with these elements:

          0. The name (a string).

          1. The kind of attribute this is, one of these strings:
                 'class method'    created via classmethod()
                 'static method'   created via staticmethod()
                 'property'        created via property()
                 'method'          any other flavor of method or descriptor
                 'data'            not a method

          2. The class which defined this attribute (a class).

          3. The object as obtained by calling getattr; if this fails, or if the
             resulting object does not live anywhere in the class' mro (including
             metaclasses) then the object is looked up in the defining class's
             dict (found by walking the mro).

      If one of the items in dir(cls) is stored in the metaclass it will now
      be discovered and not have None be listed as the class in which it was
      defined.  Any items whose home class cannot be discovered are skipped.
    

cleandoc

cleandoc(doc)

  Clean up indentation from docstrings.

      Any whitespace that can be uniformly removed from the second line
      onwards is removed.

currentframe

currentframe()

  Return the frame of the caller or None if this is not possible.

findsource

findsource(object)

  Return the entire source file and starting line number for an object.

      The argument may be a module, class, method, function, traceback, frame,
      or code object.  The source code is returned as a list of all the lines
      in the file and the line number indexes a line in that list.  An OSError
      is raised if the source code cannot be retrieved.

formatannotation

formatannotation(annotation, base_module=None)

formatannotationrelativeto

formatannotationrelativeto(object)

formatargspec

formatargspec(args, varargs=None, varkw=None, defaults=None, kwonlyargs=(), kwonlydefaults={}, annotations={}, formatarg=<class 'str'>, formatvarargs=<function <lambda> at 0x7f75e331a5f0>, formatvarkw=<function <lambda> at 0x7f75e331a680>, formatvalue=<function <lambda> at 0x7f75e331a710>, formatreturns=<function <lambda> at 0x7f75e331a7a0>, formatannotation=<function formatannotation at 0x7f75e331a4d0>)

  Format an argument spec from the values returned by getfullargspec.

      The first seven arguments are (args, varargs, varkw, defaults,
      kwonlyargs, kwonlydefaults, annotations).  The other five arguments
      are the corresponding optional formatting functions that are called to
      turn names and values into strings.  The last argument is an optional
      function to format the sequence of arguments.

      Deprecated since Python 3.5: use the `signature` function and `Signature`
      objects.
    

formatargvalues

formatargvalues(args, varargs, varkw, locals, formatarg=<class 'str'>, formatvarargs=<function <lambda> at 0x7f75e331a950>, formatvarkw=<function <lambda> at 0x7f75e331a9e0>, formatvalue=<function <lambda> at 0x7f75e331aa70>)

  Format an argument spec from the 4 values returned by getargvalues.

      The first four arguments are (args, varargs, varkw, locals).  The
      next four arguments are the corresponding optional formatting functions
      that are called to turn names and values into strings.  The ninth
      argument is an optional function to format the sequence of arguments.

get_annotations

get_annotations(obj, *, globals=None, locals=None, eval_str=False)

  Compute the annotations dict for an object.

      obj may be a callable, class, or module.
      Passing in an object of any other type raises TypeError.

      Returns a dict.  get_annotations() returns a new dict every time
      it's called; calling it twice on the same object will return two
      different but equivalent dicts.

      This function handles several details for you:

        * If eval_str is true, values of type str will
          be un-stringized using eval().  This is intended
          for use with stringized annotations
          ("from __future__ import annotations").
        * If obj doesn't have an annotations dict, returns an
          empty dict.  (Functions and methods always have an
          annotations dict; classes, modules, and other types of
          callables may not.)
        * Ignores inherited annotations on classes.  If a class
          doesn't have its own annotations dict, returns an empty dict.
        * All accesses to object members and dict values are done
          using getattr() and dict.get() for safety.
        * Always, always, always returns a freshly-created dict.

      eval_str controls whether or not values of type str are replaced
      with the result of calling eval() on those values:

        * If eval_str is true, eval() is called on values of type str.
        * If eval_str is false (the default), values of type str are unchanged.

      globals and locals are passed in to eval(); see the documentation
      for eval() for more information.  If either globals or locals is
      None, this function may replace that value with a context-specific
      default, contingent on type(obj):

        * If obj is a module, globals defaults to obj.__dict__.
        * If obj is a class, globals defaults to
          sys.modules[obj.__module__].__dict__ and locals
          defaults to the obj class namespace.
        * If obj is a callable, globals defaults to obj.__globals__,
          although if obj is a wrapped function (using
          functools.update_wrapper()) it is first unwrapped.
    

getabsfile

getabsfile(object, _filename=None)

  Return an absolute path to the source or compiled file for an object.

      The idea is for each object to have a unique origin, so this routine
      normalizes the result as much as possible.

getargs

getargs(co)

  Get information about the arguments accepted by a code object.

      Three things are returned: (args, varargs, varkw), where
      'args' is the list of argument names. Keyword-only arguments are
      appended. 'varargs' and 'varkw' are the names of the * and **
      arguments or None.

getargspec

getargspec(func)

  Get the names and default values of a function's parameters.

      A tuple of four things is returned: (args, varargs, keywords, defaults).
      'args' is a list of the argument names, including keyword-only argument names.
      'varargs' and 'keywords' are the names of the * and ** parameters or None.
      'defaults' is an n-tuple of the default values of the last n parameters.

      This function is deprecated, as it does not support annotations or
      keyword-only parameters and will raise ValueError if either is present
      on the supplied callable.

      For a more structured introspection API, use inspect.signature() instead.

      Alternatively, use getfullargspec() for an API with a similar namedtuple
      based interface, but full support for annotations and keyword-only
      parameters.

      Deprecated since Python 3.5, use `inspect.getfullargspec()`.
    

getargvalues

getargvalues(frame)

  Get information about arguments passed into a particular frame.

      A tuple of four things is returned: (args, varargs, varkw, locals).
      'args' is a list of the argument names.
      'varargs' and 'varkw' are the names of the * and ** arguments or None.
      'locals' is the locals dictionary of the given frame.

getattr_static

getattr_static(obj, attr, default=<object object at 0x7f75e3c949f0>)

  Retrieve attributes without triggering dynamic lookup via the
         descriptor protocol,  __getattr__ or __getattribute__.

         Note: this function may not be able to retrieve all attributes
         that getattr can fetch (like dynamically created attributes)
         and may find attributes that getattr can't (like descriptors
         that raise AttributeError). It can also return descriptor objects
         instead of instance members in some cases. See the
         documentation for details.
    

getblock

getblock(lines)

  Extract the block of code at the top of the given list of lines.

getcallargs

getcallargs(func, /, *positional, **named)

  Get the mapping of arguments to values.

      A dict is returned, with keys the function argument names (including the
      names of the * and ** arguments, if any), and values the respective bound
      values from 'positional' and 'named'.

getclasstree

getclasstree(classes, unique=False)

  Arrange the given list of classes into a hierarchy of nested lists.

      Where a nested list appears, it contains classes derived from the class
      whose entry immediately precedes the list.  Each entry is a 2-tuple
      containing a class and a tuple of its base classes.  If the 'unique'
      argument is true, exactly one entry appears in the returned structure
      for each class in the given list.  Otherwise, classes using multiple
      inheritance and their descendants will appear multiple times.

getclosurevars

getclosurevars(func)


      Get the mapping of free variables to their current values.

      Returns a named tuple of dicts mapping the current nonlocal, global
      and builtin references as seen by the body of the function. A final
      set of unbound names that could not be resolved is also provided.
    

getcomments

getcomments(object)

  Get lines of comments immediately preceding an object's source code.

      Returns None when source can't be found.
    

getcoroutinelocals

getcoroutinelocals(coroutine)


      Get the mapping of coroutine local variables to their current values.

      A dict is returned, with the keys the local variable names and values the
      bound values.

getcoroutinestate

getcoroutinestate(coroutine)

  Get current state of a coroutine object.

      Possible states are:
        CORO_CREATED: Waiting to start execution.
        CORO_RUNNING: Currently being executed by the interpreter.
        CORO_SUSPENDED: Currently suspended at an await expression.
        CORO_CLOSED: Execution has completed.
    

getdoc

getdoc(object)

  Get the documentation string for an object.

      All tabs are expanded to spaces.  To clean up docstrings that are
      indented to line up with blocks of code, any whitespace than can be
      uniformly removed from the second line onwards is removed.

getfile

getfile(object)

  Work out which source or compiled file an object was defined in.

getframeinfo

getframeinfo(frame, context=1)

  Get information about a frame or traceback object.

      A tuple of five things is returned: the filename, the line number of
      the current line, the function name, a list of lines of context from
      the source code, and the index of the current line within that list.
      The optional second argument specifies the number of lines of context
      to return, which are centered around the current line.

getfullargspec

getfullargspec(func)

  Get the names and default values of a callable object's parameters.

      A tuple of seven things is returned:
      (args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations).
      'args' is a list of the parameter names.
      'varargs' and 'varkw' are the names of the * and ** parameters or None.
      'defaults' is an n-tuple of the default values of the last n parameters.
      'kwonlyargs' is a list of keyword-only parameter names.
      'kwonlydefaults' is a dictionary mapping names from kwonlyargs to defaults.
      'annotations' is a dictionary mapping parameter names to annotations.

      Notable differences from inspect.signature():
        - the "self" parameter is always reported, even for bound methods
        - wrapper chains defined by __wrapped__ *not* unwrapped automatically
    

getgeneratorlocals

getgeneratorlocals(generator)


      Get the mapping of generator local variables to their current values.

      A dict is returned, with the keys the local variable names and values the
      bound values.

getgeneratorstate

getgeneratorstate(generator)

  Get current state of a generator-iterator.

      Possible states are:
        GEN_CREATED: Waiting to start execution.
        GEN_RUNNING: Currently being executed by the interpreter.
        GEN_SUSPENDED: Currently suspended at a yield expression.
        GEN_CLOSED: Execution has completed.
    

getinnerframes

getinnerframes(tb, context=1)

  Get a list of records for a traceback's frame and all lower frames.

      Each record contains a frame object, filename, line number, function
      name, a list of lines of context, and index within the context.

getlineno

getlineno(frame)

  Get the line number from a frame object, allowing for optimization.

getmembers

getmembers(object, predicate=None)

  Return all members of an object as (name, value) pairs sorted by name.
      Optionally, only return members that satisfy a given predicate.

getmodule

getmodule(object, _filename=None)

  Return the module an object was defined in, or None if not found.

getmodulename

getmodulename(path)

  Return the module name for a given file, or None.

getmro

getmro(cls)

  Return tuple of base classes (including cls) in method resolution order.

getouterframes

getouterframes(frame, context=1)

  Get a list of records for a frame and all higher (calling) frames.

      Each record contains a frame object, filename, line number, function
      name, a list of lines of context, and index within the context.

getsource

getsource(object)

  Return the text of the source code for an object.

      The argument may be a module, class, method, function, traceback, frame,
      or code object.  The source code is returned as a single string.  An
      OSError is raised if the source code cannot be retrieved.

getsourcefile

getsourcefile(object)

  Return the filename that can be used to locate an object's source.
      Return None if no way can be identified to get the source.
    

getsourcelines

getsourcelines(object)

  Return a list of source lines and starting line number for an object.

      The argument may be a module, class, method, function, traceback, frame,
      or code object.  The source code is returned as a list of the lines
      corresponding to the object and the line number indicates where in the
      original source file the first line of code was found.  An OSError is
      raised if the source code cannot be retrieved.

indentsize

indentsize(line)

  Return the indent size, in spaces, at the start of a line of text.

isabstract

isabstract(object)

  Return true if the object is an abstract base class (ABC).

isasyncgen

isasyncgen(object)

  Return true if the object is an asynchronous generator.

isasyncgenfunction

isasyncgenfunction(obj)

  Return true if the object is an asynchronous generator function.

      Asynchronous generator functions are defined with "async def"
      syntax and have "yield" expressions in their body.
    

isawaitable

isawaitable(object)

  Return true if object can be passed to an ``await`` expression.

isbuiltin

isbuiltin(object)

  Return true if the object is a built-in function or method.

      Built-in functions and methods provide these attributes:
          __doc__         documentation string
          __name__        original name of this function or method
          __self__        instance to which a method is bound, or None

isclass

isclass(object)

  Return true if the object is a class.

      Class objects provide these attributes:
          __doc__         documentation string
          __module__      name of module in which this class was defined

iscode

iscode(object)

  Return true if the object is a code object.

      Code objects provide these attributes:
          co_argcount         number of arguments (not including *, ** args
                              or keyword only arguments)
          co_code             string of raw compiled bytecode
          co_cellvars         tuple of names of cell variables
          co_consts           tuple of constants used in the bytecode
          co_filename         name of file in which this code object was created
          co_firstlineno      number of first line in Python source code
          co_flags            bitmap: 1=optimized | 2=newlocals | 4=*arg | 8=**arg
                              | 16=nested | 32=generator | 64=nofree | 128=coroutine
                              | 256=iterable_coroutine | 512=async_generator
          co_freevars         tuple of names of free variables
          co_posonlyargcount  number of positional only arguments
          co_kwonlyargcount   number of keyword only arguments (not including ** arg)
          co_lnotab           encoded mapping of line numbers to bytecode indices
          co_name             name with which this code object was defined
          co_names            tuple of names other than arguments and function locals
          co_nlocals          number of local variables
          co_stacksize        virtual machine stack space required
          co_varnames         tuple of names of arguments and local variables

iscoroutine

iscoroutine(object)

  Return true if the object is a coroutine.

iscoroutinefunction

iscoroutinefunction(obj)

  Return true if the object is a coroutine function.

      Coroutine functions are defined with "async def" syntax.
    

isdatadescriptor

isdatadescriptor(object)

  Return true if the object is a data descriptor.

      Data descriptors have a __set__ or a __delete__ attribute.  Examples are
      properties (defined in Python) and getsets and members (defined in C).
      Typically, data descriptors will also have __name__ and __doc__ attributes
      (properties, getsets, and members have both of these attributes), but this
      is not guaranteed.

isframe

isframe(object)

  Return true if the object is a frame object.

      Frame objects provide these attributes:
          f_back          next outer frame object (this frame's caller)
          f_builtins      built-in namespace seen by this frame
          f_code          code object being executed in this frame
          f_globals       global namespace seen by this frame
          f_lasti         index of last attempted instruction in bytecode
          f_lineno        current line number in Python source code
          f_locals        local namespace seen by this frame
          f_trace         tracing function for this frame, or None

isfunction

isfunction(object)

  Return true if the object is a user-defined function.

      Function objects provide these attributes:
          __doc__         documentation string
          __name__        name with which this function was defined
          __code__        code object containing compiled function bytecode
          __defaults__    tuple of any default values for arguments
          __globals__     global namespace in which this function was defined
          __annotations__ dict of parameter annotations
          __kwdefaults__  dict of keyword only parameters with defaults

isgenerator

isgenerator(object)

  Return true if the object is a generator.

      Generator objects provide these attributes:
          __iter__        defined to support iteration over container
          close           raises a new GeneratorExit exception inside the
                          generator to terminate the iteration
          gi_code         code object
          gi_frame        frame object or possibly None once the generator has
                          been exhausted
          gi_running      set to 1 when generator is executing, 0 otherwise
          next            return the next item from the container
          send            resumes the generator and "sends" a value that becomes
                          the result of the current yield-expression
          throw           used to raise an exception inside the generator

isgeneratorfunction

isgeneratorfunction(obj)

  Return true if the object is a user-defined generator function.

      Generator function objects provide the same attributes as functions.
      See help(isfunction) for a list of attributes.

isgetsetdescriptor

isgetsetdescriptor(object)

  Return true if the object is a getset descriptor.

          getset descriptors are specialized descriptors defined in extension
          modules.

ismemberdescriptor

ismemberdescriptor(object)

  Return true if the object is a member descriptor.

          Member descriptors are specialized descriptors defined in extension
          modules.

ismethod

ismethod(object)

  Return true if the object is an instance method.

      Instance method objects provide these attributes:
          __doc__         documentation string
          __name__        name with which this method was defined
          __func__        function object containing implementation of method
          __self__        instance to which this method is bound

ismethoddescriptor

ismethoddescriptor(object)

  Return true if the object is a method descriptor.

      But not if ismethod() or isclass() or isfunction() are true.

      This is new in Python 2.2, and, for example, is true of int.__add__.
      An object passing this test has a __get__ attribute but not a __set__
      attribute, but beyond that the set of attributes varies.  __name__ is
      usually sensible, and __doc__ often is.

      Methods implemented via descriptors that also pass one of the other
      tests return false from the ismethoddescriptor() test, simply because
      the other tests promise more -- you can, e.g., count on having the
      __func__ attribute (etc) when an object passes ismethod().

ismodule

ismodule(object)

  Return true if the object is a module.

      Module objects provide these attributes:
          __cached__      pathname to byte compiled file
          __doc__         documentation string
          __file__        filename (missing for built-in modules)

isroutine

isroutine(object)

  Return true if the object is any kind of function or method.

istraceback

istraceback(object)

  Return true if the object is a traceback.

      Traceback objects provide these attributes:
          tb_frame        frame object at this level
          tb_lasti        index of last attempted instruction in bytecode
          tb_lineno       current line number in Python source code
          tb_next         next inner traceback object (called by this level)

namedtuple

namedtuple(typename, field_names, *, rename=False, defaults=None, module=None)

  Returns a new subclass of tuple with named fields.

      >>> Point = namedtuple('Point', ['x', 'y'])
      >>> Point.__doc__                   # docstring for the new class
      'Point(x, y)'
      >>> p = Point(11, y=22)             # instantiate with positional args or keywords
      >>> p[0] + p[1]                     # indexable like a plain tuple
      33
      >>> x, y = p                        # unpack like a regular tuple
      >>> x, y
      (11, 22)
      >>> p.x + p.y                       # fields also accessible by name
      33
      >>> d = p._asdict()                 # convert to a dictionary
      >>> d['x']
      11
      >>> Point(**d)                      # convert from a dictionary
      Point(x=11, y=22)
      >>> p._replace(x=100)               # _replace() is like str.replace() but targets named fields
      Point(x=100, y=22)

    

signature

signature(obj, *, follow_wrapped=True, globals=None, locals=None, eval_str=False)

  Get a signature object for the passed callable.

stack

stack(context=1)

  Return a list of records for the stack above the caller's frame.

trace

trace(context=1)

  Return a list of records for the stack below the current exception.

unwrap

unwrap(func, *, stop=None)

  Get the object wrapped by *func*.

     Follows the chain of :attr:`__wrapped__` attributes returning the last
     object in the chain.

     *stop* is an optional callback accepting an object in the wrapper chain
     as its sole argument that allows the unwrapping to be terminated early if
     the callback returns a true value. If the callback never returns a true
     value, the last object in the chain is returned as usual. For example,
     :func:`signature` uses this to stop unwrapping if any object in the
     chain has a ``__signature__`` attribute defined.

     :exc:`ValueError` is raised if a cycle is encountered.

    

walktree

walktree(classes, children, parent)

  Recursive helper function for getclasstree().

Other members

CORO_CLOSED = 'CORO_CLOSED'
CORO_CREATED = 'CORO_CREATED'
CORO_RUNNING = 'CORO_RUNNING'
CORO_SUSPENDED = 'CORO_SUSPENDED'
CO_ASYNC_GENERATOR = 512
CO_COROUTINE = 128
CO_GENERATOR = 32
CO_ITERABLE_COROUTINE = 256
CO_NESTED = 16
CO_NEWLOCALS = 2
CO_NOFREE = 64
CO_OPTIMIZED = 1
CO_VARARGS = 4
CO_VARKEYWORDS = 8
GEN_CLOSED = 'GEN_CLOSED'
GEN_CREATED = 'GEN_CREATED'
GEN_RUNNING = 'GEN_RUNNING'
GEN_SUSPENDED = 'GEN_SUSPENDED'
TPFLAGS_IS_ABSTRACT = 1048576
k = 512
mod_dict = {'__name__': 'inspect', '__doc__': "Get useful information from live Python objects.\n\nThis module encapsulates the interface provided by the internal special\nattributes (co_*, im_*, tb_*, etc.) in a friendlier fashion.\nIt also provides some help for examining source code and class layout.\n\nHere are some of the useful functions provided by this module:\n\n    ismodule(), isclass(), ismethod(), isfunction(), isgeneratorfunction(),\n        isgenerator(), istraceback(), isframe(), iscode(), isbuiltin(),\n        isroutine() - check object types\n    getmembers() - get members of an object that satisfy a given condition\n\n    getfile(), getsourcefile(), getsource() - find an object's source code\n    getdoc(), getcomments() - get documentation on an object\n    getmodule() - determine the module that an object came from\n    getclasstree() - arrange classes so as to represent their hierarchy\n\n    getargvalues(), getcallargs() - get info about function arguments\n    getfullargspec() - same, with support for Python 3 features\n    formatargvalues() - format an argument spec\n    getouterframes(), getinnerframes() - get info about frames\n    currentframe() - get the current stack frame\n    stack(), trace() - get info about frames on the stack or in a traceback\n\n    signature() - get a Signature object for the callable\n\n    get_annotations() - safely compute an object's annotations\n", '__package__': '', '__loader__': <_frozen_importlib_external.SourceFileLoader object at 0x7f75e3a87190>, '__spec__': ModuleSpec(name='inspect', loader=<_frozen_importlib_external.SourceFileLoader object at 0x7f75e3a87190>, origin='/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/inspect.py'), '__file__': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/inspect.py', '__cached__': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/__pycache__/inspect.cpython-310.pyc', '__builtins__': {'__name__': 'builtins', '__doc__': "Built-in functions, exceptions, and other objects.\n\nNoteworthy: None is the `nil' object; Ellipsis represents `...' in slices.", '__package__': '', '__loader__': <class '_frozen_importlib.BuiltinImporter'>, '__spec__': ModuleSpec(name='builtins', loader=<class '_frozen_importlib.BuiltinImporter'>, origin='built-in'), '__build_class__': <built-in function __build_class__>, '__import__': <built-in function __import__>, 'abs': <built-in function abs>, 'all': <built-in function all>, 'any': <built-in function any>, 'ascii': <built-in function ascii>, 'bin': <built-in function bin>, 'breakpoint': <built-in function breakpoint>, 'callable': <built-in function callable>, 'chr': <built-in function chr>, 'compile': <built-in function compile>, 'delattr': <built-in function delattr>, 'dir': <built-in function dir>, 'divmod': <built-in function divmod>, 'eval': <built-in function eval>, 'exec': <built-in function exec>, 'format': <built-in function format>, 'getattr': <built-in function getattr>, 'globals': <built-in function globals>, 'hasattr': <built-in function hasattr>, 'hash': <built-in function hash>, 'hex': <built-in function hex>, 'id': <built-in function id>, 'input': <built-in function input>, 'isinstance': <built-in function isinstance>, 'issubclass': <built-in function issubclass>, 'iter': <built-in function iter>, 'aiter': <built-in function aiter>, 'len': <built-in function len>, 'locals': <built-in function locals>, 'max': <built-in function max>, 'min': <built-in function min>, 'next': <built-in function next>, 'anext': <built-in function anext>, 'oct': <built-in function oct>, 'ord': <built-in function ord>, 'pow': <built-in function pow>, 'print': <built-in function print>, 'repr': <built-in function repr>, 'round': <built-in function round>, 'setattr': <built-in function setattr>, 'sorted': <built-in function sorted>, 'sum': <built-in function sum>, 'vars': <built-in function vars>, 'None': None, 'Ellipsis': Ellipsis, 'NotImplemented': NotImplemented, 'False': False, 'True': True, 'bool': <class 'bool'>, 'memoryview': <class 'memoryview'>, 'bytearray': <class 'bytearray'>, 'bytes': <class 'bytes'>, 'classmethod': <class 'classmethod'>, 'complex': <class 'complex'>, 'dict': <class 'dict'>, 'enumerate': <class 'enumerate'>, 'filter': <class 'filter'>, 'float': <class 'float'>, 'frozenset': <class 'frozenset'>, 'property': <class 'property'>, 'int': <class 'int'>, 'list': <class 'list'>, 'map': <class 'map'>, 'object': <class 'object'>, 'range': <class 'range'>, 'reversed': <class 'reversed'>, 'set': <class 'set'>, 'slice': <class 'slice'>, 'staticmethod': <class 'staticmethod'>, 'str': <class 'str'>, 'super': <class 'super'>, 'tuple': <class 'tuple'>, 'type': <class 'type'>, 'zip': <class 'zip'>, '__debug__': True, 'BaseException': <class 'BaseException'>, 'Exception': <class 'Exception'>, 'TypeError': <class 'TypeError'>, 'StopAsyncIteration': <class 'StopAsyncIteration'>, 'StopIteration': <class 'StopIteration'>, 'GeneratorExit': <class 'GeneratorExit'>, 'SystemExit': <class 'SystemExit'>, 'KeyboardInterrupt': <class 'KeyboardInterrupt'>, 'ImportError': <class 'ImportError'>, 'ModuleNotFoundError': <class 'ModuleNotFoundError'>, 'OSError': <class 'OSError'>, 'EnvironmentError': <class 'OSError'>, 'IOError': <class 'OSError'>, 'EOFError': <class 'EOFError'>, 'RuntimeError': <class 'RuntimeError'>, 'RecursionError': <class 'RecursionError'>, 'NotImplementedError': <class 'NotImplementedError'>, 'NameError': <class 'NameError'>, 'UnboundLocalError': <class 'UnboundLocalError'>, 'AttributeError': <class 'AttributeError'>, 'SyntaxError': <class 'SyntaxError'>, 'IndentationError': <class 'IndentationError'>, 'TabError': <class 'TabError'>, 'LookupError': <class 'LookupError'>, 'IndexError': <class 'IndexError'>, 'KeyError': <class 'KeyError'>, 'ValueError': <class 'ValueError'>, 'UnicodeError': <class 'UnicodeError'>, 'UnicodeEncodeError': <class 'UnicodeEncodeError'>, 'UnicodeDecodeError': <class 'UnicodeDecodeError'>, 'UnicodeTranslateError': <class 'UnicodeTranslateError'>, 'AssertionError': <class 'AssertionError'>, 'ArithmeticError': <class 'ArithmeticError'>, 'FloatingPointError': <class 'FloatingPointError'>, 'OverflowError': <class 'OverflowError'>, 'ZeroDivisionError': <class 'ZeroDivisionError'>, 'SystemError': <class 'SystemError'>, 'ReferenceError': <class 'ReferenceError'>, 'MemoryError': <class 'MemoryError'>, 'BufferError': <class 'BufferError'>, 'Warning': <class 'Warning'>, 'UserWarning': <class 'UserWarning'>, 'EncodingWarning': <class 'EncodingWarning'>, 'DeprecationWarning': <class 'DeprecationWarning'>, 'PendingDeprecationWarning': <class 'PendingDeprecationWarning'>, 'SyntaxWarning': <class 'SyntaxWarning'>, 'RuntimeWarning': <class 'RuntimeWarning'>, 'FutureWarning': <class 'FutureWarning'>, 'ImportWarning': <class 'ImportWarning'>, 'UnicodeWarning': <class 'UnicodeWarning'>, 'BytesWarning': <class 'BytesWarning'>, 'ResourceWarning': <class 'ResourceWarning'>, 'ConnectionError': <class 'ConnectionError'>, 'BlockingIOError': <class 'BlockingIOError'>, 'BrokenPipeError': <class 'BrokenPipeError'>, 'ChildProcessError': <class 'ChildProcessError'>, 'ConnectionAbortedError': <class 'ConnectionAbortedError'>, 'ConnectionRefusedError': <class 'ConnectionRefusedError'>, 'ConnectionResetError': <class 'ConnectionResetError'>, 'FileExistsError': <class 'FileExistsError'>, 'FileNotFoundError': <class 'FileNotFoundError'>, 'IsADirectoryError': <class 'IsADirectoryError'>, 'NotADirectoryError': <class 'NotADirectoryError'>, 'InterruptedError': <class 'InterruptedError'>, 'PermissionError': <class 'PermissionError'>, 'ProcessLookupError': <class 'ProcessLookupError'>, 'TimeoutError': <class 'TimeoutError'>, 'open': <built-in function open>, 'quit': Use quit() or Ctrl-D (i.e. EOF) to exit, 'exit': Use exit() or Ctrl-D (i.e. EOF) to exit, 'copyright': Copyright (c) 2001-2022 Python Software Foundation.
All Rights Reserved.

Copyright (c) 2000 BeOpen.com.
All Rights Reserved.

Copyright (c) 1995-2001 Corporation for National Research Initiatives.
All Rights Reserved.

Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam.
All Rights Reserved., 'credits':     Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands
    for supporting Python development.  See www.python.org for more information., 'license': Type license() to see the full license text, 'help': Type help() for interactive help, or help(object) for help about object.}, '__author__': ('Ka-Ping Yee <ping@lfw.org>', 'Yury Selivanov <yselivanov@sprymix.com>'), 'abc': <module 'abc' from '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/abc.py'>, 'ast': <module 'ast' from '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/ast.py'>, 'dis': <module 'dis' from '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/dis.py'>, 'collections': <module 'collections' from '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/collections/__init__.py'>, 'enum': <module 'enum' from '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/enum.py'>, 'importlib': <module 'importlib' from '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/__init__.py'>, 'itertools': <module 'itertools' (built-in)>, 'linecache': <module 'linecache' from '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/linecache.py'>, 'os': <module 'os' from '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/os.py'>, 're': <module 're' from '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/re.py'>, 'sys': <module 'sys' (built-in)>, 'tokenize': <module 'tokenize' from '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/tokenize.py'>, 'token': <module 'token' from '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/token.py'>, 'types': <module 'types' from '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/types.py'>, 'warnings': <module 'warnings' from '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/warnings.py'>, 'functools': <module 'functools' from '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/functools.py'>, 'builtins': <module 'builtins' (built-in)>, 'attrgetter': <class 'operator.attrgetter'>, 'namedtuple': <function namedtuple at 0x7f75e3b93d90>, 'OrderedDict': <class 'collections.OrderedDict'>, 'mod_dict': {...}, 'k': 512, 'v': 'ASYNC_GENERATOR', 'CO_OPTIMIZED': 1, 'CO_NEWLOCALS': 2, 'CO_VARARGS': 4, 'CO_VARKEYWORDS': 8, 'CO_NESTED': 16, 'CO_GENERATOR': 32, 'CO_NOFREE': 64, 'CO_COROUTINE': 128, 'CO_ITERABLE_COROUTINE': 256, 'CO_ASYNC_GENERATOR': 512, 'TPFLAGS_IS_ABSTRACT': 1048576, 'get_annotations': <function get_annotations at 0x7f75e3272290>, 'ismodule': <function ismodule at 0x7f75e32f5990>, 'isclass': <function isclass at 0x7f75e32f75b0>, 'ismethod': <function ismethod at 0x7f75e32f7640>, 'ismethoddescriptor': <function ismethoddescriptor at 0x7f75e32f76d0>, 'isdatadescriptor': <function isdatadescriptor at 0x7f75e32f7760>, 'ismemberdescriptor': <function ismemberdescriptor at 0x7f75e32f77f0>, 'isgetsetdescriptor': <function isgetsetdescriptor at 0x7f75e32f7880>, 'isfunction': <function isfunction at 0x7f75e32f7910>, '_has_code_flag': <function _has_code_flag at 0x7f75e32f79a0>, 'isgeneratorfunction': <function isgeneratorfunction at 0x7f75e32f7a30>, 'iscoroutinefunction': <function iscoroutinefunction at 0x7f75e32f7ac0>, 'isasyncgenfunction': <function isasyncgenfunction at 0x7f75e32f7b50>, 'isasyncgen': <function isasyncgen at 0x7f75e32f7be0>, 'isgenerator': <function isgenerator at 0x7f75e32f7c70>, 'iscoroutine': <function iscoroutine at 0x7f75e32f7d00>, 'isawaitable': <function isawaitable at 0x7f75e32f7d90>, 'istraceback': <function istraceback at 0x7f75e32f7e20>, 'isframe': <function isframe at 0x7f75e32f7eb0>, 'iscode': <function iscode at 0x7f75e32f7f40>, 'isbuiltin': <function isbuiltin at 0x7f75e3318040>, 'isroutine': <function isroutine at 0x7f75e33180d0>, 'isabstract': <function isabstract at 0x7f75e3318160>, 'getmembers': <function getmembers at 0x7f75e33181f0>, 'Attribute': <class 'inspect.Attribute'>, 'classify_class_attrs': <function classify_class_attrs at 0x7f75e33185e0>, 'getmro': <function getmro at 0x7f75e3318670>, 'unwrap': <function unwrap at 0x7f75e3318700>, 'indentsize': <function indentsize at 0x7f75e3318790>, '_findclass': <function _findclass at 0x7f75e3318820>, '_finddoc': <function _finddoc at 0x7f75e33188b0>, 'getdoc': <function getdoc at 0x7f75e3318940>, 'cleandoc': <function cleandoc at 0x7f75e33189d0>, 'getfile': <function getfile at 0x7f75e3318a60>, 'getmodulename': <function getmodulename at 0x7f75e3318af0>, 'getsourcefile': <function getsourcefile at 0x7f75e3318b80>, 'getabsfile': <function getabsfile at 0x7f75e3318c10>, 'modulesbyfile': {'/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/_bootstrap.py': 'importlib._bootstrap', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/_bootstrap_external.py': 'importlib._bootstrap_external', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/codecs.py': 'codecs', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/encodings/aliases.py': 'encodings.aliases', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/encodings/__init__.py': 'encodings', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/encodings/utf_8.py': 'encodings.utf_8', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/abc.py': 'abc', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/io.py': 'io', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/bin/.amethyst-wrapped': '__main__', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/stat.py': 'stat', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_collections_abc.py': 'collections.abc', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/genericpath.py': 'genericpath', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/posixpath.py': 'posixpath', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/os.py': 'os', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_sitebuiltins.py': '_sitebuiltins', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/keyword.py': 'keyword', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/operator.py': 'operator', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/reprlib.py': 'reprlib', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/collections/__init__.py': 'collections', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/types.py': 'types', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/functools.py': 'functools', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/site-packages/sitecustomize.py': 'sitecustomize', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/site.py': 'site', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/enum.py': 'enum', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/sre_constants.py': 'sre_constants', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/sre_parse.py': 'sre_parse', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/sre_compile.py': 'sre_compile', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/copyreg.py': 'copyreg', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/re.py': 're', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/__init__.py': 'amethyst', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/math.cpython-310-x86_64-linux-gnu.so': 'math', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_datetime.cpython-310-x86_64-linux-gnu.so': '_datetime', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/datetime.py': 'datetime', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_socket.cpython-310-x86_64-linux-gnu.so': '_socket', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_ssl.cpython-310-x86_64-linux-gnu.so': '_ssl', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/collections/abc.py': 'collections.abc', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/select.cpython-310-x86_64-linux-gnu.so': 'select', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/selectors.py': 'selectors', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/array.cpython-310-x86_64-linux-gnu.so': 'array', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/socket.py': 'socket', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_struct.cpython-310-x86_64-linux-gnu.so': '_struct', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/struct.py': 'struct', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/binascii.cpython-310-x86_64-linux-gnu.so': 'binascii', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/base64.py': 'base64', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/warnings.py': 'warnings', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/ssl.py': 'ssl', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_weakrefset.py': '_weakrefset', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/weakref.py': 'weakref', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/copy.py': 'copy', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/contextlib.py': 'contextlib', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/ast.py': 'ast', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_opcode.cpython-310-x86_64-linux-gnu.so': '_opcode', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/opcode.py': 'opcode', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/dis.py': 'dis', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/__init__.py': 'importlib', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/machinery.py': 'importlib.machinery', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/token.py': 'token', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/tokenize.py': 'tokenize', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/linecache.py': 'linecache', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/inspect.py': 'inspect', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/dataclasses.py': 'dataclasses', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/typing.py': 'typing', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/concurrent/__init__.py': 'concurrent', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/traceback.py': 'traceback', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/string.py': 'string', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/threading.py': 'threading', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/logging/__init__.py': 'logging', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/concurrent/futures/_base.py': 'concurrent.futures._base', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/concurrent/futures/__init__.py': 'concurrent.futures', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_heapq.cpython-310-x86_64-linux-gnu.so': '_heapq', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/heapq.py': 'heapq', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/signal.py': 'signal', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/fcntl.cpython-310-x86_64-linux-gnu.so': 'fcntl', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_posixsubprocess.cpython-310-x86_64-linux-gnu.so': '_posixsubprocess', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/subprocess.py': 'subprocess', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/constants.py': 'asyncio.constants', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/format_helpers.py': 'asyncio.format_helpers', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/base_futures.py': 'asyncio.base_futures', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/log.py': 'asyncio.log', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/coroutines.py': 'asyncio.coroutines', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_contextvars.cpython-310-x86_64-linux-gnu.so': '_contextvars', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/contextvars.py': 'contextvars', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/exceptions.py': 'asyncio.exceptions', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/base_tasks.py': 'asyncio.base_tasks', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_asyncio.cpython-310-x86_64-linux-gnu.so': '_asyncio', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/events.py': 'asyncio.events', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/futures.py': 'asyncio.futures', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/protocols.py': 'asyncio.protocols', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/transports.py': 'asyncio.transports', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/sslproto.py': 'asyncio.sslproto', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/mixins.py': 'asyncio.mixins', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/tasks.py': 'asyncio.tasks', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/locks.py': 'asyncio.locks', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/staggered.py': 'asyncio.staggered', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/trsock.py': 'asyncio.trsock', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/base_events.py': 'asyncio.base_events', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/runners.py': 'asyncio.runners', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/queues.py': 'asyncio.queues', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/streams.py': 'asyncio.streams', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/subprocess.py': 'asyncio.subprocess', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/threads.py': 'asyncio.threads', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/base_subprocess.py': 'asyncio.base_subprocess', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/selector_events.py': 'asyncio.selector_events', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/unix_events.py': 'asyncio.unix_events', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/__init__.py': 'asyncio', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/mime.py': 'amethyst.mime', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/response.py': 'amethyst.response', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/__about__.py': 'cryptography.__about__', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/utils.py': 'cryptography.utils', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/__init__.py': 'cryptography', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/__init__.py': 'cryptography.hazmat', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/bindings/__init__.py': 'cryptography.hazmat.bindings', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/bindings/_rust.abi3.so': 'cryptography.hazmat.bindings._rust', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/__init__.py': 'cryptography.hazmat.primitives', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/exceptions.py': 'cryptography.exceptions', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/hashes.py': 'cryptography.hazmat.primitives.hashes', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/certificate_transparency.py': 'cryptography.x509.certificate_transparency', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/_serialization.py': 'cryptography.hazmat.primitives._serialization', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__init__.py': 'cryptography.hazmat.primitives.asymmetric', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/dh.py': 'cryptography.hazmat.primitives.asymmetric.dh', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/utils.py': 'cryptography.hazmat.primitives.asymmetric.utils', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/dsa.py': 'cryptography.hazmat.primitives.asymmetric.dsa', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/_oid.py': 'cryptography.hazmat._oid', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/ec.py': 'cryptography.hazmat.primitives.asymmetric.ec', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py': 'cryptography.hazmat.primitives.asymmetric.ed25519', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/ed448.py': 'cryptography.hazmat.primitives.asymmetric.ed448', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/_asymmetric.py': 'cryptography.hazmat.primitives._asymmetric', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/rsa.py': 'cryptography.hazmat.primitives.asymmetric.rsa', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/x25519.py': 'cryptography.hazmat.primitives.asymmetric.x25519', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/x448.py': 'cryptography.hazmat.primitives.asymmetric.x448', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/types.py': 'cryptography.hazmat.primitives.asymmetric.types', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/base.py': 'cryptography.hazmat.primitives.serialization.base', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/_cipheralgorithm.py': 'cryptography.hazmat.primitives._cipheralgorithm', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/algorithms.py': 'cryptography.hazmat.primitives.ciphers.algorithms', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/modes.py': 'cryptography.hazmat.primitives.ciphers.modes', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/base.py': 'cryptography.hazmat.primitives.ciphers.base', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__init__.py': 'cryptography.hazmat.primitives.ciphers', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/ssh.py': 'cryptography.hazmat.primitives.serialization.ssh', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__init__.py': 'cryptography.hazmat.primitives.serialization', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_hashlib.cpython-310-x86_64-linux-gnu.so': '_hashlib', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_blake2.cpython-310-x86_64-linux-gnu.so': '_blake2', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/hashlib.py': 'hashlib', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/ipaddress.py': 'ipaddress', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/hmac.py': 'hmac', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/constant_time.py': 'cryptography.hazmat.primitives.constant_time', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/__init__.py': 'email', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_bisect.cpython-310-x86_64-linux-gnu.so': '_bisect', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/bisect.py': 'bisect', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_random.cpython-310-x86_64-linux-gnu.so': '_random', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_sha512.cpython-310-x86_64-linux-gnu.so': '_sha512', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/random.py': 'random', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/urllib/__init__.py': 'urllib', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/urllib/parse.py': 'urllib.parse', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/locale.py': 'locale', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/calendar.py': 'calendar', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/_parseaddr.py': 'email._parseaddr', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/base64mime.py': 'email.base64mime', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/quoprimime.py': 'email.quoprimime', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/errors.py': 'email.errors', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/quopri.py': 'quopri', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/encoders.py': 'email.encoders', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/charset.py': 'email.charset', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/utils.py': 'email.utils', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/oid.py': 'cryptography.x509.oid', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/name.py': 'cryptography.x509.name', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/general_name.py': 'cryptography.x509.general_name', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/extensions.py': 'cryptography.x509.extensions', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/base.py': 'cryptography.x509.base', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/__init__.py': 'cryptography.x509', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/tls.py': 'amethyst.tls', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/server.py': 'amethyst.server', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/request.py': 'amethyst.request', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/resource.py': 'amethyst.resource', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/util.py': 'amethyst.util', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/handler.py': 'amethyst.handler', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_csv.cpython-310-x86_64-linux-gnu.so': '_csv', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/csv.py': 'csv', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/fnmatch.py': 'fnmatch', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/ntpath.py': 'ntpath', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/pathlib.py': 'pathlib', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/_abc.py': 'importlib._abc', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/util.py': 'importlib.util', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/zlib.cpython-310-x86_64-linux-gnu.so': 'zlib', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_compression.py': '_compression', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_bz2.cpython-310-x86_64-linux-gnu.so': '_bz2', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/bz2.py': 'bz2', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_lzma.cpython-310-x86_64-linux-gnu.so': '_lzma', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lzma.py': 'lzma', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/shutil.py': 'shutil', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/zipfile.py': 'zipfile', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/textwrap.py': 'textwrap', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/uu.py': 'uu', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/header.py': 'email.header', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/_policybase.py': 'email._policybase', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/_encoded_words.py': 'email._encoded_words', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/iterators.py': 'email.iterators', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/message.py': 'email.message', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/_functools.py': 'importlib.metadata._functools', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/_text.py': 'importlib.metadata._text', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/_adapters.py': 'importlib.metadata._adapters', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/_meta.py': 'importlib.metadata._meta', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/_collections.py': 'importlib.metadata._collections', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/_itertools.py': 'importlib.metadata._itertools', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/abc.py': 'importlib.abc', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/__init__.py': 'importlib.metadata', '/nix/store/lsvw498hh26fv6kdp8x1khlc60j6fc39-python3.10-amethyst_extensions-0.0.1/lib/python3.10/site-packages/amethyst_ext/__init__.py': 'amethyst_ext', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/pkgutil.py': 'pkgutil', '/nix/store/lsvw498hh26fv6kdp8x1khlc60j6fc39-python3.10-amethyst_extensions-0.0.1/lib/python3.10/site-packages/amethyst_ext/pydoc.py': 'amethyst_ext.pydoc', '/nix/store/lsvw498hh26fv6kdp8x1khlc60j6fc39-python3.10-amethyst_extensions-0.0.1/lib/python3.10/site-packages/amethyst_ext/redirect.py': 'amethyst_ext.redirect', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/resource_registry.py': 'amethyst.resource_registry', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/config.py': 'amethyst.config', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_json.cpython-310-x86_64-linux-gnu.so': '_json', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/json/scanner.py': 'json.scanner', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/json/decoder.py': 'json.decoder', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/json/encoder.py': 'json.encoder', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/json/__init__.py': 'json', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/kindergarten.py': 'amethyst.kindergarten', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_queue.cpython-310-x86_64-linux-gnu.so': '_queue', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/queue.py': 'queue', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/concurrent/futures/thread.py': 'concurrent.futures.thread', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/__init__.py': 'cryptography.hazmat.backends', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/aead.py': 'cryptography.hazmat.backends.openssl.aead', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/ciphers.py': 'cryptography.hazmat.backends.openssl.ciphers', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/cmac.py': 'cryptography.hazmat.backends.openssl.cmac', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/dh.py': 'cryptography.hazmat.backends.openssl.dh', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/utils.py': 'cryptography.hazmat.backends.openssl.utils', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/dsa.py': 'cryptography.hazmat.backends.openssl.dsa', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/ec.py': 'cryptography.hazmat.backends.openssl.ec', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/ed25519.py': 'cryptography.hazmat.backends.openssl.ed25519', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/ed448.py': 'cryptography.hazmat.backends.openssl.ed448', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/hashes.py': 'cryptography.hazmat.backends.openssl.hashes', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/hmac.py': 'cryptography.hazmat.backends.openssl.hmac', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/poly1305.py': 'cryptography.hazmat.backends.openssl.poly1305', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/padding.py': 'cryptography.hazmat.primitives.asymmetric.padding', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/rsa.py': 'cryptography.hazmat.backends.openssl.rsa', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/x25519.py': 'cryptography.hazmat.backends.openssl.x25519', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/x448.py': 'cryptography.hazmat.backends.openssl.x448', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__init__.py': 'cryptography.hazmat.bindings.openssl', '/nix/store/vsfwiwh1cdgy9f27wmjg6mjhn9lq75qm-python3.10-cffi-1.15.1/lib/python3.10/site-packages/_cffi_backend.cpython-310-x86_64-linux-gnu.so': '_cffi_backend', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/bindings/_openssl.abi3.so': 'cryptography.hazmat.bindings._openssl', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/_conditional.py': 'cryptography.hazmat.bindings.openssl._conditional', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/binding.py': 'cryptography.hazmat.bindings.openssl.binding', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__init__.py': 'cryptography.hazmat.primitives.kdf', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/scrypt.py': 'cryptography.hazmat.primitives.kdf.scrypt', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/pkcs7.py': 'cryptography.hazmat.primitives.serialization.pkcs7', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/pkcs12.py': 'cryptography.hazmat.primitives.serialization.pkcs12', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/backend.py': 'cryptography.hazmat.backends.openssl.backend', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/__init__.py': 'cryptography.hazmat.backends.openssl', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/process.py': 'multiprocessing.process', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_compat_pickle.py': '_compat_pickle', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_pickle.cpython-310-x86_64-linux-gnu.so': '_pickle', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/pickle.py': 'pickle', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/reduction.py': 'multiprocessing.reduction', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/context.py': 'multiprocessing.context', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/__init__.py': 'multiprocessing', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/tempfile.py': 'tempfile', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_multiprocessing.cpython-310-x86_64-linux-gnu.so': '_multiprocessing', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/util.py': 'multiprocessing.util', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/connection.py': 'multiprocessing.connection', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/queues.py': 'multiprocessing.queues', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/concurrent/futures/process.py': 'concurrent.futures.process', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/__future__.py': '__future__', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/sysconfig.py': 'sysconfig', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_aix_support.py': '_aix_support', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_bootsubprocess.py': '_bootsubprocess', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_markupbase.py': '_markupbase', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_osx_support.py': '_osx_support', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_py_abc.py': '_py_abc', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/numbers.py': 'numbers', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_pydecimal.py': 'decimal', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_pyio.py': '_pyio', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_strptime.py': '_strptime', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_sysconfigdata__linux_x86_64-linux-gnu.py': '_sysconfigdata__linux_x86_64-linux-gnu', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_threading_local.py': '_threading_local', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/chunk.py': 'chunk', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/aifc.py': 'aifc', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/shlex.py': 'shlex', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/webbrowser.py': 'webbrowser', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/antigravity.py': 'antigravity', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/gettext.py': 'gettext', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/argparse.py': 'argparse', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncore.py': 'asyncore', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asynchat.py': 'asynchat', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/bdb.py': 'bdb', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/binhex.py': 'binhex', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_lsprof.cpython-310-x86_64-linux-gnu.so': '_lsprof', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/profile.py': 'profile', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/cProfile.py': 'cProfile', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/feedparser.py': 'email.feedparser', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/parser.py': 'email.parser', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/html/entities.py': 'html.entities', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/html/__init__.py': 'html', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/cgi.py': 'cgi', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/platform.py': 'platform', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/pydoc.py': 'pydoc', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/cgitb.py': 'cgitb'}, '_filesbymodname': {'_frozen_importlib': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/_bootstrap.py', '_frozen_importlib_external': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/_bootstrap_external.py', 'codecs': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/codecs.py', 'encodings.aliases': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/encodings/aliases.py', 'encodings': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/encodings/__init__.py', 'encodings.utf_8': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/encodings/utf_8.py', 'abc': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/abc.py', 'io': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/io.py', '__main__': '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/bin/.amethyst-wrapped', 'stat': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/stat.py', '_collections_abc': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_collections_abc.py', 'genericpath': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/genericpath.py', 'posixpath': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/posixpath.py', 'os.path': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/posixpath.py', 'os': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/os.py', '_sitebuiltins': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_sitebuiltins.py', 'keyword': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/keyword.py', 'operator': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/operator.py', 'reprlib': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/reprlib.py', 'collections': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/collections/__init__.py', 'types': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/types.py', 'functools': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/functools.py', 'sitecustomize': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/site-packages/sitecustomize.py', 'site': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/site.py', 'enum': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/enum.py', 'sre_constants': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/sre_constants.py', 'sre_parse': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/sre_parse.py', 'sre_compile': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/sre_compile.py', 'copyreg': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/copyreg.py', 're': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/re.py', 'amethyst': '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/__init__.py', 'math': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/math.cpython-310-x86_64-linux-gnu.so', '_datetime': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_datetime.cpython-310-x86_64-linux-gnu.so', 'datetime': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/datetime.py', '_socket': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_socket.cpython-310-x86_64-linux-gnu.so', '_ssl': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_ssl.cpython-310-x86_64-linux-gnu.so', 'collections.abc': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/collections/abc.py', 'select': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/select.cpython-310-x86_64-linux-gnu.so', 'selectors': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/selectors.py', 'array': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/array.cpython-310-x86_64-linux-gnu.so', 'socket': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/socket.py', '_struct': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_struct.cpython-310-x86_64-linux-gnu.so', 'struct': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/struct.py', 'binascii': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/binascii.cpython-310-x86_64-linux-gnu.so', 'base64': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/base64.py', 'warnings': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/warnings.py', 'ssl': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/ssl.py', '_weakrefset': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_weakrefset.py', 'weakref': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/weakref.py', 'copy': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/copy.py', 'contextlib': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/contextlib.py', 'ast': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/ast.py', '_opcode': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_opcode.cpython-310-x86_64-linux-gnu.so', 'opcode': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/opcode.py', 'dis': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/dis.py', 'importlib._bootstrap': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/_bootstrap.py', 'importlib._bootstrap_external': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/_bootstrap_external.py', 'importlib': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/__init__.py', 'importlib.machinery': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/machinery.py', 'token': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/token.py', 'tokenize': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/tokenize.py', 'linecache': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/linecache.py', 'inspect': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/inspect.py', 'dataclasses': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/dataclasses.py', 'typing': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/typing.py', 'concurrent': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/concurrent/__init__.py', 'traceback': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/traceback.py', 'string': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/string.py', 'threading': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/threading.py', 'logging': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/logging/__init__.py', 'concurrent.futures._base': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/concurrent/futures/_base.py', 'concurrent.futures': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/concurrent/futures/__init__.py', '_heapq': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_heapq.cpython-310-x86_64-linux-gnu.so', 'heapq': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/heapq.py', 'signal': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/signal.py', 'fcntl': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/fcntl.cpython-310-x86_64-linux-gnu.so', '_posixsubprocess': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_posixsubprocess.cpython-310-x86_64-linux-gnu.so', 'subprocess': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/subprocess.py', 'asyncio.constants': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/constants.py', 'asyncio.format_helpers': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/format_helpers.py', 'asyncio.base_futures': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/base_futures.py', 'asyncio.log': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/log.py', 'asyncio.coroutines': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/coroutines.py', '_contextvars': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_contextvars.cpython-310-x86_64-linux-gnu.so', 'contextvars': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/contextvars.py', 'asyncio.exceptions': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/exceptions.py', 'asyncio.base_tasks': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/base_tasks.py', '_asyncio': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_asyncio.cpython-310-x86_64-linux-gnu.so', 'asyncio.events': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/events.py', 'asyncio.futures': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/futures.py', 'asyncio.protocols': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/protocols.py', 'asyncio.transports': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/transports.py', 'asyncio.sslproto': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/sslproto.py', 'asyncio.mixins': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/mixins.py', 'asyncio.tasks': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/tasks.py', 'asyncio.locks': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/locks.py', 'asyncio.staggered': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/staggered.py', 'asyncio.trsock': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/trsock.py', 'asyncio.base_events': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/base_events.py', 'asyncio.runners': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/runners.py', 'asyncio.queues': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/queues.py', 'asyncio.streams': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/streams.py', 'asyncio.subprocess': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/subprocess.py', 'asyncio.threads': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/threads.py', 'asyncio.base_subprocess': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/base_subprocess.py', 'asyncio.selector_events': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/selector_events.py', 'asyncio.unix_events': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/unix_events.py', 'asyncio': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/__init__.py', 'amethyst.mime': '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/mime.py', 'amethyst.response': '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/response.py', 'cryptography.__about__': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/__about__.py', 'cryptography.utils': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/utils.py', 'cryptography': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/__init__.py', 'cryptography.hazmat': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/__init__.py', 'cryptography.hazmat.bindings': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/bindings/__init__.py', 'cryptography.hazmat.bindings._rust': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/bindings/_rust.abi3.so', 'cryptography.hazmat.primitives': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/__init__.py', 'cryptography.exceptions': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/exceptions.py', 'cryptography.hazmat.primitives.hashes': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/hashes.py', 'cryptography.x509.certificate_transparency': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/certificate_transparency.py', 'cryptography.hazmat.primitives._serialization': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/_serialization.py', 'cryptography.hazmat.primitives.asymmetric': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__init__.py', 'cryptography.hazmat.primitives.asymmetric.dh': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/dh.py', 'cryptography.hazmat.primitives.asymmetric.utils': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/utils.py', 'cryptography.hazmat.primitives.asymmetric.dsa': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/dsa.py', 'cryptography.hazmat._oid': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/_oid.py', 'cryptography.hazmat.primitives.asymmetric.ec': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/ec.py', 'cryptography.hazmat.primitives.asymmetric.ed25519': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py', 'cryptography.hazmat.primitives.asymmetric.ed448': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/ed448.py', 'cryptography.hazmat.primitives._asymmetric': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/_asymmetric.py', 'cryptography.hazmat.primitives.asymmetric.rsa': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/rsa.py', 'cryptography.hazmat.primitives.asymmetric.x25519': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/x25519.py', 'cryptography.hazmat.primitives.asymmetric.x448': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/x448.py', 'cryptography.hazmat.primitives.asymmetric.types': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/types.py', 'cryptography.hazmat.primitives.serialization.base': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/base.py', 'cryptography.hazmat.primitives._cipheralgorithm': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/_cipheralgorithm.py', 'cryptography.hazmat.primitives.ciphers.algorithms': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/algorithms.py', 'cryptography.hazmat.primitives.ciphers.modes': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/modes.py', 'cryptography.hazmat.primitives.ciphers.base': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/base.py', 'cryptography.hazmat.primitives.ciphers': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__init__.py', 'cryptography.hazmat.primitives.serialization.ssh': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/ssh.py', 'cryptography.hazmat.primitives.serialization': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__init__.py', '_hashlib': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_hashlib.cpython-310-x86_64-linux-gnu.so', '_blake2': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_blake2.cpython-310-x86_64-linux-gnu.so', 'hashlib': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/hashlib.py', 'ipaddress': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/ipaddress.py', 'hmac': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/hmac.py', 'cryptography.hazmat.primitives.constant_time': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/constant_time.py', 'email': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/__init__.py', '_bisect': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_bisect.cpython-310-x86_64-linux-gnu.so', 'bisect': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/bisect.py', '_random': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_random.cpython-310-x86_64-linux-gnu.so', '_sha512': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_sha512.cpython-310-x86_64-linux-gnu.so', 'random': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/random.py', 'urllib': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/urllib/__init__.py', 'urllib.parse': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/urllib/parse.py', 'locale': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/locale.py', 'calendar': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/calendar.py', 'email._parseaddr': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/_parseaddr.py', 'email.base64mime': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/base64mime.py', 'email.quoprimime': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/quoprimime.py', 'email.errors': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/errors.py', 'quopri': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/quopri.py', 'email.encoders': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/encoders.py', 'email.charset': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/charset.py', 'email.utils': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/utils.py', 'cryptography.x509.oid': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/oid.py', 'cryptography.x509.name': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/name.py', 'cryptography.x509.general_name': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/general_name.py', 'cryptography.x509.extensions': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/extensions.py', 'cryptography.x509.base': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/base.py', 'cryptography.x509': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/__init__.py', 'amethyst.tls': '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/tls.py', 'amethyst.server': '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/server.py', 'amethyst.request': '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/request.py', 'amethyst.resource': '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/resource.py', 'amethyst.util': '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/util.py', 'amethyst.handler': '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/handler.py', '_csv': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_csv.cpython-310-x86_64-linux-gnu.so', 'csv': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/csv.py', 'fnmatch': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/fnmatch.py', 'ntpath': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/ntpath.py', 'pathlib': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/pathlib.py', 'importlib._abc': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/_abc.py', 'importlib.util': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/util.py', 'zlib': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/zlib.cpython-310-x86_64-linux-gnu.so', '_compression': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_compression.py', '_bz2': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_bz2.cpython-310-x86_64-linux-gnu.so', 'bz2': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/bz2.py', '_lzma': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_lzma.cpython-310-x86_64-linux-gnu.so', 'lzma': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lzma.py', 'shutil': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/shutil.py', 'zipfile': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/zipfile.py', 'textwrap': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/textwrap.py', 'uu': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/uu.py', 'email.header': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/header.py', 'email._policybase': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/_policybase.py', 'email._encoded_words': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/_encoded_words.py', 'email.iterators': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/iterators.py', 'email.message': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/message.py', 'importlib.metadata._functools': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/_functools.py', 'importlib.metadata._text': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/_text.py', 'importlib.metadata._adapters': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/_adapters.py', 'importlib.metadata._meta': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/_meta.py', 'importlib.metadata._collections': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/_collections.py', 'importlib.metadata._itertools': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/_itertools.py', 'importlib.abc': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/abc.py', 'importlib.metadata': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/__init__.py', 'amethyst_ext': '/nix/store/lsvw498hh26fv6kdp8x1khlc60j6fc39-python3.10-amethyst_extensions-0.0.1/lib/python3.10/site-packages/amethyst_ext/__init__.py', 'pkgutil': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/pkgutil.py', 'amethyst_ext.pydoc': '/nix/store/lsvw498hh26fv6kdp8x1khlc60j6fc39-python3.10-amethyst_extensions-0.0.1/lib/python3.10/site-packages/amethyst_ext/pydoc.py', 'amethyst_ext.redirect': '/nix/store/lsvw498hh26fv6kdp8x1khlc60j6fc39-python3.10-amethyst_extensions-0.0.1/lib/python3.10/site-packages/amethyst_ext/redirect.py', 'amethyst.resource_registry': '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/resource_registry.py', 'amethyst.config': '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/config.py', '_json': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_json.cpython-310-x86_64-linux-gnu.so', 'json.scanner': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/json/scanner.py', 'json.decoder': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/json/decoder.py', 'json.encoder': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/json/encoder.py', 'json': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/json/__init__.py', 'amethyst.kindergarten': '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/kindergarten.py', '_queue': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_queue.cpython-310-x86_64-linux-gnu.so', 'queue': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/queue.py', 'concurrent.futures.thread': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/concurrent/futures/thread.py', 'cryptography.hazmat.backends': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/__init__.py', 'cryptography.hazmat.backends.openssl.aead': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/aead.py', 'cryptography.hazmat.backends.openssl.ciphers': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/ciphers.py', 'cryptography.hazmat.backends.openssl.cmac': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/cmac.py', 'cryptography.hazmat.backends.openssl.dh': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/dh.py', 'cryptography.hazmat.backends.openssl.utils': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/utils.py', 'cryptography.hazmat.backends.openssl.dsa': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/dsa.py', 'cryptography.hazmat.backends.openssl.ec': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/ec.py', 'cryptography.hazmat.backends.openssl.ed25519': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/ed25519.py', 'cryptography.hazmat.backends.openssl.ed448': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/ed448.py', 'cryptography.hazmat.backends.openssl.hashes': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/hashes.py', 'cryptography.hazmat.backends.openssl.hmac': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/hmac.py', 'cryptography.hazmat.backends.openssl.poly1305': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/poly1305.py', 'cryptography.hazmat.primitives.asymmetric.padding': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/padding.py', 'cryptography.hazmat.backends.openssl.rsa': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/rsa.py', 'cryptography.hazmat.backends.openssl.x25519': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/x25519.py', 'cryptography.hazmat.backends.openssl.x448': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/x448.py', 'cryptography.hazmat.bindings.openssl': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__init__.py', '_cffi_backend': '/nix/store/vsfwiwh1cdgy9f27wmjg6mjhn9lq75qm-python3.10-cffi-1.15.1/lib/python3.10/site-packages/_cffi_backend.cpython-310-x86_64-linux-gnu.so', 'cryptography.hazmat.bindings._openssl': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/bindings/_openssl.abi3.so', 'cryptography.hazmat.bindings.openssl._conditional': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/_conditional.py', 'cryptography.hazmat.bindings.openssl.binding': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/binding.py', 'cryptography.hazmat.primitives.kdf': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__init__.py', 'cryptography.hazmat.primitives.kdf.scrypt': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/scrypt.py', 'cryptography.hazmat.primitives.serialization.pkcs7': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/pkcs7.py', 'cryptography.hazmat.primitives.serialization.pkcs12': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/pkcs12.py', 'cryptography.hazmat.backends.openssl.backend': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/backend.py', 'cryptography.hazmat.backends.openssl': '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/__init__.py', 'multiprocessing.process': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/process.py', '_compat_pickle': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_compat_pickle.py', '_pickle': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_pickle.cpython-310-x86_64-linux-gnu.so', 'pickle': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/pickle.py', 'multiprocessing.reduction': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/reduction.py', 'multiprocessing.context': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/context.py', '__mp_main__': '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/bin/.amethyst-wrapped', 'multiprocessing': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/__init__.py', 'tempfile': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/tempfile.py', '_multiprocessing': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_multiprocessing.cpython-310-x86_64-linux-gnu.so', 'multiprocessing.util': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/util.py', 'multiprocessing.connection': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/connection.py', 'multiprocessing.queues': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/queues.py', 'concurrent.futures.process': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/concurrent/futures/process.py', '__future__': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/__future__.py', 'sysconfig': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/sysconfig.py', '_aix_support': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_aix_support.py', '_bootsubprocess': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_bootsubprocess.py', '_markupbase': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_markupbase.py', '_osx_support': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_osx_support.py', '_py_abc': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_py_abc.py', 'numbers': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/numbers.py', '_pydecimal': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_pydecimal.py', '_pyio': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_pyio.py', '_strptime': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_strptime.py', '_sysconfigdata__linux_x86_64-linux-gnu': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_sysconfigdata__linux_x86_64-linux-gnu.py', '_threading_local': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_threading_local.py', 'chunk': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/chunk.py', 'aifc': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/aifc.py', 'shlex': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/shlex.py', 'webbrowser': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/webbrowser.py', 'antigravity': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/antigravity.py', 'gettext': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/gettext.py', 'argparse': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/argparse.py', 'asyncore': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncore.py', 'asynchat': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asynchat.py', 'bdb': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/bdb.py', 'binhex': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/binhex.py', '_lsprof': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_lsprof.cpython-310-x86_64-linux-gnu.so', 'profile': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/profile.py', 'cProfile': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/cProfile.py', 'email.feedparser': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/feedparser.py', 'email.parser': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/parser.py', 'html.entities': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/html/entities.py', 'html': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/html/__init__.py', 'cgi': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/cgi.py', 'platform': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/platform.py', 'pydoc': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/pydoc.py', 'cgitb': '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/cgitb.py'}, 'getmodule': <function getmodule at 0x7f75e3318ca0>, 'ClassFoundException': <class 'inspect.ClassFoundException'>, '_ClassFinder': <class 'inspect._ClassFinder'>, 'findsource': <function findsource at 0x7f75e3318d30>, 'getcomments': <function getcomments at 0x7f75e3318f70>, 'EndOfBlock': <class 'inspect.EndOfBlock'>, 'BlockFinder': <class 'inspect.BlockFinder'>, 'getblock': <function getblock at 0x7f75e3319000>, 'getsourcelines': <function getsourcelines at 0x7f75e33191b0>, 'getsource': <function getsource at 0x7f75e3319240>, 'walktree': <function walktree at 0x7f75e33192d0>, 'getclasstree': <function getclasstree at 0x7f75e3319360>, 'Arguments': <class 'inspect.Arguments'>, 'getargs': <function getargs at 0x7f75e3319750>, 'ArgSpec': <class 'inspect.ArgSpec'>, 'getargspec': <function getargspec at 0x7f75e3319b40>, 'FullArgSpec': <class 'inspect.FullArgSpec'>, 'getfullargspec': <function getfullargspec at 0x7f75e331a050>, 'ArgInfo': <class 'inspect.ArgInfo'>, 'getargvalues': <function getargvalues at 0x7f75e331a440>, 'formatannotation': <function formatannotation at 0x7f75e331a4d0>, 'formatannotationrelativeto': <function formatannotationrelativeto at 0x7f75e331a560>, 'formatargspec': <function formatargspec at 0x7f75e331a8c0>, 'formatargvalues': <function formatargvalues at 0x7f75e331ab00>, '_missing_arguments': <function _missing_arguments at 0x7f75e331ab90>, '_too_many': <function _too_many at 0x7f75e331ac20>, 'getcallargs': <function getcallargs at 0x7f75e331acb0>, 'ClosureVars': <class 'inspect.ClosureVars'>, 'getclosurevars': <function getclosurevars at 0x7f75e331b0a0>, 'Traceback': <class 'inspect.Traceback'>, 'getframeinfo': <function getframeinfo at 0x7f75e331b520>, 'getlineno': <function getlineno at 0x7f75e331b5b0>, 'FrameInfo': <class 'inspect.FrameInfo'>, 'getouterframes': <function getouterframes at 0x7f75e331ba30>, 'getinnerframes': <function getinnerframes at 0x7f75e331bac0>, 'currentframe': <function currentframe at 0x7f75e331bb50>, 'stack': <function stack at 0x7f75e331bbe0>, 'trace': <function trace at 0x7f75e331bc70>, '_sentinel': <object object at 0x7f75e3c949f0>, '_static_getmro': <function _static_getmro at 0x7f75e331bd00>, '_check_instance': <function _check_instance at 0x7f75e331bd90>, '_check_class': <function _check_class at 0x7f75e331be20>, '_is_type': <function _is_type at 0x7f75e331beb0>, '_shadowed_dict': <function _shadowed_dict at 0x7f75e331bf40>, 'getattr_static': <function getattr_static at 0x7f75e3324040>, 'GEN_CREATED': 'GEN_CREATED', 'GEN_RUNNING': 'GEN_RUNNING', 'GEN_SUSPENDED': 'GEN_SUSPENDED', 'GEN_CLOSED': 'GEN_CLOSED', 'getgeneratorstate': <function getgeneratorstate at 0x7f75e33240d0>, 'getgeneratorlocals': <function getgeneratorlocals at 0x7f75e3324160>, 'CORO_CREATED': 'CORO_CREATED', 'CORO_RUNNING': 'CORO_RUNNING', 'CORO_SUSPENDED': 'CORO_SUSPENDED', 'CORO_CLOSED': 'CORO_CLOSED', 'getcoroutinestate': <function getcoroutinestate at 0x7f75e33241f0>, 'getcoroutinelocals': <function getcoroutinelocals at 0x7f75e3324280>, '_WrapperDescriptor': <class 'wrapper_descriptor'>, '_MethodWrapper': <class 'method-wrapper'>, '_ClassMethodWrapper': <class 'classmethod_descriptor'>, '_NonUserDefinedCallables': (<class 'wrapper_descriptor'>, <class 'method-wrapper'>, <class 'classmethod_descriptor'>, <class 'builtin_function_or_method'>), '_signature_get_user_defined_method': <function _signature_get_user_defined_method at 0x7f75e3324310>, '_signature_get_partial': <function _signature_get_partial at 0x7f75e33243a0>, '_signature_bound_method': <function _signature_bound_method at 0x7f75e3324430>, '_signature_is_builtin': <function _signature_is_builtin at 0x7f75e33244c0>, '_signature_is_functionlike': <function _signature_is_functionlike at 0x7f75e3324550>, '_signature_get_bound_param': <function _signature_get_bound_param at 0x7f75e33245e0>, '_signature_strip_non_python_syntax': <function _signature_strip_non_python_syntax at 0x7f75e3324670>, '_signature_fromstr': <function _signature_fromstr at 0x7f75e3324700>, '_signature_from_builtin': <function _signature_from_builtin at 0x7f75e3324790>, '_signature_from_function': <function _signature_from_function at 0x7f75e3324820>, '_signature_from_callable': <function _signature_from_callable at 0x7f75e33248b0>, '_void': <class 'inspect._void'>, '_empty': <class 'inspect._empty'>, '_ParameterKind': <enum '_ParameterKind'>, '_POSITIONAL_ONLY': <_ParameterKind.POSITIONAL_ONLY: 0>, '_POSITIONAL_OR_KEYWORD': <_ParameterKind.POSITIONAL_OR_KEYWORD: 1>, '_VAR_POSITIONAL': <_ParameterKind.VAR_POSITIONAL: 2>, '_KEYWORD_ONLY': <_ParameterKind.KEYWORD_ONLY: 3>, '_VAR_KEYWORD': <_ParameterKind.VAR_KEYWORD: 4>, '_PARAM_NAME_MAPPING': {<_ParameterKind.POSITIONAL_ONLY: 0>: 'positional-only', <_ParameterKind.POSITIONAL_OR_KEYWORD: 1>: 'positional or keyword', <_ParameterKind.VAR_POSITIONAL: 2>: 'variadic positional', <_ParameterKind.KEYWORD_ONLY: 3>: 'keyword-only', <_ParameterKind.VAR_KEYWORD: 4>: 'variadic keyword'}, 'Parameter': <class 'inspect.Parameter'>, 'BoundArguments': <class 'inspect.BoundArguments'>, 'Signature': <class 'inspect.Signature'>, 'signature': <function signature at 0x7f75e3324940>, '_main': <function _main at 0x7f75e3326050>, '__warningregistry__': {'version': 0, ('Blowfish has been deprecated', <class 'cryptography.utils.CryptographyDeprecationWarning'>, 469): True, ('CAST5 has been deprecated', <class 'cryptography.utils.CryptographyDeprecationWarning'>, 469): True, ('IDEA has been deprecated', <class 'cryptography.utils.CryptographyDeprecationWarning'>, 469): True, ('SEED has been deprecated', <class 'cryptography.utils.CryptographyDeprecationWarning'>, 469): True}}
modulesbyfile = {'/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/_bootstrap.py': 'importlib._bootstrap', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/_bootstrap_external.py': 'importlib._bootstrap_external', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/codecs.py': 'codecs', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/encodings/aliases.py': 'encodings.aliases', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/encodings/__init__.py': 'encodings', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/encodings/utf_8.py': 'encodings.utf_8', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/abc.py': 'abc', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/io.py': 'io', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/bin/.amethyst-wrapped': '__main__', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/stat.py': 'stat', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_collections_abc.py': 'collections.abc', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/genericpath.py': 'genericpath', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/posixpath.py': 'posixpath', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/os.py': 'os', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_sitebuiltins.py': '_sitebuiltins', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/keyword.py': 'keyword', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/operator.py': 'operator', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/reprlib.py': 'reprlib', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/collections/__init__.py': 'collections', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/types.py': 'types', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/functools.py': 'functools', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/site-packages/sitecustomize.py': 'sitecustomize', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/site.py': 'site', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/enum.py': 'enum', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/sre_constants.py': 'sre_constants', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/sre_parse.py': 'sre_parse', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/sre_compile.py': 'sre_compile', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/copyreg.py': 'copyreg', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/re.py': 're', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/__init__.py': 'amethyst', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/math.cpython-310-x86_64-linux-gnu.so': 'math', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_datetime.cpython-310-x86_64-linux-gnu.so': '_datetime', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/datetime.py': 'datetime', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_socket.cpython-310-x86_64-linux-gnu.so': '_socket', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_ssl.cpython-310-x86_64-linux-gnu.so': '_ssl', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/collections/abc.py': 'collections.abc', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/select.cpython-310-x86_64-linux-gnu.so': 'select', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/selectors.py': 'selectors', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/array.cpython-310-x86_64-linux-gnu.so': 'array', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/socket.py': 'socket', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_struct.cpython-310-x86_64-linux-gnu.so': '_struct', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/struct.py': 'struct', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/binascii.cpython-310-x86_64-linux-gnu.so': 'binascii', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/base64.py': 'base64', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/warnings.py': 'warnings', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/ssl.py': 'ssl', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_weakrefset.py': '_weakrefset', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/weakref.py': 'weakref', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/copy.py': 'copy', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/contextlib.py': 'contextlib', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/ast.py': 'ast', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_opcode.cpython-310-x86_64-linux-gnu.so': '_opcode', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/opcode.py': 'opcode', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/dis.py': 'dis', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/__init__.py': 'importlib', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/machinery.py': 'importlib.machinery', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/token.py': 'token', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/tokenize.py': 'tokenize', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/linecache.py': 'linecache', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/inspect.py': 'inspect', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/dataclasses.py': 'dataclasses', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/typing.py': 'typing', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/concurrent/__init__.py': 'concurrent', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/traceback.py': 'traceback', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/string.py': 'string', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/threading.py': 'threading', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/logging/__init__.py': 'logging', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/concurrent/futures/_base.py': 'concurrent.futures._base', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/concurrent/futures/__init__.py': 'concurrent.futures', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_heapq.cpython-310-x86_64-linux-gnu.so': '_heapq', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/heapq.py': 'heapq', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/signal.py': 'signal', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/fcntl.cpython-310-x86_64-linux-gnu.so': 'fcntl', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_posixsubprocess.cpython-310-x86_64-linux-gnu.so': '_posixsubprocess', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/subprocess.py': 'subprocess', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/constants.py': 'asyncio.constants', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/format_helpers.py': 'asyncio.format_helpers', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/base_futures.py': 'asyncio.base_futures', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/log.py': 'asyncio.log', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/coroutines.py': 'asyncio.coroutines', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_contextvars.cpython-310-x86_64-linux-gnu.so': '_contextvars', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/contextvars.py': 'contextvars', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/exceptions.py': 'asyncio.exceptions', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/base_tasks.py': 'asyncio.base_tasks', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_asyncio.cpython-310-x86_64-linux-gnu.so': '_asyncio', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/events.py': 'asyncio.events', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/futures.py': 'asyncio.futures', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/protocols.py': 'asyncio.protocols', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/transports.py': 'asyncio.transports', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/sslproto.py': 'asyncio.sslproto', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/mixins.py': 'asyncio.mixins', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/tasks.py': 'asyncio.tasks', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/locks.py': 'asyncio.locks', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/staggered.py': 'asyncio.staggered', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/trsock.py': 'asyncio.trsock', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/base_events.py': 'asyncio.base_events', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/runners.py': 'asyncio.runners', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/queues.py': 'asyncio.queues', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/streams.py': 'asyncio.streams', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/subprocess.py': 'asyncio.subprocess', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/threads.py': 'asyncio.threads', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/base_subprocess.py': 'asyncio.base_subprocess', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/selector_events.py': 'asyncio.selector_events', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/unix_events.py': 'asyncio.unix_events', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncio/__init__.py': 'asyncio', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/mime.py': 'amethyst.mime', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/response.py': 'amethyst.response', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/__about__.py': 'cryptography.__about__', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/utils.py': 'cryptography.utils', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/__init__.py': 'cryptography', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/__init__.py': 'cryptography.hazmat', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/bindings/__init__.py': 'cryptography.hazmat.bindings', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/bindings/_rust.abi3.so': 'cryptography.hazmat.bindings._rust', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/__init__.py': 'cryptography.hazmat.primitives', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/exceptions.py': 'cryptography.exceptions', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/hashes.py': 'cryptography.hazmat.primitives.hashes', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/certificate_transparency.py': 'cryptography.x509.certificate_transparency', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/_serialization.py': 'cryptography.hazmat.primitives._serialization', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__init__.py': 'cryptography.hazmat.primitives.asymmetric', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/dh.py': 'cryptography.hazmat.primitives.asymmetric.dh', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/utils.py': 'cryptography.hazmat.primitives.asymmetric.utils', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/dsa.py': 'cryptography.hazmat.primitives.asymmetric.dsa', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/_oid.py': 'cryptography.hazmat._oid', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/ec.py': 'cryptography.hazmat.primitives.asymmetric.ec', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py': 'cryptography.hazmat.primitives.asymmetric.ed25519', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/ed448.py': 'cryptography.hazmat.primitives.asymmetric.ed448', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/_asymmetric.py': 'cryptography.hazmat.primitives._asymmetric', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/rsa.py': 'cryptography.hazmat.primitives.asymmetric.rsa', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/x25519.py': 'cryptography.hazmat.primitives.asymmetric.x25519', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/x448.py': 'cryptography.hazmat.primitives.asymmetric.x448', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/types.py': 'cryptography.hazmat.primitives.asymmetric.types', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/base.py': 'cryptography.hazmat.primitives.serialization.base', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/_cipheralgorithm.py': 'cryptography.hazmat.primitives._cipheralgorithm', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/algorithms.py': 'cryptography.hazmat.primitives.ciphers.algorithms', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/modes.py': 'cryptography.hazmat.primitives.ciphers.modes', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/base.py': 'cryptography.hazmat.primitives.ciphers.base', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__init__.py': 'cryptography.hazmat.primitives.ciphers', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/ssh.py': 'cryptography.hazmat.primitives.serialization.ssh', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__init__.py': 'cryptography.hazmat.primitives.serialization', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_hashlib.cpython-310-x86_64-linux-gnu.so': '_hashlib', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_blake2.cpython-310-x86_64-linux-gnu.so': '_blake2', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/hashlib.py': 'hashlib', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/ipaddress.py': 'ipaddress', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/hmac.py': 'hmac', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/constant_time.py': 'cryptography.hazmat.primitives.constant_time', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/__init__.py': 'email', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_bisect.cpython-310-x86_64-linux-gnu.so': '_bisect', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/bisect.py': 'bisect', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_random.cpython-310-x86_64-linux-gnu.so': '_random', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_sha512.cpython-310-x86_64-linux-gnu.so': '_sha512', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/random.py': 'random', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/urllib/__init__.py': 'urllib', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/urllib/parse.py': 'urllib.parse', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/locale.py': 'locale', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/calendar.py': 'calendar', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/_parseaddr.py': 'email._parseaddr', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/base64mime.py': 'email.base64mime', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/quoprimime.py': 'email.quoprimime', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/errors.py': 'email.errors', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/quopri.py': 'quopri', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/encoders.py': 'email.encoders', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/charset.py': 'email.charset', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/utils.py': 'email.utils', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/oid.py': 'cryptography.x509.oid', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/name.py': 'cryptography.x509.name', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/general_name.py': 'cryptography.x509.general_name', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/extensions.py': 'cryptography.x509.extensions', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/base.py': 'cryptography.x509.base', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/x509/__init__.py': 'cryptography.x509', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/tls.py': 'amethyst.tls', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/server.py': 'amethyst.server', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/request.py': 'amethyst.request', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/resource.py': 'amethyst.resource', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/util.py': 'amethyst.util', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/handler.py': 'amethyst.handler', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_csv.cpython-310-x86_64-linux-gnu.so': '_csv', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/csv.py': 'csv', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/fnmatch.py': 'fnmatch', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/ntpath.py': 'ntpath', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/pathlib.py': 'pathlib', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/_abc.py': 'importlib._abc', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/util.py': 'importlib.util', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/zlib.cpython-310-x86_64-linux-gnu.so': 'zlib', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_compression.py': '_compression', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_bz2.cpython-310-x86_64-linux-gnu.so': '_bz2', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/bz2.py': 'bz2', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_lzma.cpython-310-x86_64-linux-gnu.so': '_lzma', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lzma.py': 'lzma', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/shutil.py': 'shutil', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/zipfile.py': 'zipfile', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/textwrap.py': 'textwrap', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/uu.py': 'uu', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/header.py': 'email.header', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/_policybase.py': 'email._policybase', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/_encoded_words.py': 'email._encoded_words', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/iterators.py': 'email.iterators', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/message.py': 'email.message', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/_functools.py': 'importlib.metadata._functools', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/_text.py': 'importlib.metadata._text', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/_adapters.py': 'importlib.metadata._adapters', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/_meta.py': 'importlib.metadata._meta', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/_collections.py': 'importlib.metadata._collections', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/_itertools.py': 'importlib.metadata._itertools', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/abc.py': 'importlib.abc', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/importlib/metadata/__init__.py': 'importlib.metadata', '/nix/store/lsvw498hh26fv6kdp8x1khlc60j6fc39-python3.10-amethyst_extensions-0.0.1/lib/python3.10/site-packages/amethyst_ext/__init__.py': 'amethyst_ext', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/pkgutil.py': 'pkgutil', '/nix/store/lsvw498hh26fv6kdp8x1khlc60j6fc39-python3.10-amethyst_extensions-0.0.1/lib/python3.10/site-packages/amethyst_ext/pydoc.py': 'amethyst_ext.pydoc', '/nix/store/lsvw498hh26fv6kdp8x1khlc60j6fc39-python3.10-amethyst_extensions-0.0.1/lib/python3.10/site-packages/amethyst_ext/redirect.py': 'amethyst_ext.redirect', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/resource_registry.py': 'amethyst.resource_registry', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/config.py': 'amethyst.config', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_json.cpython-310-x86_64-linux-gnu.so': '_json', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/json/scanner.py': 'json.scanner', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/json/decoder.py': 'json.decoder', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/json/encoder.py': 'json.encoder', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/json/__init__.py': 'json', '/nix/store/3hj7jdn5dygvzz68wbrigldinh3xrd8s-amethyst-0.0.1/lib/python3.10/site-packages/amethyst/kindergarten.py': 'amethyst.kindergarten', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_queue.cpython-310-x86_64-linux-gnu.so': '_queue', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/queue.py': 'queue', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/concurrent/futures/thread.py': 'concurrent.futures.thread', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/__init__.py': 'cryptography.hazmat.backends', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/aead.py': 'cryptography.hazmat.backends.openssl.aead', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/ciphers.py': 'cryptography.hazmat.backends.openssl.ciphers', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/cmac.py': 'cryptography.hazmat.backends.openssl.cmac', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/dh.py': 'cryptography.hazmat.backends.openssl.dh', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/utils.py': 'cryptography.hazmat.backends.openssl.utils', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/dsa.py': 'cryptography.hazmat.backends.openssl.dsa', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/ec.py': 'cryptography.hazmat.backends.openssl.ec', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/ed25519.py': 'cryptography.hazmat.backends.openssl.ed25519', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/ed448.py': 'cryptography.hazmat.backends.openssl.ed448', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/hashes.py': 'cryptography.hazmat.backends.openssl.hashes', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/hmac.py': 'cryptography.hazmat.backends.openssl.hmac', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/poly1305.py': 'cryptography.hazmat.backends.openssl.poly1305', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/padding.py': 'cryptography.hazmat.primitives.asymmetric.padding', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/rsa.py': 'cryptography.hazmat.backends.openssl.rsa', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/x25519.py': 'cryptography.hazmat.backends.openssl.x25519', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/x448.py': 'cryptography.hazmat.backends.openssl.x448', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__init__.py': 'cryptography.hazmat.bindings.openssl', '/nix/store/vsfwiwh1cdgy9f27wmjg6mjhn9lq75qm-python3.10-cffi-1.15.1/lib/python3.10/site-packages/_cffi_backend.cpython-310-x86_64-linux-gnu.so': '_cffi_backend', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/bindings/_openssl.abi3.so': 'cryptography.hazmat.bindings._openssl', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/_conditional.py': 'cryptography.hazmat.bindings.openssl._conditional', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/binding.py': 'cryptography.hazmat.bindings.openssl.binding', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__init__.py': 'cryptography.hazmat.primitives.kdf', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/scrypt.py': 'cryptography.hazmat.primitives.kdf.scrypt', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/pkcs7.py': 'cryptography.hazmat.primitives.serialization.pkcs7', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/pkcs12.py': 'cryptography.hazmat.primitives.serialization.pkcs12', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/backend.py': 'cryptography.hazmat.backends.openssl.backend', '/nix/store/90gmnpw25sgpv6wyvcs34g941a7mwfy0-python3.10-cryptography-38.0.1/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/__init__.py': 'cryptography.hazmat.backends.openssl', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/process.py': 'multiprocessing.process', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_compat_pickle.py': '_compat_pickle', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_pickle.cpython-310-x86_64-linux-gnu.so': '_pickle', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/pickle.py': 'pickle', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/reduction.py': 'multiprocessing.reduction', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/context.py': 'multiprocessing.context', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/__init__.py': 'multiprocessing', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/tempfile.py': 'tempfile', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_multiprocessing.cpython-310-x86_64-linux-gnu.so': '_multiprocessing', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/util.py': 'multiprocessing.util', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/connection.py': 'multiprocessing.connection', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/multiprocessing/queues.py': 'multiprocessing.queues', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/concurrent/futures/process.py': 'concurrent.futures.process', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/__future__.py': '__future__', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/sysconfig.py': 'sysconfig', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_aix_support.py': '_aix_support', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_bootsubprocess.py': '_bootsubprocess', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_markupbase.py': '_markupbase', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_osx_support.py': '_osx_support', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_py_abc.py': '_py_abc', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/numbers.py': 'numbers', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_pydecimal.py': 'decimal', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_pyio.py': '_pyio', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_strptime.py': '_strptime', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_sysconfigdata__linux_x86_64-linux-gnu.py': '_sysconfigdata__linux_x86_64-linux-gnu', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/_threading_local.py': '_threading_local', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/chunk.py': 'chunk', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/aifc.py': 'aifc', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/shlex.py': 'shlex', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/webbrowser.py': 'webbrowser', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/antigravity.py': 'antigravity', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/gettext.py': 'gettext', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/argparse.py': 'argparse', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asyncore.py': 'asyncore', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/asynchat.py': 'asynchat', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/bdb.py': 'bdb', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/binhex.py': 'binhex', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/lib-dynload/_lsprof.cpython-310-x86_64-linux-gnu.so': '_lsprof', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/profile.py': 'profile', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/cProfile.py': 'cProfile', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/feedparser.py': 'email.feedparser', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/email/parser.py': 'email.parser', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/html/entities.py': 'html.entities', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/html/__init__.py': 'html', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/cgi.py': 'cgi', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/platform.py': 'platform', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/pydoc.py': 'pydoc', '/nix/store/lbn7f0d2k36i4bgfdrjdwj7npy3r3h5d-python3-3.10.8/lib/python3.10/cgitb.py': 'cgitb'}
v = 'ASYNC_GENERATOR'

Modules

abc

ast

builtins

collections

dis

enum

functools

importlib

itertools

linecache

os

re

sys

token

tokenize

types

warnings