jaclang 0.8.3__py3-none-any.whl → 0.8.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of jaclang might be problematic. Click here for more details.

Files changed (4669) hide show
  1. jaclang/cli/cli.py +74 -22
  2. jaclang/compiler/__init__.py +2 -2
  3. jaclang/compiler/constant.py +0 -1
  4. jaclang/compiler/jac.lark +7 -11
  5. jaclang/compiler/larkparse/jac_parser.py +2 -2
  6. jaclang/compiler/parser.py +17 -35
  7. jaclang/compiler/passes/main/__init__.py +3 -1
  8. jaclang/compiler/passes/main/binder_pass.py +594 -0
  9. jaclang/compiler/passes/main/def_use_pass.py +0 -1
  10. jaclang/compiler/passes/main/import_pass.py +8 -256
  11. jaclang/compiler/passes/main/inheritance_pass.py +2 -2
  12. jaclang/compiler/passes/main/pyast_gen_pass.py +231 -117
  13. jaclang/compiler/passes/main/pyast_load_pass.py +34 -13
  14. jaclang/compiler/passes/main/sem_def_match_pass.py +2 -1
  15. jaclang/compiler/passes/main/tests/fixtures/M1.jac +3 -0
  16. jaclang/compiler/passes/main/tests/fixtures/codegen_sem.jac +53 -0
  17. jaclang/compiler/passes/main/tests/fixtures/data_spatial_types.jac +3 -3
  18. jaclang/compiler/passes/main/tests/fixtures/sym_binder.jac +47 -0
  19. jaclang/compiler/passes/main/tests/test_binder_pass.py +111 -0
  20. jaclang/compiler/passes/main/tests/test_pyast_gen_pass.py +87 -0
  21. jaclang/compiler/passes/main/tests/test_sem_def_match_pass.py +6 -6
  22. jaclang/compiler/passes/tool/doc_ir_gen_pass.py +132 -67
  23. jaclang/compiler/passes/tool/tests/fixtures/simple_walk_fmt.jac +6 -0
  24. jaclang/compiler/passes/tool/tests/fixtures/tagbreak.jac +9 -0
  25. jaclang/compiler/program.py +15 -8
  26. jaclang/compiler/tests/test_sr_errors.py +32 -0
  27. jaclang/compiler/unitree.py +27 -42
  28. jaclang/langserve/engine.jac +287 -149
  29. jaclang/langserve/tests/test_server.py +16 -3
  30. jaclang/runtimelib/archetype.py +5 -1
  31. jaclang/runtimelib/builtin.py +40 -0
  32. jaclang/runtimelib/importer.py +33 -62
  33. jaclang/runtimelib/machine.py +86 -247
  34. jaclang/runtimelib/memory.py +27 -1
  35. jaclang/runtimelib/tests/fixtures/custom_access_validation.jac +62 -0
  36. jaclang/runtimelib/tests/test_jaseci.py +208 -0
  37. jaclang/runtimelib/utils.py +29 -0
  38. jaclang/tests/fixtures/gendot_bubble_sort.jac +2 -2
  39. jaclang/tests/fixtures/glob_multivar_statement.jac +1 -1
  40. jaclang/tests/fixtures/ignore.jac +1 -4
  41. jaclang/tests/fixtures/ignore_dup.jac +1 -4
  42. jaclang/tests/fixtures/pyfunc_fmt.py +60 -0
  43. jaclang/tests/fixtures/pyfunc_fstr.py +25 -0
  44. jaclang/tests/fixtures/pyfunc_kwesc.py +33 -0
  45. jaclang/tests/fixtures/python_run_test.py +19 -0
  46. jaclang/tests/fixtures/spawn_loc_list.jac +27 -0
  47. jaclang/tests/fixtures/while_else.jac +9 -0
  48. jaclang/tests/test_cli.py +67 -0
  49. jaclang/tests/test_language.py +120 -1
  50. jaclang/utils/lang_tools.py +3 -3
  51. jaclang/utils/module_resolver.py +90 -0
  52. jaclang/utils/symtable_test_helpers.py +125 -0
  53. jaclang/utils/test.py +3 -4
  54. jaclang/vendor/interegular/__init__.py +34 -0
  55. jaclang/vendor/interegular/comparator.py +163 -0
  56. jaclang/vendor/interegular/fsm.py +1015 -0
  57. jaclang/vendor/interegular/patterns.py +732 -0
  58. jaclang/vendor/interegular/py.typed +0 -0
  59. jaclang/vendor/interegular/utils/__init__.py +15 -0
  60. jaclang/vendor/interegular/utils/simple_parser.py +165 -0
  61. jaclang/vendor/interegular-0.3.3.dist-info/INSTALLER +1 -0
  62. jaclang/vendor/interegular-0.3.3.dist-info/LICENSE.txt +21 -0
  63. jaclang/vendor/interegular-0.3.3.dist-info/METADATA +64 -0
  64. jaclang/vendor/interegular-0.3.3.dist-info/RECORD +20 -0
  65. jaclang/vendor/interegular-0.3.3.dist-info/REQUESTED +0 -0
  66. jaclang/vendor/interegular-0.3.3.dist-info/WHEEL +5 -0
  67. jaclang/vendor/interegular-0.3.3.dist-info/top_level.txt +1 -0
  68. jaclang/vendor/typeshed/stdlib/VERSIONS +346 -0
  69. jaclang/vendor/typeshed/stdlib/__future__.pyi +36 -0
  70. jaclang/vendor/typeshed/stdlib/__main__.pyi +1 -0
  71. jaclang/vendor/typeshed/stdlib/_ast.pyi +145 -0
  72. jaclang/vendor/typeshed/stdlib/_asyncio.pyi +110 -0
  73. jaclang/vendor/typeshed/stdlib/_bisect.pyi +84 -0
  74. jaclang/vendor/typeshed/stdlib/_blake2.pyi +76 -0
  75. jaclang/vendor/typeshed/stdlib/_bootlocale.pyi +1 -0
  76. jaclang/vendor/typeshed/stdlib/_bz2.pyi +24 -0
  77. jaclang/vendor/typeshed/stdlib/_codecs.pyi +122 -0
  78. jaclang/vendor/typeshed/stdlib/_collections_abc.pyi +107 -0
  79. jaclang/vendor/typeshed/stdlib/_compat_pickle.pyi +8 -0
  80. jaclang/vendor/typeshed/stdlib/_compression.pyi +27 -0
  81. jaclang/vendor/typeshed/stdlib/_contextvars.pyi +64 -0
  82. jaclang/vendor/typeshed/stdlib/_csv.pyi +133 -0
  83. jaclang/vendor/typeshed/stdlib/_ctypes.pyi +338 -0
  84. jaclang/vendor/typeshed/stdlib/_curses.pyi +551 -0
  85. jaclang/vendor/typeshed/stdlib/_curses_panel.pyi +27 -0
  86. jaclang/vendor/typeshed/stdlib/_dbm.pyi +44 -0
  87. jaclang/vendor/typeshed/stdlib/_decimal.pyi +72 -0
  88. jaclang/vendor/typeshed/stdlib/_frozen_importlib.pyi +113 -0
  89. jaclang/vendor/typeshed/stdlib/_frozen_importlib_external.pyi +188 -0
  90. jaclang/vendor/typeshed/stdlib/_gdbm.pyi +47 -0
  91. jaclang/vendor/typeshed/stdlib/_hashlib.pyi +126 -0
  92. jaclang/vendor/typeshed/stdlib/_heapq.pyi +19 -0
  93. jaclang/vendor/typeshed/stdlib/_imp.pyi +30 -0
  94. jaclang/vendor/typeshed/stdlib/_interpchannels.pyi +86 -0
  95. jaclang/vendor/typeshed/stdlib/_interpqueues.pyi +19 -0
  96. jaclang/vendor/typeshed/stdlib/_interpreters.pyi +52 -0
  97. jaclang/vendor/typeshed/stdlib/_io.pyi +242 -0
  98. jaclang/vendor/typeshed/stdlib/_json.pyi +51 -0
  99. jaclang/vendor/typeshed/stdlib/_locale.pyi +121 -0
  100. jaclang/vendor/typeshed/stdlib/_lsprof.pyi +35 -0
  101. jaclang/vendor/typeshed/stdlib/_lzma.pyi +71 -0
  102. jaclang/vendor/typeshed/stdlib/_markupbase.pyi +16 -0
  103. jaclang/vendor/typeshed/stdlib/_msi.pyi +92 -0
  104. jaclang/vendor/typeshed/stdlib/_multibytecodec.pyi +44 -0
  105. jaclang/vendor/typeshed/stdlib/_operator.pyi +115 -0
  106. jaclang/vendor/typeshed/stdlib/_osx_support.pyi +34 -0
  107. jaclang/vendor/typeshed/stdlib/_pickle.pyi +104 -0
  108. jaclang/vendor/typeshed/stdlib/_posixsubprocess.pyi +59 -0
  109. jaclang/vendor/typeshed/stdlib/_py_abc.pyi +14 -0
  110. jaclang/vendor/typeshed/stdlib/_pydecimal.pyi +47 -0
  111. jaclang/vendor/typeshed/stdlib/_queue.pyi +16 -0
  112. jaclang/vendor/typeshed/stdlib/_random.pyi +12 -0
  113. jaclang/vendor/typeshed/stdlib/_sitebuiltins.pyi +17 -0
  114. jaclang/vendor/typeshed/stdlib/_socket.pyi +862 -0
  115. jaclang/vendor/typeshed/stdlib/_sqlite3.pyi +312 -0
  116. jaclang/vendor/typeshed/stdlib/_ssl.pyi +293 -0
  117. jaclang/vendor/typeshed/stdlib/_stat.pyi +119 -0
  118. jaclang/vendor/typeshed/stdlib/_struct.pyi +22 -0
  119. jaclang/vendor/typeshed/stdlib/_thread.pyi +116 -0
  120. jaclang/vendor/typeshed/stdlib/_threading_local.pyi +22 -0
  121. jaclang/vendor/typeshed/stdlib/_tkinter.pyi +143 -0
  122. jaclang/vendor/typeshed/stdlib/_tracemalloc.pyi +13 -0
  123. jaclang/vendor/typeshed/stdlib/_typeshed/README.md +34 -0
  124. jaclang/vendor/typeshed/stdlib/_typeshed/__init__.pyi +377 -0
  125. jaclang/vendor/typeshed/stdlib/_typeshed/_type_checker_internals.pyi +89 -0
  126. jaclang/vendor/typeshed/stdlib/_typeshed/dbapi.pyi +37 -0
  127. jaclang/vendor/typeshed/stdlib/_typeshed/importlib.pyi +18 -0
  128. jaclang/vendor/typeshed/stdlib/_typeshed/wsgi.pyi +44 -0
  129. jaclang/vendor/typeshed/stdlib/_typeshed/xml.pyi +9 -0
  130. jaclang/vendor/typeshed/stdlib/_warnings.pyi +55 -0
  131. jaclang/vendor/typeshed/stdlib/_weakref.pyi +15 -0
  132. jaclang/vendor/typeshed/stdlib/_weakrefset.pyi +48 -0
  133. jaclang/vendor/typeshed/stdlib/_winapi.pyi +283 -0
  134. jaclang/vendor/typeshed/stdlib/_zstd.pyi +96 -0
  135. jaclang/vendor/typeshed/stdlib/abc.pyi +51 -0
  136. jaclang/vendor/typeshed/stdlib/aifc.pyi +79 -0
  137. jaclang/vendor/typeshed/stdlib/annotationlib.pyi +132 -0
  138. jaclang/vendor/typeshed/stdlib/antigravity.pyi +3 -0
  139. jaclang/vendor/typeshed/stdlib/argparse.pyi +802 -0
  140. jaclang/vendor/typeshed/stdlib/array.pyi +88 -0
  141. jaclang/vendor/typeshed/stdlib/ast.pyi +2068 -0
  142. jaclang/vendor/typeshed/stdlib/asynchat.pyi +21 -0
  143. jaclang/vendor/typeshed/stdlib/asyncio/__init__.pyi +1012 -0
  144. jaclang/vendor/typeshed/stdlib/asyncio/base_events.pyi +488 -0
  145. jaclang/vendor/typeshed/stdlib/asyncio/base_futures.pyi +19 -0
  146. jaclang/vendor/typeshed/stdlib/asyncio/base_subprocess.pyi +63 -0
  147. jaclang/vendor/typeshed/stdlib/asyncio/base_tasks.pyi +9 -0
  148. jaclang/vendor/typeshed/stdlib/asyncio/constants.pyi +20 -0
  149. jaclang/vendor/typeshed/stdlib/asyncio/coroutines.pyi +27 -0
  150. jaclang/vendor/typeshed/stdlib/asyncio/events.pyi +666 -0
  151. jaclang/vendor/typeshed/stdlib/asyncio/exceptions.pyi +44 -0
  152. jaclang/vendor/typeshed/stdlib/asyncio/format_helpers.pyi +31 -0
  153. jaclang/vendor/typeshed/stdlib/asyncio/futures.pyi +23 -0
  154. jaclang/vendor/typeshed/stdlib/asyncio/graph.pyi +26 -0
  155. jaclang/vendor/typeshed/stdlib/asyncio/locks.pyi +104 -0
  156. jaclang/vendor/typeshed/stdlib/asyncio/log.pyi +3 -0
  157. jaclang/vendor/typeshed/stdlib/asyncio/mixins.pyi +9 -0
  158. jaclang/vendor/typeshed/stdlib/asyncio/proactor_events.pyi +65 -0
  159. jaclang/vendor/typeshed/stdlib/asyncio/protocols.pyi +35 -0
  160. jaclang/vendor/typeshed/stdlib/asyncio/queues.pyi +54 -0
  161. jaclang/vendor/typeshed/stdlib/asyncio/runners.pyi +33 -0
  162. jaclang/vendor/typeshed/stdlib/asyncio/selector_events.pyi +10 -0
  163. jaclang/vendor/typeshed/stdlib/asyncio/sslproto.pyi +165 -0
  164. jaclang/vendor/typeshed/stdlib/asyncio/staggered.pyi +10 -0
  165. jaclang/vendor/typeshed/stdlib/asyncio/streams.pyi +158 -0
  166. jaclang/vendor/typeshed/stdlib/asyncio/subprocess.pyi +230 -0
  167. jaclang/vendor/typeshed/stdlib/asyncio/taskgroups.pyi +26 -0
  168. jaclang/vendor/typeshed/stdlib/asyncio/tasks.pyi +472 -0
  169. jaclang/vendor/typeshed/stdlib/asyncio/threads.pyi +10 -0
  170. jaclang/vendor/typeshed/stdlib/asyncio/timeouts.pyi +20 -0
  171. jaclang/vendor/typeshed/stdlib/asyncio/transports.pyi +50 -0
  172. jaclang/vendor/typeshed/stdlib/asyncio/trsock.pyi +94 -0
  173. jaclang/vendor/typeshed/stdlib/asyncio/unix_events.pyi +248 -0
  174. jaclang/vendor/typeshed/stdlib/asyncio/windows_events.pyi +121 -0
  175. jaclang/vendor/typeshed/stdlib/asyncio/windows_utils.pyi +49 -0
  176. jaclang/vendor/typeshed/stdlib/asyncore.pyi +90 -0
  177. jaclang/vendor/typeshed/stdlib/atexit.pyi +12 -0
  178. jaclang/vendor/typeshed/stdlib/audioop.pyi +43 -0
  179. jaclang/vendor/typeshed/stdlib/base64.pyi +61 -0
  180. jaclang/vendor/typeshed/stdlib/bdb.pyi +130 -0
  181. jaclang/vendor/typeshed/stdlib/binascii.pyi +36 -0
  182. jaclang/vendor/typeshed/stdlib/binhex.pyi +45 -0
  183. jaclang/vendor/typeshed/stdlib/bisect.pyi +4 -0
  184. jaclang/vendor/typeshed/stdlib/builtins.pyi +2251 -0
  185. jaclang/vendor/typeshed/stdlib/bz2.pyi +117 -0
  186. jaclang/vendor/typeshed/stdlib/cProfile.pyi +31 -0
  187. jaclang/vendor/typeshed/stdlib/calendar.pyi +208 -0
  188. jaclang/vendor/typeshed/stdlib/cgi.pyi +118 -0
  189. jaclang/vendor/typeshed/stdlib/cgitb.pyi +32 -0
  190. jaclang/vendor/typeshed/stdlib/chunk.pyi +20 -0
  191. jaclang/vendor/typeshed/stdlib/cmath.pyi +36 -0
  192. jaclang/vendor/typeshed/stdlib/cmd.pyi +46 -0
  193. jaclang/vendor/typeshed/stdlib/code.pyi +54 -0
  194. jaclang/vendor/typeshed/stdlib/codecs.pyi +312 -0
  195. jaclang/vendor/typeshed/stdlib/codeop.pyi +21 -0
  196. jaclang/vendor/typeshed/stdlib/collections/__init__.pyi +495 -0
  197. jaclang/vendor/typeshed/stdlib/collections/abc.pyi +2 -0
  198. jaclang/vendor/typeshed/stdlib/colorsys.pyi +13 -0
  199. jaclang/vendor/typeshed/stdlib/compileall.pyi +87 -0
  200. jaclang/vendor/typeshed/stdlib/compression/__init__.pyi +0 -0
  201. jaclang/vendor/typeshed/stdlib/compression/_common/__init__.pyi +0 -0
  202. jaclang/vendor/typeshed/stdlib/compression/_common/_streams.pyi +26 -0
  203. jaclang/vendor/typeshed/stdlib/compression/bz2/__init__.pyi +1 -0
  204. jaclang/vendor/typeshed/stdlib/compression/gzip/__init__.pyi +1 -0
  205. jaclang/vendor/typeshed/stdlib/compression/lzma/__init__.pyi +1 -0
  206. jaclang/vendor/typeshed/stdlib/compression/zlib/__init__.pyi +1 -0
  207. jaclang/vendor/typeshed/stdlib/compression/zstd/__init__.pyi +87 -0
  208. jaclang/vendor/typeshed/stdlib/compression/zstd/_zstdfile.pyi +117 -0
  209. jaclang/vendor/typeshed/stdlib/concurrent/__init__.pyi +0 -0
  210. jaclang/vendor/typeshed/stdlib/concurrent/futures/__init__.pyi +71 -0
  211. jaclang/vendor/typeshed/stdlib/concurrent/futures/_base.pyi +119 -0
  212. jaclang/vendor/typeshed/stdlib/concurrent/futures/interpreter.pyi +100 -0
  213. jaclang/vendor/typeshed/stdlib/concurrent/futures/process.pyi +242 -0
  214. jaclang/vendor/typeshed/stdlib/concurrent/futures/thread.pyi +136 -0
  215. jaclang/vendor/typeshed/stdlib/configparser.pyi +464 -0
  216. jaclang/vendor/typeshed/stdlib/contextlib.pyi +213 -0
  217. jaclang/vendor/typeshed/stdlib/contextvars.pyi +3 -0
  218. jaclang/vendor/typeshed/stdlib/copy.pyi +27 -0
  219. jaclang/vendor/typeshed/stdlib/copyreg.pyi +21 -0
  220. jaclang/vendor/typeshed/stdlib/crypt.pyi +20 -0
  221. jaclang/vendor/typeshed/stdlib/csv.pyi +155 -0
  222. jaclang/vendor/typeshed/stdlib/ctypes/__init__.pyi +325 -0
  223. jaclang/vendor/typeshed/stdlib/ctypes/_endian.pyi +12 -0
  224. jaclang/vendor/typeshed/stdlib/ctypes/macholib/__init__.pyi +1 -0
  225. jaclang/vendor/typeshed/stdlib/ctypes/macholib/dyld.pyi +8 -0
  226. jaclang/vendor/typeshed/stdlib/ctypes/macholib/dylib.pyi +14 -0
  227. jaclang/vendor/typeshed/stdlib/ctypes/macholib/framework.pyi +14 -0
  228. jaclang/vendor/typeshed/stdlib/ctypes/util.pyi +11 -0
  229. jaclang/vendor/typeshed/stdlib/ctypes/wintypes.pyi +321 -0
  230. jaclang/vendor/typeshed/stdlib/curses/__init__.pyi +40 -0
  231. jaclang/vendor/typeshed/stdlib/curses/ascii.pyi +62 -0
  232. jaclang/vendor/typeshed/stdlib/curses/has_key.pyi +1 -0
  233. jaclang/vendor/typeshed/stdlib/curses/panel.pyi +1 -0
  234. jaclang/vendor/typeshed/stdlib/curses/textpad.pyi +11 -0
  235. jaclang/vendor/typeshed/stdlib/dataclasses.pyi +457 -0
  236. jaclang/vendor/typeshed/stdlib/datetime.pyi +342 -0
  237. jaclang/vendor/typeshed/stdlib/dbm/__init__.pyi +104 -0
  238. jaclang/vendor/typeshed/stdlib/dbm/dumb.pyi +37 -0
  239. jaclang/vendor/typeshed/stdlib/dbm/gnu.pyi +1 -0
  240. jaclang/vendor/typeshed/stdlib/dbm/ndbm.pyi +1 -0
  241. jaclang/vendor/typeshed/stdlib/dbm/sqlite3.pyi +29 -0
  242. jaclang/vendor/typeshed/stdlib/decimal.pyi +272 -0
  243. jaclang/vendor/typeshed/stdlib/difflib.pyi +132 -0
  244. jaclang/vendor/typeshed/stdlib/dis.pyi +289 -0
  245. jaclang/vendor/typeshed/stdlib/distutils/__init__.pyi +5 -0
  246. jaclang/vendor/typeshed/stdlib/distutils/_msvccompiler.pyi +13 -0
  247. jaclang/vendor/typeshed/stdlib/distutils/archive_util.pyi +35 -0
  248. jaclang/vendor/typeshed/stdlib/distutils/bcppcompiler.pyi +3 -0
  249. jaclang/vendor/typeshed/stdlib/distutils/ccompiler.pyi +176 -0
  250. jaclang/vendor/typeshed/stdlib/distutils/cmd.pyi +229 -0
  251. jaclang/vendor/typeshed/stdlib/distutils/command/__init__.pyi +48 -0
  252. jaclang/vendor/typeshed/stdlib/distutils/command/bdist.pyi +27 -0
  253. jaclang/vendor/typeshed/stdlib/distutils/command/bdist_dumb.pyi +22 -0
  254. jaclang/vendor/typeshed/stdlib/distutils/command/bdist_msi.pyi +45 -0
  255. jaclang/vendor/typeshed/stdlib/distutils/command/bdist_packager.pyi +0 -0
  256. jaclang/vendor/typeshed/stdlib/distutils/command/bdist_rpm.pyi +53 -0
  257. jaclang/vendor/typeshed/stdlib/distutils/command/bdist_wininst.pyi +16 -0
  258. jaclang/vendor/typeshed/stdlib/distutils/command/build.pyi +34 -0
  259. jaclang/vendor/typeshed/stdlib/distutils/command/build_clib.pyi +29 -0
  260. jaclang/vendor/typeshed/stdlib/distutils/command/build_ext.pyi +52 -0
  261. jaclang/vendor/typeshed/stdlib/distutils/command/build_py.pyi +45 -0
  262. jaclang/vendor/typeshed/stdlib/distutils/command/build_scripts.pyi +25 -0
  263. jaclang/vendor/typeshed/stdlib/distutils/command/check.pyi +40 -0
  264. jaclang/vendor/typeshed/stdlib/distutils/command/clean.pyi +18 -0
  265. jaclang/vendor/typeshed/stdlib/distutils/command/config.pyi +84 -0
  266. jaclang/vendor/typeshed/stdlib/distutils/command/install.pyi +71 -0
  267. jaclang/vendor/typeshed/stdlib/distutils/command/install_data.pyi +20 -0
  268. jaclang/vendor/typeshed/stdlib/distutils/command/install_egg_info.pyi +19 -0
  269. jaclang/vendor/typeshed/stdlib/distutils/command/install_headers.pyi +17 -0
  270. jaclang/vendor/typeshed/stdlib/distutils/command/install_lib.pyi +26 -0
  271. jaclang/vendor/typeshed/stdlib/distutils/command/install_scripts.pyi +19 -0
  272. jaclang/vendor/typeshed/stdlib/distutils/command/register.pyi +20 -0
  273. jaclang/vendor/typeshed/stdlib/distutils/command/sdist.pyi +45 -0
  274. jaclang/vendor/typeshed/stdlib/distutils/command/upload.pyi +18 -0
  275. jaclang/vendor/typeshed/stdlib/distutils/config.pyi +17 -0
  276. jaclang/vendor/typeshed/stdlib/distutils/core.pyi +58 -0
  277. jaclang/vendor/typeshed/stdlib/distutils/cygwinccompiler.pyi +20 -0
  278. jaclang/vendor/typeshed/stdlib/distutils/debug.pyi +3 -0
  279. jaclang/vendor/typeshed/stdlib/distutils/dep_util.pyi +14 -0
  280. jaclang/vendor/typeshed/stdlib/distutils/dir_util.pyi +23 -0
  281. jaclang/vendor/typeshed/stdlib/distutils/dist.pyi +315 -0
  282. jaclang/vendor/typeshed/stdlib/distutils/errors.pyi +19 -0
  283. jaclang/vendor/typeshed/stdlib/distutils/extension.pyi +36 -0
  284. jaclang/vendor/typeshed/stdlib/distutils/fancy_getopt.pyi +44 -0
  285. jaclang/vendor/typeshed/stdlib/distutils/file_util.pyi +38 -0
  286. jaclang/vendor/typeshed/stdlib/distutils/filelist.pyi +58 -0
  287. jaclang/vendor/typeshed/stdlib/distutils/log.pyi +26 -0
  288. jaclang/vendor/typeshed/stdlib/distutils/msvccompiler.pyi +3 -0
  289. jaclang/vendor/typeshed/stdlib/distutils/spawn.pyi +10 -0
  290. jaclang/vendor/typeshed/stdlib/distutils/sysconfig.pyi +33 -0
  291. jaclang/vendor/typeshed/stdlib/distutils/text_file.pyi +21 -0
  292. jaclang/vendor/typeshed/stdlib/distutils/unixccompiler.pyi +3 -0
  293. jaclang/vendor/typeshed/stdlib/distutils/util.pyi +53 -0
  294. jaclang/vendor/typeshed/stdlib/distutils/version.pyi +36 -0
  295. jaclang/vendor/typeshed/stdlib/doctest.pyi +262 -0
  296. jaclang/vendor/typeshed/stdlib/email/__init__.pyi +60 -0
  297. jaclang/vendor/typeshed/stdlib/email/_header_value_parser.pyi +398 -0
  298. jaclang/vendor/typeshed/stdlib/email/_policybase.pyi +80 -0
  299. jaclang/vendor/typeshed/stdlib/email/base64mime.pyi +13 -0
  300. jaclang/vendor/typeshed/stdlib/email/charset.pyi +35 -0
  301. jaclang/vendor/typeshed/stdlib/email/contentmanager.pyi +11 -0
  302. jaclang/vendor/typeshed/stdlib/email/encoders.pyi +8 -0
  303. jaclang/vendor/typeshed/stdlib/email/errors.pyi +42 -0
  304. jaclang/vendor/typeshed/stdlib/email/feedparser.pyi +22 -0
  305. jaclang/vendor/typeshed/stdlib/email/generator.pyi +77 -0
  306. jaclang/vendor/typeshed/stdlib/email/header.pyi +32 -0
  307. jaclang/vendor/typeshed/stdlib/email/headerregistry.pyi +180 -0
  308. jaclang/vendor/typeshed/stdlib/email/iterators.pyi +12 -0
  309. jaclang/vendor/typeshed/stdlib/email/message.pyi +172 -0
  310. jaclang/vendor/typeshed/stdlib/email/mime/__init__.pyi +0 -0
  311. jaclang/vendor/typeshed/stdlib/email/mime/application.pyi +17 -0
  312. jaclang/vendor/typeshed/stdlib/email/mime/audio.pyi +17 -0
  313. jaclang/vendor/typeshed/stdlib/email/mime/base.pyi +8 -0
  314. jaclang/vendor/typeshed/stdlib/email/mime/image.pyi +17 -0
  315. jaclang/vendor/typeshed/stdlib/email/mime/message.pyi +8 -0
  316. jaclang/vendor/typeshed/stdlib/email/mime/multipart.pyi +18 -0
  317. jaclang/vendor/typeshed/stdlib/email/mime/nonmultipart.pyi +5 -0
  318. jaclang/vendor/typeshed/stdlib/email/mime/text.pyi +9 -0
  319. jaclang/vendor/typeshed/stdlib/email/parser.pyi +39 -0
  320. jaclang/vendor/typeshed/stdlib/email/policy.pyi +75 -0
  321. jaclang/vendor/typeshed/stdlib/email/quoprimime.pyi +28 -0
  322. jaclang/vendor/typeshed/stdlib/email/utils.pyi +78 -0
  323. jaclang/vendor/typeshed/stdlib/encodings/__init__.pyi +9 -0
  324. jaclang/vendor/typeshed/stdlib/encodings/aliases.pyi +1 -0
  325. jaclang/vendor/typeshed/stdlib/encodings/ascii.pyi +30 -0
  326. jaclang/vendor/typeshed/stdlib/encodings/base64_codec.pyi +26 -0
  327. jaclang/vendor/typeshed/stdlib/encodings/big5.pyi +23 -0
  328. jaclang/vendor/typeshed/stdlib/encodings/big5hkscs.pyi +23 -0
  329. jaclang/vendor/typeshed/stdlib/encodings/bz2_codec.pyi +26 -0
  330. jaclang/vendor/typeshed/stdlib/encodings/charmap.pyi +33 -0
  331. jaclang/vendor/typeshed/stdlib/encodings/cp037.pyi +21 -0
  332. jaclang/vendor/typeshed/stdlib/encodings/cp1006.pyi +21 -0
  333. jaclang/vendor/typeshed/stdlib/encodings/cp1026.pyi +21 -0
  334. jaclang/vendor/typeshed/stdlib/encodings/cp1125.pyi +21 -0
  335. jaclang/vendor/typeshed/stdlib/encodings/cp1140.pyi +21 -0
  336. jaclang/vendor/typeshed/stdlib/encodings/cp1250.pyi +21 -0
  337. jaclang/vendor/typeshed/stdlib/encodings/cp1251.pyi +21 -0
  338. jaclang/vendor/typeshed/stdlib/encodings/cp1252.pyi +21 -0
  339. jaclang/vendor/typeshed/stdlib/encodings/cp1253.pyi +21 -0
  340. jaclang/vendor/typeshed/stdlib/encodings/cp1254.pyi +21 -0
  341. jaclang/vendor/typeshed/stdlib/encodings/cp1255.pyi +21 -0
  342. jaclang/vendor/typeshed/stdlib/encodings/cp1256.pyi +21 -0
  343. jaclang/vendor/typeshed/stdlib/encodings/cp1257.pyi +21 -0
  344. jaclang/vendor/typeshed/stdlib/encodings/cp1258.pyi +21 -0
  345. jaclang/vendor/typeshed/stdlib/encodings/cp273.pyi +21 -0
  346. jaclang/vendor/typeshed/stdlib/encodings/cp424.pyi +21 -0
  347. jaclang/vendor/typeshed/stdlib/encodings/cp437.pyi +21 -0
  348. jaclang/vendor/typeshed/stdlib/encodings/cp500.pyi +21 -0
  349. jaclang/vendor/typeshed/stdlib/encodings/cp720.pyi +21 -0
  350. jaclang/vendor/typeshed/stdlib/encodings/cp737.pyi +21 -0
  351. jaclang/vendor/typeshed/stdlib/encodings/cp775.pyi +21 -0
  352. jaclang/vendor/typeshed/stdlib/encodings/cp850.pyi +21 -0
  353. jaclang/vendor/typeshed/stdlib/encodings/cp852.pyi +21 -0
  354. jaclang/vendor/typeshed/stdlib/encodings/cp855.pyi +21 -0
  355. jaclang/vendor/typeshed/stdlib/encodings/cp856.pyi +21 -0
  356. jaclang/vendor/typeshed/stdlib/encodings/cp857.pyi +21 -0
  357. jaclang/vendor/typeshed/stdlib/encodings/cp858.pyi +21 -0
  358. jaclang/vendor/typeshed/stdlib/encodings/cp860.pyi +21 -0
  359. jaclang/vendor/typeshed/stdlib/encodings/cp861.pyi +21 -0
  360. jaclang/vendor/typeshed/stdlib/encodings/cp862.pyi +21 -0
  361. jaclang/vendor/typeshed/stdlib/encodings/cp863.pyi +21 -0
  362. jaclang/vendor/typeshed/stdlib/encodings/cp864.pyi +21 -0
  363. jaclang/vendor/typeshed/stdlib/encodings/cp865.pyi +21 -0
  364. jaclang/vendor/typeshed/stdlib/encodings/cp866.pyi +21 -0
  365. jaclang/vendor/typeshed/stdlib/encodings/cp869.pyi +21 -0
  366. jaclang/vendor/typeshed/stdlib/encodings/cp874.pyi +21 -0
  367. jaclang/vendor/typeshed/stdlib/encodings/cp875.pyi +21 -0
  368. jaclang/vendor/typeshed/stdlib/encodings/cp932.pyi +23 -0
  369. jaclang/vendor/typeshed/stdlib/encodings/cp949.pyi +23 -0
  370. jaclang/vendor/typeshed/stdlib/encodings/cp950.pyi +23 -0
  371. jaclang/vendor/typeshed/stdlib/encodings/euc_jis_2004.pyi +23 -0
  372. jaclang/vendor/typeshed/stdlib/encodings/euc_jisx0213.pyi +23 -0
  373. jaclang/vendor/typeshed/stdlib/encodings/euc_jp.pyi +23 -0
  374. jaclang/vendor/typeshed/stdlib/encodings/euc_kr.pyi +23 -0
  375. jaclang/vendor/typeshed/stdlib/encodings/gb18030.pyi +23 -0
  376. jaclang/vendor/typeshed/stdlib/encodings/gb2312.pyi +23 -0
  377. jaclang/vendor/typeshed/stdlib/encodings/gbk.pyi +23 -0
  378. jaclang/vendor/typeshed/stdlib/encodings/hex_codec.pyi +26 -0
  379. jaclang/vendor/typeshed/stdlib/encodings/hp_roman8.pyi +21 -0
  380. jaclang/vendor/typeshed/stdlib/encodings/hz.pyi +23 -0
  381. jaclang/vendor/typeshed/stdlib/encodings/idna.pyi +26 -0
  382. jaclang/vendor/typeshed/stdlib/encodings/iso2022_jp.pyi +23 -0
  383. jaclang/vendor/typeshed/stdlib/encodings/iso2022_jp_1.pyi +23 -0
  384. jaclang/vendor/typeshed/stdlib/encodings/iso2022_jp_2.pyi +23 -0
  385. jaclang/vendor/typeshed/stdlib/encodings/iso2022_jp_2004.pyi +23 -0
  386. jaclang/vendor/typeshed/stdlib/encodings/iso2022_jp_3.pyi +23 -0
  387. jaclang/vendor/typeshed/stdlib/encodings/iso2022_jp_ext.pyi +23 -0
  388. jaclang/vendor/typeshed/stdlib/encodings/iso2022_kr.pyi +23 -0
  389. jaclang/vendor/typeshed/stdlib/encodings/iso8859_1.pyi +21 -0
  390. jaclang/vendor/typeshed/stdlib/encodings/iso8859_10.pyi +21 -0
  391. jaclang/vendor/typeshed/stdlib/encodings/iso8859_11.pyi +21 -0
  392. jaclang/vendor/typeshed/stdlib/encodings/iso8859_13.pyi +21 -0
  393. jaclang/vendor/typeshed/stdlib/encodings/iso8859_14.pyi +21 -0
  394. jaclang/vendor/typeshed/stdlib/encodings/iso8859_15.pyi +21 -0
  395. jaclang/vendor/typeshed/stdlib/encodings/iso8859_16.pyi +21 -0
  396. jaclang/vendor/typeshed/stdlib/encodings/iso8859_2.pyi +21 -0
  397. jaclang/vendor/typeshed/stdlib/encodings/iso8859_3.pyi +21 -0
  398. jaclang/vendor/typeshed/stdlib/encodings/iso8859_4.pyi +21 -0
  399. jaclang/vendor/typeshed/stdlib/encodings/iso8859_5.pyi +21 -0
  400. jaclang/vendor/typeshed/stdlib/encodings/iso8859_6.pyi +21 -0
  401. jaclang/vendor/typeshed/stdlib/encodings/iso8859_7.pyi +21 -0
  402. jaclang/vendor/typeshed/stdlib/encodings/iso8859_8.pyi +21 -0
  403. jaclang/vendor/typeshed/stdlib/encodings/iso8859_9.pyi +21 -0
  404. jaclang/vendor/typeshed/stdlib/encodings/johab.pyi +23 -0
  405. jaclang/vendor/typeshed/stdlib/encodings/koi8_r.pyi +21 -0
  406. jaclang/vendor/typeshed/stdlib/encodings/koi8_t.pyi +21 -0
  407. jaclang/vendor/typeshed/stdlib/encodings/koi8_u.pyi +21 -0
  408. jaclang/vendor/typeshed/stdlib/encodings/kz1048.pyi +21 -0
  409. jaclang/vendor/typeshed/stdlib/encodings/latin_1.pyi +30 -0
  410. jaclang/vendor/typeshed/stdlib/encodings/mac_arabic.pyi +21 -0
  411. jaclang/vendor/typeshed/stdlib/encodings/mac_croatian.pyi +21 -0
  412. jaclang/vendor/typeshed/stdlib/encodings/mac_cyrillic.pyi +21 -0
  413. jaclang/vendor/typeshed/stdlib/encodings/mac_farsi.pyi +21 -0
  414. jaclang/vendor/typeshed/stdlib/encodings/mac_greek.pyi +21 -0
  415. jaclang/vendor/typeshed/stdlib/encodings/mac_iceland.pyi +21 -0
  416. jaclang/vendor/typeshed/stdlib/encodings/mac_latin2.pyi +21 -0
  417. jaclang/vendor/typeshed/stdlib/encodings/mac_roman.pyi +21 -0
  418. jaclang/vendor/typeshed/stdlib/encodings/mac_romanian.pyi +21 -0
  419. jaclang/vendor/typeshed/stdlib/encodings/mac_turkish.pyi +21 -0
  420. jaclang/vendor/typeshed/stdlib/encodings/mbcs.pyi +28 -0
  421. jaclang/vendor/typeshed/stdlib/encodings/oem.pyi +28 -0
  422. jaclang/vendor/typeshed/stdlib/encodings/palmos.pyi +21 -0
  423. jaclang/vendor/typeshed/stdlib/encodings/ptcp154.pyi +21 -0
  424. jaclang/vendor/typeshed/stdlib/encodings/punycode.pyi +33 -0
  425. jaclang/vendor/typeshed/stdlib/encodings/quopri_codec.pyi +26 -0
  426. jaclang/vendor/typeshed/stdlib/encodings/raw_unicode_escape.pyi +23 -0
  427. jaclang/vendor/typeshed/stdlib/encodings/rot_13.pyi +23 -0
  428. jaclang/vendor/typeshed/stdlib/encodings/shift_jis.pyi +23 -0
  429. jaclang/vendor/typeshed/stdlib/encodings/shift_jis_2004.pyi +23 -0
  430. jaclang/vendor/typeshed/stdlib/encodings/shift_jisx0213.pyi +23 -0
  431. jaclang/vendor/typeshed/stdlib/encodings/tis_620.pyi +21 -0
  432. jaclang/vendor/typeshed/stdlib/encodings/undefined.pyi +20 -0
  433. jaclang/vendor/typeshed/stdlib/encodings/unicode_escape.pyi +23 -0
  434. jaclang/vendor/typeshed/stdlib/encodings/utf_16.pyi +20 -0
  435. jaclang/vendor/typeshed/stdlib/encodings/utf_16_be.pyi +26 -0
  436. jaclang/vendor/typeshed/stdlib/encodings/utf_16_le.pyi +26 -0
  437. jaclang/vendor/typeshed/stdlib/encodings/utf_32.pyi +20 -0
  438. jaclang/vendor/typeshed/stdlib/encodings/utf_32_be.pyi +26 -0
  439. jaclang/vendor/typeshed/stdlib/encodings/utf_32_le.pyi +26 -0
  440. jaclang/vendor/typeshed/stdlib/encodings/utf_7.pyi +26 -0
  441. jaclang/vendor/typeshed/stdlib/encodings/utf_8.pyi +26 -0
  442. jaclang/vendor/typeshed/stdlib/encodings/utf_8_sig.pyi +22 -0
  443. jaclang/vendor/typeshed/stdlib/encodings/uu_codec.pyi +28 -0
  444. jaclang/vendor/typeshed/stdlib/encodings/zlib_codec.pyi +26 -0
  445. jaclang/vendor/typeshed/stdlib/ensurepip/__init__.pyi +12 -0
  446. jaclang/vendor/typeshed/stdlib/enum.pyi +342 -0
  447. jaclang/vendor/typeshed/stdlib/errno.pyi +225 -0
  448. jaclang/vendor/typeshed/stdlib/faulthandler.pyi +17 -0
  449. jaclang/vendor/typeshed/stdlib/fcntl.pyi +158 -0
  450. jaclang/vendor/typeshed/stdlib/filecmp.pyi +65 -0
  451. jaclang/vendor/typeshed/stdlib/fileinput.pyi +209 -0
  452. jaclang/vendor/typeshed/stdlib/fnmatch.pyi +15 -0
  453. jaclang/vendor/typeshed/stdlib/formatter.pyi +88 -0
  454. jaclang/vendor/typeshed/stdlib/fractions.pyi +165 -0
  455. jaclang/vendor/typeshed/stdlib/ftplib.pyi +153 -0
  456. jaclang/vendor/typeshed/stdlib/functools.pyi +247 -0
  457. jaclang/vendor/typeshed/stdlib/gc.pyi +33 -0
  458. jaclang/vendor/typeshed/stdlib/genericpath.pyi +64 -0
  459. jaclang/vendor/typeshed/stdlib/getopt.pyi +27 -0
  460. jaclang/vendor/typeshed/stdlib/getpass.pyi +14 -0
  461. jaclang/vendor/typeshed/stdlib/gettext.pyi +171 -0
  462. jaclang/vendor/typeshed/stdlib/glob.pyi +50 -0
  463. jaclang/vendor/typeshed/stdlib/graphlib.pyi +28 -0
  464. jaclang/vendor/typeshed/stdlib/grp.pyi +22 -0
  465. jaclang/vendor/typeshed/stdlib/gzip.pyi +173 -0
  466. jaclang/vendor/typeshed/stdlib/hashlib.pyi +87 -0
  467. jaclang/vendor/typeshed/stdlib/heapq.pyi +17 -0
  468. jaclang/vendor/typeshed/stdlib/hmac.pyi +33 -0
  469. jaclang/vendor/typeshed/stdlib/html/__init__.pyi +6 -0
  470. jaclang/vendor/typeshed/stdlib/html/entities.pyi +6 -0
  471. jaclang/vendor/typeshed/stdlib/html/parser.pyi +34 -0
  472. jaclang/vendor/typeshed/stdlib/http/__init__.pyi +118 -0
  473. jaclang/vendor/typeshed/stdlib/http/client.pyi +265 -0
  474. jaclang/vendor/typeshed/stdlib/http/cookiejar.pyi +159 -0
  475. jaclang/vendor/typeshed/stdlib/http/cookies.pyi +56 -0
  476. jaclang/vendor/typeshed/stdlib/http/server.pyi +130 -0
  477. jaclang/vendor/typeshed/stdlib/imaplib.pyi +174 -0
  478. jaclang/vendor/typeshed/stdlib/imghdr.pyi +17 -0
  479. jaclang/vendor/typeshed/stdlib/imp.pyi +62 -0
  480. jaclang/vendor/typeshed/stdlib/importlib/__init__.pyi +15 -0
  481. jaclang/vendor/typeshed/stdlib/importlib/_abc.pyi +15 -0
  482. jaclang/vendor/typeshed/stdlib/importlib/_bootstrap.pyi +2 -0
  483. jaclang/vendor/typeshed/stdlib/importlib/_bootstrap_external.pyi +2 -0
  484. jaclang/vendor/typeshed/stdlib/importlib/abc.pyi +183 -0
  485. jaclang/vendor/typeshed/stdlib/importlib/machinery.pyi +43 -0
  486. jaclang/vendor/typeshed/stdlib/importlib/metadata/__init__.pyi +290 -0
  487. jaclang/vendor/typeshed/stdlib/importlib/metadata/_meta.pyi +63 -0
  488. jaclang/vendor/typeshed/stdlib/importlib/metadata/diagnose.pyi +2 -0
  489. jaclang/vendor/typeshed/stdlib/importlib/readers.pyi +72 -0
  490. jaclang/vendor/typeshed/stdlib/importlib/resources/__init__.pyi +82 -0
  491. jaclang/vendor/typeshed/stdlib/importlib/resources/_common.pyi +42 -0
  492. jaclang/vendor/typeshed/stdlib/importlib/resources/_functional.pyi +30 -0
  493. jaclang/vendor/typeshed/stdlib/importlib/resources/abc.pyi +69 -0
  494. jaclang/vendor/typeshed/stdlib/importlib/resources/readers.pyi +14 -0
  495. jaclang/vendor/typeshed/stdlib/importlib/resources/simple.pyi +56 -0
  496. jaclang/vendor/typeshed/stdlib/importlib/simple.pyi +11 -0
  497. jaclang/vendor/typeshed/stdlib/importlib/util.pyi +49 -0
  498. jaclang/vendor/typeshed/stdlib/inspect.pyi +687 -0
  499. jaclang/vendor/typeshed/stdlib/io.pyi +73 -0
  500. jaclang/vendor/typeshed/stdlib/ipaddress.pyi +241 -0
  501. jaclang/vendor/typeshed/stdlib/itertools.pyi +333 -0
  502. jaclang/vendor/typeshed/stdlib/json/__init__.pyi +61 -0
  503. jaclang/vendor/typeshed/stdlib/json/decoder.pyi +32 -0
  504. jaclang/vendor/typeshed/stdlib/json/encoder.pyi +40 -0
  505. jaclang/vendor/typeshed/stdlib/json/scanner.pyi +7 -0
  506. jaclang/vendor/typeshed/stdlib/json/tool.pyi +1 -0
  507. jaclang/vendor/typeshed/stdlib/keyword.pyi +16 -0
  508. jaclang/vendor/typeshed/stdlib/lib2to3/__init__.pyi +0 -0
  509. jaclang/vendor/typeshed/stdlib/lib2to3/btm_matcher.pyi +28 -0
  510. jaclang/vendor/typeshed/stdlib/lib2to3/fixer_base.pyi +42 -0
  511. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/__init__.pyi +0 -0
  512. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_apply.pyi +8 -0
  513. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_asserts.pyi +10 -0
  514. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_basestring.pyi +8 -0
  515. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_buffer.pyi +8 -0
  516. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_dict.pyi +16 -0
  517. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_except.pyi +14 -0
  518. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_exec.pyi +8 -0
  519. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_execfile.pyi +8 -0
  520. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_exitfunc.pyi +13 -0
  521. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_filter.pyi +9 -0
  522. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_funcattrs.pyi +8 -0
  523. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_future.pyi +8 -0
  524. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_getcwdu.pyi +8 -0
  525. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_has_key.pyi +8 -0
  526. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_idioms.pyi +15 -0
  527. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_import.pyi +16 -0
  528. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_imports.pyi +21 -0
  529. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_imports2.pyi +8 -0
  530. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_input.pyi +11 -0
  531. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_intern.pyi +9 -0
  532. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_isinstance.pyi +8 -0
  533. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_itertools.pyi +9 -0
  534. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_itertools_imports.pyi +7 -0
  535. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_long.pyi +7 -0
  536. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_map.pyi +9 -0
  537. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_metaclass.pyi +17 -0
  538. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_methodattrs.pyi +10 -0
  539. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_ne.pyi +8 -0
  540. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_next.pyi +19 -0
  541. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_nonzero.pyi +8 -0
  542. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_numliterals.pyi +8 -0
  543. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_operator.pyi +12 -0
  544. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_paren.pyi +8 -0
  545. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_print.pyi +12 -0
  546. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_raise.pyi +8 -0
  547. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_raw_input.pyi +8 -0
  548. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_reduce.pyi +8 -0
  549. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_reload.pyi +9 -0
  550. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_renames.pyi +17 -0
  551. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_repr.pyi +8 -0
  552. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_set_literal.pyi +7 -0
  553. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_standarderror.pyi +8 -0
  554. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_sys_exc.pyi +9 -0
  555. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_throw.pyi +8 -0
  556. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_tuple_params.pyi +17 -0
  557. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_types.pyi +8 -0
  558. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_unicode.pyi +12 -0
  559. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_urllib.pyi +15 -0
  560. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_ws_comma.pyi +12 -0
  561. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_xrange.pyi +20 -0
  562. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_xreadlines.pyi +8 -0
  563. jaclang/vendor/typeshed/stdlib/lib2to3/fixes/fix_zip.pyi +9 -0
  564. jaclang/vendor/typeshed/stdlib/lib2to3/main.pyi +42 -0
  565. jaclang/vendor/typeshed/stdlib/lib2to3/pgen2/__init__.pyi +9 -0
  566. jaclang/vendor/typeshed/stdlib/lib2to3/pgen2/driver.pyi +27 -0
  567. jaclang/vendor/typeshed/stdlib/lib2to3/pgen2/grammar.pyi +24 -0
  568. jaclang/vendor/typeshed/stdlib/lib2to3/pgen2/literals.pyi +7 -0
  569. jaclang/vendor/typeshed/stdlib/lib2to3/pgen2/parse.pyi +30 -0
  570. jaclang/vendor/typeshed/stdlib/lib2to3/pgen2/pgen.pyi +51 -0
  571. jaclang/vendor/typeshed/stdlib/lib2to3/pgen2/token.pyi +69 -0
  572. jaclang/vendor/typeshed/stdlib/lib2to3/pgen2/tokenize.pyi +96 -0
  573. jaclang/vendor/typeshed/stdlib/lib2to3/pygram.pyi +114 -0
  574. jaclang/vendor/typeshed/stdlib/lib2to3/pytree.pyi +118 -0
  575. jaclang/vendor/typeshed/stdlib/lib2to3/refactor.pyi +82 -0
  576. jaclang/vendor/typeshed/stdlib/linecache.pyi +19 -0
  577. jaclang/vendor/typeshed/stdlib/locale.pyi +156 -0
  578. jaclang/vendor/typeshed/stdlib/logging/__init__.pyi +660 -0
  579. jaclang/vendor/typeshed/stdlib/logging/config.pyi +139 -0
  580. jaclang/vendor/typeshed/stdlib/logging/handlers.pyi +257 -0
  581. jaclang/vendor/typeshed/stdlib/lzma.pyi +180 -0
  582. jaclang/vendor/typeshed/stdlib/mailbox.pyi +259 -0
  583. jaclang/vendor/typeshed/stdlib/mailcap.pyi +11 -0
  584. jaclang/vendor/typeshed/stdlib/marshal.pyi +49 -0
  585. jaclang/vendor/typeshed/stdlib/math.pyi +137 -0
  586. jaclang/vendor/typeshed/stdlib/mimetypes.pyi +56 -0
  587. jaclang/vendor/typeshed/stdlib/mmap.pyi +146 -0
  588. jaclang/vendor/typeshed/stdlib/modulefinder.pyi +68 -0
  589. jaclang/vendor/typeshed/stdlib/msilib/__init__.pyi +177 -0
  590. jaclang/vendor/typeshed/stdlib/msilib/schema.pyi +94 -0
  591. jaclang/vendor/typeshed/stdlib/msilib/sequence.pyi +13 -0
  592. jaclang/vendor/typeshed/stdlib/msilib/text.pyi +7 -0
  593. jaclang/vendor/typeshed/stdlib/msvcrt.pyi +32 -0
  594. jaclang/vendor/typeshed/stdlib/multiprocessing/__init__.pyi +90 -0
  595. jaclang/vendor/typeshed/stdlib/multiprocessing/connection.pyi +83 -0
  596. jaclang/vendor/typeshed/stdlib/multiprocessing/context.pyi +206 -0
  597. jaclang/vendor/typeshed/stdlib/multiprocessing/dummy/__init__.pyi +77 -0
  598. jaclang/vendor/typeshed/stdlib/multiprocessing/dummy/connection.pyi +39 -0
  599. jaclang/vendor/typeshed/stdlib/multiprocessing/forkserver.pyi +45 -0
  600. jaclang/vendor/typeshed/stdlib/multiprocessing/heap.pyi +36 -0
  601. jaclang/vendor/typeshed/stdlib/multiprocessing/managers.pyi +349 -0
  602. jaclang/vendor/typeshed/stdlib/multiprocessing/pool.pyi +101 -0
  603. jaclang/vendor/typeshed/stdlib/multiprocessing/popen_fork.pyi +26 -0
  604. jaclang/vendor/typeshed/stdlib/multiprocessing/popen_forkserver.pyi +16 -0
  605. jaclang/vendor/typeshed/stdlib/multiprocessing/popen_spawn_posix.pyi +20 -0
  606. jaclang/vendor/typeshed/stdlib/multiprocessing/popen_spawn_win32.pyi +30 -0
  607. jaclang/vendor/typeshed/stdlib/multiprocessing/process.pyi +39 -0
  608. jaclang/vendor/typeshed/stdlib/multiprocessing/queues.pyi +36 -0
  609. jaclang/vendor/typeshed/stdlib/multiprocessing/reduction.pyi +88 -0
  610. jaclang/vendor/typeshed/stdlib/multiprocessing/resource_sharer.pyi +20 -0
  611. jaclang/vendor/typeshed/stdlib/multiprocessing/resource_tracker.pyi +21 -0
  612. jaclang/vendor/typeshed/stdlib/multiprocessing/shared_memory.pyi +41 -0
  613. jaclang/vendor/typeshed/stdlib/multiprocessing/sharedctypes.pyi +129 -0
  614. jaclang/vendor/typeshed/stdlib/multiprocessing/spawn.pyi +32 -0
  615. jaclang/vendor/typeshed/stdlib/multiprocessing/synchronize.pyi +60 -0
  616. jaclang/vendor/typeshed/stdlib/multiprocessing/util.pyi +108 -0
  617. jaclang/vendor/typeshed/stdlib/netrc.pyi +23 -0
  618. jaclang/vendor/typeshed/stdlib/nis.pyi +9 -0
  619. jaclang/vendor/typeshed/stdlib/nntplib.pyi +120 -0
  620. jaclang/vendor/typeshed/stdlib/nt.pyi +113 -0
  621. jaclang/vendor/typeshed/stdlib/ntpath.pyi +123 -0
  622. jaclang/vendor/typeshed/stdlib/nturl2path.pyi +12 -0
  623. jaclang/vendor/typeshed/stdlib/numbers.pyi +209 -0
  624. jaclang/vendor/typeshed/stdlib/opcode.pyi +47 -0
  625. jaclang/vendor/typeshed/stdlib/operator.pyi +215 -0
  626. jaclang/vendor/typeshed/stdlib/optparse.pyi +309 -0
  627. jaclang/vendor/typeshed/stdlib/os/__init__.pyi +1664 -0
  628. jaclang/vendor/typeshed/stdlib/os/path.pyi +8 -0
  629. jaclang/vendor/typeshed/stdlib/ossaudiodev.pyi +131 -0
  630. jaclang/vendor/typeshed/stdlib/parser.pyi +25 -0
  631. jaclang/vendor/typeshed/stdlib/pathlib/__init__.pyi +307 -0
  632. jaclang/vendor/typeshed/stdlib/pathlib/types.pyi +8 -0
  633. jaclang/vendor/typeshed/stdlib/pdb.pyi +250 -0
  634. jaclang/vendor/typeshed/stdlib/pickle.pyi +233 -0
  635. jaclang/vendor/typeshed/stdlib/pickletools.pyi +174 -0
  636. jaclang/vendor/typeshed/stdlib/pipes.pyi +16 -0
  637. jaclang/vendor/typeshed/stdlib/pkgutil.pyi +53 -0
  638. jaclang/vendor/typeshed/stdlib/platform.pyi +87 -0
  639. jaclang/vendor/typeshed/stdlib/plistlib.pyi +84 -0
  640. jaclang/vendor/typeshed/stdlib/poplib.pyi +72 -0
  641. jaclang/vendor/typeshed/stdlib/posix.pyi +405 -0
  642. jaclang/vendor/typeshed/stdlib/posixpath.pyi +160 -0
  643. jaclang/vendor/typeshed/stdlib/pprint.pyi +112 -0
  644. jaclang/vendor/typeshed/stdlib/profile.pyi +31 -0
  645. jaclang/vendor/typeshed/stdlib/pstats.pyi +91 -0
  646. jaclang/vendor/typeshed/stdlib/pty.pyi +24 -0
  647. jaclang/vendor/typeshed/stdlib/pwd.pyi +28 -0
  648. jaclang/vendor/typeshed/stdlib/py_compile.pyi +34 -0
  649. jaclang/vendor/typeshed/stdlib/pyclbr.pyi +74 -0
  650. jaclang/vendor/typeshed/stdlib/pydoc.pyi +340 -0
  651. jaclang/vendor/typeshed/stdlib/pydoc_data/__init__.pyi +0 -0
  652. jaclang/vendor/typeshed/stdlib/pydoc_data/topics.pyi +1 -0
  653. jaclang/vendor/typeshed/stdlib/pyexpat/__init__.pyi +82 -0
  654. jaclang/vendor/typeshed/stdlib/pyexpat/errors.pyi +53 -0
  655. jaclang/vendor/typeshed/stdlib/pyexpat/model.pyi +13 -0
  656. jaclang/vendor/typeshed/stdlib/queue.pyi +54 -0
  657. jaclang/vendor/typeshed/stdlib/quopri.pyi +11 -0
  658. jaclang/vendor/typeshed/stdlib/random.pyi +128 -0
  659. jaclang/vendor/typeshed/stdlib/re.pyi +312 -0
  660. jaclang/vendor/typeshed/stdlib/readline.pyi +40 -0
  661. jaclang/vendor/typeshed/stdlib/reprlib.pyi +65 -0
  662. jaclang/vendor/typeshed/stdlib/resource.pyi +94 -0
  663. jaclang/vendor/typeshed/stdlib/rlcompleter.pyi +9 -0
  664. jaclang/vendor/typeshed/stdlib/runpy.pyi +24 -0
  665. jaclang/vendor/typeshed/stdlib/sched.pyi +46 -0
  666. jaclang/vendor/typeshed/stdlib/secrets.pyi +15 -0
  667. jaclang/vendor/typeshed/stdlib/select.pyi +163 -0
  668. jaclang/vendor/typeshed/stdlib/selectors.pyi +69 -0
  669. jaclang/vendor/typeshed/stdlib/shelve.pyi +59 -0
  670. jaclang/vendor/typeshed/stdlib/shlex.pyi +63 -0
  671. jaclang/vendor/typeshed/stdlib/shutil.pyi +235 -0
  672. jaclang/vendor/typeshed/stdlib/signal.pyi +187 -0
  673. jaclang/vendor/typeshed/stdlib/site.pyi +36 -0
  674. jaclang/vendor/typeshed/stdlib/smtpd.pyi +91 -0
  675. jaclang/vendor/typeshed/stdlib/smtplib.pyi +195 -0
  676. jaclang/vendor/typeshed/stdlib/sndhdr.pyi +14 -0
  677. jaclang/vendor/typeshed/stdlib/socket.pyi +1433 -0
  678. jaclang/vendor/typeshed/stdlib/socketserver.pyi +170 -0
  679. jaclang/vendor/typeshed/stdlib/spwd.pyi +46 -0
  680. jaclang/vendor/typeshed/stdlib/sqlite3/__init__.pyi +469 -0
  681. jaclang/vendor/typeshed/stdlib/sqlite3/dbapi2.pyi +241 -0
  682. jaclang/vendor/typeshed/stdlib/sqlite3/dump.pyi +2 -0
  683. jaclang/vendor/typeshed/stdlib/sre_compile.pyi +11 -0
  684. jaclang/vendor/typeshed/stdlib/sre_constants.pyi +128 -0
  685. jaclang/vendor/typeshed/stdlib/sre_parse.pyi +104 -0
  686. jaclang/vendor/typeshed/stdlib/ssl.pyi +534 -0
  687. jaclang/vendor/typeshed/stdlib/stat.pyi +7 -0
  688. jaclang/vendor/typeshed/stdlib/statistics.pyi +158 -0
  689. jaclang/vendor/typeshed/stdlib/string/__init__.pyi +79 -0
  690. jaclang/vendor/typeshed/stdlib/string/templatelib.pyi +31 -0
  691. jaclang/vendor/typeshed/stdlib/stringprep.pyi +27 -0
  692. jaclang/vendor/typeshed/stdlib/struct.pyi +5 -0
  693. jaclang/vendor/typeshed/stdlib/subprocess.pyi +2093 -0
  694. jaclang/vendor/typeshed/stdlib/sunau.pyi +82 -0
  695. jaclang/vendor/typeshed/stdlib/symbol.pyi +93 -0
  696. jaclang/vendor/typeshed/stdlib/symtable.pyi +86 -0
  697. jaclang/vendor/typeshed/stdlib/sys/__init__.pyi +476 -0
  698. jaclang/vendor/typeshed/stdlib/sys/_monitoring.pyi +52 -0
  699. jaclang/vendor/typeshed/stdlib/sysconfig.pyi +48 -0
  700. jaclang/vendor/typeshed/stdlib/syslog.pyi +57 -0
  701. jaclang/vendor/typeshed/stdlib/tabnanny.pyi +16 -0
  702. jaclang/vendor/typeshed/stdlib/tarfile.pyi +700 -0
  703. jaclang/vendor/typeshed/stdlib/telnetlib.pyi +123 -0
  704. jaclang/vendor/typeshed/stdlib/tempfile.pyi +478 -0
  705. jaclang/vendor/typeshed/stdlib/termios.pyi +303 -0
  706. jaclang/vendor/typeshed/stdlib/textwrap.pyi +103 -0
  707. jaclang/vendor/typeshed/stdlib/this.pyi +2 -0
  708. jaclang/vendor/typeshed/stdlib/threading.pyi +203 -0
  709. jaclang/vendor/typeshed/stdlib/time.pyi +111 -0
  710. jaclang/vendor/typeshed/stdlib/timeit.pyi +32 -0
  711. jaclang/vendor/typeshed/stdlib/tkinter/__init__.pyi +4083 -0
  712. jaclang/vendor/typeshed/stdlib/tkinter/colorchooser.pyi +12 -0
  713. jaclang/vendor/typeshed/stdlib/tkinter/commondialog.pyi +12 -0
  714. jaclang/vendor/typeshed/stdlib/tkinter/constants.pyi +80 -0
  715. jaclang/vendor/typeshed/stdlib/tkinter/dialog.pyi +13 -0
  716. jaclang/vendor/typeshed/stdlib/tkinter/dnd.pyi +18 -0
  717. jaclang/vendor/typeshed/stdlib/tkinter/filedialog.pyi +149 -0
  718. jaclang/vendor/typeshed/stdlib/tkinter/font.pyi +118 -0
  719. jaclang/vendor/typeshed/stdlib/tkinter/messagebox.pyi +33 -0
  720. jaclang/vendor/typeshed/stdlib/tkinter/scrolledtext.pyi +9 -0
  721. jaclang/vendor/typeshed/stdlib/tkinter/simpledialog.pyi +54 -0
  722. jaclang/vendor/typeshed/stdlib/tkinter/tix.pyi +299 -0
  723. jaclang/vendor/typeshed/stdlib/tkinter/ttk.pyi +1207 -0
  724. jaclang/vendor/typeshed/stdlib/token.pyi +168 -0
  725. jaclang/vendor/typeshed/stdlib/tokenize.pyi +191 -0
  726. jaclang/vendor/typeshed/stdlib/tomllib.pyi +26 -0
  727. jaclang/vendor/typeshed/stdlib/trace.pyi +86 -0
  728. jaclang/vendor/typeshed/stdlib/traceback.pyi +314 -0
  729. jaclang/vendor/typeshed/stdlib/tracemalloc.pyi +117 -0
  730. jaclang/vendor/typeshed/stdlib/tty.pyi +30 -0
  731. jaclang/vendor/typeshed/stdlib/turtle.pyi +769 -0
  732. jaclang/vendor/typeshed/stdlib/types.pyi +711 -0
  733. jaclang/vendor/typeshed/stdlib/typing.pyi +1131 -0
  734. jaclang/vendor/typeshed/stdlib/typing_extensions.pyi +702 -0
  735. jaclang/vendor/typeshed/stdlib/unicodedata.pyi +73 -0
  736. jaclang/vendor/typeshed/stdlib/unittest/__init__.pyi +63 -0
  737. jaclang/vendor/typeshed/stdlib/unittest/_log.pyi +27 -0
  738. jaclang/vendor/typeshed/stdlib/unittest/async_case.pyi +25 -0
  739. jaclang/vendor/typeshed/stdlib/unittest/case.pyi +331 -0
  740. jaclang/vendor/typeshed/stdlib/unittest/loader.pyi +55 -0
  741. jaclang/vendor/typeshed/stdlib/unittest/main.pyi +73 -0
  742. jaclang/vendor/typeshed/stdlib/unittest/mock.pyi +463 -0
  743. jaclang/vendor/typeshed/stdlib/unittest/result.pyi +47 -0
  744. jaclang/vendor/typeshed/stdlib/unittest/runner.pyi +91 -0
  745. jaclang/vendor/typeshed/stdlib/unittest/signals.pyi +15 -0
  746. jaclang/vendor/typeshed/stdlib/unittest/suite.pyi +24 -0
  747. jaclang/vendor/typeshed/stdlib/unittest/util.pyi +23 -0
  748. jaclang/vendor/typeshed/stdlib/urllib/__init__.pyi +0 -0
  749. jaclang/vendor/typeshed/stdlib/urllib/error.pyi +23 -0
  750. jaclang/vendor/typeshed/stdlib/urllib/parse.pyi +195 -0
  751. jaclang/vendor/typeshed/stdlib/urllib/request.pyi +416 -0
  752. jaclang/vendor/typeshed/stdlib/urllib/response.pyi +40 -0
  753. jaclang/vendor/typeshed/stdlib/urllib/robotparser.pyi +20 -0
  754. jaclang/vendor/typeshed/stdlib/uu.pyi +13 -0
  755. jaclang/vendor/typeshed/stdlib/uuid.pyi +104 -0
  756. jaclang/vendor/typeshed/stdlib/warnings.pyi +126 -0
  757. jaclang/vendor/typeshed/stdlib/wave.pyi +78 -0
  758. jaclang/vendor/typeshed/stdlib/weakref.pyi +190 -0
  759. jaclang/vendor/typeshed/stdlib/webbrowser.pyi +78 -0
  760. jaclang/vendor/typeshed/stdlib/winreg.pyi +132 -0
  761. jaclang/vendor/typeshed/stdlib/winsound.pyi +38 -0
  762. jaclang/vendor/typeshed/stdlib/wsgiref/__init__.pyi +0 -0
  763. jaclang/vendor/typeshed/stdlib/wsgiref/handlers.pyi +91 -0
  764. jaclang/vendor/typeshed/stdlib/wsgiref/headers.pyi +26 -0
  765. jaclang/vendor/typeshed/stdlib/wsgiref/simple_server.pyi +37 -0
  766. jaclang/vendor/typeshed/stdlib/wsgiref/types.pyi +32 -0
  767. jaclang/vendor/typeshed/stdlib/wsgiref/util.pyi +26 -0
  768. jaclang/vendor/typeshed/stdlib/wsgiref/validate.pyi +50 -0
  769. jaclang/vendor/typeshed/stdlib/xdrlib.pyi +57 -0
  770. jaclang/vendor/typeshed/stdlib/xml/__init__.pyi +3 -0
  771. jaclang/vendor/typeshed/stdlib/xml/dom/NodeFilter.pyi +22 -0
  772. jaclang/vendor/typeshed/stdlib/xml/dom/__init__.pyi +100 -0
  773. jaclang/vendor/typeshed/stdlib/xml/dom/domreg.pyi +8 -0
  774. jaclang/vendor/typeshed/stdlib/xml/dom/expatbuilder.pyi +121 -0
  775. jaclang/vendor/typeshed/stdlib/xml/dom/minicompat.pyi +22 -0
  776. jaclang/vendor/typeshed/stdlib/xml/dom/minidom.pyi +650 -0
  777. jaclang/vendor/typeshed/stdlib/xml/dom/pulldom.pyi +109 -0
  778. jaclang/vendor/typeshed/stdlib/xml/dom/xmlbuilder.pyi +79 -0
  779. jaclang/vendor/typeshed/stdlib/xml/etree/ElementInclude.pyi +25 -0
  780. jaclang/vendor/typeshed/stdlib/xml/etree/ElementPath.pyi +41 -0
  781. jaclang/vendor/typeshed/stdlib/xml/etree/ElementTree.pyi +364 -0
  782. jaclang/vendor/typeshed/stdlib/xml/etree/__init__.pyi +0 -0
  783. jaclang/vendor/typeshed/stdlib/xml/etree/cElementTree.pyi +1 -0
  784. jaclang/vendor/typeshed/stdlib/xml/parsers/__init__.pyi +1 -0
  785. jaclang/vendor/typeshed/stdlib/xml/parsers/expat/__init__.pyi +7 -0
  786. jaclang/vendor/typeshed/stdlib/xml/parsers/expat/errors.pyi +1 -0
  787. jaclang/vendor/typeshed/stdlib/xml/parsers/expat/model.pyi +1 -0
  788. jaclang/vendor/typeshed/stdlib/xml/sax/__init__.pyi +42 -0
  789. jaclang/vendor/typeshed/stdlib/xml/sax/_exceptions.pyi +19 -0
  790. jaclang/vendor/typeshed/stdlib/xml/sax/expatreader.pyi +78 -0
  791. jaclang/vendor/typeshed/stdlib/xml/sax/handler.pyi +86 -0
  792. jaclang/vendor/typeshed/stdlib/xml/sax/saxutils.pyi +68 -0
  793. jaclang/vendor/typeshed/stdlib/xml/sax/xmlreader.pyi +90 -0
  794. jaclang/vendor/typeshed/stdlib/xmlrpc/__init__.pyi +0 -0
  795. jaclang/vendor/typeshed/stdlib/xmlrpc/client.pyi +297 -0
  796. jaclang/vendor/typeshed/stdlib/xmlrpc/server.pyi +144 -0
  797. jaclang/vendor/typeshed/stdlib/xxlimited.pyi +24 -0
  798. jaclang/vendor/typeshed/stdlib/zipapp.pyi +20 -0
  799. jaclang/vendor/typeshed/stdlib/zipfile/__init__.pyi +387 -0
  800. jaclang/vendor/typeshed/stdlib/zipfile/_path/__init__.pyi +83 -0
  801. jaclang/vendor/typeshed/stdlib/zipfile/_path/glob.pyi +22 -0
  802. jaclang/vendor/typeshed/stdlib/zipimport.pyi +51 -0
  803. jaclang/vendor/typeshed/stdlib/zlib.pyi +70 -0
  804. jaclang/vendor/typeshed/stdlib/zoneinfo/__init__.pyi +34 -0
  805. jaclang/vendor/typeshed/stdlib/zoneinfo/_common.pyi +13 -0
  806. jaclang/vendor/typeshed/stdlib/zoneinfo/_tzpath.pyi +13 -0
  807. jaclang/vendor/typeshed/stubs/Authlib/METADATA.toml +7 -0
  808. jaclang/vendor/typeshed/stubs/Authlib/authlib/__init__.pyi +8 -0
  809. jaclang/vendor/typeshed/stubs/Authlib/authlib/common/__init__.pyi +0 -0
  810. jaclang/vendor/typeshed/stubs/Authlib/authlib/common/encoding.pyi +26 -0
  811. jaclang/vendor/typeshed/stubs/Authlib/authlib/common/errors.pyi +21 -0
  812. jaclang/vendor/typeshed/stubs/Authlib/authlib/common/security.pyi +6 -0
  813. jaclang/vendor/typeshed/stubs/Authlib/authlib/common/urls.pyi +19 -0
  814. jaclang/vendor/typeshed/stubs/Authlib/authlib/consts.pyi +8 -0
  815. jaclang/vendor/typeshed/stubs/Authlib/authlib/deprecate.pyi +3 -0
  816. jaclang/vendor/typeshed/stubs/Authlib/authlib/integrations/__init__.pyi +0 -0
  817. jaclang/vendor/typeshed/stubs/Authlib/authlib/integrations/base_client/__init__.pyi +29 -0
  818. jaclang/vendor/typeshed/stubs/Authlib/authlib/integrations/base_client/async_app.pyi +14 -0
  819. jaclang/vendor/typeshed/stubs/Authlib/authlib/integrations/base_client/async_openid.pyi +6 -0
  820. jaclang/vendor/typeshed/stubs/Authlib/authlib/integrations/base_client/errors.pyi +23 -0
  821. jaclang/vendor/typeshed/stubs/Authlib/authlib/integrations/base_client/framework_integration.pyi +13 -0
  822. jaclang/vendor/typeshed/stubs/Authlib/authlib/integrations/base_client/registry.pyi +19 -0
  823. jaclang/vendor/typeshed/stubs/Authlib/authlib/integrations/base_client/sync_app.pyi +93 -0
  824. jaclang/vendor/typeshed/stubs/Authlib/authlib/integrations/base_client/sync_openid.pyi +5 -0
  825. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/__init__.pyi +42 -0
  826. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/drafts/__init__.pyi +3 -0
  827. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/drafts/_jwe_algorithms.pyi +27 -0
  828. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/drafts/_jwe_enc_cryptodome.pyi +13 -0
  829. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/drafts/_jwe_enc_cryptography.pyi +13 -0
  830. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/errors.pyi +72 -0
  831. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/jwk.pyi +2 -0
  832. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7515/__init__.pyi +4 -0
  833. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7515/jws.pyi +14 -0
  834. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7515/models.pyi +25 -0
  835. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7516/__init__.pyi +9 -0
  836. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7516/jwe.pyi +23 -0
  837. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7516/models.pyi +56 -0
  838. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7517/__init__.pyi +7 -0
  839. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7517/_cryptography_key.pyi +1 -0
  840. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7517/asymmetric_key.pyi +37 -0
  841. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7517/base_key.pyi +28 -0
  842. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7517/jwk.pyi +13 -0
  843. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7517/key_set.pyi +10 -0
  844. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7518/__init__.pyi +20 -0
  845. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7518/ec_key.pyi +24 -0
  846. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7518/jwe_algs.pyi +64 -0
  847. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7518/jwe_encs.pyi +27 -0
  848. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7518/jwe_zips.pyi +9 -0
  849. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7518/jws_algs.pyi +63 -0
  850. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7518/oct_key.pyi +23 -0
  851. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7518/rsa_key.pyi +23 -0
  852. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7518/util.pyi +2 -0
  853. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7519/__init__.pyi +4 -0
  854. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7519/claims.pyi +22 -0
  855. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc7519/jwt.pyi +14 -0
  856. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc8037/__init__.pyi +4 -0
  857. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc8037/jws_eddsa.pyi +10 -0
  858. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/rfc8037/okp_key.pyi +24 -0
  859. jaclang/vendor/typeshed/stubs/Authlib/authlib/jose/util.pyi +7 -0
  860. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/__init__.pyi +33 -0
  861. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/client.pyi +39 -0
  862. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/errors.pyi +1 -0
  863. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/__init__.pyi +35 -0
  864. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/authorization_server.pyi +21 -0
  865. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/base_server.pyi +12 -0
  866. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/client_auth.pyi +41 -0
  867. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/errors.pyi +52 -0
  868. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/models.pyi +21 -0
  869. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/parameters.pyi +3 -0
  870. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/resource_protector.pyi +5 -0
  871. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/rsa.pyi +2 -0
  872. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/signature.pyi +20 -0
  873. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/util.pyi +2 -0
  874. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth1/rfc5849/wrapper.pyi +33 -0
  875. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/__init__.pyi +22 -0
  876. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/auth.pyi +24 -0
  877. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/base.pyi +20 -0
  878. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/client.pyi +60 -0
  879. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/__init__.pyi +76 -0
  880. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/authenticate_client.pyi +13 -0
  881. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/authorization_server.pyi +43 -0
  882. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/errors.pyi +92 -0
  883. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/grants/__init__.pyi +21 -0
  884. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/grants/authorization_code.pyi +24 -0
  885. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/grants/base.pyi +55 -0
  886. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/grants/client_credentials.pyi +6 -0
  887. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/grants/implicit.pyi +12 -0
  888. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/grants/refresh_token.pyi +15 -0
  889. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/grants/resource_owner_password_credentials.pyi +7 -0
  890. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/models.pyi +22 -0
  891. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/parameters.pyi +4 -0
  892. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/requests.pyi +48 -0
  893. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/resource_protector.pyi +19 -0
  894. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/token_endpoint.pyi +13 -0
  895. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/util.pyi +5 -0
  896. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6749/wrappers.pyi +5 -0
  897. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6750/__init__.pyi +15 -0
  898. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6750/errors.pyi +19 -0
  899. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6750/parameters.pyi +4 -0
  900. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6750/token.pyi +40 -0
  901. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc6750/validator.pyi +6 -0
  902. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7009/__init__.pyi +4 -0
  903. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7009/parameters.pyi +1 -0
  904. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7009/revocation.pyi +9 -0
  905. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7521/__init__.pyi +3 -0
  906. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7521/client.pyi +39 -0
  907. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7523/__init__.pyi +18 -0
  908. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7523/assertion.pyi +5 -0
  909. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7523/auth.pyi +16 -0
  910. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7523/client.pyi +17 -0
  911. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7523/jwt_bearer.pyi +19 -0
  912. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7523/token.pyi +15 -0
  913. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7523/validator.pyi +22 -0
  914. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7591/__init__.pyi +17 -0
  915. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7591/claims.pyi +25 -0
  916. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7591/endpoint.pyi +22 -0
  917. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7591/errors.pyi +13 -0
  918. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7592/__init__.pyi +3 -0
  919. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7592/endpoint.pyi +24 -0
  920. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7636/__init__.pyi +3 -0
  921. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7636/challenge.pyi +20 -0
  922. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7662/__init__.pyi +5 -0
  923. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7662/introspection.pyi +11 -0
  924. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7662/models.pyi +8 -0
  925. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc7662/token_validator.pyi +7 -0
  926. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc8414/__init__.pyi +4 -0
  927. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc8414/models.pyi +40 -0
  928. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc8414/well_known.pyi +1 -0
  929. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc8628/__init__.pyi +19 -0
  930. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc8628/device_code.pyi +15 -0
  931. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc8628/endpoint.pyi +21 -0
  932. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc8628/errors.pyi +10 -0
  933. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc8628/models.pyi +13 -0
  934. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc8693/__init__.pyi +0 -0
  935. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9068/__init__.pyi +6 -0
  936. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9068/claims.pyi +13 -0
  937. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9068/introspection.pyi +13 -0
  938. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9068/revocation.pyi +9 -0
  939. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9068/token.pyi +17 -0
  940. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9068/token_validator.pyi +12 -0
  941. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9207/__init__.pyi +3 -0
  942. jaclang/vendor/typeshed/stubs/Authlib/authlib/oauth2/rfc9207/parameter.pyi +4 -0
  943. jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/__init__.pyi +0 -0
  944. jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/__init__.pyi +29 -0
  945. jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/claims.pyi +34 -0
  946. jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/errors.pyi +28 -0
  947. jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/grants/__init__.pyi +5 -0
  948. jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/grants/code.pyi +17 -0
  949. jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/grants/hybrid.pyi +13 -0
  950. jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/grants/implicit.pyi +16 -0
  951. jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/grants/util.pyi +19 -0
  952. jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/models.pyi +5 -0
  953. jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/core/util.pyi +1 -0
  954. jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/discovery/__init__.pyi +4 -0
  955. jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/discovery/models.pyi +36 -0
  956. jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/discovery/well_known.pyi +1 -0
  957. jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/registration/__init__.pyi +3 -0
  958. jaclang/vendor/typeshed/stubs/Authlib/authlib/oidc/registration/claims.pyi +29 -0
  959. jaclang/vendor/typeshed/stubs/Deprecated/METADATA.toml +3 -0
  960. jaclang/vendor/typeshed/stubs/Deprecated/deprecated/__init__.pyi +4 -0
  961. jaclang/vendor/typeshed/stubs/Deprecated/deprecated/classic.pyi +36 -0
  962. jaclang/vendor/typeshed/stubs/Deprecated/deprecated/sphinx.pyi +36 -0
  963. jaclang/vendor/typeshed/stubs/ExifRead/METADATA.toml +3 -0
  964. jaclang/vendor/typeshed/stubs/ExifRead/exifread/__init__.pyi +17 -0
  965. jaclang/vendor/typeshed/stubs/ExifRead/exifread/_types.pyi +15 -0
  966. jaclang/vendor/typeshed/stubs/ExifRead/exifread/classes.pyi +47 -0
  967. jaclang/vendor/typeshed/stubs/ExifRead/exifread/exceptions.pyi +2 -0
  968. jaclang/vendor/typeshed/stubs/ExifRead/exifread/exif_log.pyi +24 -0
  969. jaclang/vendor/typeshed/stubs/ExifRead/exifread/heic.pyi +56 -0
  970. jaclang/vendor/typeshed/stubs/ExifRead/exifread/jpeg.pyi +7 -0
  971. jaclang/vendor/typeshed/stubs/ExifRead/exifread/tags/__init__.pyi +15 -0
  972. jaclang/vendor/typeshed/stubs/ExifRead/exifread/tags/exif.pyi +7 -0
  973. jaclang/vendor/typeshed/stubs/ExifRead/exifread/tags/makernote/__init__.pyi +0 -0
  974. jaclang/vendor/typeshed/stubs/ExifRead/exifread/tags/makernote/apple.pyi +3 -0
  975. jaclang/vendor/typeshed/stubs/ExifRead/exifread/tags/makernote/canon.pyi +26 -0
  976. jaclang/vendor/typeshed/stubs/ExifRead/exifread/tags/makernote/casio.pyi +3 -0
  977. jaclang/vendor/typeshed/stubs/ExifRead/exifread/tags/makernote/fujifilm.pyi +3 -0
  978. jaclang/vendor/typeshed/stubs/ExifRead/exifread/tags/makernote/nikon.pyi +6 -0
  979. jaclang/vendor/typeshed/stubs/ExifRead/exifread/tags/makernote/olympus.pyi +6 -0
  980. jaclang/vendor/typeshed/stubs/ExifRead/exifread/utils.pyi +22 -0
  981. jaclang/vendor/typeshed/stubs/Flask-Cors/METADATA.toml +4 -0
  982. jaclang/vendor/typeshed/stubs/Flask-Cors/flask_cors/__init__.pyi +9 -0
  983. jaclang/vendor/typeshed/stubs/Flask-Cors/flask_cors/core.pyi +70 -0
  984. jaclang/vendor/typeshed/stubs/Flask-Cors/flask_cors/decorator.pyi +23 -0
  985. jaclang/vendor/typeshed/stubs/Flask-Cors/flask_cors/extension.pyi +42 -0
  986. jaclang/vendor/typeshed/stubs/Flask-Cors/flask_cors/version.pyi +1 -0
  987. jaclang/vendor/typeshed/stubs/Flask-Migrate/METADATA.toml +4 -0
  988. jaclang/vendor/typeshed/stubs/Flask-Migrate/flask_migrate/__init__.pyi +136 -0
  989. jaclang/vendor/typeshed/stubs/Flask-SocketIO/METADATA.toml +3 -0
  990. jaclang/vendor/typeshed/stubs/Flask-SocketIO/flask_socketio/__init__.pyi +159 -0
  991. jaclang/vendor/typeshed/stubs/Flask-SocketIO/flask_socketio/namespace.pyi +67 -0
  992. jaclang/vendor/typeshed/stubs/Flask-SocketIO/flask_socketio/test_client.pyi +40 -0
  993. jaclang/vendor/typeshed/stubs/JACK-Client/METADATA.toml +12 -0
  994. jaclang/vendor/typeshed/stubs/JACK-Client/jack/__init__.pyi +329 -0
  995. jaclang/vendor/typeshed/stubs/Jetson.GPIO/Jetson/GPIO/__init__.pyi +3 -0
  996. jaclang/vendor/typeshed/stubs/Jetson.GPIO/Jetson/GPIO/gpio.pyi +63 -0
  997. jaclang/vendor/typeshed/stubs/Jetson.GPIO/Jetson/GPIO/gpio_cdev.pyi +72 -0
  998. jaclang/vendor/typeshed/stubs/Jetson.GPIO/Jetson/GPIO/gpio_event.pyi +17 -0
  999. jaclang/vendor/typeshed/stubs/Jetson.GPIO/Jetson/GPIO/gpio_pin_data.pyi +58 -0
  1000. jaclang/vendor/typeshed/stubs/Jetson.GPIO/Jetson/__init__.pyi +0 -0
  1001. jaclang/vendor/typeshed/stubs/Jetson.GPIO/METADATA.toml +2 -0
  1002. jaclang/vendor/typeshed/stubs/Markdown/METADATA.toml +6 -0
  1003. jaclang/vendor/typeshed/stubs/Markdown/markdown/__init__.pyi +5 -0
  1004. jaclang/vendor/typeshed/stubs/Markdown/markdown/__meta__.pyi +2 -0
  1005. jaclang/vendor/typeshed/stubs/Markdown/markdown/blockparser.pyi +23 -0
  1006. jaclang/vendor/typeshed/stubs/Markdown/markdown/blockprocessors.pyi +67 -0
  1007. jaclang/vendor/typeshed/stubs/Markdown/markdown/core.pyi +64 -0
  1008. jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/__init__.pyi +14 -0
  1009. jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/abbr.pyi +38 -0
  1010. jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/admonition.pyi +22 -0
  1011. jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/attr_list.pyi +23 -0
  1012. jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/codehilite.pyi +42 -0
  1013. jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/def_list.pyi +13 -0
  1014. jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/extra.pyi +8 -0
  1015. jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/fenced_code.pyi +21 -0
  1016. jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/footnotes.pyi +62 -0
  1017. jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/legacy_attrs.pyi +15 -0
  1018. jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/legacy_em.pyi +11 -0
  1019. jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/md_in_html.pyi +15 -0
  1020. jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/meta.pyi +18 -0
  1021. jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/nl2br.pyi +7 -0
  1022. jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/sane_lists.pyi +13 -0
  1023. jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/smarty.pyi +42 -0
  1024. jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/tables.pyi +22 -0
  1025. jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/toc.pyi +68 -0
  1026. jaclang/vendor/typeshed/stubs/Markdown/markdown/extensions/wikilinks.pyi +17 -0
  1027. jaclang/vendor/typeshed/stubs/Markdown/markdown/inlinepatterns.pyi +112 -0
  1028. jaclang/vendor/typeshed/stubs/Markdown/markdown/postprocessors.pyi +14 -0
  1029. jaclang/vendor/typeshed/stubs/Markdown/markdown/preprocessors.pyi +11 -0
  1030. jaclang/vendor/typeshed/stubs/Markdown/markdown/serializers.pyi +4 -0
  1031. jaclang/vendor/typeshed/stubs/Markdown/markdown/treeprocessors.pyi +27 -0
  1032. jaclang/vendor/typeshed/stubs/Markdown/markdown/util.pyi +71 -0
  1033. jaclang/vendor/typeshed/stubs/PyAutoGUI/METADATA.toml +3 -0
  1034. jaclang/vendor/typeshed/stubs/PyAutoGUI/pyautogui/__init__.pyi +253 -0
  1035. jaclang/vendor/typeshed/stubs/PyMySQL/METADATA.toml +6 -0
  1036. jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/__init__.pyi +61 -0
  1037. jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/_auth.pyi +13 -0
  1038. jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/charset.pyi +22 -0
  1039. jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/connections.pyi +242 -0
  1040. jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/constants/CLIENT.pyi +25 -0
  1041. jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/constants/COMMAND.pyi +32 -0
  1042. jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/constants/CR.pyi +64 -0
  1043. jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/constants/ER.pyi +472 -0
  1044. jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/constants/FIELD_TYPE.pyi +30 -0
  1045. jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/constants/FLAG.pyi +15 -0
  1046. jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/constants/SERVER_STATUS.pyi +10 -0
  1047. jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/constants/__init__.pyi +0 -0
  1048. jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/converters.pyi +42 -0
  1049. jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/cursors.pyi +50 -0
  1050. jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/err.pyi +20 -0
  1051. jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/protocol.pyi +39 -0
  1052. jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/times.pyi +10 -0
  1053. jaclang/vendor/typeshed/stubs/PyMySQL/pymysql/util.pyi +3 -0
  1054. jaclang/vendor/typeshed/stubs/PyScreeze/METADATA.toml +11 -0
  1055. jaclang/vendor/typeshed/stubs/PyScreeze/pyscreeze/__init__.pyi +217 -0
  1056. jaclang/vendor/typeshed/stubs/PyYAML/METADATA.toml +2 -0
  1057. jaclang/vendor/typeshed/stubs/PyYAML/yaml/__init__.pyi +438 -0
  1058. jaclang/vendor/typeshed/stubs/PyYAML/yaml/_yaml.pyi +56 -0
  1059. jaclang/vendor/typeshed/stubs/PyYAML/yaml/composer.pyi +20 -0
  1060. jaclang/vendor/typeshed/stubs/PyYAML/yaml/constructor.pyi +105 -0
  1061. jaclang/vendor/typeshed/stubs/PyYAML/yaml/cyaml.pyi +69 -0
  1062. jaclang/vendor/typeshed/stubs/PyYAML/yaml/dumper.pyi +73 -0
  1063. jaclang/vendor/typeshed/stubs/PyYAML/yaml/emitter.pyi +130 -0
  1064. jaclang/vendor/typeshed/stubs/PyYAML/yaml/error.pyi +28 -0
  1065. jaclang/vendor/typeshed/stubs/PyYAML/yaml/events.pyi +62 -0
  1066. jaclang/vendor/typeshed/stubs/PyYAML/yaml/loader.pyi +29 -0
  1067. jaclang/vendor/typeshed/stubs/PyYAML/yaml/nodes.pyi +32 -0
  1068. jaclang/vendor/typeshed/stubs/PyYAML/yaml/parser.pyi +47 -0
  1069. jaclang/vendor/typeshed/stubs/PyYAML/yaml/reader.pyi +41 -0
  1070. jaclang/vendor/typeshed/stubs/PyYAML/yaml/representer.pyi +63 -0
  1071. jaclang/vendor/typeshed/stubs/PyYAML/yaml/resolver.pyi +27 -0
  1072. jaclang/vendor/typeshed/stubs/PyYAML/yaml/scanner.pyi +99 -0
  1073. jaclang/vendor/typeshed/stubs/PyYAML/yaml/serializer.pyi +27 -0
  1074. jaclang/vendor/typeshed/stubs/PyYAML/yaml/tokens.pyi +93 -0
  1075. jaclang/vendor/typeshed/stubs/Pygments/METADATA.toml +8 -0
  1076. jaclang/vendor/typeshed/stubs/Pygments/pygments/__init__.pyi +22 -0
  1077. jaclang/vendor/typeshed/stubs/Pygments/pygments/cmdline.pyi +8 -0
  1078. jaclang/vendor/typeshed/stubs/Pygments/pygments/console.pyi +10 -0
  1079. jaclang/vendor/typeshed/stubs/Pygments/pygments/filter.pyi +18 -0
  1080. jaclang/vendor/typeshed/stubs/Pygments/pygments/filters/__init__.pyi +58 -0
  1081. jaclang/vendor/typeshed/stubs/Pygments/pygments/formatter.pyi +22 -0
  1082. jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/__init__.pyi +25 -0
  1083. jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/_mapping.pyi +3 -0
  1084. jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/bbcode.pyi +12 -0
  1085. jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/html.pyi +41 -0
  1086. jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/img.pyi +68 -0
  1087. jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/irc.pyi +14 -0
  1088. jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/latex.pyi +34 -0
  1089. jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/other.pyi +26 -0
  1090. jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/pangomarkup.pyi +12 -0
  1091. jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/rtf.pyi +13 -0
  1092. jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/svg.pyi +22 -0
  1093. jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/terminal.pyi +15 -0
  1094. jaclang/vendor/typeshed/stubs/Pygments/pygments/formatters/terminal256.pyi +36 -0
  1095. jaclang/vendor/typeshed/stubs/Pygments/pygments/lexer.pyi +102 -0
  1096. jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/__init__.pyi +19 -0
  1097. jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/javascript.pyi +40 -0
  1098. jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/jsx.pyi +5 -0
  1099. jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/kusto.pyi +10 -0
  1100. jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/ldap.pyi +6 -0
  1101. jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/lean.pyi +7 -0
  1102. jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/lisp.pyi +96 -0
  1103. jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/prql.pyi +11 -0
  1104. jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/vip.pyi +19 -0
  1105. jaclang/vendor/typeshed/stubs/Pygments/pygments/lexers/vyper.pyi +5 -0
  1106. jaclang/vendor/typeshed/stubs/Pygments/pygments/modeline.pyi +1 -0
  1107. jaclang/vendor/typeshed/stubs/Pygments/pygments/plugin.pyi +27 -0
  1108. jaclang/vendor/typeshed/stubs/Pygments/pygments/regexopt.pyi +8 -0
  1109. jaclang/vendor/typeshed/stubs/Pygments/pygments/scanner.pyi +19 -0
  1110. jaclang/vendor/typeshed/stubs/Pygments/pygments/sphinxext.pyi +14 -0
  1111. jaclang/vendor/typeshed/stubs/Pygments/pygments/style.pyi +43 -0
  1112. jaclang/vendor/typeshed/stubs/Pygments/pygments/styles/__init__.pyi +12 -0
  1113. jaclang/vendor/typeshed/stubs/Pygments/pygments/token.pyi +34 -0
  1114. jaclang/vendor/typeshed/stubs/Pygments/pygments/unistring.pyi +38 -0
  1115. jaclang/vendor/typeshed/stubs/Pygments/pygments/util.pyi +34 -0
  1116. jaclang/vendor/typeshed/stubs/RPi.GPIO/METADATA.toml +8 -0
  1117. jaclang/vendor/typeshed/stubs/RPi.GPIO/RPi/GPIO/__init__.pyi +66 -0
  1118. jaclang/vendor/typeshed/stubs/RPi.GPIO/RPi/__init__.pyi +0 -0
  1119. jaclang/vendor/typeshed/stubs/Send2Trash/METADATA.toml +2 -0
  1120. jaclang/vendor/typeshed/stubs/Send2Trash/send2trash/__init__.pyi +7 -0
  1121. jaclang/vendor/typeshed/stubs/Send2Trash/send2trash/__main__.pyi +3 -0
  1122. jaclang/vendor/typeshed/stubs/Send2Trash/send2trash/exceptions.pyi +5 -0
  1123. jaclang/vendor/typeshed/stubs/Send2Trash/send2trash/util.pyi +5 -0
  1124. jaclang/vendor/typeshed/stubs/TgCrypto/METADATA.toml +2 -0
  1125. jaclang/vendor/typeshed/stubs/TgCrypto/tgcrypto/__init__.pyi +8 -0
  1126. jaclang/vendor/typeshed/stubs/WTForms/METADATA.toml +3 -0
  1127. jaclang/vendor/typeshed/stubs/WTForms/wtforms/__init__.pyi +85 -0
  1128. jaclang/vendor/typeshed/stubs/WTForms/wtforms/csrf/__init__.pyi +0 -0
  1129. jaclang/vendor/typeshed/stubs/WTForms/wtforms/csrf/core.pyi +41 -0
  1130. jaclang/vendor/typeshed/stubs/WTForms/wtforms/csrf/session.pyi +20 -0
  1131. jaclang/vendor/typeshed/stubs/WTForms/wtforms/fields/__init__.pyi +77 -0
  1132. jaclang/vendor/typeshed/stubs/WTForms/wtforms/fields/choices.pyi +79 -0
  1133. jaclang/vendor/typeshed/stubs/WTForms/wtforms/fields/core.pyi +132 -0
  1134. jaclang/vendor/typeshed/stubs/WTForms/wtforms/fields/datetime.pyi +138 -0
  1135. jaclang/vendor/typeshed/stubs/WTForms/wtforms/fields/form.pyi +40 -0
  1136. jaclang/vendor/typeshed/stubs/WTForms/wtforms/fields/list.pyi +51 -0
  1137. jaclang/vendor/typeshed/stubs/WTForms/wtforms/fields/numeric.pyi +145 -0
  1138. jaclang/vendor/typeshed/stubs/WTForms/wtforms/fields/simple.pyi +81 -0
  1139. jaclang/vendor/typeshed/stubs/WTForms/wtforms/form.pyi +87 -0
  1140. jaclang/vendor/typeshed/stubs/WTForms/wtforms/i18n.pyi +30 -0
  1141. jaclang/vendor/typeshed/stubs/WTForms/wtforms/meta.pyi +55 -0
  1142. jaclang/vendor/typeshed/stubs/WTForms/wtforms/utils.pyi +18 -0
  1143. jaclang/vendor/typeshed/stubs/WTForms/wtforms/validators.pyi +210 -0
  1144. jaclang/vendor/typeshed/stubs/WTForms/wtforms/widgets/__init__.pyi +59 -0
  1145. jaclang/vendor/typeshed/stubs/WTForms/wtforms/widgets/core.pyi +120 -0
  1146. jaclang/vendor/typeshed/stubs/WebOb/METADATA.toml +2 -0
  1147. jaclang/vendor/typeshed/stubs/WebOb/webob/__init__.pyi +28 -0
  1148. jaclang/vendor/typeshed/stubs/WebOb/webob/_types.pyi +21 -0
  1149. jaclang/vendor/typeshed/stubs/WebOb/webob/acceptparse.pyi +714 -0
  1150. jaclang/vendor/typeshed/stubs/WebOb/webob/byterange.pyi +30 -0
  1151. jaclang/vendor/typeshed/stubs/WebOb/webob/cachecontrol.pyi +96 -0
  1152. jaclang/vendor/typeshed/stubs/WebOb/webob/client.pyi +14 -0
  1153. jaclang/vendor/typeshed/stubs/WebOb/webob/compat.pyi +24 -0
  1154. jaclang/vendor/typeshed/stubs/WebOb/webob/cookies.pyi +187 -0
  1155. jaclang/vendor/typeshed/stubs/WebOb/webob/datetime_utils.pyi +40 -0
  1156. jaclang/vendor/typeshed/stubs/WebOb/webob/dec.pyi +196 -0
  1157. jaclang/vendor/typeshed/stubs/WebOb/webob/descriptors.pyi +97 -0
  1158. jaclang/vendor/typeshed/stubs/WebOb/webob/etag.pyi +46 -0
  1159. jaclang/vendor/typeshed/stubs/WebOb/webob/exc.pyi +189 -0
  1160. jaclang/vendor/typeshed/stubs/WebOb/webob/headers.pyi +35 -0
  1161. jaclang/vendor/typeshed/stubs/WebOb/webob/multidict.pyi +176 -0
  1162. jaclang/vendor/typeshed/stubs/WebOb/webob/request.pyi +245 -0
  1163. jaclang/vendor/typeshed/stubs/WebOb/webob/response.pyi +177 -0
  1164. jaclang/vendor/typeshed/stubs/WebOb/webob/static.pyi +40 -0
  1165. jaclang/vendor/typeshed/stubs/WebOb/webob/util.pyi +11 -0
  1166. jaclang/vendor/typeshed/stubs/aiofiles/METADATA.toml +6 -0
  1167. jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/__init__.pyi +12 -0
  1168. jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/base.pyi +24 -0
  1169. jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/os.pyi +144 -0
  1170. jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/ospath.pyi +23 -0
  1171. jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/tempfile/__init__.pyi +324 -0
  1172. jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/tempfile/temptypes.pyi +51 -0
  1173. jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/threadpool/__init__.pyi +108 -0
  1174. jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/threadpool/binary.pyi +55 -0
  1175. jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/threadpool/text.pyi +42 -0
  1176. jaclang/vendor/typeshed/stubs/aiofiles/aiofiles/threadpool/utils.pyi +10 -0
  1177. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/METADATA.toml +6 -0
  1178. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/BufferedTokenStream.pyi +39 -0
  1179. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/CommonTokenFactory.pyi +14 -0
  1180. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/CommonTokenStream.pyi +13 -0
  1181. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/FileStream.pyi +8 -0
  1182. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/InputStream.pyi +21 -0
  1183. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/IntervalSet.pyi +19 -0
  1184. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/LL1Analyzer.pyi +26 -0
  1185. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/Lexer.pyi +64 -0
  1186. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/ListTokenSource.pyi +19 -0
  1187. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/Parser.pyi +74 -0
  1188. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/ParserInterpreter.pyi +36 -0
  1189. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/ParserRuleContext.pyi +41 -0
  1190. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/PredictionContext.pyi +87 -0
  1191. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/Recognizer.pyi +27 -0
  1192. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/RuleContext.pyi +28 -0
  1193. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/StdinStream.pyi +4 -0
  1194. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/Token.pyi +48 -0
  1195. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/TokenStreamRewriter.pyi +53 -0
  1196. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/Utils.pyi +2 -0
  1197. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/__init__.pyi +32 -0
  1198. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/_pygrun.pyi +4 -0
  1199. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/ATN.pyi +29 -0
  1200. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/ATNConfig.pyi +44 -0
  1201. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/ATNConfigSet.pyi +44 -0
  1202. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/ATNDeserializationOptions.pyi +9 -0
  1203. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/ATNDeserializer.pyi +48 -0
  1204. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/ATNSimulator.pyi +17 -0
  1205. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/ATNState.pyi +99 -0
  1206. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/ATNType.pyi +7 -0
  1207. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/LexerATNSimulator.pyi +87 -0
  1208. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/LexerAction.pyi +82 -0
  1209. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/LexerActionExecutor.pyi +15 -0
  1210. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/ParserATNSimulator.pyi +133 -0
  1211. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/PredictionMode.pyi +41 -0
  1212. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/SemanticContext.pyi +49 -0
  1213. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/Transition.pyi +101 -0
  1214. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/atn/__init__.pyi +0 -0
  1215. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/dfa/DFA.pyi +21 -0
  1216. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/dfa/DFASerializer.pyi +17 -0
  1217. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/dfa/DFAState.pyi +23 -0
  1218. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/dfa/__init__.pyi +0 -0
  1219. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/error/DiagnosticErrorListener.pyi +20 -0
  1220. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/error/ErrorListener.pyi +19 -0
  1221. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/error/ErrorStrategy.pyi +56 -0
  1222. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/error/Errors.pyi +60 -0
  1223. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/error/__init__.pyi +0 -0
  1224. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/Chunk.pyi +12 -0
  1225. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/ParseTreeMatch.pyi +16 -0
  1226. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/ParseTreePattern.pyi +15 -0
  1227. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/ParseTreePatternMatcher.pyi +44 -0
  1228. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/RuleTagToken.pyi +17 -0
  1229. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/TokenTagToken.pyi +9 -0
  1230. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/Tree.pyi +51 -0
  1231. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/Trees.pyi +31 -0
  1232. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/tree/__init__.pyi +0 -0
  1233. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/xpath/XPath.pyi +67 -0
  1234. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/xpath/XPathLexer.pyi +28 -0
  1235. jaclang/vendor/typeshed/stubs/antlr4-python3-runtime/antlr4/xpath/__init__.pyi +0 -0
  1236. jaclang/vendor/typeshed/stubs/assertpy/METADATA.toml +2 -0
  1237. jaclang/vendor/typeshed/stubs/assertpy/assertpy/__init__.pyi +12 -0
  1238. jaclang/vendor/typeshed/stubs/assertpy/assertpy/assertpy.pyi +70 -0
  1239. jaclang/vendor/typeshed/stubs/assertpy/assertpy/base.pyi +21 -0
  1240. jaclang/vendor/typeshed/stubs/assertpy/assertpy/collection.pyi +11 -0
  1241. jaclang/vendor/typeshed/stubs/assertpy/assertpy/contains.pyi +16 -0
  1242. jaclang/vendor/typeshed/stubs/assertpy/assertpy/date.pyi +11 -0
  1243. jaclang/vendor/typeshed/stubs/assertpy/assertpy/dict.pyi +12 -0
  1244. jaclang/vendor/typeshed/stubs/assertpy/assertpy/dynamic.pyi +7 -0
  1245. jaclang/vendor/typeshed/stubs/assertpy/assertpy/exception.pyi +9 -0
  1246. jaclang/vendor/typeshed/stubs/assertpy/assertpy/extracting.pyi +13 -0
  1247. jaclang/vendor/typeshed/stubs/assertpy/assertpy/file.pyi +15 -0
  1248. jaclang/vendor/typeshed/stubs/assertpy/assertpy/helpers.pyi +3 -0
  1249. jaclang/vendor/typeshed/stubs/assertpy/assertpy/numeric.pyi +24 -0
  1250. jaclang/vendor/typeshed/stubs/assertpy/assertpy/snapshot.pyi +6 -0
  1251. jaclang/vendor/typeshed/stubs/assertpy/assertpy/string.pyi +17 -0
  1252. jaclang/vendor/typeshed/stubs/auth0-python/METADATA.toml +3 -0
  1253. jaclang/vendor/typeshed/stubs/auth0-python/auth0/__init__.pyi +3 -0
  1254. jaclang/vendor/typeshed/stubs/auth0-python/auth0/asyncify.pyi +6 -0
  1255. jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/__init__.pyi +10 -0
  1256. jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/async_token_verifier.pyi +24 -0
  1257. jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/back_channel_login.pyi +4 -0
  1258. jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/base.pyi +30 -0
  1259. jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/client_authentication.pyi +13 -0
  1260. jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/database.pyi +21 -0
  1261. jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/delegated.pyi +12 -0
  1262. jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/enterprise.pyi +5 -0
  1263. jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/get_token.pyi +29 -0
  1264. jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/passwordless.pyi +5 -0
  1265. jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/pushed_authorization_requests.pyi +4 -0
  1266. jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/revoke_token.pyi +4 -0
  1267. jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/social.pyi +4 -0
  1268. jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/token_verifier.pyi +27 -0
  1269. jaclang/vendor/typeshed/stubs/auth0-python/auth0/authentication/users.pyi +11 -0
  1270. jaclang/vendor/typeshed/stubs/auth0-python/auth0/exceptions.pyi +14 -0
  1271. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/__init__.pyi +63 -0
  1272. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/actions.pyi +64 -0
  1273. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/async_auth0.pyi +76 -0
  1274. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/attack_protection.pyi +30 -0
  1275. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/auth0.pyi +65 -0
  1276. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/blacklists.pyi +21 -0
  1277. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/branding.pyi +38 -0
  1278. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/client_credentials.pyi +26 -0
  1279. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/client_grants.pyi +60 -0
  1280. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/clients.pyi +44 -0
  1281. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/connections.pyi +48 -0
  1282. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/custom_domains.pyi +28 -0
  1283. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/device_credentials.pyi +44 -0
  1284. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/email_templates.pyi +24 -0
  1285. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/emails.pyi +26 -0
  1286. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/grants.pyi +34 -0
  1287. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/guardian.pyi +38 -0
  1288. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/hooks.pyi +52 -0
  1289. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/jobs.pyi +42 -0
  1290. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/log_streams.pyi +29 -0
  1291. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/logs.pyi +44 -0
  1292. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/organizations.pyi +134 -0
  1293. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/prompts.pyi +28 -0
  1294. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/resource_servers.pyi +28 -0
  1295. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/roles.pyi +63 -0
  1296. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/rules.pyi +46 -0
  1297. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/rules_configs.pyi +24 -0
  1298. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/stats.pyi +24 -0
  1299. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/tenants.pyi +22 -0
  1300. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/tickets.pyi +22 -0
  1301. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/user_blocks.pyi +26 -0
  1302. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/users.pyi +119 -0
  1303. jaclang/vendor/typeshed/stubs/auth0-python/auth0/management/users_by_email.pyi +24 -0
  1304. jaclang/vendor/typeshed/stubs/auth0-python/auth0/rest.pyi +48 -0
  1305. jaclang/vendor/typeshed/stubs/auth0-python/auth0/rest_async.pyi +23 -0
  1306. jaclang/vendor/typeshed/stubs/auth0-python/auth0/types.pyi +5 -0
  1307. jaclang/vendor/typeshed/stubs/auth0-python/auth0/utils.pyi +1 -0
  1308. jaclang/vendor/typeshed/stubs/aws-xray-sdk/METADATA.toml +6 -0
  1309. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/__init__.pyi +3 -0
  1310. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/__init__.pyi +4 -0
  1311. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/async_context.pyi +13 -0
  1312. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/async_recorder.pyi +24 -0
  1313. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/context.pyi +27 -0
  1314. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/daemon_config.pyi +13 -0
  1315. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/emitters/__init__.pyi +0 -0
  1316. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/emitters/udp_emitter.pyi +19 -0
  1317. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/exceptions/__init__.pyi +0 -0
  1318. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/exceptions/exceptions.pyi +8 -0
  1319. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/lambda_launcher.pyi +23 -0
  1320. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/__init__.pyi +0 -0
  1321. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/default_dynamic_naming.pyi +5 -0
  1322. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/dummy_entities.pyi +29 -0
  1323. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/entity.pyi +41 -0
  1324. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/facade_segment.pyi +24 -0
  1325. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/http.pyi +13 -0
  1326. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/noop_traceid.pyi +6 -0
  1327. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/segment.pyi +44 -0
  1328. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/subsegment.pyi +38 -0
  1329. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/throwable.pyi +12 -0
  1330. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/trace_header.pyi +25 -0
  1331. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/models/traceid.pyi +8 -0
  1332. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/patcher.pyi +10 -0
  1333. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/plugins/__init__.pyi +0 -0
  1334. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/plugins/ec2_plugin.pyi +12 -0
  1335. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/plugins/ecs_plugin.pyi +7 -0
  1336. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/plugins/elasticbeanstalk_plugin.pyi +8 -0
  1337. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/plugins/utils.pyi +6 -0
  1338. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/recorder.pyi +113 -0
  1339. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/__init__.pyi +0 -0
  1340. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/connector.pyi +9 -0
  1341. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/local/__init__.pyi +0 -0
  1342. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/local/reservoir.pyi +8 -0
  1343. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/local/sampler.pyi +12 -0
  1344. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/local/sampling_rule.pyi +28 -0
  1345. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/reservoir.pyi +15 -0
  1346. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/rule_cache.pyi +17 -0
  1347. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/rule_poller.pyi +9 -0
  1348. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/sampler.pyi +21 -0
  1349. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/sampling_rule.pyi +33 -0
  1350. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/sampling/target_poller.pyi +7 -0
  1351. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/streaming/__init__.pyi +0 -0
  1352. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/streaming/default_streaming.pyi +8 -0
  1353. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/utils/__init__.pyi +0 -0
  1354. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/utils/atomic_counter.pyi +9 -0
  1355. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/utils/compat.pyi +6 -0
  1356. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/utils/conversion.pyi +5 -0
  1357. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/utils/search_pattern.pyi +1 -0
  1358. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/core/utils/stacktrace.pyi +1 -0
  1359. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/sdk_config.pyi +11 -0
  1360. jaclang/vendor/typeshed/stubs/aws-xray-sdk/aws_xray_sdk/version.pyi +1 -0
  1361. jaclang/vendor/typeshed/stubs/beautifulsoup4/METADATA.toml +9 -0
  1362. jaclang/vendor/typeshed/stubs/beautifulsoup4/bs4/__init__.pyi +82 -0
  1363. jaclang/vendor/typeshed/stubs/beautifulsoup4/bs4/builder/__init__.pyi +64 -0
  1364. jaclang/vendor/typeshed/stubs/beautifulsoup4/bs4/builder/_html5lib.pyi +76 -0
  1365. jaclang/vendor/typeshed/stubs/beautifulsoup4/bs4/builder/_htmlparser.pyi +34 -0
  1366. jaclang/vendor/typeshed/stubs/beautifulsoup4/bs4/builder/_lxml.pyi +45 -0
  1367. jaclang/vendor/typeshed/stubs/beautifulsoup4/bs4/dammit.pyi +85 -0
  1368. jaclang/vendor/typeshed/stubs/beautifulsoup4/bs4/diagnose.pyi +22 -0
  1369. jaclang/vendor/typeshed/stubs/beautifulsoup4/bs4/element.pyi +391 -0
  1370. jaclang/vendor/typeshed/stubs/beautifulsoup4/bs4/formatter.pyi +50 -0
  1371. jaclang/vendor/typeshed/stubs/binaryornot/METADATA.toml +2 -0
  1372. jaclang/vendor/typeshed/stubs/binaryornot/binaryornot/__init__.pyi +5 -0
  1373. jaclang/vendor/typeshed/stubs/binaryornot/binaryornot/check.pyi +3 -0
  1374. jaclang/vendor/typeshed/stubs/binaryornot/binaryornot/helpers.pyi +5 -0
  1375. jaclang/vendor/typeshed/stubs/bleach/METADATA.toml +6 -0
  1376. jaclang/vendor/typeshed/stubs/bleach/bleach/__init__.pyi +33 -0
  1377. jaclang/vendor/typeshed/stubs/bleach/bleach/callbacks.pyi +13 -0
  1378. jaclang/vendor/typeshed/stubs/bleach/bleach/css_sanitizer.pyi +12 -0
  1379. jaclang/vendor/typeshed/stubs/bleach/bleach/html5lib_shim.pyi +70 -0
  1380. jaclang/vendor/typeshed/stubs/bleach/bleach/linkifier.pyi +61 -0
  1381. jaclang/vendor/typeshed/stubs/bleach/bleach/parse_shim.pyi +1 -0
  1382. jaclang/vendor/typeshed/stubs/bleach/bleach/sanitizer.pyi +92 -0
  1383. jaclang/vendor/typeshed/stubs/boltons/METADATA.toml +2 -0
  1384. jaclang/vendor/typeshed/stubs/boltons/boltons/__init__.pyi +0 -0
  1385. jaclang/vendor/typeshed/stubs/boltons/boltons/cacheutils.pyi +143 -0
  1386. jaclang/vendor/typeshed/stubs/boltons/boltons/debugutils.pyi +10 -0
  1387. jaclang/vendor/typeshed/stubs/boltons/boltons/deprutils.pyi +8 -0
  1388. jaclang/vendor/typeshed/stubs/boltons/boltons/dictutils.pyi +103 -0
  1389. jaclang/vendor/typeshed/stubs/boltons/boltons/easterutils.pyi +3 -0
  1390. jaclang/vendor/typeshed/stubs/boltons/boltons/ecoutils.pyi +26 -0
  1391. jaclang/vendor/typeshed/stubs/boltons/boltons/excutils.pyi +11 -0
  1392. jaclang/vendor/typeshed/stubs/boltons/boltons/fileutils.pyi +95 -0
  1393. jaclang/vendor/typeshed/stubs/boltons/boltons/formatutils.pyi +46 -0
  1394. jaclang/vendor/typeshed/stubs/boltons/boltons/funcutils.pyi +63 -0
  1395. jaclang/vendor/typeshed/stubs/boltons/boltons/gcutils.pyi +16 -0
  1396. jaclang/vendor/typeshed/stubs/boltons/boltons/ioutils.pyi +92 -0
  1397. jaclang/vendor/typeshed/stubs/boltons/boltons/iterutils.pyi +73 -0
  1398. jaclang/vendor/typeshed/stubs/boltons/boltons/jsonutils.pyi +27 -0
  1399. jaclang/vendor/typeshed/stubs/boltons/boltons/listutils.pyi +32 -0
  1400. jaclang/vendor/typeshed/stubs/boltons/boltons/mathutils.pyi +40 -0
  1401. jaclang/vendor/typeshed/stubs/boltons/boltons/mboxutils.pyi +17 -0
  1402. jaclang/vendor/typeshed/stubs/boltons/boltons/namedutils.pyi +6 -0
  1403. jaclang/vendor/typeshed/stubs/boltons/boltons/pathutils.pyi +15 -0
  1404. jaclang/vendor/typeshed/stubs/boltons/boltons/queueutils.pyi +16 -0
  1405. jaclang/vendor/typeshed/stubs/boltons/boltons/setutils.pyi +101 -0
  1406. jaclang/vendor/typeshed/stubs/boltons/boltons/socketutils.pyi +72 -0
  1407. jaclang/vendor/typeshed/stubs/boltons/boltons/statsutils.pyi +73 -0
  1408. jaclang/vendor/typeshed/stubs/boltons/boltons/strutils.pyi +101 -0
  1409. jaclang/vendor/typeshed/stubs/boltons/boltons/tableutils.pyi +65 -0
  1410. jaclang/vendor/typeshed/stubs/boltons/boltons/tbutils.pyi +106 -0
  1411. jaclang/vendor/typeshed/stubs/boltons/boltons/timeutils.pyi +62 -0
  1412. jaclang/vendor/typeshed/stubs/boltons/boltons/typeutils.pyi +16 -0
  1413. jaclang/vendor/typeshed/stubs/boltons/boltons/urlutils.pyi +80 -0
  1414. jaclang/vendor/typeshed/stubs/braintree/METADATA.toml +2 -0
  1415. jaclang/vendor/typeshed/stubs/braintree/braintree/__init__.pyi +96 -0
  1416. jaclang/vendor/typeshed/stubs/braintree/braintree/account_updater_daily_report.pyi +8 -0
  1417. jaclang/vendor/typeshed/stubs/braintree/braintree/ach_mandate.pyi +4 -0
  1418. jaclang/vendor/typeshed/stubs/braintree/braintree/add_on.pyi +5 -0
  1419. jaclang/vendor/typeshed/stubs/braintree/braintree/add_on_gateway.pyi +9 -0
  1420. jaclang/vendor/typeshed/stubs/braintree/braintree/address.pyi +27 -0
  1421. jaclang/vendor/typeshed/stubs/braintree/braintree/address_gateway.pyi +16 -0
  1422. jaclang/vendor/typeshed/stubs/braintree/braintree/amex_express_checkout_card.pyi +8 -0
  1423. jaclang/vendor/typeshed/stubs/braintree/braintree/android_pay_card.pyi +21 -0
  1424. jaclang/vendor/typeshed/stubs/braintree/braintree/apple_pay_card.pyi +19 -0
  1425. jaclang/vendor/typeshed/stubs/braintree/braintree/apple_pay_gateway.pyi +12 -0
  1426. jaclang/vendor/typeshed/stubs/braintree/braintree/apple_pay_options.pyi +3 -0
  1427. jaclang/vendor/typeshed/stubs/braintree/braintree/attribute_getter.pyi +7 -0
  1428. jaclang/vendor/typeshed/stubs/braintree/braintree/authorization_adjustment.pyi +7 -0
  1429. jaclang/vendor/typeshed/stubs/braintree/braintree/bin_data.pyi +3 -0
  1430. jaclang/vendor/typeshed/stubs/braintree/braintree/blik_alias.pyi +3 -0
  1431. jaclang/vendor/typeshed/stubs/braintree/braintree/braintree_gateway.pyi +66 -0
  1432. jaclang/vendor/typeshed/stubs/braintree/braintree/client_token.pyi +5 -0
  1433. jaclang/vendor/typeshed/stubs/braintree/braintree/client_token_gateway.pyi +7 -0
  1434. jaclang/vendor/typeshed/stubs/braintree/braintree/configuration.pyi +69 -0
  1435. jaclang/vendor/typeshed/stubs/braintree/braintree/connected_merchant_paypal_status_changed.pyi +6 -0
  1436. jaclang/vendor/typeshed/stubs/braintree/braintree/connected_merchant_status_transitioned.pyi +6 -0
  1437. jaclang/vendor/typeshed/stubs/braintree/braintree/credentials_parser.pyi +15 -0
  1438. jaclang/vendor/typeshed/stubs/braintree/braintree/credit_card.pyi +96 -0
  1439. jaclang/vendor/typeshed/stubs/braintree/braintree/credit_card_gateway.pyi +23 -0
  1440. jaclang/vendor/typeshed/stubs/braintree/braintree/credit_card_verification.pyi +36 -0
  1441. jaclang/vendor/typeshed/stubs/braintree/braintree/credit_card_verification_gateway.pyi +14 -0
  1442. jaclang/vendor/typeshed/stubs/braintree/braintree/credit_card_verification_search.pyi +15 -0
  1443. jaclang/vendor/typeshed/stubs/braintree/braintree/customer.pyi +66 -0
  1444. jaclang/vendor/typeshed/stubs/braintree/braintree/customer_gateway.pyi +17 -0
  1445. jaclang/vendor/typeshed/stubs/braintree/braintree/customer_search.pyi +27 -0
  1446. jaclang/vendor/typeshed/stubs/braintree/braintree/customer_session_gateway.pyi +17 -0
  1447. jaclang/vendor/typeshed/stubs/braintree/braintree/descriptor.pyi +4 -0
  1448. jaclang/vendor/typeshed/stubs/braintree/braintree/disbursement.pyi +17 -0
  1449. jaclang/vendor/typeshed/stubs/braintree/braintree/disbursement_detail.pyi +10 -0
  1450. jaclang/vendor/typeshed/stubs/braintree/braintree/discount.pyi +5 -0
  1451. jaclang/vendor/typeshed/stubs/braintree/braintree/discount_gateway.pyi +9 -0
  1452. jaclang/vendor/typeshed/stubs/braintree/braintree/dispute.pyi +79 -0
  1453. jaclang/vendor/typeshed/stubs/braintree/braintree/dispute_details/__init__.pyi +3 -0
  1454. jaclang/vendor/typeshed/stubs/braintree/braintree/dispute_details/evidence.pyi +6 -0
  1455. jaclang/vendor/typeshed/stubs/braintree/braintree/dispute_details/paypal_message.pyi +6 -0
  1456. jaclang/vendor/typeshed/stubs/braintree/braintree/dispute_details/status_history.pyi +6 -0
  1457. jaclang/vendor/typeshed/stubs/braintree/braintree/dispute_gateway.pyi +18 -0
  1458. jaclang/vendor/typeshed/stubs/braintree/braintree/dispute_search.pyi +23 -0
  1459. jaclang/vendor/typeshed/stubs/braintree/braintree/document_upload.pyi +16 -0
  1460. jaclang/vendor/typeshed/stubs/braintree/braintree/document_upload_gateway.pyi +10 -0
  1461. jaclang/vendor/typeshed/stubs/braintree/braintree/enriched_customer_data.pyi +7 -0
  1462. jaclang/vendor/typeshed/stubs/braintree/braintree/environment.pyi +45 -0
  1463. jaclang/vendor/typeshed/stubs/braintree/braintree/error_codes.pyi +730 -0
  1464. jaclang/vendor/typeshed/stubs/braintree/braintree/error_result.pyi +20 -0
  1465. jaclang/vendor/typeshed/stubs/braintree/braintree/errors.pyi +13 -0
  1466. jaclang/vendor/typeshed/stubs/braintree/braintree/europe_bank_account.pyi +11 -0
  1467. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/__init__.pyi +16 -0
  1468. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/authentication_error.pyi +3 -0
  1469. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/authorization_error.pyi +3 -0
  1470. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/braintree_error.pyi +1 -0
  1471. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/configuration_error.pyi +3 -0
  1472. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/gateway_timeout_error.pyi +3 -0
  1473. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/http/__init__.pyi +3 -0
  1474. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/http/connection_error.pyi +3 -0
  1475. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/http/invalid_response_error.pyi +3 -0
  1476. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/http/timeout_error.pyi +5 -0
  1477. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/invalid_challenge_error.pyi +3 -0
  1478. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/invalid_signature_error.pyi +3 -0
  1479. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/not_found_error.pyi +3 -0
  1480. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/request_timeout_error.pyi +3 -0
  1481. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/server_error.pyi +3 -0
  1482. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/service_unavailable_error.pyi +3 -0
  1483. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/test_operation_performed_in_production_error.pyi +3 -0
  1484. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/too_many_requests_error.pyi +3 -0
  1485. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/unexpected_error.pyi +3 -0
  1486. jaclang/vendor/typeshed/stubs/braintree/braintree/exceptions/upgrade_required_error.pyi +3 -0
  1487. jaclang/vendor/typeshed/stubs/braintree/braintree/exchange_rate_quote.pyi +4 -0
  1488. jaclang/vendor/typeshed/stubs/braintree/braintree/exchange_rate_quote_gateway.pyi +13 -0
  1489. jaclang/vendor/typeshed/stubs/braintree/braintree/exchange_rate_quote_input.pyi +9 -0
  1490. jaclang/vendor/typeshed/stubs/braintree/braintree/exchange_rate_quote_payload.pyi +9 -0
  1491. jaclang/vendor/typeshed/stubs/braintree/braintree/exchange_rate_quote_request.pyi +9 -0
  1492. jaclang/vendor/typeshed/stubs/braintree/braintree/facilitated_details.pyi +3 -0
  1493. jaclang/vendor/typeshed/stubs/braintree/braintree/facilitator_details.pyi +3 -0
  1494. jaclang/vendor/typeshed/stubs/braintree/braintree/granted_payment_instrument_update.pyi +7 -0
  1495. jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/__init__.pyi +17 -0
  1496. jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/enums/__init__.pyi +2 -0
  1497. jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/enums/recommendations.pyi +4 -0
  1498. jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/enums/recommended_payment_option.pyi +5 -0
  1499. jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/inputs/__init__.pyi +8 -0
  1500. jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/inputs/create_customer_session_input.pyi +27 -0
  1501. jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/inputs/customer_recommendations_input.pyi +27 -0
  1502. jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/inputs/customer_session_input.pyi +32 -0
  1503. jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/inputs/monetary_amount_input.pyi +6 -0
  1504. jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/inputs/paypal_payee_input.pyi +14 -0
  1505. jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/inputs/paypal_purchase_unit_input.pyi +16 -0
  1506. jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/inputs/phone_input.pyi +17 -0
  1507. jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/inputs/update_customer_session_input.pyi +24 -0
  1508. jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/types/__init__.pyi +5 -0
  1509. jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/types/customer_recommendations_payload.pyi +13 -0
  1510. jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/types/payment_options.pyi +6 -0
  1511. jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/types/payment_recommendation.pyi +6 -0
  1512. jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/unions/__init__.pyi +1 -0
  1513. jaclang/vendor/typeshed/stubs/braintree/braintree/graphql/unions/customer_recommendations.pyi +7 -0
  1514. jaclang/vendor/typeshed/stubs/braintree/braintree/iban_bank_account.pyi +3 -0
  1515. jaclang/vendor/typeshed/stubs/braintree/braintree/ids_search.pyi +4 -0
  1516. jaclang/vendor/typeshed/stubs/braintree/braintree/liability_shift.pyi +3 -0
  1517. jaclang/vendor/typeshed/stubs/braintree/braintree/local_payment.pyi +3 -0
  1518. jaclang/vendor/typeshed/stubs/braintree/braintree/local_payment_completed.pyi +6 -0
  1519. jaclang/vendor/typeshed/stubs/braintree/braintree/local_payment_expired.pyi +4 -0
  1520. jaclang/vendor/typeshed/stubs/braintree/braintree/local_payment_funded.pyi +7 -0
  1521. jaclang/vendor/typeshed/stubs/braintree/braintree/local_payment_reversed.pyi +4 -0
  1522. jaclang/vendor/typeshed/stubs/braintree/braintree/masterpass_card.pyi +12 -0
  1523. jaclang/vendor/typeshed/stubs/braintree/braintree/merchant.pyi +6 -0
  1524. jaclang/vendor/typeshed/stubs/braintree/braintree/merchant_account/__init__.pyi +1 -0
  1525. jaclang/vendor/typeshed/stubs/braintree/braintree/merchant_account/address_details.pyi +7 -0
  1526. jaclang/vendor/typeshed/stubs/braintree/braintree/merchant_account/merchant_account.pyi +24 -0
  1527. jaclang/vendor/typeshed/stubs/braintree/braintree/merchant_account_gateway.pyi +13 -0
  1528. jaclang/vendor/typeshed/stubs/braintree/braintree/merchant_gateway.pyi +10 -0
  1529. jaclang/vendor/typeshed/stubs/braintree/braintree/meta_checkout_card.pyi +8 -0
  1530. jaclang/vendor/typeshed/stubs/braintree/braintree/meta_checkout_token.pyi +8 -0
  1531. jaclang/vendor/typeshed/stubs/braintree/braintree/modification.pyi +7 -0
  1532. jaclang/vendor/typeshed/stubs/braintree/braintree/monetary_amount.pyi +7 -0
  1533. jaclang/vendor/typeshed/stubs/braintree/braintree/oauth_access_revocation.pyi +4 -0
  1534. jaclang/vendor/typeshed/stubs/braintree/braintree/oauth_credentials.pyi +3 -0
  1535. jaclang/vendor/typeshed/stubs/braintree/braintree/oauth_gateway.pyi +13 -0
  1536. jaclang/vendor/typeshed/stubs/braintree/braintree/package_details.pyi +7 -0
  1537. jaclang/vendor/typeshed/stubs/braintree/braintree/paginated_collection.pyi +8 -0
  1538. jaclang/vendor/typeshed/stubs/braintree/braintree/paginated_result.pyi +7 -0
  1539. jaclang/vendor/typeshed/stubs/braintree/braintree/partner_merchant.pyi +11 -0
  1540. jaclang/vendor/typeshed/stubs/braintree/braintree/payment_facilitator.pyi +6 -0
  1541. jaclang/vendor/typeshed/stubs/braintree/braintree/payment_instrument_type.pyi +19 -0
  1542. jaclang/vendor/typeshed/stubs/braintree/braintree/payment_method.pyi +37 -0
  1543. jaclang/vendor/typeshed/stubs/braintree/braintree/payment_method_customer_data_updated_metadata.pyi +8 -0
  1544. jaclang/vendor/typeshed/stubs/braintree/braintree/payment_method_gateway.pyi +17 -0
  1545. jaclang/vendor/typeshed/stubs/braintree/braintree/payment_method_nonce.pyi +17 -0
  1546. jaclang/vendor/typeshed/stubs/braintree/braintree/payment_method_nonce_gateway.pyi +12 -0
  1547. jaclang/vendor/typeshed/stubs/braintree/braintree/payment_method_parser.pyi +31 -0
  1548. jaclang/vendor/typeshed/stubs/braintree/braintree/paypal_account.pyi +16 -0
  1549. jaclang/vendor/typeshed/stubs/braintree/braintree/paypal_account_gateway.pyi +13 -0
  1550. jaclang/vendor/typeshed/stubs/braintree/braintree/paypal_here.pyi +4 -0
  1551. jaclang/vendor/typeshed/stubs/braintree/braintree/paypal_payment_resource.pyi +12 -0
  1552. jaclang/vendor/typeshed/stubs/braintree/braintree/paypal_payment_resource_gateway.pyi +10 -0
  1553. jaclang/vendor/typeshed/stubs/braintree/braintree/plan.pyi +20 -0
  1554. jaclang/vendor/typeshed/stubs/braintree/braintree/plan_gateway.pyi +10 -0
  1555. jaclang/vendor/typeshed/stubs/braintree/braintree/processor_response_types.pyi +6 -0
  1556. jaclang/vendor/typeshed/stubs/braintree/braintree/resource.pyi +12 -0
  1557. jaclang/vendor/typeshed/stubs/braintree/braintree/resource_collection.pyi +14 -0
  1558. jaclang/vendor/typeshed/stubs/braintree/braintree/revoked_payment_method_metadata.pyi +9 -0
  1559. jaclang/vendor/typeshed/stubs/braintree/braintree/risk_data.pyi +4 -0
  1560. jaclang/vendor/typeshed/stubs/braintree/braintree/samsung_pay_card.pyi +12 -0
  1561. jaclang/vendor/typeshed/stubs/braintree/braintree/search.pyi +59 -0
  1562. jaclang/vendor/typeshed/stubs/braintree/braintree/sepa_direct_debit_account.pyi +10 -0
  1563. jaclang/vendor/typeshed/stubs/braintree/braintree/sepa_direct_debit_account_gateway.pyi +8 -0
  1564. jaclang/vendor/typeshed/stubs/braintree/braintree/settlement_batch_summary.pyi +5 -0
  1565. jaclang/vendor/typeshed/stubs/braintree/braintree/settlement_batch_summary_gateway.pyi +7 -0
  1566. jaclang/vendor/typeshed/stubs/braintree/braintree/signature_service.pyi +8 -0
  1567. jaclang/vendor/typeshed/stubs/braintree/braintree/status_event.pyi +7 -0
  1568. jaclang/vendor/typeshed/stubs/braintree/braintree/sub_merchant.pyi +4 -0
  1569. jaclang/vendor/typeshed/stubs/braintree/braintree/subscription.pyi +54 -0
  1570. jaclang/vendor/typeshed/stubs/braintree/braintree/subscription_details.pyi +3 -0
  1571. jaclang/vendor/typeshed/stubs/braintree/braintree/subscription_gateway.pyi +12 -0
  1572. jaclang/vendor/typeshed/stubs/braintree/braintree/subscription_search.pyi +15 -0
  1573. jaclang/vendor/typeshed/stubs/braintree/braintree/subscription_status_event.pyi +8 -0
  1574. jaclang/vendor/typeshed/stubs/braintree/braintree/successful_result.pyi +7 -0
  1575. jaclang/vendor/typeshed/stubs/braintree/braintree/test/__init__.pyi +0 -0
  1576. jaclang/vendor/typeshed/stubs/braintree/braintree/test/authentication_ids.pyi +18 -0
  1577. jaclang/vendor/typeshed/stubs/braintree/braintree/test/credit_card_defaults.pyi +5 -0
  1578. jaclang/vendor/typeshed/stubs/braintree/braintree/test/credit_card_numbers.pyi +45 -0
  1579. jaclang/vendor/typeshed/stubs/braintree/braintree/test/merchant_account.pyi +7 -0
  1580. jaclang/vendor/typeshed/stubs/braintree/braintree/test/nonces.pyi +88 -0
  1581. jaclang/vendor/typeshed/stubs/braintree/braintree/test/venmo_sdk.pyi +9 -0
  1582. jaclang/vendor/typeshed/stubs/braintree/braintree/testing_gateway.pyi +12 -0
  1583. jaclang/vendor/typeshed/stubs/braintree/braintree/three_d_secure_info.pyi +3 -0
  1584. jaclang/vendor/typeshed/stubs/braintree/braintree/transaction.pyi +187 -0
  1585. jaclang/vendor/typeshed/stubs/braintree/braintree/transaction_amounts.pyi +7 -0
  1586. jaclang/vendor/typeshed/stubs/braintree/braintree/transaction_details.pyi +7 -0
  1587. jaclang/vendor/typeshed/stubs/braintree/braintree/transaction_gateway.pyi +20 -0
  1588. jaclang/vendor/typeshed/stubs/braintree/braintree/transaction_line_item.pyi +12 -0
  1589. jaclang/vendor/typeshed/stubs/braintree/braintree/transaction_line_item_gateway.pyi +9 -0
  1590. jaclang/vendor/typeshed/stubs/braintree/braintree/transaction_review.pyi +4 -0
  1591. jaclang/vendor/typeshed/stubs/braintree/braintree/transaction_search.pyi +72 -0
  1592. jaclang/vendor/typeshed/stubs/braintree/braintree/unknown_payment_method.pyi +4 -0
  1593. jaclang/vendor/typeshed/stubs/braintree/braintree/us_bank_account.pyi +16 -0
  1594. jaclang/vendor/typeshed/stubs/braintree/braintree/us_bank_account_gateway.pyi +9 -0
  1595. jaclang/vendor/typeshed/stubs/braintree/braintree/us_bank_account_verification.pyi +35 -0
  1596. jaclang/vendor/typeshed/stubs/braintree/braintree/us_bank_account_verification_gateway.pyi +14 -0
  1597. jaclang/vendor/typeshed/stubs/braintree/braintree/us_bank_account_verification_search.pyi +15 -0
  1598. jaclang/vendor/typeshed/stubs/braintree/braintree/util/__init__.pyi +8 -0
  1599. jaclang/vendor/typeshed/stubs/braintree/braintree/util/constants.pyi +7 -0
  1600. jaclang/vendor/typeshed/stubs/braintree/braintree/util/crypto.pyi +23 -0
  1601. jaclang/vendor/typeshed/stubs/braintree/braintree/util/datetime_parser.pyi +3 -0
  1602. jaclang/vendor/typeshed/stubs/braintree/braintree/util/experimental.pyi +5 -0
  1603. jaclang/vendor/typeshed/stubs/braintree/braintree/util/generator.pyi +27 -0
  1604. jaclang/vendor/typeshed/stubs/braintree/braintree/util/graphql_client.pyi +34 -0
  1605. jaclang/vendor/typeshed/stubs/braintree/braintree/util/http.pyi +28 -0
  1606. jaclang/vendor/typeshed/stubs/braintree/braintree/util/parser.pyi +10 -0
  1607. jaclang/vendor/typeshed/stubs/braintree/braintree/util/xml_util.pyi +7 -0
  1608. jaclang/vendor/typeshed/stubs/braintree/braintree/validation_error.pyi +3 -0
  1609. jaclang/vendor/typeshed/stubs/braintree/braintree/validation_error_collection.pyi +21 -0
  1610. jaclang/vendor/typeshed/stubs/braintree/braintree/venmo_account.pyi +6 -0
  1611. jaclang/vendor/typeshed/stubs/braintree/braintree/venmo_profile_data.pyi +4 -0
  1612. jaclang/vendor/typeshed/stubs/braintree/braintree/version.pyi +3 -0
  1613. jaclang/vendor/typeshed/stubs/braintree/braintree/visa_checkout_card.pyi +14 -0
  1614. jaclang/vendor/typeshed/stubs/braintree/braintree/webhook_notification.pyi +93 -0
  1615. jaclang/vendor/typeshed/stubs/braintree/braintree/webhook_notification_gateway.pyi +12 -0
  1616. jaclang/vendor/typeshed/stubs/braintree/braintree/webhook_testing.pyi +3 -0
  1617. jaclang/vendor/typeshed/stubs/braintree/braintree/webhook_testing_gateway.pyi +7 -0
  1618. jaclang/vendor/typeshed/stubs/cachetools/METADATA.toml +2 -0
  1619. jaclang/vendor/typeshed/stubs/cachetools/cachetools/__init__.pyi +121 -0
  1620. jaclang/vendor/typeshed/stubs/cachetools/cachetools/func.pyi +16 -0
  1621. jaclang/vendor/typeshed/stubs/cachetools/cachetools/keys.pyi +9 -0
  1622. jaclang/vendor/typeshed/stubs/capturer/METADATA.toml +2 -0
  1623. jaclang/vendor/typeshed/stubs/capturer/capturer.pyi +122 -0
  1624. jaclang/vendor/typeshed/stubs/cffi/METADATA.toml +7 -0
  1625. jaclang/vendor/typeshed/stubs/cffi/_cffi_backend.pyi +268 -0
  1626. jaclang/vendor/typeshed/stubs/cffi/cffi/__init__.pyi +15 -0
  1627. jaclang/vendor/typeshed/stubs/cffi/cffi/api.pyi +103 -0
  1628. jaclang/vendor/typeshed/stubs/cffi/cffi/backend_ctypes.pyi +80 -0
  1629. jaclang/vendor/typeshed/stubs/cffi/cffi/cffi_opcode.pyi +92 -0
  1630. jaclang/vendor/typeshed/stubs/cffi/cffi/commontypes.pyi +6 -0
  1631. jaclang/vendor/typeshed/stubs/cffi/cffi/cparser.pyi +12 -0
  1632. jaclang/vendor/typeshed/stubs/cffi/cffi/error.pyi +14 -0
  1633. jaclang/vendor/typeshed/stubs/cffi/cffi/ffiplatform.pyi +12 -0
  1634. jaclang/vendor/typeshed/stubs/cffi/cffi/lock.pyi +1 -0
  1635. jaclang/vendor/typeshed/stubs/cffi/cffi/model.pyi +164 -0
  1636. jaclang/vendor/typeshed/stubs/cffi/cffi/pkgconfig.pyi +5 -0
  1637. jaclang/vendor/typeshed/stubs/cffi/cffi/recompiler.pyi +97 -0
  1638. jaclang/vendor/typeshed/stubs/cffi/cffi/setuptools_ext.pyi +6 -0
  1639. jaclang/vendor/typeshed/stubs/cffi/cffi/vengine_cpy.pyi +13 -0
  1640. jaclang/vendor/typeshed/stubs/cffi/cffi/vengine_gen.pyi +14 -0
  1641. jaclang/vendor/typeshed/stubs/cffi/cffi/verifier.pyi +43 -0
  1642. jaclang/vendor/typeshed/stubs/chevron/METADATA.toml +4 -0
  1643. jaclang/vendor/typeshed/stubs/chevron/chevron/__init__.pyi +5 -0
  1644. jaclang/vendor/typeshed/stubs/chevron/chevron/main.pyi +5 -0
  1645. jaclang/vendor/typeshed/stubs/chevron/chevron/metadata.pyi +1 -0
  1646. jaclang/vendor/typeshed/stubs/chevron/chevron/renderer.pyi +22 -0
  1647. jaclang/vendor/typeshed/stubs/chevron/chevron/tokenizer.pyi +11 -0
  1648. jaclang/vendor/typeshed/stubs/click-default-group/METADATA.toml +4 -0
  1649. jaclang/vendor/typeshed/stubs/click-default-group/click_default_group.pyi +83 -0
  1650. jaclang/vendor/typeshed/stubs/click-log/METADATA.toml +3 -0
  1651. jaclang/vendor/typeshed/stubs/click-log/click_log/__init__.pyi +4 -0
  1652. jaclang/vendor/typeshed/stubs/click-log/click_log/core.pyi +15 -0
  1653. jaclang/vendor/typeshed/stubs/click-log/click_log/options.pyi +11 -0
  1654. jaclang/vendor/typeshed/stubs/click-spinner/METADATA.toml +2 -0
  1655. jaclang/vendor/typeshed/stubs/click-spinner/click_spinner/__init__.pyi +31 -0
  1656. jaclang/vendor/typeshed/stubs/click-spinner/click_spinner/_version.pyi +12 -0
  1657. jaclang/vendor/typeshed/stubs/click-web/METADATA.toml +3 -0
  1658. jaclang/vendor/typeshed/stubs/click-web/click_web/__init__.pyi +16 -0
  1659. jaclang/vendor/typeshed/stubs/click-web/click_web/exceptions.pyi +2 -0
  1660. jaclang/vendor/typeshed/stubs/click-web/click_web/resources/__init__.pyi +0 -0
  1661. jaclang/vendor/typeshed/stubs/click-web/click_web/resources/cmd_exec.pyi +93 -0
  1662. jaclang/vendor/typeshed/stubs/click-web/click_web/resources/cmd_form.pyi +6 -0
  1663. jaclang/vendor/typeshed/stubs/click-web/click_web/resources/index.pyi +9 -0
  1664. jaclang/vendor/typeshed/stubs/click-web/click_web/resources/input_fields.pyi +85 -0
  1665. jaclang/vendor/typeshed/stubs/click-web/click_web/web_click_types.pyi +20 -0
  1666. jaclang/vendor/typeshed/stubs/colorama/METADATA.toml +5 -0
  1667. jaclang/vendor/typeshed/stubs/colorama/colorama/__init__.pyi +9 -0
  1668. jaclang/vendor/typeshed/stubs/colorama/colorama/ansi.pyi +69 -0
  1669. jaclang/vendor/typeshed/stubs/colorama/colorama/ansitowin32.pyi +54 -0
  1670. jaclang/vendor/typeshed/stubs/colorama/colorama/initialise.pyi +23 -0
  1671. jaclang/vendor/typeshed/stubs/colorama/colorama/win32.pyi +35 -0
  1672. jaclang/vendor/typeshed/stubs/colorama/colorama/winterm.pyi +38 -0
  1673. jaclang/vendor/typeshed/stubs/console-menu/METADATA.toml +2 -0
  1674. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/__init__.pyi +17 -0
  1675. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/console_menu.pyi +97 -0
  1676. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/format/__init__.pyi +29 -0
  1677. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/format/menu_borders.pyi +194 -0
  1678. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/format/menu_margins.pyi +18 -0
  1679. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/format/menu_padding.pyi +18 -0
  1680. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/format/menu_style.pyi +29 -0
  1681. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/items/__init__.pyi +8 -0
  1682. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/items/command_item.pyi +18 -0
  1683. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/items/external_item.pyi +5 -0
  1684. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/items/function_item.pyi +25 -0
  1685. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/items/selection_item.pyi +11 -0
  1686. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/items/submenu_item.pyi +22 -0
  1687. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/menu_component.pyi +99 -0
  1688. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/menu_formatter.pyi +55 -0
  1689. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/multiselect_menu.pyi +22 -0
  1690. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/prompt_utils.pyi +47 -0
  1691. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/screen.pyi +17 -0
  1692. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/selection_menu.pyi +31 -0
  1693. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/validators/__init__.pyi +0 -0
  1694. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/validators/base.pyi +11 -0
  1695. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/validators/regex.pyi +7 -0
  1696. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/validators/url.pyi +5 -0
  1697. jaclang/vendor/typeshed/stubs/console-menu/consolemenu/version.pyi +0 -0
  1698. jaclang/vendor/typeshed/stubs/croniter/METADATA.toml +2 -0
  1699. jaclang/vendor/typeshed/stubs/croniter/croniter/__init__.pyi +22 -0
  1700. jaclang/vendor/typeshed/stubs/croniter/croniter/croniter.pyi +356 -0
  1701. jaclang/vendor/typeshed/stubs/dateparser/METADATA.toml +5 -0
  1702. jaclang/vendor/typeshed/stubs/dateparser/dateparser/__init__.pyi +38 -0
  1703. jaclang/vendor/typeshed/stubs/dateparser/dateparser/calendars/__init__.pyi +25 -0
  1704. jaclang/vendor/typeshed/stubs/dateparser/dateparser/calendars/hijri.pyi +5 -0
  1705. jaclang/vendor/typeshed/stubs/dateparser/dateparser/calendars/hijri_parser.pyi +28 -0
  1706. jaclang/vendor/typeshed/stubs/dateparser/dateparser/calendars/jalali.pyi +6 -0
  1707. jaclang/vendor/typeshed/stubs/dateparser/dateparser/calendars/jalali_parser.pyi +18 -0
  1708. jaclang/vendor/typeshed/stubs/dateparser/dateparser/conf.pyi +17 -0
  1709. jaclang/vendor/typeshed/stubs/dateparser/dateparser/custom_language_detection/__init__.pyi +0 -0
  1710. jaclang/vendor/typeshed/stubs/dateparser/dateparser/custom_language_detection/fasttext.pyi +1 -0
  1711. jaclang/vendor/typeshed/stubs/dateparser/dateparser/custom_language_detection/langdetect.pyi +1 -0
  1712. jaclang/vendor/typeshed/stubs/dateparser/dateparser/custom_language_detection/language_mapping.pyi +1 -0
  1713. jaclang/vendor/typeshed/stubs/dateparser/dateparser/data/__init__.pyi +1 -0
  1714. jaclang/vendor/typeshed/stubs/dateparser/dateparser/data/languages_info.pyi +5 -0
  1715. jaclang/vendor/typeshed/stubs/dateparser/dateparser/date.pyi +110 -0
  1716. jaclang/vendor/typeshed/stubs/dateparser/dateparser/date_parser.pyi +14 -0
  1717. jaclang/vendor/typeshed/stubs/dateparser/dateparser/freshness_date_parser.pyi +16 -0
  1718. jaclang/vendor/typeshed/stubs/dateparser/dateparser/languages/__init__.pyi +2 -0
  1719. jaclang/vendor/typeshed/stubs/dateparser/dateparser/languages/dictionary.pyi +28 -0
  1720. jaclang/vendor/typeshed/stubs/dateparser/dateparser/languages/loader.pyi +29 -0
  1721. jaclang/vendor/typeshed/stubs/dateparser/dateparser/languages/locale.pyi +18 -0
  1722. jaclang/vendor/typeshed/stubs/dateparser/dateparser/languages/validation.pyi +10 -0
  1723. jaclang/vendor/typeshed/stubs/dateparser/dateparser/parser.pyi +64 -0
  1724. jaclang/vendor/typeshed/stubs/dateparser/dateparser/search/__init__.pyi +22 -0
  1725. jaclang/vendor/typeshed/stubs/dateparser/dateparser/search/detection.pyi +17 -0
  1726. jaclang/vendor/typeshed/stubs/dateparser/dateparser/search/search.pyi +35 -0
  1727. jaclang/vendor/typeshed/stubs/dateparser/dateparser/search/text_detection.pyi +11 -0
  1728. jaclang/vendor/typeshed/stubs/dateparser/dateparser/timezone_parser.pyi +19 -0
  1729. jaclang/vendor/typeshed/stubs/dateparser/dateparser/timezones.pyi +3 -0
  1730. jaclang/vendor/typeshed/stubs/dateparser/dateparser/utils/__init__.pyi +27 -0
  1731. jaclang/vendor/typeshed/stubs/dateparser/dateparser/utils/strptime.pyi +9 -0
  1732. jaclang/vendor/typeshed/stubs/dateparser/dateparser_data/__init__.pyi +0 -0
  1733. jaclang/vendor/typeshed/stubs/dateparser/dateparser_data/settings.pyi +4 -0
  1734. jaclang/vendor/typeshed/stubs/decorator/METADATA.toml +2 -0
  1735. jaclang/vendor/typeshed/stubs/decorator/decorator.pyi +73 -0
  1736. jaclang/vendor/typeshed/stubs/defusedxml/METADATA.toml +7 -0
  1737. jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/ElementTree.pyi +45 -0
  1738. jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/__init__.pyi +9 -0
  1739. jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/cElementTree.pyi +13 -0
  1740. jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/common.pyi +29 -0
  1741. jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/expatbuilder.pyi +34 -0
  1742. jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/expatreader.pyi +10 -0
  1743. jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/lxml.pyi +47 -0
  1744. jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/minidom.pyi +15 -0
  1745. jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/pulldom.pyi +21 -0
  1746. jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/sax.pyi +24 -0
  1747. jaclang/vendor/typeshed/stubs/defusedxml/defusedxml/xmlrpc.pyi +25 -0
  1748. jaclang/vendor/typeshed/stubs/dirhash/METADATA.toml +2 -0
  1749. jaclang/vendor/typeshed/stubs/dirhash/dirhash/__init__.pyi +93 -0
  1750. jaclang/vendor/typeshed/stubs/dirhash/dirhash/cli.pyi +5 -0
  1751. jaclang/vendor/typeshed/stubs/django-import-export/METADATA.toml +6 -0
  1752. jaclang/vendor/typeshed/stubs/django-import-export/import_export/__init__.pyi +1 -0
  1753. jaclang/vendor/typeshed/stubs/django-import-export/import_export/admin.pyi +109 -0
  1754. jaclang/vendor/typeshed/stubs/django-import-export/import_export/command_utils.pyi +12 -0
  1755. jaclang/vendor/typeshed/stubs/django-import-export/import_export/declarative.pyi +11 -0
  1756. jaclang/vendor/typeshed/stubs/django-import-export/import_export/exceptions.pyi +11 -0
  1757. jaclang/vendor/typeshed/stubs/django-import-export/import_export/fields.pyi +34 -0
  1758. jaclang/vendor/typeshed/stubs/django-import-export/import_export/formats/__init__.pyi +0 -0
  1759. jaclang/vendor/typeshed/stubs/django-import-export/import_export/formats/base_formats.pyi +60 -0
  1760. jaclang/vendor/typeshed/stubs/django-import-export/import_export/forms.pyi +38 -0
  1761. jaclang/vendor/typeshed/stubs/django-import-export/import_export/instance_loaders.pyi +23 -0
  1762. jaclang/vendor/typeshed/stubs/django-import-export/import_export/mixins.pyi +65 -0
  1763. jaclang/vendor/typeshed/stubs/django-import-export/import_export/options.pyi +32 -0
  1764. jaclang/vendor/typeshed/stubs/django-import-export/import_export/resources.pyi +168 -0
  1765. jaclang/vendor/typeshed/stubs/django-import-export/import_export/results.pyi +89 -0
  1766. jaclang/vendor/typeshed/stubs/django-import-export/import_export/signals.pyi +4 -0
  1767. jaclang/vendor/typeshed/stubs/django-import-export/import_export/templatetags/__init__.pyi +0 -0
  1768. jaclang/vendor/typeshed/stubs/django-import-export/import_export/templatetags/import_export_tags.pyi +8 -0
  1769. jaclang/vendor/typeshed/stubs/django-import-export/import_export/tmp_storages.pyi +34 -0
  1770. jaclang/vendor/typeshed/stubs/django-import-export/import_export/utils.pyi +19 -0
  1771. jaclang/vendor/typeshed/stubs/django-import-export/import_export/widgets.pyi +74 -0
  1772. jaclang/vendor/typeshed/stubs/django-import-export/management/__init__.pyi +0 -0
  1773. jaclang/vendor/typeshed/stubs/django-import-export/management/commands/__init__.pyi +0 -0
  1774. jaclang/vendor/typeshed/stubs/django-import-export/management/commands/export.pyi +3 -0
  1775. jaclang/vendor/typeshed/stubs/django-import-export/management/commands/import.pyi +3 -0
  1776. jaclang/vendor/typeshed/stubs/docker/METADATA.toml +3 -0
  1777. jaclang/vendor/typeshed/stubs/docker/docker/__init__.pyi +9 -0
  1778. jaclang/vendor/typeshed/stubs/docker/docker/_types.pyi +25 -0
  1779. jaclang/vendor/typeshed/stubs/docker/docker/api/__init__.pyi +1 -0
  1780. jaclang/vendor/typeshed/stubs/docker/docker/api/build.pyi +55 -0
  1781. jaclang/vendor/typeshed/stubs/docker/docker/api/client.pyi +55 -0
  1782. jaclang/vendor/typeshed/stubs/docker/docker/api/config.pyi +5 -0
  1783. jaclang/vendor/typeshed/stubs/docker/docker/api/container.pyi +170 -0
  1784. jaclang/vendor/typeshed/stubs/docker/docker/api/daemon.pyi +27 -0
  1785. jaclang/vendor/typeshed/stubs/docker/docker/api/exec_api.pyi +20 -0
  1786. jaclang/vendor/typeshed/stubs/docker/docker/api/image.pyi +43 -0
  1787. jaclang/vendor/typeshed/stubs/docker/docker/api/network.pyi +51 -0
  1788. jaclang/vendor/typeshed/stubs/docker/docker/api/plugin.pyi +12 -0
  1789. jaclang/vendor/typeshed/stubs/docker/docker/api/secret.pyi +12 -0
  1790. jaclang/vendor/typeshed/stubs/docker/docker/api/service.pyi +45 -0
  1791. jaclang/vendor/typeshed/stubs/docker/docker/api/swarm.pyi +36 -0
  1792. jaclang/vendor/typeshed/stubs/docker/docker/api/volume.pyi +14 -0
  1793. jaclang/vendor/typeshed/stubs/docker/docker/auth.pyi +48 -0
  1794. jaclang/vendor/typeshed/stubs/docker/docker/client.pyi +63 -0
  1795. jaclang/vendor/typeshed/stubs/docker/docker/constants.pyi +22 -0
  1796. jaclang/vendor/typeshed/stubs/docker/docker/context/__init__.pyi +2 -0
  1797. jaclang/vendor/typeshed/stubs/docker/docker/context/api.pyi +29 -0
  1798. jaclang/vendor/typeshed/stubs/docker/docker/context/config.pyi +10 -0
  1799. jaclang/vendor/typeshed/stubs/docker/docker/context/context.pyi +76 -0
  1800. jaclang/vendor/typeshed/stubs/docker/docker/credentials/__init__.pyi +8 -0
  1801. jaclang/vendor/typeshed/stubs/docker/docker/credentials/constants.pyi +4 -0
  1802. jaclang/vendor/typeshed/stubs/docker/docker/credentials/errors.pyi +7 -0
  1803. jaclang/vendor/typeshed/stubs/docker/docker/credentials/store.pyi +11 -0
  1804. jaclang/vendor/typeshed/stubs/docker/docker/credentials/utils.pyi +1 -0
  1805. jaclang/vendor/typeshed/stubs/docker/docker/errors.pyi +71 -0
  1806. jaclang/vendor/typeshed/stubs/docker/docker/models/__init__.pyi +0 -0
  1807. jaclang/vendor/typeshed/stubs/docker/docker/models/configs.pyi +13 -0
  1808. jaclang/vendor/typeshed/stubs/docker/docker/models/containers.pyi +415 -0
  1809. jaclang/vendor/typeshed/stubs/docker/docker/models/images.pyi +113 -0
  1810. jaclang/vendor/typeshed/stubs/docker/docker/models/networks.pyi +37 -0
  1811. jaclang/vendor/typeshed/stubs/docker/docker/models/nodes.pyi +13 -0
  1812. jaclang/vendor/typeshed/stubs/docker/docker/models/plugins.pyi +25 -0
  1813. jaclang/vendor/typeshed/stubs/docker/docker/models/resource.pyi +32 -0
  1814. jaclang/vendor/typeshed/stubs/docker/docker/models/secrets.pyi +13 -0
  1815. jaclang/vendor/typeshed/stubs/docker/docker/models/services.pyi +27 -0
  1816. jaclang/vendor/typeshed/stubs/docker/docker/models/swarm.pyi +33 -0
  1817. jaclang/vendor/typeshed/stubs/docker/docker/models/volumes.pyi +16 -0
  1818. jaclang/vendor/typeshed/stubs/docker/docker/tls.pyi +10 -0
  1819. jaclang/vendor/typeshed/stubs/docker/docker/transport/__init__.pyi +4 -0
  1820. jaclang/vendor/typeshed/stubs/docker/docker/transport/basehttpadapter.pyi +4 -0
  1821. jaclang/vendor/typeshed/stubs/docker/docker/transport/npipeconn.pyi +29 -0
  1822. jaclang/vendor/typeshed/stubs/docker/docker/transport/npipesocket.pyi +49 -0
  1823. jaclang/vendor/typeshed/stubs/docker/docker/transport/sshconn.pyi +47 -0
  1824. jaclang/vendor/typeshed/stubs/docker/docker/transport/unixconn.pyi +31 -0
  1825. jaclang/vendor/typeshed/stubs/docker/docker/types/__init__.pyi +35 -0
  1826. jaclang/vendor/typeshed/stubs/docker/docker/types/base.pyi +5 -0
  1827. jaclang/vendor/typeshed/stubs/docker/docker/types/containers.pyi +174 -0
  1828. jaclang/vendor/typeshed/stubs/docker/docker/types/daemon.pyi +12 -0
  1829. jaclang/vendor/typeshed/stubs/docker/docker/types/healthcheck.pyi +24 -0
  1830. jaclang/vendor/typeshed/stubs/docker/docker/types/networks.pyi +35 -0
  1831. jaclang/vendor/typeshed/stubs/docker/docker/types/services.pyi +188 -0
  1832. jaclang/vendor/typeshed/stubs/docker/docker/types/swarm.pyi +35 -0
  1833. jaclang/vendor/typeshed/stubs/docker/docker/utils/__init__.pyi +32 -0
  1834. jaclang/vendor/typeshed/stubs/docker/docker/utils/build.pyi +39 -0
  1835. jaclang/vendor/typeshed/stubs/docker/docker/utils/config.pyi +12 -0
  1836. jaclang/vendor/typeshed/stubs/docker/docker/utils/decorators.pyi +6 -0
  1837. jaclang/vendor/typeshed/stubs/docker/docker/utils/fnmatch.pyi +5 -0
  1838. jaclang/vendor/typeshed/stubs/docker/docker/utils/json_stream.pyi +15 -0
  1839. jaclang/vendor/typeshed/stubs/docker/docker/utils/ports.pyi +11 -0
  1840. jaclang/vendor/typeshed/stubs/docker/docker/utils/proxy.pyi +33 -0
  1841. jaclang/vendor/typeshed/stubs/docker/docker/utils/socket.pyi +29 -0
  1842. jaclang/vendor/typeshed/stubs/docker/docker/utils/utils.pyi +72 -0
  1843. jaclang/vendor/typeshed/stubs/docker/docker/version.pyi +1 -0
  1844. jaclang/vendor/typeshed/stubs/dockerfile-parse/METADATA.toml +2 -0
  1845. jaclang/vendor/typeshed/stubs/dockerfile-parse/dockerfile_parse/__init__.pyi +3 -0
  1846. jaclang/vendor/typeshed/stubs/dockerfile-parse/dockerfile_parse/constants.pyi +2 -0
  1847. jaclang/vendor/typeshed/stubs/dockerfile-parse/dockerfile_parse/parser.pyi +69 -0
  1848. jaclang/vendor/typeshed/stubs/dockerfile-parse/dockerfile_parse/util.pyi +52 -0
  1849. jaclang/vendor/typeshed/stubs/docutils/METADATA.toml +6 -0
  1850. jaclang/vendor/typeshed/stubs/docutils/docutils/__init__.pyi +44 -0
  1851. jaclang/vendor/typeshed/stubs/docutils/docutils/core.pyi +206 -0
  1852. jaclang/vendor/typeshed/stubs/docutils/docutils/examples.pyi +1 -0
  1853. jaclang/vendor/typeshed/stubs/docutils/docutils/frontend.pyi +68 -0
  1854. jaclang/vendor/typeshed/stubs/docutils/docutils/io.pyi +100 -0
  1855. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/__init__.pyi +23 -0
  1856. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/af.pyi +6 -0
  1857. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/ar.pyi +6 -0
  1858. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/ca.pyi +6 -0
  1859. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/cs.pyi +6 -0
  1860. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/da.pyi +6 -0
  1861. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/de.pyi +6 -0
  1862. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/en.pyi +6 -0
  1863. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/eo.pyi +6 -0
  1864. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/es.pyi +6 -0
  1865. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/fa.pyi +6 -0
  1866. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/fi.pyi +6 -0
  1867. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/fr.pyi +6 -0
  1868. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/gl.pyi +6 -0
  1869. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/he.pyi +6 -0
  1870. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/it.pyi +6 -0
  1871. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/ja.pyi +6 -0
  1872. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/ka.pyi +6 -0
  1873. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/ko.pyi +6 -0
  1874. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/lt.pyi +6 -0
  1875. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/lv.pyi +6 -0
  1876. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/nl.pyi +6 -0
  1877. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/pl.pyi +6 -0
  1878. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/pt_br.pyi +6 -0
  1879. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/ru.pyi +6 -0
  1880. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/sk.pyi +6 -0
  1881. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/sv.pyi +6 -0
  1882. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/uk.pyi +6 -0
  1883. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/zh_cn.pyi +6 -0
  1884. jaclang/vendor/typeshed/stubs/docutils/docutils/languages/zh_tw.pyi +6 -0
  1885. jaclang/vendor/typeshed/stubs/docutils/docutils/nodes.pyi +692 -0
  1886. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/__init__.pyi +19 -0
  1887. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/null.pyi +7 -0
  1888. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/recommonmark_wrapper.pyi +50 -0
  1889. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/__init__.pyi +71 -0
  1890. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/directives/__init__.pyi +42 -0
  1891. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/directives/admonitions.pyi +39 -0
  1892. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/directives/body.pyi +64 -0
  1893. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/directives/html.pyi +5 -0
  1894. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/directives/images.pyi +18 -0
  1895. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/directives/misc.pyi +37 -0
  1896. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/directives/parts.pyi +14 -0
  1897. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/directives/references.pyi +7 -0
  1898. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/directives/tables.pyi +62 -0
  1899. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/__init__.pyi +20 -0
  1900. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/af.pyi +5 -0
  1901. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/ar.pyi +5 -0
  1902. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/ca.pyi +5 -0
  1903. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/cs.pyi +5 -0
  1904. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/da.pyi +5 -0
  1905. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/de.pyi +5 -0
  1906. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/en.pyi +5 -0
  1907. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/eo.pyi +5 -0
  1908. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/es.pyi +5 -0
  1909. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/fa.pyi +5 -0
  1910. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/fi.pyi +5 -0
  1911. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/fr.pyi +5 -0
  1912. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/gl.pyi +5 -0
  1913. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/he.pyi +5 -0
  1914. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/it.pyi +5 -0
  1915. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/ja.pyi +5 -0
  1916. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/ka.pyi +5 -0
  1917. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/ko.pyi +5 -0
  1918. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/lt.pyi +5 -0
  1919. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/lv.pyi +5 -0
  1920. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/nl.pyi +5 -0
  1921. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/pl.pyi +5 -0
  1922. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/pt_br.pyi +5 -0
  1923. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/ru.pyi +5 -0
  1924. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/sk.pyi +5 -0
  1925. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/sv.pyi +5 -0
  1926. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/uk.pyi +5 -0
  1927. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/zh_cn.pyi +5 -0
  1928. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/languages/zh_tw.pyi +5 -0
  1929. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/roles.pyi +132 -0
  1930. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/states.pyi +393 -0
  1931. jaclang/vendor/typeshed/stubs/docutils/docutils/parsers/rst/tableparser.pyi +65 -0
  1932. jaclang/vendor/typeshed/stubs/docutils/docutils/readers/__init__.pyi +28 -0
  1933. jaclang/vendor/typeshed/stubs/docutils/docutils/readers/doctree.pyi +7 -0
  1934. jaclang/vendor/typeshed/stubs/docutils/docutils/readers/pep.pyi +1 -0
  1935. jaclang/vendor/typeshed/stubs/docutils/docutils/readers/standalone.pyi +1 -0
  1936. jaclang/vendor/typeshed/stubs/docutils/docutils/statemachine.pyi +200 -0
  1937. jaclang/vendor/typeshed/stubs/docutils/docutils/transforms/__init__.pyi +14 -0
  1938. jaclang/vendor/typeshed/stubs/docutils/docutils/utils/__init__.pyi +140 -0
  1939. jaclang/vendor/typeshed/stubs/docutils/docutils/utils/code_analyzer.pyi +28 -0
  1940. jaclang/vendor/typeshed/stubs/docutils/docutils/utils/error_reporting.pyi +41 -0
  1941. jaclang/vendor/typeshed/stubs/docutils/docutils/utils/math/__init__.pyi +11 -0
  1942. jaclang/vendor/typeshed/stubs/docutils/docutils/utils/math/latex2mathml.pyi +44 -0
  1943. jaclang/vendor/typeshed/stubs/docutils/docutils/utils/math/math2html.pyi +635 -0
  1944. jaclang/vendor/typeshed/stubs/docutils/docutils/utils/math/mathalphabet2unichar.pyi +13 -0
  1945. jaclang/vendor/typeshed/stubs/docutils/docutils/utils/math/mathml_elements.pyi +82 -0
  1946. jaclang/vendor/typeshed/stubs/docutils/docutils/utils/math/tex2mathml_extern.pyi +8 -0
  1947. jaclang/vendor/typeshed/stubs/docutils/docutils/utils/math/tex2unichar.pyi +14 -0
  1948. jaclang/vendor/typeshed/stubs/docutils/docutils/utils/math/unichar2tex.pyi +1 -0
  1949. jaclang/vendor/typeshed/stubs/docutils/docutils/utils/punctuation_chars.pyi +9 -0
  1950. jaclang/vendor/typeshed/stubs/docutils/docutils/utils/roman.pyi +23 -0
  1951. jaclang/vendor/typeshed/stubs/docutils/docutils/utils/smartquotes.pyi +44 -0
  1952. jaclang/vendor/typeshed/stubs/docutils/docutils/utils/urischemes.pyi +1 -0
  1953. jaclang/vendor/typeshed/stubs/docutils/docutils/writers/__init__.pyi +80 -0
  1954. jaclang/vendor/typeshed/stubs/docutils/docutils/writers/docutils_xml.pyi +1 -0
  1955. jaclang/vendor/typeshed/stubs/docutils/docutils/writers/html4css1.pyi +1 -0
  1956. jaclang/vendor/typeshed/stubs/docutils/docutils/writers/html5_polyglot.pyi +1 -0
  1957. jaclang/vendor/typeshed/stubs/docutils/docutils/writers/latex2e.pyi +19 -0
  1958. jaclang/vendor/typeshed/stubs/docutils/docutils/writers/manpage.pyi +19 -0
  1959. jaclang/vendor/typeshed/stubs/docutils/docutils/writers/null.pyi +1 -0
  1960. jaclang/vendor/typeshed/stubs/docutils/docutils/writers/odf_odt.pyi +1 -0
  1961. jaclang/vendor/typeshed/stubs/docutils/docutils/writers/pep_html.pyi +1 -0
  1962. jaclang/vendor/typeshed/stubs/docutils/docutils/writers/pseudoxml.pyi +1 -0
  1963. jaclang/vendor/typeshed/stubs/docutils/docutils/writers/s5_html.pyi +1 -0
  1964. jaclang/vendor/typeshed/stubs/docutils/docutils/writers/xetex.pyi +1 -0
  1965. jaclang/vendor/typeshed/stubs/editdistance/METADATA.toml +2 -0
  1966. jaclang/vendor/typeshed/stubs/editdistance/editdistance/__init__.pyi +8 -0
  1967. jaclang/vendor/typeshed/stubs/entrypoints/METADATA.toml +2 -0
  1968. jaclang/vendor/typeshed/stubs/entrypoints/entrypoints.pyi +48 -0
  1969. jaclang/vendor/typeshed/stubs/fanstatic/METADATA.toml +3 -0
  1970. jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/__init__.pyi +43 -0
  1971. jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/checksum.pyi +10 -0
  1972. jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/compiler.pyi +124 -0
  1973. jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/config.pyi +10 -0
  1974. jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/core.pyi +237 -0
  1975. jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/inclusion.pyi +22 -0
  1976. jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/injector.pyi +57 -0
  1977. jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/publisher.pyi +48 -0
  1978. jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/registry.pyi +50 -0
  1979. jaclang/vendor/typeshed/stubs/fanstatic/fanstatic/wsgi.pyi +22 -0
  1980. jaclang/vendor/typeshed/stubs/first/METADATA.toml +2 -0
  1981. jaclang/vendor/typeshed/stubs/first/first.pyi +19 -0
  1982. jaclang/vendor/typeshed/stubs/flake8/METADATA.toml +3 -0
  1983. jaclang/vendor/typeshed/stubs/flake8/flake8/__init__.pyi +8 -0
  1984. jaclang/vendor/typeshed/stubs/flake8/flake8/_compat.pyi +5 -0
  1985. jaclang/vendor/typeshed/stubs/flake8/flake8/api/__init__.pyi +0 -0
  1986. jaclang/vendor/typeshed/stubs/flake8/flake8/api/legacy.pyi +27 -0
  1987. jaclang/vendor/typeshed/stubs/flake8/flake8/checker.pyi +56 -0
  1988. jaclang/vendor/typeshed/stubs/flake8/flake8/defaults.pyi +12 -0
  1989. jaclang/vendor/typeshed/stubs/flake8/flake8/discover_files.pyi +8 -0
  1990. jaclang/vendor/typeshed/stubs/flake8/flake8/exceptions.pyi +24 -0
  1991. jaclang/vendor/typeshed/stubs/flake8/flake8/formatting/__init__.pyi +0 -0
  1992. jaclang/vendor/typeshed/stubs/flake8/flake8/formatting/_windows_color.pyi +1 -0
  1993. jaclang/vendor/typeshed/stubs/flake8/flake8/formatting/base.pyi +25 -0
  1994. jaclang/vendor/typeshed/stubs/flake8/flake8/formatting/default.pyi +29 -0
  1995. jaclang/vendor/typeshed/stubs/flake8/flake8/main/__init__.pyi +0 -0
  1996. jaclang/vendor/typeshed/stubs/flake8/flake8/main/application.pyi +29 -0
  1997. jaclang/vendor/typeshed/stubs/flake8/flake8/main/cli.pyi +3 -0
  1998. jaclang/vendor/typeshed/stubs/flake8/flake8/main/debug.pyi +5 -0
  1999. jaclang/vendor/typeshed/stubs/flake8/flake8/main/options.pyi +12 -0
  2000. jaclang/vendor/typeshed/stubs/flake8/flake8/options/__init__.pyi +0 -0
  2001. jaclang/vendor/typeshed/stubs/flake8/flake8/options/aggregator.pyi +12 -0
  2002. jaclang/vendor/typeshed/stubs/flake8/flake8/options/config.pyi +10 -0
  2003. jaclang/vendor/typeshed/stubs/flake8/flake8/options/manager.pyi +71 -0
  2004. jaclang/vendor/typeshed/stubs/flake8/flake8/options/parse_args.pyi +6 -0
  2005. jaclang/vendor/typeshed/stubs/flake8/flake8/plugins/__init__.pyi +0 -0
  2006. jaclang/vendor/typeshed/stubs/flake8/flake8/plugins/finder.pyi +48 -0
  2007. jaclang/vendor/typeshed/stubs/flake8/flake8/plugins/pycodestyle.pyi +32 -0
  2008. jaclang/vendor/typeshed/stubs/flake8/flake8/plugins/pyflakes.pyi +21 -0
  2009. jaclang/vendor/typeshed/stubs/flake8/flake8/plugins/reporter.pyi +9 -0
  2010. jaclang/vendor/typeshed/stubs/flake8/flake8/processor.pyi +72 -0
  2011. jaclang/vendor/typeshed/stubs/flake8/flake8/statistics.pyi +27 -0
  2012. jaclang/vendor/typeshed/stubs/flake8/flake8/style_guide.pyi +70 -0
  2013. jaclang/vendor/typeshed/stubs/flake8/flake8/utils.pyi +25 -0
  2014. jaclang/vendor/typeshed/stubs/flake8/flake8/violation.pyi +13 -0
  2015. jaclang/vendor/typeshed/stubs/flake8-bugbear/METADATA.toml +2 -0
  2016. jaclang/vendor/typeshed/stubs/flake8-bugbear/bugbear.pyi +296 -0
  2017. jaclang/vendor/typeshed/stubs/flake8-builtins/METADATA.toml +3 -0
  2018. jaclang/vendor/typeshed/stubs/flake8-builtins/flake8_builtins.pyi +43 -0
  2019. jaclang/vendor/typeshed/stubs/flake8-docstrings/METADATA.toml +3 -0
  2020. jaclang/vendor/typeshed/stubs/flake8-docstrings/flake8_docstrings.pyi +24 -0
  2021. jaclang/vendor/typeshed/stubs/flake8-rst-docstrings/METADATA.toml +2 -0
  2022. jaclang/vendor/typeshed/stubs/flake8-rst-docstrings/flake8_rst_docstrings.pyi +34 -0
  2023. jaclang/vendor/typeshed/stubs/flake8-simplify/METADATA.toml +6 -0
  2024. jaclang/vendor/typeshed/stubs/flake8-simplify/flake8_simplify/__init__.pyi +9 -0
  2025. jaclang/vendor/typeshed/stubs/flake8-typing-imports/METADATA.toml +6 -0
  2026. jaclang/vendor/typeshed/stubs/flake8-typing-imports/flake8_typing_imports.pyi +16 -0
  2027. jaclang/vendor/typeshed/stubs/fpdf2/METADATA.toml +6 -0
  2028. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/__init__.pyi +36 -0
  2029. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/_fonttools_shims.pyi +55 -0
  2030. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/actions.pyi +36 -0
  2031. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/annotations.pyi +82 -0
  2032. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/bidi.pyi +64 -0
  2033. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/deprecation.pyi +11 -0
  2034. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/drawing.pyi +415 -0
  2035. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/encryption.pyi +109 -0
  2036. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/enums.pyi +340 -0
  2037. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/errors.pyi +12 -0
  2038. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/fonts.pyi +157 -0
  2039. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/fpdf.pyi +720 -0
  2040. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/graphics_state.pyi +128 -0
  2041. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/html.pyi +95 -0
  2042. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/image_datastructures.pyi +57 -0
  2043. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/image_parsing.pyi +59 -0
  2044. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/line_break.pyi +170 -0
  2045. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/linearization.pyi +54 -0
  2046. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/outline.pyi +58 -0
  2047. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/output.pyi +235 -0
  2048. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/pattern.pyi +104 -0
  2049. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/prefs.pyi +74 -0
  2050. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/recorder.pyi +13 -0
  2051. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/sign.pyi +16 -0
  2052. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/structure_tree.pyi +48 -0
  2053. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/svg.pyi +137 -0
  2054. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/syntax.pyi +80 -0
  2055. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/table.pyi +139 -0
  2056. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/template.pyi +43 -0
  2057. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/text_region.pyi +174 -0
  2058. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/transitions.pyi +59 -0
  2059. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/unicode_script.pyi +172 -0
  2060. jaclang/vendor/typeshed/stubs/fpdf2/fpdf/util.pyi +39 -0
  2061. jaclang/vendor/typeshed/stubs/gdb/METADATA.toml +15 -0
  2062. jaclang/vendor/typeshed/stubs/gdb/gdb/FrameDecorator.pyi +24 -0
  2063. jaclang/vendor/typeshed/stubs/gdb/gdb/FrameIterator.pyi +8 -0
  2064. jaclang/vendor/typeshed/stubs/gdb/gdb/__init__.pyi +1002 -0
  2065. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/__init__.pyi +13 -0
  2066. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/breakpoint.pyi +1 -0
  2067. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/bt.pyi +1 -0
  2068. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/disassemble.pyi +1 -0
  2069. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/evaluate.pyi +1 -0
  2070. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/events.pyi +1 -0
  2071. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/frames.pyi +1 -0
  2072. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/io.pyi +1 -0
  2073. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/launch.pyi +1 -0
  2074. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/locations.pyi +1 -0
  2075. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/memory.pyi +1 -0
  2076. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/modules.pyi +1 -0
  2077. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/next.pyi +1 -0
  2078. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/pause.pyi +1 -0
  2079. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/scopes.pyi +1 -0
  2080. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/server.pyi +1 -0
  2081. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/sources.pyi +1 -0
  2082. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/startup.pyi +1 -0
  2083. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/state.pyi +1 -0
  2084. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/threads.pyi +1 -0
  2085. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/typecheck.pyi +1 -0
  2086. jaclang/vendor/typeshed/stubs/gdb/gdb/dap/varref.pyi +1 -0
  2087. jaclang/vendor/typeshed/stubs/gdb/gdb/disassembler.pyi +57 -0
  2088. jaclang/vendor/typeshed/stubs/gdb/gdb/events.pyi +24 -0
  2089. jaclang/vendor/typeshed/stubs/gdb/gdb/missing_debug.pyi +12 -0
  2090. jaclang/vendor/typeshed/stubs/gdb/gdb/printing.pyi +56 -0
  2091. jaclang/vendor/typeshed/stubs/gdb/gdb/prompt.pyi +1 -0
  2092. jaclang/vendor/typeshed/stubs/gdb/gdb/types.pyi +28 -0
  2093. jaclang/vendor/typeshed/stubs/gdb/gdb/unwinder.pyi +20 -0
  2094. jaclang/vendor/typeshed/stubs/gdb/gdb/xmethod.pyi +45 -0
  2095. jaclang/vendor/typeshed/stubs/geopandas/METADATA.toml +9 -0
  2096. jaclang/vendor/typeshed/stubs/geopandas/geopandas/__init__.pyi +20 -0
  2097. jaclang/vendor/typeshed/stubs/geopandas/geopandas/_config.pyi +21 -0
  2098. jaclang/vendor/typeshed/stubs/geopandas/geopandas/_decorator.pyi +21 -0
  2099. jaclang/vendor/typeshed/stubs/geopandas/geopandas/_exports.pyi +21 -0
  2100. jaclang/vendor/typeshed/stubs/geopandas/geopandas/array.pyi +244 -0
  2101. jaclang/vendor/typeshed/stubs/geopandas/geopandas/base.pyi +228 -0
  2102. jaclang/vendor/typeshed/stubs/geopandas/geopandas/explore.pyi +65 -0
  2103. jaclang/vendor/typeshed/stubs/geopandas/geopandas/geodataframe.pyi +357 -0
  2104. jaclang/vendor/typeshed/stubs/geopandas/geopandas/geoseries.pyi +215 -0
  2105. jaclang/vendor/typeshed/stubs/geopandas/geopandas/io/__init__.pyi +1 -0
  2106. jaclang/vendor/typeshed/stubs/geopandas/geopandas/io/_geoarrow.pyi +48 -0
  2107. jaclang/vendor/typeshed/stubs/geopandas/geopandas/io/arrow.pyi +22 -0
  2108. jaclang/vendor/typeshed/stubs/geopandas/geopandas/io/file.pyi +47 -0
  2109. jaclang/vendor/typeshed/stubs/geopandas/geopandas/io/sql.pyi +114 -0
  2110. jaclang/vendor/typeshed/stubs/geopandas/geopandas/plotting.pyi +259 -0
  2111. jaclang/vendor/typeshed/stubs/geopandas/geopandas/sindex.pyi +79 -0
  2112. jaclang/vendor/typeshed/stubs/geopandas/geopandas/testing.pyi +33 -0
  2113. jaclang/vendor/typeshed/stubs/geopandas/geopandas/tools/__init__.pyi +7 -0
  2114. jaclang/vendor/typeshed/stubs/geopandas/geopandas/tools/_show_versions.pyi +1 -0
  2115. jaclang/vendor/typeshed/stubs/geopandas/geopandas/tools/clip.pyi +9 -0
  2116. jaclang/vendor/typeshed/stubs/geopandas/geopandas/tools/geocoding.pyi +18 -0
  2117. jaclang/vendor/typeshed/stubs/geopandas/geopandas/tools/hilbert_curve.pyi +1 -0
  2118. jaclang/vendor/typeshed/stubs/geopandas/geopandas/tools/overlay.pyi +5 -0
  2119. jaclang/vendor/typeshed/stubs/geopandas/geopandas/tools/sjoin.pyi +26 -0
  2120. jaclang/vendor/typeshed/stubs/geopandas/geopandas/tools/util.pyi +12 -0
  2121. jaclang/vendor/typeshed/stubs/gevent/METADATA.toml +12 -0
  2122. jaclang/vendor/typeshed/stubs/gevent/gevent/__init__.pyi +76 -0
  2123. jaclang/vendor/typeshed/stubs/gevent/gevent/_abstract_linkable.pyi +15 -0
  2124. jaclang/vendor/typeshed/stubs/gevent/gevent/_config.pyi +201 -0
  2125. jaclang/vendor/typeshed/stubs/gevent/gevent/_ffi/__init__.pyi +0 -0
  2126. jaclang/vendor/typeshed/stubs/gevent/gevent/_ffi/loop.pyi +86 -0
  2127. jaclang/vendor/typeshed/stubs/gevent/gevent/_ffi/watcher.pyi +93 -0
  2128. jaclang/vendor/typeshed/stubs/gevent/gevent/_fileobjectcommon.pyi +369 -0
  2129. jaclang/vendor/typeshed/stubs/gevent/gevent/_greenlet_primitives.pyi +18 -0
  2130. jaclang/vendor/typeshed/stubs/gevent/gevent/_hub_local.pyi +15 -0
  2131. jaclang/vendor/typeshed/stubs/gevent/gevent/_hub_primitives.pyi +70 -0
  2132. jaclang/vendor/typeshed/stubs/gevent/gevent/_ident.pyi +14 -0
  2133. jaclang/vendor/typeshed/stubs/gevent/gevent/_imap.pyi +26 -0
  2134. jaclang/vendor/typeshed/stubs/gevent/gevent/_monitor.pyi +50 -0
  2135. jaclang/vendor/typeshed/stubs/gevent/gevent/_threading.pyi +21 -0
  2136. jaclang/vendor/typeshed/stubs/gevent/gevent/_types.pyi +148 -0
  2137. jaclang/vendor/typeshed/stubs/gevent/gevent/_util.pyi +54 -0
  2138. jaclang/vendor/typeshed/stubs/gevent/gevent/_waiter.pyi +45 -0
  2139. jaclang/vendor/typeshed/stubs/gevent/gevent/ares.pyi +3 -0
  2140. jaclang/vendor/typeshed/stubs/gevent/gevent/backdoor.pyi +47 -0
  2141. jaclang/vendor/typeshed/stubs/gevent/gevent/baseserver.pyi +67 -0
  2142. jaclang/vendor/typeshed/stubs/gevent/gevent/event.pyi +65 -0
  2143. jaclang/vendor/typeshed/stubs/gevent/gevent/events.pyi +197 -0
  2144. jaclang/vendor/typeshed/stubs/gevent/gevent/exceptions.pyi +17 -0
  2145. jaclang/vendor/typeshed/stubs/gevent/gevent/fileobject.pyi +157 -0
  2146. jaclang/vendor/typeshed/stubs/gevent/gevent/greenlet.pyi +100 -0
  2147. jaclang/vendor/typeshed/stubs/gevent/gevent/hub.pyi +112 -0
  2148. jaclang/vendor/typeshed/stubs/gevent/gevent/libev/__init__.pyi +1 -0
  2149. jaclang/vendor/typeshed/stubs/gevent/gevent/libev/corecext.pyi +102 -0
  2150. jaclang/vendor/typeshed/stubs/gevent/gevent/libev/corecffi.pyi +46 -0
  2151. jaclang/vendor/typeshed/stubs/gevent/gevent/libev/watcher.pyi +65 -0
  2152. jaclang/vendor/typeshed/stubs/gevent/gevent/libuv/__init__.pyi +1 -0
  2153. jaclang/vendor/typeshed/stubs/gevent/gevent/libuv/loop.pyi +44 -0
  2154. jaclang/vendor/typeshed/stubs/gevent/gevent/libuv/watcher.pyi +34 -0
  2155. jaclang/vendor/typeshed/stubs/gevent/gevent/local.pyi +11 -0
  2156. jaclang/vendor/typeshed/stubs/gevent/gevent/lock.pyi +41 -0
  2157. jaclang/vendor/typeshed/stubs/gevent/gevent/monkey/__init__.pyi +68 -0
  2158. jaclang/vendor/typeshed/stubs/gevent/gevent/monkey/api.pyi +7 -0
  2159. jaclang/vendor/typeshed/stubs/gevent/gevent/os.pyi +35 -0
  2160. jaclang/vendor/typeshed/stubs/gevent/gevent/pool.pyi +205 -0
  2161. jaclang/vendor/typeshed/stubs/gevent/gevent/pywsgi.pyi +179 -0
  2162. jaclang/vendor/typeshed/stubs/gevent/gevent/queue.pyi +103 -0
  2163. jaclang/vendor/typeshed/stubs/gevent/gevent/resolver/__init__.pyi +23 -0
  2164. jaclang/vendor/typeshed/stubs/gevent/gevent/resolver/ares.pyi +40 -0
  2165. jaclang/vendor/typeshed/stubs/gevent/gevent/resolver/blocking.pyi +15 -0
  2166. jaclang/vendor/typeshed/stubs/gevent/gevent/resolver/cares.pyi +50 -0
  2167. jaclang/vendor/typeshed/stubs/gevent/gevent/resolver/dnspython.pyi +11 -0
  2168. jaclang/vendor/typeshed/stubs/gevent/gevent/resolver/thread.pyi +17 -0
  2169. jaclang/vendor/typeshed/stubs/gevent/gevent/resolver_ares.pyi +3 -0
  2170. jaclang/vendor/typeshed/stubs/gevent/gevent/resolver_thread.pyi +2 -0
  2171. jaclang/vendor/typeshed/stubs/gevent/gevent/select.pyi +20 -0
  2172. jaclang/vendor/typeshed/stubs/gevent/gevent/selectors.pyi +27 -0
  2173. jaclang/vendor/typeshed/stubs/gevent/gevent/server.pyi +86 -0
  2174. jaclang/vendor/typeshed/stubs/gevent/gevent/signal.pyi +12 -0
  2175. jaclang/vendor/typeshed/stubs/gevent/gevent/socket.pyi +23 -0
  2176. jaclang/vendor/typeshed/stubs/gevent/gevent/ssl.pyi +29 -0
  2177. jaclang/vendor/typeshed/stubs/gevent/gevent/subprocess.pyi +4 -0
  2178. jaclang/vendor/typeshed/stubs/gevent/gevent/threadpool.pyi +57 -0
  2179. jaclang/vendor/typeshed/stubs/gevent/gevent/time.pyi +3 -0
  2180. jaclang/vendor/typeshed/stubs/gevent/gevent/timeout.pyi +57 -0
  2181. jaclang/vendor/typeshed/stubs/gevent/gevent/util.pyi +51 -0
  2182. jaclang/vendor/typeshed/stubs/gevent/gevent/win32util.pyi +5 -0
  2183. jaclang/vendor/typeshed/stubs/google-cloud-ndb/METADATA.toml +6 -0
  2184. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/__init__.pyi +218 -0
  2185. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/_batch.pyi +3 -0
  2186. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/_cache.pyi +73 -0
  2187. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/_datastore_api.pyi +5 -0
  2188. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/_datastore_query.pyi +23 -0
  2189. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/_eventloop.pyi +26 -0
  2190. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/_options.pyi +15 -0
  2191. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/_transaction.pyi +20 -0
  2192. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/blobstore.pyi +65 -0
  2193. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/client.pyi +35 -0
  2194. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/context.pyi +110 -0
  2195. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/django_middleware.pyi +2 -0
  2196. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/exceptions.pyi +22 -0
  2197. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/global_cache.pyi +78 -0
  2198. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/key.pyi +100 -0
  2199. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/metadata.pyi +52 -0
  2200. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/model.pyi +515 -0
  2201. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/msgprop.pyi +5 -0
  2202. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/polymodel.pyi +9 -0
  2203. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/query.pyi +149 -0
  2204. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/stats.pyi +102 -0
  2205. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/tasklets.pyi +58 -0
  2206. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/utils.pyi +28 -0
  2207. jaclang/vendor/typeshed/stubs/google-cloud-ndb/google/cloud/ndb/version.pyi +1 -0
  2208. jaclang/vendor/typeshed/stubs/greenlet/METADATA.toml +2 -0
  2209. jaclang/vendor/typeshed/stubs/greenlet/greenlet/__init__.pyi +14 -0
  2210. jaclang/vendor/typeshed/stubs/greenlet/greenlet/_greenlet.pyi +82 -0
  2211. jaclang/vendor/typeshed/stubs/grpcio/METADATA.toml +6 -0
  2212. jaclang/vendor/typeshed/stubs/grpcio/grpc/__init__.pyi +612 -0
  2213. jaclang/vendor/typeshed/stubs/grpcio/grpc/aio/__init__.pyi +445 -0
  2214. jaclang/vendor/typeshed/stubs/grpcio-channelz/METADATA.toml +3 -0
  2215. jaclang/vendor/typeshed/stubs/grpcio-channelz/grpc_channelz/__init__.pyi +0 -0
  2216. jaclang/vendor/typeshed/stubs/grpcio-channelz/grpc_channelz/v1/__init__.pyi +0 -0
  2217. jaclang/vendor/typeshed/stubs/grpcio-channelz/grpc_channelz/v1/_async.pyi +19 -0
  2218. jaclang/vendor/typeshed/stubs/grpcio-channelz/grpc_channelz/v1/_servicer.pyi +25 -0
  2219. jaclang/vendor/typeshed/stubs/grpcio-channelz/grpc_channelz/v1/channelz.pyi +6 -0
  2220. jaclang/vendor/typeshed/stubs/grpcio-channelz/grpc_channelz/v1/channelz_pb2.pyi +604 -0
  2221. jaclang/vendor/typeshed/stubs/grpcio-channelz/grpc_channelz/v1/channelz_pb2_grpc.pyi +121 -0
  2222. jaclang/vendor/typeshed/stubs/grpcio-health-checking/METADATA.toml +3 -0
  2223. jaclang/vendor/typeshed/stubs/grpcio-health-checking/grpc_health/__init__.pyi +0 -0
  2224. jaclang/vendor/typeshed/stubs/grpcio-health-checking/grpc_health/v1/__init__.pyi +0 -0
  2225. jaclang/vendor/typeshed/stubs/grpcio-health-checking/grpc_health/v1/health.pyi +35 -0
  2226. jaclang/vendor/typeshed/stubs/grpcio-health-checking/grpc_health/v1/health_pb2.pyi +26 -0
  2227. jaclang/vendor/typeshed/stubs/grpcio-health-checking/grpc_health/v1/health_pb2_grpc.pyi +41 -0
  2228. jaclang/vendor/typeshed/stubs/grpcio-reflection/METADATA.toml +3 -0
  2229. jaclang/vendor/typeshed/stubs/grpcio-reflection/grpc_reflection/__init__.pyi +0 -0
  2230. jaclang/vendor/typeshed/stubs/grpcio-reflection/grpc_reflection/v1alpha/__init__.pyi +0 -0
  2231. jaclang/vendor/typeshed/stubs/grpcio-reflection/grpc_reflection/v1alpha/_async.pyi +11 -0
  2232. jaclang/vendor/typeshed/stubs/grpcio-reflection/grpc_reflection/v1alpha/_base.pyi +6 -0
  2233. jaclang/vendor/typeshed/stubs/grpcio-reflection/grpc_reflection/v1alpha/proto_reflection_descriptor_database.pyi +11 -0
  2234. jaclang/vendor/typeshed/stubs/grpcio-reflection/grpc_reflection/v1alpha/reflection.pyi +28 -0
  2235. jaclang/vendor/typeshed/stubs/grpcio-reflection/grpc_reflection/v1alpha/reflection_pb2.pyi +107 -0
  2236. jaclang/vendor/typeshed/stubs/grpcio-reflection/grpc_reflection/v1alpha/reflection_pb2_grpc.pyi +31 -0
  2237. jaclang/vendor/typeshed/stubs/grpcio-status/METADATA.toml +3 -0
  2238. jaclang/vendor/typeshed/stubs/grpcio-status/grpc_status/__init__.pyi +0 -0
  2239. jaclang/vendor/typeshed/stubs/grpcio-status/grpc_status/_async.pyi +5 -0
  2240. jaclang/vendor/typeshed/stubs/grpcio-status/grpc_status/rpc_status.pyi +11 -0
  2241. jaclang/vendor/typeshed/stubs/hdbcli/METADATA.toml +2 -0
  2242. jaclang/vendor/typeshed/stubs/hdbcli/hdbcli/__init__.pyi +5 -0
  2243. jaclang/vendor/typeshed/stubs/hdbcli/hdbcli/dbapi.pyi +139 -0
  2244. jaclang/vendor/typeshed/stubs/hdbcli/hdbcli/resultrow.pyi +15 -0
  2245. jaclang/vendor/typeshed/stubs/hnswlib/METADATA.toml +4 -0
  2246. jaclang/vendor/typeshed/stubs/hnswlib/hnswlib.pyi +64 -0
  2247. jaclang/vendor/typeshed/stubs/html5lib/METADATA.toml +7 -0
  2248. jaclang/vendor/typeshed/stubs/html5lib/html5lib/__init__.pyi +6 -0
  2249. jaclang/vendor/typeshed/stubs/html5lib/html5lib/_ihatexml.pyi +55 -0
  2250. jaclang/vendor/typeshed/stubs/html5lib/html5lib/_inputstream.pyi +135 -0
  2251. jaclang/vendor/typeshed/stubs/html5lib/html5lib/_tokenizer.pyi +90 -0
  2252. jaclang/vendor/typeshed/stubs/html5lib/html5lib/_trie/__init__.pyi +1 -0
  2253. jaclang/vendor/typeshed/stubs/html5lib/html5lib/_trie/_base.pyi +9 -0
  2254. jaclang/vendor/typeshed/stubs/html5lib/html5lib/_trie/py.pyi +10 -0
  2255. jaclang/vendor/typeshed/stubs/html5lib/html5lib/_utils.pyi +24 -0
  2256. jaclang/vendor/typeshed/stubs/html5lib/html5lib/constants.pyi +37 -0
  2257. jaclang/vendor/typeshed/stubs/html5lib/html5lib/filters/__init__.pyi +0 -0
  2258. jaclang/vendor/typeshed/stubs/html5lib/html5lib/filters/alphabeticalattributes.pyi +4 -0
  2259. jaclang/vendor/typeshed/stubs/html5lib/html5lib/filters/base.pyi +7 -0
  2260. jaclang/vendor/typeshed/stubs/html5lib/html5lib/filters/inject_meta_charset.pyi +8 -0
  2261. jaclang/vendor/typeshed/stubs/html5lib/html5lib/filters/lint.pyi +8 -0
  2262. jaclang/vendor/typeshed/stubs/html5lib/html5lib/filters/optionaltags.pyi +7 -0
  2263. jaclang/vendor/typeshed/stubs/html5lib/html5lib/filters/sanitizer.pyi +34 -0
  2264. jaclang/vendor/typeshed/stubs/html5lib/html5lib/filters/whitespace.pyi +11 -0
  2265. jaclang/vendor/typeshed/stubs/html5lib/html5lib/html5parser.pyi +56 -0
  2266. jaclang/vendor/typeshed/stubs/html5lib/html5lib/serializer.pyi +39 -0
  2267. jaclang/vendor/typeshed/stubs/html5lib/html5lib/treeadapters/__init__.pyi +1 -0
  2268. jaclang/vendor/typeshed/stubs/html5lib/html5lib/treeadapters/genshi.pyi +1 -0
  2269. jaclang/vendor/typeshed/stubs/html5lib/html5lib/treeadapters/sax.pyi +5 -0
  2270. jaclang/vendor/typeshed/stubs/html5lib/html5lib/treebuilders/__init__.pyi +5 -0
  2271. jaclang/vendor/typeshed/stubs/html5lib/html5lib/treebuilders/base.pyi +55 -0
  2272. jaclang/vendor/typeshed/stubs/html5lib/html5lib/treebuilders/dom.pyi +5 -0
  2273. jaclang/vendor/typeshed/stubs/html5lib/html5lib/treebuilders/etree.pyi +7 -0
  2274. jaclang/vendor/typeshed/stubs/html5lib/html5lib/treebuilders/etree_lxml.pyi +44 -0
  2275. jaclang/vendor/typeshed/stubs/html5lib/html5lib/treewalkers/__init__.pyi +2 -0
  2276. jaclang/vendor/typeshed/stubs/html5lib/html5lib/treewalkers/base.pyi +30 -0
  2277. jaclang/vendor/typeshed/stubs/html5lib/html5lib/treewalkers/dom.pyi +7 -0
  2278. jaclang/vendor/typeshed/stubs/html5lib/html5lib/treewalkers/etree.pyi +7 -0
  2279. jaclang/vendor/typeshed/stubs/html5lib/html5lib/treewalkers/etree_lxml.pyi +54 -0
  2280. jaclang/vendor/typeshed/stubs/html5lib/html5lib/treewalkers/genshi.pyi +5 -0
  2281. jaclang/vendor/typeshed/stubs/httplib2/METADATA.toml +2 -0
  2282. jaclang/vendor/typeshed/stubs/httplib2/httplib2/__init__.pyi +184 -0
  2283. jaclang/vendor/typeshed/stubs/httplib2/httplib2/auth.pyi +16 -0
  2284. jaclang/vendor/typeshed/stubs/httplib2/httplib2/certs.pyi +9 -0
  2285. jaclang/vendor/typeshed/stubs/httplib2/httplib2/error.pyi +18 -0
  2286. jaclang/vendor/typeshed/stubs/httplib2/httplib2/iri2uri.pyi +12 -0
  2287. jaclang/vendor/typeshed/stubs/httplib2/httplib2/socks.pyi +27 -0
  2288. jaclang/vendor/typeshed/stubs/hvac/METADATA.toml +3 -0
  2289. jaclang/vendor/typeshed/stubs/hvac/hvac/__init__.pyi +3 -0
  2290. jaclang/vendor/typeshed/stubs/hvac/hvac/adapters.pyi +65 -0
  2291. jaclang/vendor/typeshed/stubs/hvac/hvac/api/__init__.pyi +7 -0
  2292. jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/__init__.pyi +41 -0
  2293. jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/approle.pyi +39 -0
  2294. jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/aws.pyi +103 -0
  2295. jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/azure.pyi +41 -0
  2296. jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/cert.pyi +41 -0
  2297. jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/gcp.pyi +37 -0
  2298. jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/github.pyi +12 -0
  2299. jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/jwt.pyi +59 -0
  2300. jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/kubernetes.pyi +33 -0
  2301. jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/ldap.pyi +56 -0
  2302. jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/legacy_mfa.pyi +13 -0
  2303. jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/oidc.pyi +33 -0
  2304. jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/okta.pyi +18 -0
  2305. jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/radius.pyi +14 -0
  2306. jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/token.pyi +70 -0
  2307. jaclang/vendor/typeshed/stubs/hvac/hvac/api/auth_methods/userpass.pyi +11 -0
  2308. jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/__init__.pyi +41 -0
  2309. jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/active_directory.pyi +24 -0
  2310. jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/aws.pyi +28 -0
  2311. jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/azure.pyi +13 -0
  2312. jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/consul.pyi +13 -0
  2313. jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/database.pyi +45 -0
  2314. jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/gcp.pyi +46 -0
  2315. jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/identity.pyi +106 -0
  2316. jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/kv.pyi +18 -0
  2317. jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/kv_v1.pyi +9 -0
  2318. jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/kv_v2.pyi +27 -0
  2319. jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/ldap.pyi +41 -0
  2320. jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/pki.pyi +36 -0
  2321. jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/rabbitmq.pyi +18 -0
  2322. jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/ssh.pyi +71 -0
  2323. jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/transform.pyi +79 -0
  2324. jaclang/vendor/typeshed/stubs/hvac/hvac/api/secrets_engines/transit.pyi +93 -0
  2325. jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/__init__.pyi +63 -0
  2326. jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/audit.pyi +7 -0
  2327. jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/auth.pyi +21 -0
  2328. jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/capabilities.pyi +4 -0
  2329. jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/health.pyi +14 -0
  2330. jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/init.pyi +16 -0
  2331. jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/key.pyi +27 -0
  2332. jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/leader.pyi +5 -0
  2333. jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/lease.pyi +9 -0
  2334. jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/mount.pyi +34 -0
  2335. jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/namespace.pyi +6 -0
  2336. jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/policies.pyi +15 -0
  2337. jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/policy.pyi +7 -0
  2338. jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/quota.pyi +9 -0
  2339. jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/raft.pyi +21 -0
  2340. jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/seal.pyi +8 -0
  2341. jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/system_backend_mixin.pyi +8 -0
  2342. jaclang/vendor/typeshed/stubs/hvac/hvac/api/system_backend/wrapping.pyi +7 -0
  2343. jaclang/vendor/typeshed/stubs/hvac/hvac/api/vault_api_base.pyi +10 -0
  2344. jaclang/vendor/typeshed/stubs/hvac/hvac/api/vault_api_category.pyi +25 -0
  2345. jaclang/vendor/typeshed/stubs/hvac/hvac/aws_utils.pyi +11 -0
  2346. jaclang/vendor/typeshed/stubs/hvac/hvac/constants/__init__.pyi +0 -0
  2347. jaclang/vendor/typeshed/stubs/hvac/hvac/constants/approle.pyi +4 -0
  2348. jaclang/vendor/typeshed/stubs/hvac/hvac/constants/aws.pyi +7 -0
  2349. jaclang/vendor/typeshed/stubs/hvac/hvac/constants/azure.pyi +3 -0
  2350. jaclang/vendor/typeshed/stubs/hvac/hvac/constants/client.pyi +8 -0
  2351. jaclang/vendor/typeshed/stubs/hvac/hvac/constants/gcp.pyi +8 -0
  2352. jaclang/vendor/typeshed/stubs/hvac/hvac/constants/identity.pyi +5 -0
  2353. jaclang/vendor/typeshed/stubs/hvac/hvac/constants/transit.pyi +12 -0
  2354. jaclang/vendor/typeshed/stubs/hvac/hvac/exceptions.pyi +43 -0
  2355. jaclang/vendor/typeshed/stubs/hvac/hvac/utils.pyi +47 -0
  2356. jaclang/vendor/typeshed/stubs/hvac/hvac/v1/__init__.pyi +84 -0
  2357. jaclang/vendor/typeshed/stubs/ibm-db/METADATA.toml +2 -0
  2358. jaclang/vendor/typeshed/stubs/ibm-db/ibm_db.pyi +353 -0
  2359. jaclang/vendor/typeshed/stubs/icalendar/METADATA.toml +6 -0
  2360. jaclang/vendor/typeshed/stubs/icalendar/icalendar/__init__.pyi +126 -0
  2361. jaclang/vendor/typeshed/stubs/icalendar/icalendar/alarms.pyi +48 -0
  2362. jaclang/vendor/typeshed/stubs/icalendar/icalendar/attr.pyi +26 -0
  2363. jaclang/vendor/typeshed/stubs/icalendar/icalendar/cal.pyi +480 -0
  2364. jaclang/vendor/typeshed/stubs/icalendar/icalendar/caselessdict.pyi +45 -0
  2365. jaclang/vendor/typeshed/stubs/icalendar/icalendar/enums.pyi +44 -0
  2366. jaclang/vendor/typeshed/stubs/icalendar/icalendar/error.pyi +19 -0
  2367. jaclang/vendor/typeshed/stubs/icalendar/icalendar/param.pyi +62 -0
  2368. jaclang/vendor/typeshed/stubs/icalendar/icalendar/parser.pyi +95 -0
  2369. jaclang/vendor/typeshed/stubs/icalendar/icalendar/parser_tools.pyi +21 -0
  2370. jaclang/vendor/typeshed/stubs/icalendar/icalendar/prop.pyi +328 -0
  2371. jaclang/vendor/typeshed/stubs/icalendar/icalendar/timezone/__init__.pyi +9 -0
  2372. jaclang/vendor/typeshed/stubs/icalendar/icalendar/timezone/equivalent_timezone_ids.pyi +13 -0
  2373. jaclang/vendor/typeshed/stubs/icalendar/icalendar/timezone/equivalent_timezone_ids_result.pyi +6 -0
  2374. jaclang/vendor/typeshed/stubs/icalendar/icalendar/timezone/provider.pyi +29 -0
  2375. jaclang/vendor/typeshed/stubs/icalendar/icalendar/timezone/pytz.pyi +22 -0
  2376. jaclang/vendor/typeshed/stubs/icalendar/icalendar/timezone/tzid.pyi +7 -0
  2377. jaclang/vendor/typeshed/stubs/icalendar/icalendar/timezone/tzp.pyi +30 -0
  2378. jaclang/vendor/typeshed/stubs/icalendar/icalendar/timezone/windows_to_olson.pyi +3 -0
  2379. jaclang/vendor/typeshed/stubs/icalendar/icalendar/timezone/zoneinfo.pyi +28 -0
  2380. jaclang/vendor/typeshed/stubs/icalendar/icalendar/tools.pyi +25 -0
  2381. jaclang/vendor/typeshed/stubs/icalendar/icalendar/version.pyi +8 -0
  2382. jaclang/vendor/typeshed/stubs/inifile/METADATA.toml +2 -0
  2383. jaclang/vendor/typeshed/stubs/inifile/inifile.pyi +130 -0
  2384. jaclang/vendor/typeshed/stubs/jmespath/METADATA.toml +2 -0
  2385. jaclang/vendor/typeshed/stubs/jmespath/jmespath/__init__.pyi +9 -0
  2386. jaclang/vendor/typeshed/stubs/jmespath/jmespath/ast.pyi +55 -0
  2387. jaclang/vendor/typeshed/stubs/jmespath/jmespath/compat.pyi +13 -0
  2388. jaclang/vendor/typeshed/stubs/jmespath/jmespath/exceptions.pyi +47 -0
  2389. jaclang/vendor/typeshed/stubs/jmespath/jmespath/functions.pyi +22 -0
  2390. jaclang/vendor/typeshed/stubs/jmespath/jmespath/lexer.pyi +18 -0
  2391. jaclang/vendor/typeshed/stubs/jmespath/jmespath/parser.pyi +19 -0
  2392. jaclang/vendor/typeshed/stubs/jmespath/jmespath/visitor.pyi +62 -0
  2393. jaclang/vendor/typeshed/stubs/jsonschema/METADATA.toml +8 -0
  2394. jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/__init__.pyi +28 -0
  2395. jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/_format.pyi +49 -0
  2396. jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/_keywords.pyi +36 -0
  2397. jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/_legacy_keywords.pyi +23 -0
  2398. jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/_types.pyi +24 -0
  2399. jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/_typing.pyi +13 -0
  2400. jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/_utils.pyi +27 -0
  2401. jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/cli.pyi +32 -0
  2402. jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/exceptions.pyi +92 -0
  2403. jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/protocols.pyi +31 -0
  2404. jaclang/vendor/typeshed/stubs/jsonschema/jsonschema/validators.pyi +122 -0
  2405. jaclang/vendor/typeshed/stubs/jwcrypto/METADATA.toml +3 -0
  2406. jaclang/vendor/typeshed/stubs/jwcrypto/jwcrypto/__init__.pyi +0 -0
  2407. jaclang/vendor/typeshed/stubs/jwcrypto/jwcrypto/common.pyi +50 -0
  2408. jaclang/vendor/typeshed/stubs/jwcrypto/jwcrypto/jwa.pyi +35 -0
  2409. jaclang/vendor/typeshed/stubs/jwcrypto/jwcrypto/jwe.pyi +53 -0
  2410. jaclang/vendor/typeshed/stubs/jwcrypto/jwcrypto/jwk.pyi +250 -0
  2411. jaclang/vendor/typeshed/stubs/jwcrypto/jwcrypto/jws.pyi +62 -0
  2412. jaclang/vendor/typeshed/stubs/jwcrypto/jwcrypto/jwt.pyi +78 -0
  2413. jaclang/vendor/typeshed/stubs/keyboard/METADATA.toml +9 -0
  2414. jaclang/vendor/typeshed/stubs/keyboard/keyboard/__init__.pyi +113 -0
  2415. jaclang/vendor/typeshed/stubs/keyboard/keyboard/_canonical_names.pyi +5 -0
  2416. jaclang/vendor/typeshed/stubs/keyboard/keyboard/_generic.pyi +24 -0
  2417. jaclang/vendor/typeshed/stubs/keyboard/keyboard/_keyboard_event.pyi +28 -0
  2418. jaclang/vendor/typeshed/stubs/keyboard/keyboard/_mouse_event.pyi +43 -0
  2419. jaclang/vendor/typeshed/stubs/keyboard/keyboard/mouse.pyi +84 -0
  2420. jaclang/vendor/typeshed/stubs/ldap3/METADATA.toml +12 -0
  2421. jaclang/vendor/typeshed/stubs/ldap3/ldap3/__init__.pyi +103 -0
  2422. jaclang/vendor/typeshed/stubs/ldap3/ldap3/abstract/__init__.pyi +15 -0
  2423. jaclang/vendor/typeshed/stubs/ldap3/ldap3/abstract/attrDef.pyi +33 -0
  2424. jaclang/vendor/typeshed/stubs/ldap3/ldap3/abstract/attribute.pyi +34 -0
  2425. jaclang/vendor/typeshed/stubs/ldap3/ldap3/abstract/cursor.pyi +102 -0
  2426. jaclang/vendor/typeshed/stubs/ldap3/ldap3/abstract/entry.pyi +76 -0
  2427. jaclang/vendor/typeshed/stubs/ldap3/ldap3/abstract/objectDef.pyi +15 -0
  2428. jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/__init__.pyi +0 -0
  2429. jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/connection.pyi +180 -0
  2430. jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/exceptions.pyi +129 -0
  2431. jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/pooling.pyi +42 -0
  2432. jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/rdns.pyi +12 -0
  2433. jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/results.pyi +56 -0
  2434. jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/server.pyi +52 -0
  2435. jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/timezone.pyi +11 -0
  2436. jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/tls.pyi +36 -0
  2437. jaclang/vendor/typeshed/stubs/ldap3/ldap3/core/usage.pyi +41 -0
  2438. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/__init__.pyi +97 -0
  2439. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/microsoft/__init__.pyi +0 -0
  2440. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/microsoft/addMembersToGroups.pyi +1 -0
  2441. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/microsoft/dirSync.pyi +30 -0
  2442. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/microsoft/modifyPassword.pyi +1 -0
  2443. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/microsoft/persistentSearch.pyi +15 -0
  2444. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/microsoft/removeMembersFromGroups.pyi +1 -0
  2445. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/microsoft/unlockAccount.pyi +1 -0
  2446. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/__init__.pyi +0 -0
  2447. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/addMembersToGroups.pyi +1 -0
  2448. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/checkGroupsMemberships.pyi +1 -0
  2449. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/endTransaction.pyi +15 -0
  2450. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/getBindDn.pyi +10 -0
  2451. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/listReplicas.pyi +13 -0
  2452. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/nmasGetUniversalPassword.pyi +12 -0
  2453. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/nmasSetUniversalPassword.pyi +12 -0
  2454. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/partition_entry_count.pyi +11 -0
  2455. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/removeMembersFromGroups.pyi +1 -0
  2456. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/replicaInfo.pyi +11 -0
  2457. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/novell/startTransaction.pyi +15 -0
  2458. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/operation.pyi +21 -0
  2459. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/standard/PagedSearch.pyi +30 -0
  2460. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/standard/PersistentSearch.pyi +36 -0
  2461. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/standard/__init__.pyi +0 -0
  2462. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/standard/modifyPassword.pyi +13 -0
  2463. jaclang/vendor/typeshed/stubs/ldap3/ldap3/extend/standard/whoAmI.pyi +7 -0
  2464. jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/__init__.pyi +0 -0
  2465. jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/abandon.pyi +2 -0
  2466. jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/add.pyi +3 -0
  2467. jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/bind.pyi +11 -0
  2468. jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/compare.pyi +3 -0
  2469. jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/delete.pyi +3 -0
  2470. jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/extended.pyi +14 -0
  2471. jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/modify.pyi +7 -0
  2472. jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/modifyDn.pyi +3 -0
  2473. jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/search.pyi +65 -0
  2474. jaclang/vendor/typeshed/stubs/ldap3/ldap3/operation/unbind.pyi +1 -0
  2475. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/__init__.pyi +0 -0
  2476. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/controls.pyi +1 -0
  2477. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/convert.pyi +20 -0
  2478. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/formatters/__init__.pyi +0 -0
  2479. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/formatters/formatters.pyi +16 -0
  2480. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/formatters/standard.pyi +7 -0
  2481. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/formatters/validators.pyi +16 -0
  2482. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/microsoft.pyi +25 -0
  2483. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/novell.pyi +67 -0
  2484. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/oid.pyi +29 -0
  2485. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/persistentSearch.pyi +14 -0
  2486. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/rfc2696.pyi +19 -0
  2487. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/rfc2849.pyi +18 -0
  2488. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/rfc3062.pyi +25 -0
  2489. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/rfc4511.pyi +321 -0
  2490. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/rfc4512.pyi +204 -0
  2491. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/rfc4527.pyi +2 -0
  2492. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/sasl/__init__.pyi +0 -0
  2493. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/sasl/digestMd5.pyi +9 -0
  2494. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/sasl/external.pyi +1 -0
  2495. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/sasl/kerberos.pyi +8 -0
  2496. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/sasl/plain.pyi +1 -0
  2497. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/sasl/sasl.pyi +5 -0
  2498. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/schemas/__init__.pyi +0 -0
  2499. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/schemas/ad2012R2.pyi +2 -0
  2500. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/schemas/ds389.pyi +2 -0
  2501. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/schemas/edir888.pyi +2 -0
  2502. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/schemas/edir914.pyi +2 -0
  2503. jaclang/vendor/typeshed/stubs/ldap3/ldap3/protocol/schemas/slapd24.pyi +2 -0
  2504. jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/__init__.pyi +0 -0
  2505. jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/asyncStream.pyi +18 -0
  2506. jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/asynchronous.pyi +28 -0
  2507. jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/base.pyi +42 -0
  2508. jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/ldifProducer.pyi +21 -0
  2509. jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/mockAsync.pyi +11 -0
  2510. jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/mockBase.pyi +37 -0
  2511. jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/mockSync.pyi +10 -0
  2512. jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/restartable.pyi +19 -0
  2513. jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/reusable.pyi +75 -0
  2514. jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/safeRestartable.pyi +5 -0
  2515. jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/safeSync.pyi +5 -0
  2516. jaclang/vendor/typeshed/stubs/ldap3/ldap3/strategy/sync.pyi +19 -0
  2517. jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/__init__.pyi +0 -0
  2518. jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/asn1.pyi +47 -0
  2519. jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/ciDict.pyi +29 -0
  2520. jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/config.pyi +6 -0
  2521. jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/conv.pyi +12 -0
  2522. jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/dn.pyi +11 -0
  2523. jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/hashed.pyi +6 -0
  2524. jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/log.pyi +25 -0
  2525. jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/ntlm.pyi +117 -0
  2526. jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/port_validators.pyi +2 -0
  2527. jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/repr.pyi +5 -0
  2528. jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/tls_backport.pyi +3 -0
  2529. jaclang/vendor/typeshed/stubs/ldap3/ldap3/utils/uri.pyi +1 -0
  2530. jaclang/vendor/typeshed/stubs/ldap3/ldap3/version.pyi +3 -0
  2531. jaclang/vendor/typeshed/stubs/libsass/METADATA.toml +7 -0
  2532. jaclang/vendor/typeshed/stubs/libsass/sass.pyi +202 -0
  2533. jaclang/vendor/typeshed/stubs/libsass/sassutils/__init__.pyi +0 -0
  2534. jaclang/vendor/typeshed/stubs/libsass/sassutils/builder.pyi +36 -0
  2535. jaclang/vendor/typeshed/stubs/libsass/sassutils/distutils.pyi +18 -0
  2536. jaclang/vendor/typeshed/stubs/libsass/sassutils/wsgi.pyi +24 -0
  2537. jaclang/vendor/typeshed/stubs/lupa/METADATA.toml +2 -0
  2538. jaclang/vendor/typeshed/stubs/lupa/lupa/__init__.pyi +17 -0
  2539. jaclang/vendor/typeshed/stubs/lupa/lupa/lua51.pyi +93 -0
  2540. jaclang/vendor/typeshed/stubs/lupa/lupa/lua52.pyi +93 -0
  2541. jaclang/vendor/typeshed/stubs/lupa/lupa/lua53.pyi +93 -0
  2542. jaclang/vendor/typeshed/stubs/lupa/lupa/lua54.pyi +93 -0
  2543. jaclang/vendor/typeshed/stubs/lupa/lupa/luajit20.pyi +93 -0
  2544. jaclang/vendor/typeshed/stubs/lupa/lupa/luajit21.pyi +93 -0
  2545. jaclang/vendor/typeshed/stubs/lupa/lupa/version.pyi +3 -0
  2546. jaclang/vendor/typeshed/stubs/lzstring/METADATA.toml +2 -0
  2547. jaclang/vendor/typeshed/stubs/lzstring/lzstring/__init__.pyi +17 -0
  2548. jaclang/vendor/typeshed/stubs/m3u8/METADATA.toml +2 -0
  2549. jaclang/vendor/typeshed/stubs/m3u8/m3u8/__init__.pyi +73 -0
  2550. jaclang/vendor/typeshed/stubs/m3u8/m3u8/httpclient.pyi +19 -0
  2551. jaclang/vendor/typeshed/stubs/m3u8/m3u8/mixins.pyi +25 -0
  2552. jaclang/vendor/typeshed/stubs/m3u8/m3u8/model.pyi +406 -0
  2553. jaclang/vendor/typeshed/stubs/m3u8/m3u8/parser.pyi +14 -0
  2554. jaclang/vendor/typeshed/stubs/m3u8/m3u8/protocol.pyi +41 -0
  2555. jaclang/vendor/typeshed/stubs/m3u8/m3u8/version_matching.pyi +5 -0
  2556. jaclang/vendor/typeshed/stubs/m3u8/m3u8/version_matching_rules.pyi +24 -0
  2557. jaclang/vendor/typeshed/stubs/mock/METADATA.toml +2 -0
  2558. jaclang/vendor/typeshed/stubs/mock/mock/__init__.pyi +24 -0
  2559. jaclang/vendor/typeshed/stubs/mock/mock/backports.pyi +7 -0
  2560. jaclang/vendor/typeshed/stubs/mock/mock/mock.pyi +373 -0
  2561. jaclang/vendor/typeshed/stubs/mypy-extensions/METADATA.toml +2 -0
  2562. jaclang/vendor/typeshed/stubs/mypy-extensions/mypy_extensions.pyi +87 -0
  2563. jaclang/vendor/typeshed/stubs/mysqlclient/METADATA.toml +5 -0
  2564. jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/__init__.pyi +95 -0
  2565. jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/_exceptions.pyi +13 -0
  2566. jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/_mysql.pyi +89 -0
  2567. jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/connections.pyi +59 -0
  2568. jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/constants/CLIENT.pyi +18 -0
  2569. jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/constants/CR.pyi +69 -0
  2570. jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/constants/ER.pyi +790 -0
  2571. jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/constants/FIELD_TYPE.pyi +29 -0
  2572. jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/constants/FLAG.pyi +16 -0
  2573. jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/constants/__init__.pyi +3 -0
  2574. jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/converters.pyi +30 -0
  2575. jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/cursors.pyi +70 -0
  2576. jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/release.pyi +1 -0
  2577. jaclang/vendor/typeshed/stubs/mysqlclient/MySQLdb/times.pyi +27 -0
  2578. jaclang/vendor/typeshed/stubs/nanoid/METADATA.toml +2 -0
  2579. jaclang/vendor/typeshed/stubs/nanoid/nanoid/__init__.pyi +4 -0
  2580. jaclang/vendor/typeshed/stubs/nanoid/nanoid/algorithm.pyi +1 -0
  2581. jaclang/vendor/typeshed/stubs/nanoid/nanoid/generate.pyi +3 -0
  2582. jaclang/vendor/typeshed/stubs/nanoid/nanoid/method.pyi +6 -0
  2583. jaclang/vendor/typeshed/stubs/nanoid/nanoid/non_secure_generate.pyi +3 -0
  2584. jaclang/vendor/typeshed/stubs/nanoid/nanoid/resources.pyi +2 -0
  2585. jaclang/vendor/typeshed/stubs/nanoleafapi/METADATA.toml +2 -0
  2586. jaclang/vendor/typeshed/stubs/nanoleafapi/nanoleafapi/__init__.pyi +16 -0
  2587. jaclang/vendor/typeshed/stubs/nanoleafapi/nanoleafapi/digital_twin.pyi +12 -0
  2588. jaclang/vendor/typeshed/stubs/nanoleafapi/nanoleafapi/discovery.pyi +1 -0
  2589. jaclang/vendor/typeshed/stubs/nanoleafapi/nanoleafapi/nanoleaf.pyi +68 -0
  2590. jaclang/vendor/typeshed/stubs/netaddr/METADATA.toml +2 -0
  2591. jaclang/vendor/typeshed/stubs/netaddr/netaddr/__init__.pyi +124 -0
  2592. jaclang/vendor/typeshed/stubs/netaddr/netaddr/cli.pyi +8 -0
  2593. jaclang/vendor/typeshed/stubs/netaddr/netaddr/compat.pyi +0 -0
  2594. jaclang/vendor/typeshed/stubs/netaddr/netaddr/contrib/__init__.pyi +0 -0
  2595. jaclang/vendor/typeshed/stubs/netaddr/netaddr/contrib/subnet_splitter.pyi +7 -0
  2596. jaclang/vendor/typeshed/stubs/netaddr/netaddr/core.pyi +34 -0
  2597. jaclang/vendor/typeshed/stubs/netaddr/netaddr/eui/__init__.pyi +82 -0
  2598. jaclang/vendor/typeshed/stubs/netaddr/netaddr/eui/ieee.pyi +33 -0
  2599. jaclang/vendor/typeshed/stubs/netaddr/netaddr/fbsocket.pyi +8 -0
  2600. jaclang/vendor/typeshed/stubs/netaddr/netaddr/ip/__init__.pyi +176 -0
  2601. jaclang/vendor/typeshed/stubs/netaddr/netaddr/ip/glob.pyi +17 -0
  2602. jaclang/vendor/typeshed/stubs/netaddr/netaddr/ip/iana.pyi +52 -0
  2603. jaclang/vendor/typeshed/stubs/netaddr/netaddr/ip/nmap.pyi +6 -0
  2604. jaclang/vendor/typeshed/stubs/netaddr/netaddr/ip/rfc1924.pyi +9 -0
  2605. jaclang/vendor/typeshed/stubs/netaddr/netaddr/ip/sets.pyi +45 -0
  2606. jaclang/vendor/typeshed/stubs/netaddr/netaddr/strategy/__init__.pyi +15 -0
  2607. jaclang/vendor/typeshed/stubs/netaddr/netaddr/strategy/eui48.pyi +39 -0
  2608. jaclang/vendor/typeshed/stubs/netaddr/netaddr/strategy/eui64.pyi +38 -0
  2609. jaclang/vendor/typeshed/stubs/netaddr/netaddr/strategy/ipv4.pyi +39 -0
  2610. jaclang/vendor/typeshed/stubs/netaddr/netaddr/strategy/ipv6.pyi +43 -0
  2611. jaclang/vendor/typeshed/stubs/netifaces/METADATA.toml +2 -0
  2612. jaclang/vendor/typeshed/stubs/netifaces/netifaces.pyi +72 -0
  2613. jaclang/vendor/typeshed/stubs/networkx/METADATA.toml +10 -0
  2614. jaclang/vendor/typeshed/stubs/networkx/networkx/__init__.pyi +30 -0
  2615. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/__init__.pyi +139 -0
  2616. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/__init__.pyi +14 -0
  2617. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/clique.pyi +13 -0
  2618. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/clustering_coefficient.pyi +8 -0
  2619. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/connectivity.pyi +14 -0
  2620. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/density.pyi +15 -0
  2621. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/distance_measures.pyi +8 -0
  2622. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/dominating_set.pyi +9 -0
  2623. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/kcomponents.pyi +7 -0
  2624. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/matching.pyi +7 -0
  2625. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/maxcut.pyi +16 -0
  2626. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/ramsey.pyi +7 -0
  2627. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/steinertree.pyi +12 -0
  2628. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/traveling_salesman.pyi +69 -0
  2629. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/treewidth.pyi +21 -0
  2630. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/approximation/vertex_cover.pyi +7 -0
  2631. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/assortativity/__init__.pyi +5 -0
  2632. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/assortativity/connectivity.pyi +12 -0
  2633. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/assortativity/correlation.pyi +25 -0
  2634. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/assortativity/mixing.pyi +36 -0
  2635. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/assortativity/neighbor_degree.pyi +16 -0
  2636. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/assortativity/pairs.pyi +16 -0
  2637. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/asteroidal.pyi +13 -0
  2638. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/__init__.pyi +13 -0
  2639. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/basic.pyi +20 -0
  2640. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/centrality.pyi +11 -0
  2641. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/cluster.pyi +23 -0
  2642. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/covering.pyi +10 -0
  2643. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/edgelist.pyi +32 -0
  2644. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/extendability.pyi +7 -0
  2645. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/generators.pyi +45 -0
  2646. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/link_analysis.pyi +20 -0
  2647. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/matching.pyi +23 -0
  2648. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/matrix.pyi +19 -0
  2649. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/projection.pyi +26 -0
  2650. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/redundancy.pyi +10 -0
  2651. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bipartite/spectral.pyi +7 -0
  2652. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/boundary.pyi +111 -0
  2653. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/bridges.pyi +20 -0
  2654. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/broadcasting.pyi +9 -0
  2655. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/__init__.pyi +20 -0
  2656. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/betweenness.pyi +23 -0
  2657. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/betweenness_subset.pyi +23 -0
  2658. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/closeness.pyi +19 -0
  2659. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/current_flow_betweenness.pyi +29 -0
  2660. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/current_flow_betweenness_subset.pyi +27 -0
  2661. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/current_flow_closeness.pyi +9 -0
  2662. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/degree_alg.pyi +11 -0
  2663. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/dispersion.pyi +15 -0
  2664. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/eigenvector.pyi +19 -0
  2665. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/flow_matrix.pyi +43 -0
  2666. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/group.pyi +37 -0
  2667. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/harmonic.pyi +12 -0
  2668. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/katz.pyi +26 -0
  2669. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/laplacian.pyi +16 -0
  2670. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/load.pyi +14 -0
  2671. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/percolation.pyi +14 -0
  2672. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/reaching.pyi +18 -0
  2673. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/second_order.pyi +7 -0
  2674. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/subgraph_alg.pyi +13 -0
  2675. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/trophic.pyi +12 -0
  2676. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/centrality/voterank_alg.pyi +7 -0
  2677. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/chains.pyi +9 -0
  2678. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/chordal.pyi +29 -0
  2679. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/clique.pyi +51 -0
  2680. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/cluster.pyi +21 -0
  2681. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/coloring/__init__.pyi +4 -0
  2682. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/coloring/equitable_coloring.pyi +23 -0
  2683. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/coloring/greedy_coloring.pyi +40 -0
  2684. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/communicability_alg.pyi +9 -0
  2685. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/__init__.pyi +13 -0
  2686. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/asyn_fluid.pyi +8 -0
  2687. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/centrality.pyi +12 -0
  2688. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/community_utils.pyi +9 -0
  2689. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/divisive.pyi +13 -0
  2690. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/kclique.pyi +10 -0
  2691. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/kernighan_lin.pyi +16 -0
  2692. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/label_propagation.pyi +17 -0
  2693. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/leiden.pyi +18 -0
  2694. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/local.pyi +15 -0
  2695. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/louvain.pyi +26 -0
  2696. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/lukes.pyi +16 -0
  2697. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/modularity_max.pyi +11 -0
  2698. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/community/quality.pyi +22 -0
  2699. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/components/__init__.pyi +6 -0
  2700. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/components/attracting.pyi +16 -0
  2701. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/components/biconnected.pyi +16 -0
  2702. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/components/connected.pyi +16 -0
  2703. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/components/semiconnected.pyi +7 -0
  2704. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/components/strongly_connected.pyi +24 -0
  2705. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/components/weakly_connected.pyi +13 -0
  2706. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/__init__.pyi +9 -0
  2707. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/connectivity.pyi +56 -0
  2708. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/cuts.pyi +37 -0
  2709. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/disjoint_paths.pyi +31 -0
  2710. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/edge_augmentation.pyi +47 -0
  2711. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/edge_kcomponents.pyi +26 -0
  2712. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/kcomponents.pyi +13 -0
  2713. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/kcutsets.pyi +14 -0
  2714. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/stoerwagner.pyi +7 -0
  2715. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/connectivity/utils.pyi +8 -0
  2716. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/core.pyi +21 -0
  2717. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/covering.pyi +12 -0
  2718. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/cuts.pyi +32 -0
  2719. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/cycles.pyi +38 -0
  2720. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/d_separation.pyi +22 -0
  2721. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/dag.pyi +65 -0
  2722. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/distance_measures.pyi +41 -0
  2723. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/distance_regular.pyi +13 -0
  2724. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/dominance.pyi +9 -0
  2725. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/dominating.pyi +15 -0
  2726. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/efficiency_measures.pyi +11 -0
  2727. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/euler.pyi +22 -0
  2728. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/__init__.pyi +11 -0
  2729. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/boykovkolmogorov.pyi +15 -0
  2730. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/capacityscaling.pyi +9 -0
  2731. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/dinitz_alg.pyi +15 -0
  2732. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/edmondskarp.pyi +15 -0
  2733. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/gomory_hu.pyi +13 -0
  2734. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/maxflow.pyi +47 -0
  2735. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/mincost.pyi +15 -0
  2736. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/networksimplex.pyi +46 -0
  2737. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/preflowpush.pyi +15 -0
  2738. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/shortestaugmentingpath.pyi +16 -0
  2739. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/flow/utils.pyi +29 -0
  2740. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/graph_hashing.pyi +22 -0
  2741. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/graphical.pyi +27 -0
  2742. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/hierarchy.pyi +6 -0
  2743. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/hybrid.pyi +9 -0
  2744. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isolate.pyi +11 -0
  2745. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isomorphism/__init__.pyi +7 -0
  2746. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isomorphism/ismags.pyi +19 -0
  2747. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isomorphism/isomorph.pyi +34 -0
  2748. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isomorphism/isomorphvf2.pyi +67 -0
  2749. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isomorphism/matchhelpers.pyi +40 -0
  2750. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isomorphism/temporalisomorphvf2.pyi +30 -0
  2751. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isomorphism/tree_isomorphism.pyi +11 -0
  2752. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isomorphism/vf2pp.pyi +40 -0
  2753. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/isomorphism/vf2userfunc.pyi +26 -0
  2754. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/link_analysis/__init__.pyi +2 -0
  2755. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/link_analysis/hits_alg.pyi +15 -0
  2756. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/link_analysis/pagerank_alg.pyi +28 -0
  2757. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/link_prediction.pyi +30 -0
  2758. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/lowest_common_ancestors.pyi +17 -0
  2759. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/matching.pyi +28 -0
  2760. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/minors/__init__.pyi +9 -0
  2761. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/minors/contraction.pyi +37 -0
  2762. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/mis.pyi +13 -0
  2763. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/moral.pyi +7 -0
  2764. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/node_classification.pyi +9 -0
  2765. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/non_randomness.pyi +7 -0
  2766. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/operators/__init__.pyi +4 -0
  2767. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/operators/all.pyi +15 -0
  2768. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/operators/binary.pyi +28 -0
  2769. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/operators/product.pyi +37 -0
  2770. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/operators/unary.pyi +14 -0
  2771. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/planar_drawing.pyi +16 -0
  2772. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/planarity.pyi +84 -0
  2773. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/polynomials.pyi +9 -0
  2774. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/reciprocity.pyi +11 -0
  2775. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/regular.pyi +11 -0
  2776. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/richclub.pyi +8 -0
  2777. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/shortest_paths/__init__.pyi +5 -0
  2778. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/shortest_paths/astar.pyi +29 -0
  2779. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/shortest_paths/dense.pyi +16 -0
  2780. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/shortest_paths/generic.pyi +71 -0
  2781. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/shortest_paths/unweighted.pyi +35 -0
  2782. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/shortest_paths/weighted.pyi +186 -0
  2783. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/similarity.pyi +109 -0
  2784. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/simple_paths.pyi +34 -0
  2785. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/smallworld.pyi +16 -0
  2786. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/smetric.pyi +7 -0
  2787. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/sparsifiers.pyi +8 -0
  2788. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/structuralholes.pyi +18 -0
  2789. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/summarization.pyi +19 -0
  2790. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/swap.pyi +15 -0
  2791. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/threshold.pyi +40 -0
  2792. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/time_dependent.pyi +7 -0
  2793. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/tournament.pyi +28 -0
  2794. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/traversal/__init__.pyi +5 -0
  2795. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/traversal/beamsearch.pyi +12 -0
  2796. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/traversal/breadth_first_search.pyi +50 -0
  2797. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/traversal/depth_first_search.pyi +44 -0
  2798. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/traversal/edgebfs.pyi +14 -0
  2799. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/traversal/edgedfs.pyi +14 -0
  2800. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/tree/__init__.pyi +6 -0
  2801. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/tree/branchings.pyi +70 -0
  2802. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/tree/coding.pyi +19 -0
  2803. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/tree/decomposition.pyi +6 -0
  2804. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/tree/mst.pyi +88 -0
  2805. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/tree/operations.pyi +9 -0
  2806. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/tree/recognition.pyi +14 -0
  2807. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/triads.pyi +24 -0
  2808. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/vitality.pyi +7 -0
  2809. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/voronoi.pyi +15 -0
  2810. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/walks.pyi +7 -0
  2811. jaclang/vendor/typeshed/stubs/networkx/networkx/algorithms/wiener.pyi +11 -0
  2812. jaclang/vendor/typeshed/stubs/networkx/networkx/classes/__init__.pyi +7 -0
  2813. jaclang/vendor/typeshed/stubs/networkx/networkx/classes/coreviews.pyi +70 -0
  2814. jaclang/vendor/typeshed/stubs/networkx/networkx/classes/digraph.pyi +31 -0
  2815. jaclang/vendor/typeshed/stubs/networkx/networkx/classes/filters.pyi +32 -0
  2816. jaclang/vendor/typeshed/stubs/networkx/networkx/classes/function.pyi +166 -0
  2817. jaclang/vendor/typeshed/stubs/networkx/networkx/classes/graph.pyi +100 -0
  2818. jaclang/vendor/typeshed/stubs/networkx/networkx/classes/graphviews.pyi +40 -0
  2819. jaclang/vendor/typeshed/stubs/networkx/networkx/classes/multidigraph.pyi +29 -0
  2820. jaclang/vendor/typeshed/stubs/networkx/networkx/classes/multigraph.pyi +32 -0
  2821. jaclang/vendor/typeshed/stubs/networkx/networkx/classes/reportviews.pyi +387 -0
  2822. jaclang/vendor/typeshed/stubs/networkx/networkx/convert.pyi +32 -0
  2823. jaclang/vendor/typeshed/stubs/networkx/networkx/convert_matrix.pyi +103 -0
  2824. jaclang/vendor/typeshed/stubs/networkx/networkx/drawing/__init__.pyi +4 -0
  2825. jaclang/vendor/typeshed/stubs/networkx/networkx/drawing/layout.pyi +110 -0
  2826. jaclang/vendor/typeshed/stubs/networkx/networkx/drawing/nx_agraph.pyi +37 -0
  2827. jaclang/vendor/typeshed/stubs/networkx/networkx/drawing/nx_latex.pyi +36 -0
  2828. jaclang/vendor/typeshed/stubs/networkx/networkx/drawing/nx_pydot.pyi +12 -0
  2829. jaclang/vendor/typeshed/stubs/networkx/networkx/drawing/nx_pylab.pyi +147 -0
  2830. jaclang/vendor/typeshed/stubs/networkx/networkx/exception.pyi +33 -0
  2831. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/__init__.pyi +29 -0
  2832. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/atlas.pyi +19 -0
  2833. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/classic.pyi +71 -0
  2834. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/cographs.pyi +6 -0
  2835. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/community.pyi +59 -0
  2836. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/degree_seq.pyi +45 -0
  2837. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/directed.pyi +26 -0
  2838. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/duplication.pyi +8 -0
  2839. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/ego.pyi +6 -0
  2840. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/expanders.pyi +24 -0
  2841. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/geometric.pyi +36 -0
  2842. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/harary_graph.pyi +8 -0
  2843. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/internet_as_graphs.pyi +45 -0
  2844. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/intersection.pyi +10 -0
  2845. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/interval_graph.pyi +6 -0
  2846. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/joint_degree_seq.pyi +22 -0
  2847. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/lattice.pyi +14 -0
  2848. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/line.pyi +8 -0
  2849. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/mycielski.pyi +8 -0
  2850. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/nonisomorphic_trees.pyi +11 -0
  2851. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/random_clustered.pyi +18 -0
  2852. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/random_graphs.pyi +62 -0
  2853. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/small.pyi +74 -0
  2854. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/social.pyi +12 -0
  2855. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/spectral_graph_forge.pyi +6 -0
  2856. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/stochastic.pyi +6 -0
  2857. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/sudoku.pyi +6 -0
  2858. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/time_series.pyi +6 -0
  2859. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/trees.pyi +31 -0
  2860. jaclang/vendor/typeshed/stubs/networkx/networkx/generators/triads.pyi +10 -0
  2861. jaclang/vendor/typeshed/stubs/networkx/networkx/lazy_imports.pyi +11 -0
  2862. jaclang/vendor/typeshed/stubs/networkx/networkx/linalg/__init__.pyi +15 -0
  2863. jaclang/vendor/typeshed/stubs/networkx/networkx/linalg/algebraicconnectivity.pyi +28 -0
  2864. jaclang/vendor/typeshed/stubs/networkx/networkx/linalg/attrmatrix.pyi +8 -0
  2865. jaclang/vendor/typeshed/stubs/networkx/networkx/linalg/bethehessianmatrix.pyi +9 -0
  2866. jaclang/vendor/typeshed/stubs/networkx/networkx/linalg/graphmatrix.pyi +11 -0
  2867. jaclang/vendor/typeshed/stubs/networkx/networkx/linalg/laplacianmatrix.pyi +24 -0
  2868. jaclang/vendor/typeshed/stubs/networkx/networkx/linalg/modularitymatrix.pyi +11 -0
  2869. jaclang/vendor/typeshed/stubs/networkx/networkx/linalg/spectrum.pyi +20 -0
  2870. jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/__init__.pyi +12 -0
  2871. jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/adjlist.pyi +13 -0
  2872. jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/edgelist.pyi +34 -0
  2873. jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/gexf.pyi +70 -0
  2874. jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/gml.pyi +40 -0
  2875. jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/graph6.pyi +17 -0
  2876. jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/graphml.pyi +128 -0
  2877. jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/json_graph/__init__.pyi +4 -0
  2878. jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/json_graph/adjacency.pyi +8 -0
  2879. jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/json_graph/cytoscape.pyi +7 -0
  2880. jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/json_graph/node_link.pyi +30 -0
  2881. jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/json_graph/tree.pyi +7 -0
  2882. jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/leda.pyi +8 -0
  2883. jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/multiline_adjlist.pyi +15 -0
  2884. jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/p2g.pyi +7 -0
  2885. jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/pajek.pyi +14 -0
  2886. jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/sparse6.pyi +10 -0
  2887. jaclang/vendor/typeshed/stubs/networkx/networkx/readwrite/text.pyi +63 -0
  2888. jaclang/vendor/typeshed/stubs/networkx/networkx/relabel.pyi +29 -0
  2889. jaclang/vendor/typeshed/stubs/networkx/networkx/utils/__init__.pyi +13 -0
  2890. jaclang/vendor/typeshed/stubs/networkx/networkx/utils/backends.pyi +65 -0
  2891. jaclang/vendor/typeshed/stubs/networkx/networkx/utils/configs.pyi +89 -0
  2892. jaclang/vendor/typeshed/stubs/networkx/networkx/utils/decorators.pyi +28 -0
  2893. jaclang/vendor/typeshed/stubs/networkx/networkx/utils/heaps.pyi +40 -0
  2894. jaclang/vendor/typeshed/stubs/networkx/networkx/utils/mapped_queue.pyi +25 -0
  2895. jaclang/vendor/typeshed/stubs/networkx/networkx/utils/misc.pyi +58 -0
  2896. jaclang/vendor/typeshed/stubs/networkx/networkx/utils/random_sequence.pyi +15 -0
  2897. jaclang/vendor/typeshed/stubs/networkx/networkx/utils/rcm.pyi +11 -0
  2898. jaclang/vendor/typeshed/stubs/networkx/networkx/utils/union_find.pyi +11 -0
  2899. jaclang/vendor/typeshed/stubs/oauthlib/METADATA.toml +6 -0
  2900. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/__init__.pyi +7 -0
  2901. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/common.pyi +81 -0
  2902. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/__init__.pyi +31 -0
  2903. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/__init__.pyi +59 -0
  2904. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/endpoints/__init__.pyi +7 -0
  2905. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/endpoints/access_token.pyi +10 -0
  2906. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/endpoints/authorization.pyi +8 -0
  2907. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/endpoints/base.pyi +6 -0
  2908. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/endpoints/pre_configured.pyi +9 -0
  2909. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/endpoints/request_token.pyi +10 -0
  2910. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/endpoints/resource.pyi +8 -0
  2911. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/endpoints/signature_only.pyi +8 -0
  2912. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/errors.pyi +26 -0
  2913. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/parameters.pyi +5 -0
  2914. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/request_validator.pyi +67 -0
  2915. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/signature.pyi +36 -0
  2916. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth1/rfc5849/utils.pyi +18 -0
  2917. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/__init__.pyi +60 -0
  2918. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/__init__.pyi +11 -0
  2919. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/clients/__init__.pyi +6 -0
  2920. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/clients/backend_application.pyi +15 -0
  2921. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/clients/base.pyi +122 -0
  2922. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/clients/legacy_application.pyi +42 -0
  2923. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/clients/mobile_application.pyi +18 -0
  2924. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/clients/service_application.pyi +56 -0
  2925. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/clients/web_application.pyi +53 -0
  2926. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/endpoints/__init__.pyi +13 -0
  2927. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/endpoints/authorization.pyi +31 -0
  2928. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/endpoints/base.pyi +24 -0
  2929. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/endpoints/introspect.pyi +20 -0
  2930. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/endpoints/metadata.pyi +27 -0
  2931. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/endpoints/pre_configured.pyi +81 -0
  2932. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/endpoints/resource.pyi +26 -0
  2933. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/endpoints/revocation.pyi +26 -0
  2934. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/endpoints/token.pyi +32 -0
  2935. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/errors.pyi +150 -0
  2936. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/grant_types/__init__.pyi +5 -0
  2937. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/grant_types/authorization_code.pyi +24 -0
  2938. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/grant_types/base.pyi +68 -0
  2939. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/grant_types/client_credentials.pyi +12 -0
  2940. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/grant_types/implicit.pyi +19 -0
  2941. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/grant_types/refresh_token.pyi +25 -0
  2942. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/grant_types/resource_owner_password_credentials.pyi +12 -0
  2943. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/parameters.pyi +46 -0
  2944. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/request_validator.pyi +59 -0
  2945. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/tokens.pyi +67 -0
  2946. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc6749/utils.pyi +16 -0
  2947. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc8628/__init__.pyi +3 -0
  2948. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc8628/clients/__init__.pyi +1 -0
  2949. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/oauth2/rfc8628/clients/device.pyi +40 -0
  2950. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/__init__.pyi +2 -0
  2951. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/__init__.pyi +0 -0
  2952. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/__init__.pyi +0 -0
  2953. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/endpoints/__init__.pyi +2 -0
  2954. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/endpoints/pre_configured.pyi +52 -0
  2955. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/endpoints/userinfo.pyi +22 -0
  2956. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/exceptions.pyi +51 -0
  2957. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/grant_types/__init__.pyi +10 -0
  2958. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/grant_types/authorization_code.pyi +25 -0
  2959. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/grant_types/base.pyi +19 -0
  2960. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/grant_types/dispatchers.pyi +32 -0
  2961. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/grant_types/hybrid.pyi +29 -0
  2962. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/grant_types/implicit.pyi +26 -0
  2963. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/grant_types/refresh_token.pyi +25 -0
  2964. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/request_validator.pyi +24 -0
  2965. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/openid/connect/core/tokens.pyi +22 -0
  2966. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/signals.pyi +20 -0
  2967. jaclang/vendor/typeshed/stubs/oauthlib/oauthlib/uri_validate.pyi +44 -0
  2968. jaclang/vendor/typeshed/stubs/objgraph/METADATA.toml +2 -0
  2969. jaclang/vendor/typeshed/stubs/objgraph/objgraph.pyi +91 -0
  2970. jaclang/vendor/typeshed/stubs/olefile/METADATA.toml +2 -0
  2971. jaclang/vendor/typeshed/stubs/olefile/olefile/__init__.pyi +2 -0
  2972. jaclang/vendor/typeshed/stubs/olefile/olefile/olefile.pyi +247 -0
  2973. jaclang/vendor/typeshed/stubs/openpyxl/METADATA.toml +2 -0
  2974. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/__init__.pyi +31 -0
  2975. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/_constants.pyi +7 -0
  2976. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/cell/__init__.pyi +28 -0
  2977. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/cell/_writer.pyi +9 -0
  2978. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/cell/cell.pyi +100 -0
  2979. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/cell/read_only.pyi +70 -0
  2980. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/cell/rich_text.pyi +29 -0
  2981. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/cell/text.pyi +98 -0
  2982. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/_3d.pyi +66 -0
  2983. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/__init__.pyi +15 -0
  2984. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/_chart.pyi +51 -0
  2985. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/area_chart.pyi +60 -0
  2986. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/axis.pyi +311 -0
  2987. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/bar_chart.pyi +87 -0
  2988. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/bubble_chart.pyi +41 -0
  2989. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/chartspace.pyi +145 -0
  2990. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/data_source.pyi +120 -0
  2991. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/descriptors.pyi +21 -0
  2992. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/error_bar.pyi +45 -0
  2993. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/label.pyi +92 -0
  2994. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/layout.pyi +49 -0
  2995. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/legend.pyi +54 -0
  2996. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/line_chart.pyi +87 -0
  2997. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/marker.pyi +56 -0
  2998. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/picture.pyi +28 -0
  2999. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/pie_chart.pyi +105 -0
  3000. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/pivot.pyi +50 -0
  3001. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/plotarea.pyi +77 -0
  3002. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/print_settings.pyi +42 -0
  3003. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/radar_chart.pyi +36 -0
  3004. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/reader.pyi +1 -0
  3005. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/reference.pyi +50 -0
  3006. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/scatter_chart.pyi +35 -0
  3007. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/series.pyi +107 -0
  3008. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/series_factory.pyi +9 -0
  3009. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/shapes.pyi +51 -0
  3010. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/stock_chart.pyi +33 -0
  3011. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/surface_chart.pyi +65 -0
  3012. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/text.pyi +26 -0
  3013. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/title.pyi +42 -0
  3014. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/trendline.pyi +68 -0
  3015. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chart/updown_bars.pyi +18 -0
  3016. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chartsheet/__init__.pyi +1 -0
  3017. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chartsheet/chartsheet.pyi +59 -0
  3018. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chartsheet/custom.pyi +48 -0
  3019. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chartsheet/properties.pyi +15 -0
  3020. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chartsheet/protection.pyi +27 -0
  3021. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chartsheet/publish.pyi +53 -0
  3022. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chartsheet/relation.pyi +71 -0
  3023. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/chartsheet/views.pyi +30 -0
  3024. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/comments/__init__.pyi +1 -0
  3025. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/comments/author.pyi +11 -0
  3026. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/comments/comment_sheet.pyi +124 -0
  3027. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/comments/comments.pyi +19 -0
  3028. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/comments/shape_writer.pyi +21 -0
  3029. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/compat/__init__.pyi +10 -0
  3030. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/compat/abc.pyi +1 -0
  3031. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/compat/numbers.pyi +14 -0
  3032. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/compat/product.pyi +3 -0
  3033. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/compat/singleton.pyi +15 -0
  3034. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/compat/strings.pyi +6 -0
  3035. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/descriptors/__init__.pyi +12 -0
  3036. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/descriptors/base.pyi +354 -0
  3037. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/descriptors/container.pyi +18 -0
  3038. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/descriptors/excel.pyi +48 -0
  3039. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/descriptors/namespace.pyi +2 -0
  3040. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/descriptors/nested.pyi +276 -0
  3041. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/descriptors/sequence.pyi +75 -0
  3042. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/descriptors/serialisable.pyi +51 -0
  3043. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/descriptors/slots.pyi +4 -0
  3044. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/__init__.pyi +1 -0
  3045. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/colors.pyi +510 -0
  3046. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/connector.pyi +98 -0
  3047. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/drawing.pyi +28 -0
  3048. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/effect.pyi +254 -0
  3049. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/fill.pyi +315 -0
  3050. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/geometry.pyi +577 -0
  3051. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/graphic.pyi +83 -0
  3052. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/image.pyi +24 -0
  3053. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/line.pyi +89 -0
  3054. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/picture.pyi +79 -0
  3055. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/properties.pyi +120 -0
  3056. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/relation.pyi +10 -0
  3057. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/spreadsheet_drawing.pyi +121 -0
  3058. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/text.pyi +516 -0
  3059. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/drawing/xdr.pyi +26 -0
  3060. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/formatting/__init__.pyi +1 -0
  3061. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/formatting/formatting.pyi +32 -0
  3062. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/formatting/rule.pyi +202 -0
  3063. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/formula/__init__.pyi +1 -0
  3064. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/formula/tokenizer.pyi +62 -0
  3065. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/formula/translate.pyi +22 -0
  3066. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/packaging/__init__.pyi +0 -0
  3067. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/packaging/core.pyi +60 -0
  3068. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/packaging/custom.pyi +66 -0
  3069. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/packaging/extended.pyi +81 -0
  3070. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/packaging/interface.pyi +8 -0
  3071. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/packaging/manifest.pyi +41 -0
  3072. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/packaging/relationship.pyi +56 -0
  3073. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/packaging/workbook.pyi +101 -0
  3074. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/pivot/__init__.pyi +0 -0
  3075. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/pivot/cache.pyi +643 -0
  3076. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/pivot/fields.pyi +242 -0
  3077. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/pivot/record.pyi +33 -0
  3078. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/pivot/table.pyi +959 -0
  3079. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/reader/__init__.pyi +0 -0
  3080. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/reader/drawings.pyi +6 -0
  3081. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/reader/excel.pyi +54 -0
  3082. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/reader/strings.pyi +6 -0
  3083. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/reader/workbook.pyi +24 -0
  3084. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/__init__.pyi +8 -0
  3085. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/alignment.pyi +47 -0
  3086. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/borders.pyi +83 -0
  3087. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/builtins.pyi +53 -0
  3088. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/cell_style.pyi +98 -0
  3089. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/colors.pyi +88 -0
  3090. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/differential.pyi +42 -0
  3091. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/fills.pyi +118 -0
  3092. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/fonts.pyi +77 -0
  3093. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/named_styles.pyi +83 -0
  3094. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/numbers.pyi +84 -0
  3095. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/protection.pyi +10 -0
  3096. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/proxy.pyi +12 -0
  3097. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/styleable.pyi +53 -0
  3098. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/stylesheet.pyi +59 -0
  3099. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/styles/table.pyi +80 -0
  3100. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/__init__.pyi +13 -0
  3101. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/bound_dictionary.pyi +9 -0
  3102. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/cell.pyi +27 -0
  3103. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/dataframe.pyi +5 -0
  3104. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/datetime.pyi +21 -0
  3105. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/escape.pyi +2 -0
  3106. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/exceptions.pyi +7 -0
  3107. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/formulas.pyi +5 -0
  3108. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/indexed_list.pyi +12 -0
  3109. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/inference.pyi +10 -0
  3110. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/protection.pyi +1 -0
  3111. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/utils/units.pyi +24 -0
  3112. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/__init__.pyi +1 -0
  3113. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/_writer.pyi +20 -0
  3114. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/child.pyi +49 -0
  3115. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/defined_name.pyi +71 -0
  3116. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/external_link/__init__.pyi +1 -0
  3117. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/external_link/external.pyi +81 -0
  3118. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/external_reference.pyi +9 -0
  3119. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/function_group.pyi +17 -0
  3120. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/properties.pyi +103 -0
  3121. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/protection.pyi +92 -0
  3122. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/smart_tags.pyi +29 -0
  3123. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/views.pyi +134 -0
  3124. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/web.pyi +84 -0
  3125. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/workbook/workbook.pyi +122 -0
  3126. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/__init__.pyi +0 -0
  3127. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/_read_only.pyi +40 -0
  3128. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/_reader.pyi +117 -0
  3129. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/_write_only.pyi +45 -0
  3130. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/_writer.pyi +58 -0
  3131. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/cell_range.pyi +104 -0
  3132. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/cell_watch.pyi +16 -0
  3133. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/controls.pyi +64 -0
  3134. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/copier.pyi +7 -0
  3135. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/custom.pyi +16 -0
  3136. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/datavalidation.pyi +109 -0
  3137. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/dimensions.pyi +149 -0
  3138. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/drawing.pyi +9 -0
  3139. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/errors.pyi +49 -0
  3140. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/filters.pyi +316 -0
  3141. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/formula.pyi +37 -0
  3142. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/header_footer.pyi +73 -0
  3143. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/hyperlink.pyi +30 -0
  3144. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/merge.pyi +37 -0
  3145. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/ole.pyi +115 -0
  3146. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/page.pyi +105 -0
  3147. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/pagebreak.pyi +48 -0
  3148. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/picture.pyi +6 -0
  3149. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/print_settings.pyi +51 -0
  3150. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/properties.pyi +56 -0
  3151. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/protection.pyi +76 -0
  3152. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/related.pyi +9 -0
  3153. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/scenario.pyi +87 -0
  3154. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/smart_tag.pyi +49 -0
  3155. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/table.pyi +222 -0
  3156. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/views.pyi +99 -0
  3157. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/worksheet/worksheet.pyi +275 -0
  3158. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/writer/__init__.pyi +0 -0
  3159. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/writer/excel.pyi +18 -0
  3160. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/writer/theme.pyi +3 -0
  3161. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/xml/__init__.pyi +11 -0
  3162. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/xml/_functions_overloads.pyi +129 -0
  3163. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/xml/constants.pyi +91 -0
  3164. jaclang/vendor/typeshed/stubs/openpyxl/openpyxl/xml/functions.pyi +28 -0
  3165. jaclang/vendor/typeshed/stubs/opentracing/METADATA.toml +6 -0
  3166. jaclang/vendor/typeshed/stubs/opentracing/opentracing/__init__.pyi +24 -0
  3167. jaclang/vendor/typeshed/stubs/opentracing/opentracing/ext/__init__.pyi +0 -0
  3168. jaclang/vendor/typeshed/stubs/opentracing/opentracing/ext/tags.pyi +1 -0
  3169. jaclang/vendor/typeshed/stubs/opentracing/opentracing/harness/__init__.pyi +0 -0
  3170. jaclang/vendor/typeshed/stubs/opentracing/opentracing/harness/api_check.pyi +34 -0
  3171. jaclang/vendor/typeshed/stubs/opentracing/opentracing/harness/scope_check.pyi +15 -0
  3172. jaclang/vendor/typeshed/stubs/opentracing/opentracing/logs.pyi +5 -0
  3173. jaclang/vendor/typeshed/stubs/opentracing/opentracing/mocktracer/__init__.pyi +2 -0
  3174. jaclang/vendor/typeshed/stubs/opentracing/opentracing/mocktracer/binary_propagator.pyi +8 -0
  3175. jaclang/vendor/typeshed/stubs/opentracing/opentracing/mocktracer/context.pyi +13 -0
  3176. jaclang/vendor/typeshed/stubs/opentracing/opentracing/mocktracer/propagator.pyi +7 -0
  3177. jaclang/vendor/typeshed/stubs/opentracing/opentracing/mocktracer/span.pyi +38 -0
  3178. jaclang/vendor/typeshed/stubs/opentracing/opentracing/mocktracer/text_propagator.pyi +14 -0
  3179. jaclang/vendor/typeshed/stubs/opentracing/opentracing/mocktracer/tracer.pyi +26 -0
  3180. jaclang/vendor/typeshed/stubs/opentracing/opentracing/propagation.pyi +8 -0
  3181. jaclang/vendor/typeshed/stubs/opentracing/opentracing/scope.pyi +17 -0
  3182. jaclang/vendor/typeshed/stubs/opentracing/opentracing/scope_manager.pyi +8 -0
  3183. jaclang/vendor/typeshed/stubs/opentracing/opentracing/scope_managers/__init__.pyi +9 -0
  3184. jaclang/vendor/typeshed/stubs/opentracing/opentracing/scope_managers/asyncio.pyi +8 -0
  3185. jaclang/vendor/typeshed/stubs/opentracing/opentracing/scope_managers/constants.pyi +1 -0
  3186. jaclang/vendor/typeshed/stubs/opentracing/opentracing/scope_managers/contextvars.pyi +10 -0
  3187. jaclang/vendor/typeshed/stubs/opentracing/opentracing/scope_managers/gevent.pyi +8 -0
  3188. jaclang/vendor/typeshed/stubs/opentracing/opentracing/scope_managers/tornado.pyi +16 -0
  3189. jaclang/vendor/typeshed/stubs/opentracing/opentracing/span.pyi +29 -0
  3190. jaclang/vendor/typeshed/stubs/opentracing/opentracing/tags.pyi +23 -0
  3191. jaclang/vendor/typeshed/stubs/opentracing/opentracing/tracer.pyi +47 -0
  3192. jaclang/vendor/typeshed/stubs/paramiko/METADATA.toml +10 -0
  3193. jaclang/vendor/typeshed/stubs/paramiko/paramiko/__init__.pyi +46 -0
  3194. jaclang/vendor/typeshed/stubs/paramiko/paramiko/_version.pyi +2 -0
  3195. jaclang/vendor/typeshed/stubs/paramiko/paramiko/_winapi.pyi +95 -0
  3196. jaclang/vendor/typeshed/stubs/paramiko/paramiko/agent.pyi +69 -0
  3197. jaclang/vendor/typeshed/stubs/paramiko/paramiko/auth_handler.pyi +48 -0
  3198. jaclang/vendor/typeshed/stubs/paramiko/paramiko/auth_strategy.pyi +57 -0
  3199. jaclang/vendor/typeshed/stubs/paramiko/paramiko/ber.pyi +18 -0
  3200. jaclang/vendor/typeshed/stubs/paramiko/paramiko/buffered_pipe.pyi +14 -0
  3201. jaclang/vendor/typeshed/stubs/paramiko/paramiko/channel.pyi +101 -0
  3202. jaclang/vendor/typeshed/stubs/paramiko/paramiko/client.pyi +89 -0
  3203. jaclang/vendor/typeshed/stubs/paramiko/paramiko/common.pyi +128 -0
  3204. jaclang/vendor/typeshed/stubs/paramiko/paramiko/compress.pyi +12 -0
  3205. jaclang/vendor/typeshed/stubs/paramiko/paramiko/config.pyi +34 -0
  3206. jaclang/vendor/typeshed/stubs/paramiko/paramiko/dsskey.pyi +35 -0
  3207. jaclang/vendor/typeshed/stubs/paramiko/paramiko/ecdsakey.pyi +55 -0
  3208. jaclang/vendor/typeshed/stubs/paramiko/paramiko/ed25519key.pyi +23 -0
  3209. jaclang/vendor/typeshed/stubs/paramiko/paramiko/file.pyi +39 -0
  3210. jaclang/vendor/typeshed/stubs/paramiko/paramiko/hostkeys.pyi +47 -0
  3211. jaclang/vendor/typeshed/stubs/paramiko/paramiko/kex_curve25519.pyi +20 -0
  3212. jaclang/vendor/typeshed/stubs/paramiko/paramiko/kex_ecdh_nist.pyi +32 -0
  3213. jaclang/vendor/typeshed/stubs/paramiko/paramiko/kex_gex.pyi +34 -0
  3214. jaclang/vendor/typeshed/stubs/paramiko/paramiko/kex_group1.pyi +24 -0
  3215. jaclang/vendor/typeshed/stubs/paramiko/paramiko/kex_group14.pyi +15 -0
  3216. jaclang/vendor/typeshed/stubs/paramiko/paramiko/kex_group16.pyi +11 -0
  3217. jaclang/vendor/typeshed/stubs/paramiko/paramiko/kex_gss.pyi +64 -0
  3218. jaclang/vendor/typeshed/stubs/paramiko/paramiko/message.pyi +42 -0
  3219. jaclang/vendor/typeshed/stubs/paramiko/paramiko/packet.pyi +67 -0
  3220. jaclang/vendor/typeshed/stubs/paramiko/paramiko/pipe.pyi +35 -0
  3221. jaclang/vendor/typeshed/stubs/paramiko/paramiko/pkey.pyi +61 -0
  3222. jaclang/vendor/typeshed/stubs/paramiko/paramiko/primes.pyi +8 -0
  3223. jaclang/vendor/typeshed/stubs/paramiko/paramiko/proxy.pyi +17 -0
  3224. jaclang/vendor/typeshed/stubs/paramiko/paramiko/rsakey.pyi +35 -0
  3225. jaclang/vendor/typeshed/stubs/paramiko/paramiko/server.pyi +50 -0
  3226. jaclang/vendor/typeshed/stubs/paramiko/paramiko/sftp.pyi +60 -0
  3227. jaclang/vendor/typeshed/stubs/paramiko/paramiko/sftp_attr.pyi +22 -0
  3228. jaclang/vendor/typeshed/stubs/paramiko/paramiko/sftp_client.pyi +73 -0
  3229. jaclang/vendor/typeshed/stubs/paramiko/paramiko/sftp_file.pyi +33 -0
  3230. jaclang/vendor/typeshed/stubs/paramiko/paramiko/sftp_handle.pyi +12 -0
  3231. jaclang/vendor/typeshed/stubs/paramiko/paramiko/sftp_server.pyi +29 -0
  3232. jaclang/vendor/typeshed/stubs/paramiko/paramiko/sftp_si.pyi +23 -0
  3233. jaclang/vendor/typeshed/stubs/paramiko/paramiko/ssh_exception.pyi +43 -0
  3234. jaclang/vendor/typeshed/stubs/paramiko/paramiko/ssh_gss.pyi +52 -0
  3235. jaclang/vendor/typeshed/stubs/paramiko/paramiko/transport.pyi +203 -0
  3236. jaclang/vendor/typeshed/stubs/paramiko/paramiko/util.pyi +48 -0
  3237. jaclang/vendor/typeshed/stubs/paramiko/paramiko/win_openssh.pyi +12 -0
  3238. jaclang/vendor/typeshed/stubs/paramiko/paramiko/win_pageant.pyi +18 -0
  3239. jaclang/vendor/typeshed/stubs/parsimonious/METADATA.toml +2 -0
  3240. jaclang/vendor/typeshed/stubs/parsimonious/parsimonious/__init__.pyi +8 -0
  3241. jaclang/vendor/typeshed/stubs/parsimonious/parsimonious/exceptions.pyi +25 -0
  3242. jaclang/vendor/typeshed/stubs/parsimonious/parsimonious/expressions.pyi +76 -0
  3243. jaclang/vendor/typeshed/stubs/parsimonious/parsimonious/grammar.pyi +60 -0
  3244. jaclang/vendor/typeshed/stubs/parsimonious/parsimonious/nodes.pyi +46 -0
  3245. jaclang/vendor/typeshed/stubs/parsimonious/parsimonious/utils.pyi +10 -0
  3246. jaclang/vendor/typeshed/stubs/passlib/METADATA.toml +6 -0
  3247. jaclang/vendor/typeshed/stubs/passlib/passlib/__init__.pyi +3 -0
  3248. jaclang/vendor/typeshed/stubs/passlib/passlib/apache.pyi +102 -0
  3249. jaclang/vendor/typeshed/stubs/passlib/passlib/apps.pyi +35 -0
  3250. jaclang/vendor/typeshed/stubs/passlib/passlib/context.pyi +87 -0
  3251. jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/__init__.pyi +0 -0
  3252. jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/_blowfish/__init__.pyi +5 -0
  3253. jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/_blowfish/_gen_files.pyi +11 -0
  3254. jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/_blowfish/base.pyi +15 -0
  3255. jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/_blowfish/unrolled.pyi +7 -0
  3256. jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/_md4.pyi +12 -0
  3257. jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/des.pyi +5 -0
  3258. jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/digest.pyi +39 -0
  3259. jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/scrypt/__init__.pyi +4 -0
  3260. jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/scrypt/_builtin.pyi +21 -0
  3261. jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/scrypt/_gen_files.pyi +1 -0
  3262. jaclang/vendor/typeshed/stubs/passlib/passlib/crypto/scrypt/_salsa.pyi +1 -0
  3263. jaclang/vendor/typeshed/stubs/passlib/passlib/exc.pyi +55 -0
  3264. jaclang/vendor/typeshed/stubs/passlib/passlib/ext/__init__.pyi +0 -0
  3265. jaclang/vendor/typeshed/stubs/passlib/passlib/ext/django/__init__.pyi +0 -0
  3266. jaclang/vendor/typeshed/stubs/passlib/passlib/ext/django/models.pyi +3 -0
  3267. jaclang/vendor/typeshed/stubs/passlib/passlib/ext/django/utils.pyi +55 -0
  3268. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/__init__.pyi +0 -0
  3269. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/argon2.pyi +79 -0
  3270. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/bcrypt.pyi +57 -0
  3271. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/cisco.pyi +30 -0
  3272. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/des_crypt.pyi +55 -0
  3273. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/digests.pyi +37 -0
  3274. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/django.pyi +93 -0
  3275. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/fshp.pyi +29 -0
  3276. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/ldap_digests.pyi +82 -0
  3277. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/md5_crypt.pyi +23 -0
  3278. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/misc.pyi +54 -0
  3279. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/mssql.pyi +24 -0
  3280. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/mysql.pyi +15 -0
  3281. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/oracle.pyi +21 -0
  3282. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/pbkdf2.pyi +91 -0
  3283. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/phpass.pyi +22 -0
  3284. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/postgres.pyi +10 -0
  3285. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/roundup.pyi +7 -0
  3286. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/scram.pyi +32 -0
  3287. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/scrypt.pyi +35 -0
  3288. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/sha1_crypt.pyi +25 -0
  3289. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/sha2_crypt.pyi +31 -0
  3290. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/sun_md5_crypt.pyi +26 -0
  3291. jaclang/vendor/typeshed/stubs/passlib/passlib/handlers/windows.pyi +45 -0
  3292. jaclang/vendor/typeshed/stubs/passlib/passlib/hash.pyi +75 -0
  3293. jaclang/vendor/typeshed/stubs/passlib/passlib/hosts.pyi +15 -0
  3294. jaclang/vendor/typeshed/stubs/passlib/passlib/ifc.pyi +39 -0
  3295. jaclang/vendor/typeshed/stubs/passlib/passlib/pwd.pyi +142 -0
  3296. jaclang/vendor/typeshed/stubs/passlib/passlib/registry.pyi +17 -0
  3297. jaclang/vendor/typeshed/stubs/passlib/passlib/totp.pyi +159 -0
  3298. jaclang/vendor/typeshed/stubs/passlib/passlib/utils/__init__.pyi +87 -0
  3299. jaclang/vendor/typeshed/stubs/passlib/passlib/utils/binary.pyi +83 -0
  3300. jaclang/vendor/typeshed/stubs/passlib/passlib/utils/compat/__init__.pyi +8 -0
  3301. jaclang/vendor/typeshed/stubs/passlib/passlib/utils/compat/_ordered_dict.pyi +27 -0
  3302. jaclang/vendor/typeshed/stubs/passlib/passlib/utils/decor.pyi +38 -0
  3303. jaclang/vendor/typeshed/stubs/passlib/passlib/utils/des.pyi +8 -0
  3304. jaclang/vendor/typeshed/stubs/passlib/passlib/utils/handlers.pyi +192 -0
  3305. jaclang/vendor/typeshed/stubs/passlib/passlib/utils/md4.pyi +5 -0
  3306. jaclang/vendor/typeshed/stubs/passlib/passlib/utils/pbkdf2.pyi +15 -0
  3307. jaclang/vendor/typeshed/stubs/passlib/passlib/win32.pyi +16 -0
  3308. jaclang/vendor/typeshed/stubs/passpy/METADATA.toml +2 -0
  3309. jaclang/vendor/typeshed/stubs/passpy/passpy/__init__.pyi +5 -0
  3310. jaclang/vendor/typeshed/stubs/passpy/passpy/exceptions.pyi +2 -0
  3311. jaclang/vendor/typeshed/stubs/passpy/passpy/store.pyi +31 -0
  3312. jaclang/vendor/typeshed/stubs/passpy/passpy/util.pyi +13 -0
  3313. jaclang/vendor/typeshed/stubs/peewee/METADATA.toml +10 -0
  3314. jaclang/vendor/typeshed/stubs/peewee/peewee.pyi +1904 -0
  3315. jaclang/vendor/typeshed/stubs/peewee/playhouse/__init__.pyi +0 -0
  3316. jaclang/vendor/typeshed/stubs/peewee/playhouse/flask_utils.pyi +28 -0
  3317. jaclang/vendor/typeshed/stubs/pep8-naming/METADATA.toml +2 -0
  3318. jaclang/vendor/typeshed/stubs/pep8-naming/pep8ext_naming.pyi +163 -0
  3319. jaclang/vendor/typeshed/stubs/pexpect/METADATA.toml +2 -0
  3320. jaclang/vendor/typeshed/stubs/pexpect/pexpect/ANSI.pyi +43 -0
  3321. jaclang/vendor/typeshed/stubs/pexpect/pexpect/FSM.pyi +35 -0
  3322. jaclang/vendor/typeshed/stubs/pexpect/pexpect/__init__.pyi +20 -0
  3323. jaclang/vendor/typeshed/stubs/pexpect/pexpect/_async.pyi +19 -0
  3324. jaclang/vendor/typeshed/stubs/pexpect/pexpect/exceptions.pyi +6 -0
  3325. jaclang/vendor/typeshed/stubs/pexpect/pexpect/expect.pyi +38 -0
  3326. jaclang/vendor/typeshed/stubs/pexpect/pexpect/fdpexpect.pyi +36 -0
  3327. jaclang/vendor/typeshed/stubs/pexpect/pexpect/popen_spawn.pyi +34 -0
  3328. jaclang/vendor/typeshed/stubs/pexpect/pexpect/pty_spawn.pyi +95 -0
  3329. jaclang/vendor/typeshed/stubs/pexpect/pexpect/pxssh.pyi +66 -0
  3330. jaclang/vendor/typeshed/stubs/pexpect/pexpect/replwrap.pyi +27 -0
  3331. jaclang/vendor/typeshed/stubs/pexpect/pexpect/run.pyi +28 -0
  3332. jaclang/vendor/typeshed/stubs/pexpect/pexpect/screen.pyi +80 -0
  3333. jaclang/vendor/typeshed/stubs/pexpect/pexpect/socket_pexpect.pyi +35 -0
  3334. jaclang/vendor/typeshed/stubs/pexpect/pexpect/spawnbase.pyi +146 -0
  3335. jaclang/vendor/typeshed/stubs/pexpect/pexpect/utils.pyi +10 -0
  3336. jaclang/vendor/typeshed/stubs/pika/METADATA.toml +10 -0
  3337. jaclang/vendor/typeshed/stubs/pika/pika/__init__.pyi +15 -0
  3338. jaclang/vendor/typeshed/stubs/pika/pika/adapters/__init__.pyi +3 -0
  3339. jaclang/vendor/typeshed/stubs/pika/pika/adapters/asyncio_connection.pyi +56 -0
  3340. jaclang/vendor/typeshed/stubs/pika/pika/adapters/base_connection.pyi +35 -0
  3341. jaclang/vendor/typeshed/stubs/pika/pika/adapters/blocking_connection.pyi +236 -0
  3342. jaclang/vendor/typeshed/stubs/pika/pika/adapters/gevent_connection.pyi +57 -0
  3343. jaclang/vendor/typeshed/stubs/pika/pika/adapters/select_connection.pyi +98 -0
  3344. jaclang/vendor/typeshed/stubs/pika/pika/adapters/tornado_connection.pyi +21 -0
  3345. jaclang/vendor/typeshed/stubs/pika/pika/adapters/twisted_connection.pyi +150 -0
  3346. jaclang/vendor/typeshed/stubs/pika/pika/adapters/utils/__init__.pyi +0 -0
  3347. jaclang/vendor/typeshed/stubs/pika/pika/adapters/utils/connection_workflow.pyi +37 -0
  3348. jaclang/vendor/typeshed/stubs/pika/pika/adapters/utils/io_services_utils.pyi +43 -0
  3349. jaclang/vendor/typeshed/stubs/pika/pika/adapters/utils/nbio_interface.pyi +61 -0
  3350. jaclang/vendor/typeshed/stubs/pika/pika/adapters/utils/selector_ioloop_adapter.pyi +77 -0
  3351. jaclang/vendor/typeshed/stubs/pika/pika/amqp_object.pyi +18 -0
  3352. jaclang/vendor/typeshed/stubs/pika/pika/callback.pyi +42 -0
  3353. jaclang/vendor/typeshed/stubs/pika/pika/channel.pyi +163 -0
  3354. jaclang/vendor/typeshed/stubs/pika/pika/compat.pyi +49 -0
  3355. jaclang/vendor/typeshed/stubs/pika/pika/connection.pyi +189 -0
  3356. jaclang/vendor/typeshed/stubs/pika/pika/credentials.pyi +36 -0
  3357. jaclang/vendor/typeshed/stubs/pika/pika/data.pyi +14 -0
  3358. jaclang/vendor/typeshed/stubs/pika/pika/delivery_mode.pyi +5 -0
  3359. jaclang/vendor/typeshed/stubs/pika/pika/diagnostic_utils.pyi +7 -0
  3360. jaclang/vendor/typeshed/stubs/pika/pika/exceptions.pyi +62 -0
  3361. jaclang/vendor/typeshed/stubs/pika/pika/exchange_type.pyi +7 -0
  3362. jaclang/vendor/typeshed/stubs/pika/pika/frame.pyi +47 -0
  3363. jaclang/vendor/typeshed/stubs/pika/pika/heartbeat.pyi +12 -0
  3364. jaclang/vendor/typeshed/stubs/pika/pika/spec.pyi +872 -0
  3365. jaclang/vendor/typeshed/stubs/pika/pika/tcp_socket_opts.pyi +9 -0
  3366. jaclang/vendor/typeshed/stubs/pika/pika/validators.pyi +12 -0
  3367. jaclang/vendor/typeshed/stubs/polib/METADATA.toml +2 -0
  3368. jaclang/vendor/typeshed/stubs/polib/polib.pyi +170 -0
  3369. jaclang/vendor/typeshed/stubs/portpicker/METADATA.toml +2 -0
  3370. jaclang/vendor/typeshed/stubs/portpicker/portpicker.pyi +21 -0
  3371. jaclang/vendor/typeshed/stubs/protobuf/METADATA.toml +9 -0
  3372. jaclang/vendor/typeshed/stubs/protobuf/google/_upb/_message.pyi +310 -0
  3373. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/__init__.pyi +3 -0
  3374. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/any_pb2.pyi +172 -0
  3375. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/api_pb2.pyi +305 -0
  3376. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/compiler/__init__.pyi +0 -0
  3377. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/compiler/plugin_pb2.pyi +362 -0
  3378. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/descriptor.pyi +359 -0
  3379. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/descriptor_database.pyi +16 -0
  3380. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/descriptor_pb2.pyi +2855 -0
  3381. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/descriptor_pool.pyi +22 -0
  3382. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/duration_pb2.pyi +126 -0
  3383. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/empty_pb2.pyi +57 -0
  3384. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/field_mask_pb2.pyi +259 -0
  3385. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/__init__.pyi +0 -0
  3386. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/api_implementation.pyi +3 -0
  3387. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/builder.pyi +4 -0
  3388. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/containers.pyi +103 -0
  3389. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/decoder.pyi +61 -0
  3390. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/encoder.pyi +41 -0
  3391. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/enum_type_wrapper.pyi +21 -0
  3392. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/extension_dict.pyi +27 -0
  3393. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/message_listener.pyi +5 -0
  3394. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/python_message.pyi +3 -0
  3395. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/type_checkers.pyi +11 -0
  3396. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/well_known_types.pyi +100 -0
  3397. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/internal/wire_format.pyi +50 -0
  3398. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/json_format.pyi +44 -0
  3399. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/message.pyi +45 -0
  3400. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/message_factory.pyi +15 -0
  3401. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/reflection.pyi +2 -0
  3402. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/runtime_version.pyi +23 -0
  3403. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/source_context_pb2.pyi +59 -0
  3404. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/struct_pb2.pyi +215 -0
  3405. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/symbol_database.pyi +16 -0
  3406. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/text_format.pyi +218 -0
  3407. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/timestamp_pb2.pyi +155 -0
  3408. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/type_pb2.pyi +464 -0
  3409. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/util/__init__.pyi +0 -0
  3410. jaclang/vendor/typeshed/stubs/protobuf/google/protobuf/wrappers_pb2.pyi +238 -0
  3411. jaclang/vendor/typeshed/stubs/psutil/METADATA.toml +5 -0
  3412. jaclang/vendor/typeshed/stubs/psutil/psutil/__init__.pyi +284 -0
  3413. jaclang/vendor/typeshed/stubs/psutil/psutil/_common.pyi +376 -0
  3414. jaclang/vendor/typeshed/stubs/psutil/psutil/_psaix.pyi +98 -0
  3415. jaclang/vendor/typeshed/stubs/psutil/psutil/_psbsd.pyi +168 -0
  3416. jaclang/vendor/typeshed/stubs/psutil/psutil/_pslinux.pyi +237 -0
  3417. jaclang/vendor/typeshed/stubs/psutil/psutil/_psosx.pyi +108 -0
  3418. jaclang/vendor/typeshed/stubs/psutil/psutil/_psposix.pyi +6 -0
  3419. jaclang/vendor/typeshed/stubs/psutil/psutil/_pssunos.pyi +129 -0
  3420. jaclang/vendor/typeshed/stubs/psutil/psutil/_psutil_linux.pyi +17 -0
  3421. jaclang/vendor/typeshed/stubs/psutil/psutil/_psutil_osx.pyi +51 -0
  3422. jaclang/vendor/typeshed/stubs/psutil/psutil/_psutil_posix.pyi +34 -0
  3423. jaclang/vendor/typeshed/stubs/psutil/psutil/_psutil_windows.pyi +94 -0
  3424. jaclang/vendor/typeshed/stubs/psutil/psutil/_pswindows.pyi +200 -0
  3425. jaclang/vendor/typeshed/stubs/psycopg2/METADATA.toml +3 -0
  3426. jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/__init__.pyi +59 -0
  3427. jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/_ipaddress.pyi +9 -0
  3428. jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/_json.pyi +33 -0
  3429. jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/_psycopg.pyi +608 -0
  3430. jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/_range.pyi +84 -0
  3431. jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/errorcodes.pyi +309 -0
  3432. jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/errors.pyi +269 -0
  3433. jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/extensions.pyi +125 -0
  3434. jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/extras.pyi +249 -0
  3435. jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/pool.pyi +24 -0
  3436. jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/sql.pyi +49 -0
  3437. jaclang/vendor/typeshed/stubs/psycopg2/psycopg2/tz.pyi +26 -0
  3438. jaclang/vendor/typeshed/stubs/pyRFC3339/METADATA.toml +2 -0
  3439. jaclang/vendor/typeshed/stubs/pyRFC3339/pyrfc3339/__init__.pyi +4 -0
  3440. jaclang/vendor/typeshed/stubs/pyRFC3339/pyrfc3339/generator.pyi +3 -0
  3441. jaclang/vendor/typeshed/stubs/pyRFC3339/pyrfc3339/parser.pyi +3 -0
  3442. jaclang/vendor/typeshed/stubs/pyRFC3339/pyrfc3339/utils.pyi +1 -0
  3443. jaclang/vendor/typeshed/stubs/pyasn1/METADATA.toml +2 -0
  3444. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/__init__.pyi +3 -0
  3445. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/__init__.pyi +0 -0
  3446. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/ber/__init__.pyi +0 -0
  3447. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/ber/decoder.pyi +356 -0
  3448. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/ber/encoder.pyi +84 -0
  3449. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/ber/eoo.pyi +11 -0
  3450. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/cer/__init__.pyi +0 -0
  3451. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/cer/decoder.pyi +43 -0
  3452. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/cer/encoder.pyi +55 -0
  3453. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/der/__init__.pyi +0 -0
  3454. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/der/decoder.pyi +33 -0
  3455. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/der/encoder.pyi +25 -0
  3456. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/native/__init__.pyi +0 -0
  3457. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/native/decoder.pyi +42 -0
  3458. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/native/encoder.pyi +71 -0
  3459. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/codec/streaming.pyi +21 -0
  3460. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/compat/__init__.pyi +0 -0
  3461. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/compat/integer.pyi +1 -0
  3462. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/debug.pyi +28 -0
  3463. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/error.pyi +15 -0
  3464. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/__init__.pyi +0 -0
  3465. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/base.pyi +150 -0
  3466. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/char.pyi +88 -0
  3467. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/constraint.pyi +52 -0
  3468. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/error.pyi +3 -0
  3469. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/namedtype.pyi +73 -0
  3470. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/namedval.pyi +26 -0
  3471. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/opentype.pyi +17 -0
  3472. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/tag.pyi +64 -0
  3473. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/tagmap.pyi +25 -0
  3474. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/univ.pyi +398 -0
  3475. jaclang/vendor/typeshed/stubs/pyasn1/pyasn1/type/useful.pyi +31 -0
  3476. jaclang/vendor/typeshed/stubs/pyaudio/METADATA.toml +9 -0
  3477. jaclang/vendor/typeshed/stubs/pyaudio/pyaudio.pyi +179 -0
  3478. jaclang/vendor/typeshed/stubs/pycocotools/METADATA.toml +3 -0
  3479. jaclang/vendor/typeshed/stubs/pycocotools/pycocotools/__init__.pyi +6 -0
  3480. jaclang/vendor/typeshed/stubs/pycocotools/pycocotools/coco.pyi +89 -0
  3481. jaclang/vendor/typeshed/stubs/pycocotools/pycocotools/cocoeval.pyi +63 -0
  3482. jaclang/vendor/typeshed/stubs/pycocotools/pycocotools/mask.pyi +29 -0
  3483. jaclang/vendor/typeshed/stubs/pycurl/METADATA.toml +5 -0
  3484. jaclang/vendor/typeshed/stubs/pycurl/pycurl.pyi +733 -0
  3485. jaclang/vendor/typeshed/stubs/pyfarmhash/METADATA.toml +2 -0
  3486. jaclang/vendor/typeshed/stubs/pyfarmhash/farmhash.pyi +9 -0
  3487. jaclang/vendor/typeshed/stubs/pyflakes/METADATA.toml +2 -0
  3488. jaclang/vendor/typeshed/stubs/pyflakes/pyflakes/__init__.pyi +3 -0
  3489. jaclang/vendor/typeshed/stubs/pyflakes/pyflakes/__main__.pyi +1 -0
  3490. jaclang/vendor/typeshed/stubs/pyflakes/pyflakes/api.pyi +17 -0
  3491. jaclang/vendor/typeshed/stubs/pyflakes/pyflakes/checker.pyi +361 -0
  3492. jaclang/vendor/typeshed/stubs/pyflakes/pyflakes/messages.pyi +147 -0
  3493. jaclang/vendor/typeshed/stubs/pyflakes/pyflakes/reporter.pyi +9 -0
  3494. jaclang/vendor/typeshed/stubs/pyflakes/pyflakes/scripts/__init__.pyi +0 -0
  3495. jaclang/vendor/typeshed/stubs/pyflakes/pyflakes/scripts/pyflakes.pyi +8 -0
  3496. jaclang/vendor/typeshed/stubs/pyinstaller/METADATA.toml +2 -0
  3497. jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/__init__.pyi +12 -0
  3498. jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/__main__.pyi +12 -0
  3499. jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/building/__init__.pyi +7 -0
  3500. jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/building/api.pyi +176 -0
  3501. jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/building/build_main.pyi +55 -0
  3502. jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/building/datastruct.pyi +47 -0
  3503. jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/building/splash.pyi +47 -0
  3504. jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/compat.pyi +83 -0
  3505. jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/depend/__init__.pyi +0 -0
  3506. jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/depend/analysis.pyi +27 -0
  3507. jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/depend/imphookapi.pyi +71 -0
  3508. jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/isolated/__init__.pyi +2 -0
  3509. jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/isolated/_parent.pyi +19 -0
  3510. jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/utils/__init__.pyi +0 -0
  3511. jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/utils/hooks/__init__.pyi +76 -0
  3512. jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/utils/hooks/conda.pyi +47 -0
  3513. jaclang/vendor/typeshed/stubs/pyinstaller/PyInstaller/utils/win32/versioninfo.pyi +99 -0
  3514. jaclang/vendor/typeshed/stubs/pyinstaller/pyi_splash/__init__.pyi +13 -0
  3515. jaclang/vendor/typeshed/stubs/pyjks/METADATA.toml +3 -0
  3516. jaclang/vendor/typeshed/stubs/pyjks/jks/__init__.pyi +48 -0
  3517. jaclang/vendor/typeshed/stubs/pyjks/jks/bks.pyi +125 -0
  3518. jaclang/vendor/typeshed/stubs/pyjks/jks/jks.pyi +129 -0
  3519. jaclang/vendor/typeshed/stubs/pyjks/jks/rfc2898.pyi +5 -0
  3520. jaclang/vendor/typeshed/stubs/pyjks/jks/rfc7292.pyi +29 -0
  3521. jaclang/vendor/typeshed/stubs/pyjks/jks/sun_crypto.pyi +8 -0
  3522. jaclang/vendor/typeshed/stubs/pyjks/jks/util.pyi +66 -0
  3523. jaclang/vendor/typeshed/stubs/pynput/METADATA.toml +5 -0
  3524. jaclang/vendor/typeshed/stubs/pynput/pynput/__init__.pyi +1 -0
  3525. jaclang/vendor/typeshed/stubs/pynput/pynput/_info.pyi +2 -0
  3526. jaclang/vendor/typeshed/stubs/pynput/pynput/_util.pyi +72 -0
  3527. jaclang/vendor/typeshed/stubs/pynput/pynput/keyboard/__init__.pyi +32 -0
  3528. jaclang/vendor/typeshed/stubs/pynput/pynput/keyboard/_base.pyi +135 -0
  3529. jaclang/vendor/typeshed/stubs/pynput/pynput/keyboard/_dummy.pyi +1 -0
  3530. jaclang/vendor/typeshed/stubs/pynput/pynput/mouse/__init__.pyi +32 -0
  3531. jaclang/vendor/typeshed/stubs/pynput/pynput/mouse/_base.pyi +94 -0
  3532. jaclang/vendor/typeshed/stubs/pynput/pynput/mouse/_dummy.pyi +1 -0
  3533. jaclang/vendor/typeshed/stubs/pyperclip/METADATA.toml +6 -0
  3534. jaclang/vendor/typeshed/stubs/pyperclip/pyperclip/__init__.pyi +24 -0
  3535. jaclang/vendor/typeshed/stubs/pyserial/METADATA.toml +6 -0
  3536. jaclang/vendor/typeshed/stubs/pyserial/serial/__init__.pyi +30 -0
  3537. jaclang/vendor/typeshed/stubs/pyserial/serial/__main__.pyi +1 -0
  3538. jaclang/vendor/typeshed/stubs/pyserial/serial/rfc2217.pyi +187 -0
  3539. jaclang/vendor/typeshed/stubs/pyserial/serial/rs485.pyi +18 -0
  3540. jaclang/vendor/typeshed/stubs/pyserial/serial/serialcli.pyi +25 -0
  3541. jaclang/vendor/typeshed/stubs/pyserial/serial/serialjava.pyi +30 -0
  3542. jaclang/vendor/typeshed/stubs/pyserial/serial/serialposix.pyi +93 -0
  3543. jaclang/vendor/typeshed/stubs/pyserial/serial/serialutil.pyi +152 -0
  3544. jaclang/vendor/typeshed/stubs/pyserial/serial/serialwin32.pyi +26 -0
  3545. jaclang/vendor/typeshed/stubs/pyserial/serial/threaded/__init__.pyi +51 -0
  3546. jaclang/vendor/typeshed/stubs/pyserial/serial/tools/__init__.pyi +0 -0
  3547. jaclang/vendor/typeshed/stubs/pyserial/serial/tools/hexlify_codec.pyi +23 -0
  3548. jaclang/vendor/typeshed/stubs/pyserial/serial/tools/list_ports.pyi +11 -0
  3549. jaclang/vendor/typeshed/stubs/pyserial/serial/tools/list_ports_common.pyi +33 -0
  3550. jaclang/vendor/typeshed/stubs/pyserial/serial/tools/list_ports_linux.pyi +11 -0
  3551. jaclang/vendor/typeshed/stubs/pyserial/serial/tools/list_ports_osx.pyi +36 -0
  3552. jaclang/vendor/typeshed/stubs/pyserial/serial/tools/list_ports_posix.pyi +11 -0
  3553. jaclang/vendor/typeshed/stubs/pyserial/serial/tools/list_ports_windows.pyi +78 -0
  3554. jaclang/vendor/typeshed/stubs/pyserial/serial/tools/miniterm.pyi +122 -0
  3555. jaclang/vendor/typeshed/stubs/pyserial/serial/urlhandler/__init__.pyi +0 -0
  3556. jaclang/vendor/typeshed/stubs/pyserial/serial/urlhandler/protocol_alt.pyi +3 -0
  3557. jaclang/vendor/typeshed/stubs/pyserial/serial/urlhandler/protocol_cp2110.pyi +13 -0
  3558. jaclang/vendor/typeshed/stubs/pyserial/serial/urlhandler/protocol_hwgrep.pyi +4 -0
  3559. jaclang/vendor/typeshed/stubs/pyserial/serial/urlhandler/protocol_loop.pyi +32 -0
  3560. jaclang/vendor/typeshed/stubs/pyserial/serial/urlhandler/protocol_rfc2217.pyi +1 -0
  3561. jaclang/vendor/typeshed/stubs/pyserial/serial/urlhandler/protocol_socket.pyi +26 -0
  3562. jaclang/vendor/typeshed/stubs/pyserial/serial/urlhandler/protocol_spy.pyi +34 -0
  3563. jaclang/vendor/typeshed/stubs/pyserial/serial/win32.pyi +253 -0
  3564. jaclang/vendor/typeshed/stubs/pysftp/METADATA.toml +3 -0
  3565. jaclang/vendor/typeshed/stubs/pysftp/pysftp/__init__.pyi +133 -0
  3566. jaclang/vendor/typeshed/stubs/pysftp/pysftp/exceptions.pyi +9 -0
  3567. jaclang/vendor/typeshed/stubs/pysftp/pysftp/helpers.pyi +35 -0
  3568. jaclang/vendor/typeshed/stubs/pytest-lazy-fixture/METADATA.toml +2 -0
  3569. jaclang/vendor/typeshed/stubs/pytest-lazy-fixture/pytest_lazyfixture.pyi +14 -0
  3570. jaclang/vendor/typeshed/stubs/python-crontab/METADATA.toml +2 -0
  3571. jaclang/vendor/typeshed/stubs/python-crontab/cronlog.pyi +33 -0
  3572. jaclang/vendor/typeshed/stubs/python-crontab/crontab.pyi +298 -0
  3573. jaclang/vendor/typeshed/stubs/python-crontab/crontabs.pyi +24 -0
  3574. jaclang/vendor/typeshed/stubs/python-datemath/METADATA.toml +8 -0
  3575. jaclang/vendor/typeshed/stubs/python-datemath/datemath/__init__.pyi +12 -0
  3576. jaclang/vendor/typeshed/stubs/python-datemath/datemath/helpers.pyi +8 -0
  3577. jaclang/vendor/typeshed/stubs/python-dateutil/METADATA.toml +6 -0
  3578. jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/__init__.pyi +0 -0
  3579. jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/_common.pyi +9 -0
  3580. jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/easter.pyi +8 -0
  3581. jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/parser/__init__.pyi +68 -0
  3582. jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/parser/isoparser.pyi +15 -0
  3583. jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/relativedelta.pyi +89 -0
  3584. jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/rrule.pyi +111 -0
  3585. jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/tz/__init__.pyi +15 -0
  3586. jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/tz/_common.pyi +28 -0
  3587. jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/tz/tz.pyi +114 -0
  3588. jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/utils.pyi +5 -0
  3589. jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/zoneinfo/__init__.pyi +17 -0
  3590. jaclang/vendor/typeshed/stubs/python-dateutil/dateutil/zoneinfo/rebuild.pyi +7 -0
  3591. jaclang/vendor/typeshed/stubs/python-http-client/METADATA.toml +2 -0
  3592. jaclang/vendor/typeshed/stubs/python-http-client/python_http_client/__init__.pyi +20 -0
  3593. jaclang/vendor/typeshed/stubs/python-http-client/python_http_client/client.pyi +31 -0
  3594. jaclang/vendor/typeshed/stubs/python-http-client/python_http_client/exceptions.pyi +28 -0
  3595. jaclang/vendor/typeshed/stubs/python-jenkins/METADATA.toml +3 -0
  3596. jaclang/vendor/typeshed/stubs/python-jenkins/jenkins/__init__.pyi +239 -0
  3597. jaclang/vendor/typeshed/stubs/python-jenkins/jenkins/plugins.pyi +15 -0
  3598. jaclang/vendor/typeshed/stubs/python-jenkins/jenkins/version.pyi +3 -0
  3599. jaclang/vendor/typeshed/stubs/python-jose/METADATA.toml +3 -0
  3600. jaclang/vendor/typeshed/stubs/python-jose/jose/__init__.pyi +11 -0
  3601. jaclang/vendor/typeshed/stubs/python-jose/jose/backends/__init__.pyi +18 -0
  3602. jaclang/vendor/typeshed/stubs/python-jose/jose/backends/_asn1.pyi +17 -0
  3603. jaclang/vendor/typeshed/stubs/python-jose/jose/backends/base.pyi +23 -0
  3604. jaclang/vendor/typeshed/stubs/python-jose/jose/backends/cryptography_backend.pyi +66 -0
  3605. jaclang/vendor/typeshed/stubs/python-jose/jose/backends/ecdsa_backend.pyi +25 -0
  3606. jaclang/vendor/typeshed/stubs/python-jose/jose/backends/native.pyi +21 -0
  3607. jaclang/vendor/typeshed/stubs/python-jose/jose/backends/rsa_backend.pyi +27 -0
  3608. jaclang/vendor/typeshed/stubs/python-jose/jose/constants.pyi +75 -0
  3609. jaclang/vendor/typeshed/stubs/python-jose/jose/exceptions.pyi +12 -0
  3610. jaclang/vendor/typeshed/stubs/python-jose/jose/jwe.pyi +22 -0
  3611. jaclang/vendor/typeshed/stubs/python-jose/jose/jwk.pyi +12 -0
  3612. jaclang/vendor/typeshed/stubs/python-jose/jose/jws.pyi +24 -0
  3613. jaclang/vendor/typeshed/stubs/python-jose/jose/jwt.pyi +29 -0
  3614. jaclang/vendor/typeshed/stubs/python-jose/jose/utils.pyi +16 -0
  3615. jaclang/vendor/typeshed/stubs/python-nmap/METADATA.toml +2 -0
  3616. jaclang/vendor/typeshed/stubs/python-nmap/nmap/__init__.pyi +2 -0
  3617. jaclang/vendor/typeshed/stubs/python-nmap/nmap/nmap.pyi +135 -0
  3618. jaclang/vendor/typeshed/stubs/python-xlib/METADATA.toml +2 -0
  3619. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/X.pyi +347 -0
  3620. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/XK.pyi +7 -0
  3621. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/Xatom.pyi +71 -0
  3622. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/Xcursorfont.pyi +80 -0
  3623. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/Xutil.pyi +59 -0
  3624. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/__init__.pyi +14 -0
  3625. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/_typing.pyi +9 -0
  3626. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/display.pyi +162 -0
  3627. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/error.pyi +57 -0
  3628. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/__init__.pyi +35 -0
  3629. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/composite.pyi +48 -0
  3630. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/damage.pyi +41 -0
  3631. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/dpms.pyi +48 -0
  3632. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/ge.pyi +18 -0
  3633. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/nvcontrol.pyi +1065 -0
  3634. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/randr.pyi +262 -0
  3635. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/record.pyi +115 -0
  3636. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/res.pyi +62 -0
  3637. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/screensaver.pyi +52 -0
  3638. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/security.pyi +33 -0
  3639. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/shape.pyi +62 -0
  3640. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/xfixes.pyi +50 -0
  3641. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/xinerama.pyi +37 -0
  3642. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/xinput.pyi +249 -0
  3643. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/ext/xtest.pyi +28 -0
  3644. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/__init__.pyi +43 -0
  3645. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/apl.pyi +21 -0
  3646. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/arabic.pyi +52 -0
  3647. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/cyrillic.pyi +109 -0
  3648. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/greek.pyi +76 -0
  3649. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/hebrew.pyi +42 -0
  3650. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/katakana.pyi +72 -0
  3651. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/korean.pyi +109 -0
  3652. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/latin1.pyi +197 -0
  3653. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/latin2.pyi +59 -0
  3654. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/latin3.pyi +24 -0
  3655. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/latin4.pyi +38 -0
  3656. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/miscellany.pyi +171 -0
  3657. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/publishing.pyi +85 -0
  3658. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/special.pyi +26 -0
  3659. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/technical.pyi +51 -0
  3660. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/thai.pyi +86 -0
  3661. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/xf86.pyi +186 -0
  3662. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/xk3270.pyi +32 -0
  3663. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/keysymdef/xkb.pyi +102 -0
  3664. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/protocol/__init__.pyi +3 -0
  3665. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/protocol/display.pyi +117 -0
  3666. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/protocol/event.pyi +83 -0
  3667. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/protocol/request.pyi +133 -0
  3668. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/protocol/rq.pyi +393 -0
  3669. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/protocol/structs.pyi +26 -0
  3670. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/rdb.pyi +97 -0
  3671. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/support/__init__.pyi +3 -0
  3672. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/support/connect.pyi +6 -0
  3673. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/support/lock.pyi +8 -0
  3674. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/support/unix_connect.pyi +25 -0
  3675. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/support/vms_connect.pyi +11 -0
  3676. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/threaded.pyi +4 -0
  3677. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/xauth.pyi +21 -0
  3678. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/xobject/__init__.pyi +10 -0
  3679. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/xobject/colormap.pyi +25 -0
  3680. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/xobject/cursor.pyi +10 -0
  3681. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/xobject/drawable.pyi +274 -0
  3682. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/xobject/fontable.pyi +33 -0
  3683. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/xobject/icccm.pyi +7 -0
  3684. jaclang/vendor/typeshed/stubs/python-xlib/Xlib/xobject/resource.pyi +10 -0
  3685. jaclang/vendor/typeshed/stubs/pytz/METADATA.toml +3 -0
  3686. jaclang/vendor/typeshed/stubs/pytz/pytz/__init__.pyi +63 -0
  3687. jaclang/vendor/typeshed/stubs/pytz/pytz/exceptions.pyi +7 -0
  3688. jaclang/vendor/typeshed/stubs/pytz/pytz/lazy.pyi +20 -0
  3689. jaclang/vendor/typeshed/stubs/pytz/pytz/reference.pyi +40 -0
  3690. jaclang/vendor/typeshed/stubs/pytz/pytz/tzfile.pyi +5 -0
  3691. jaclang/vendor/typeshed/stubs/pytz/pytz/tzinfo.pyi +43 -0
  3692. jaclang/vendor/typeshed/stubs/pywin32/METADATA.toml +5 -0
  3693. jaclang/vendor/typeshed/stubs/pywin32/_win32typing.pyi +6156 -0
  3694. jaclang/vendor/typeshed/stubs/pywin32/commctrl.pyi +1 -0
  3695. jaclang/vendor/typeshed/stubs/pywin32/dde.pyi +1 -0
  3696. jaclang/vendor/typeshed/stubs/pywin32/isapi/__init__.pyi +9 -0
  3697. jaclang/vendor/typeshed/stubs/pywin32/isapi/install.pyi +101 -0
  3698. jaclang/vendor/typeshed/stubs/pywin32/isapi/isapicon.pyi +86 -0
  3699. jaclang/vendor/typeshed/stubs/pywin32/isapi/simple.pyi +10 -0
  3700. jaclang/vendor/typeshed/stubs/pywin32/isapi/threaded_extension.pyi +29 -0
  3701. jaclang/vendor/typeshed/stubs/pywin32/mmapfile.pyi +1 -0
  3702. jaclang/vendor/typeshed/stubs/pywin32/mmsystem.pyi +1 -0
  3703. jaclang/vendor/typeshed/stubs/pywin32/ntsecuritycon.pyi +1 -0
  3704. jaclang/vendor/typeshed/stubs/pywin32/odbc.pyi +1 -0
  3705. jaclang/vendor/typeshed/stubs/pywin32/perfmon.pyi +1 -0
  3706. jaclang/vendor/typeshed/stubs/pywin32/pythoncom.pyi +496 -0
  3707. jaclang/vendor/typeshed/stubs/pywin32/pythonwin/__init__.pyi +0 -0
  3708. jaclang/vendor/typeshed/stubs/pywin32/pythonwin/dde.pyi +33 -0
  3709. jaclang/vendor/typeshed/stubs/pywin32/pythonwin/win32ui.pyi +374 -0
  3710. jaclang/vendor/typeshed/stubs/pywin32/pythonwin/win32uiole.pyi +27 -0
  3711. jaclang/vendor/typeshed/stubs/pywin32/pywintypes.pyi +1 -0
  3712. jaclang/vendor/typeshed/stubs/pywin32/regutil.pyi +1 -0
  3713. jaclang/vendor/typeshed/stubs/pywin32/servicemanager.pyi +1 -0
  3714. jaclang/vendor/typeshed/stubs/pywin32/sspicon.pyi +1 -0
  3715. jaclang/vendor/typeshed/stubs/pywin32/timer.pyi +1 -0
  3716. jaclang/vendor/typeshed/stubs/pywin32/win2kras.pyi +1 -0
  3717. jaclang/vendor/typeshed/stubs/pywin32/win32/__init__.pyi +0 -0
  3718. jaclang/vendor/typeshed/stubs/pywin32/win32/mmapfile.pyi +6 -0
  3719. jaclang/vendor/typeshed/stubs/pywin32/win32/odbc.pyi +32 -0
  3720. jaclang/vendor/typeshed/stubs/pywin32/win32/perfmon.pyi +13 -0
  3721. jaclang/vendor/typeshed/stubs/pywin32/win32/servicemanager.pyi +34 -0
  3722. jaclang/vendor/typeshed/stubs/pywin32/win32/timer.pyi +6 -0
  3723. jaclang/vendor/typeshed/stubs/pywin32/win32/win32api.pyi +368 -0
  3724. jaclang/vendor/typeshed/stubs/pywin32/win32/win32clipboard.pyi +49 -0
  3725. jaclang/vendor/typeshed/stubs/pywin32/win32/win32console.pyi +79 -0
  3726. jaclang/vendor/typeshed/stubs/pywin32/win32/win32cred.pyi +91 -0
  3727. jaclang/vendor/typeshed/stubs/pywin32/win32/win32crypt.pyi +107 -0
  3728. jaclang/vendor/typeshed/stubs/pywin32/win32/win32event.pyi +69 -0
  3729. jaclang/vendor/typeshed/stubs/pywin32/win32/win32evtlog.pyi +272 -0
  3730. jaclang/vendor/typeshed/stubs/pywin32/win32/win32file.pyi +475 -0
  3731. jaclang/vendor/typeshed/stubs/pywin32/win32/win32gui.pyi +561 -0
  3732. jaclang/vendor/typeshed/stubs/pywin32/win32/win32help.pyi +180 -0
  3733. jaclang/vendor/typeshed/stubs/pywin32/win32/win32inet.pyi +69 -0
  3734. jaclang/vendor/typeshed/stubs/pywin32/win32/win32job.pyi +74 -0
  3735. jaclang/vendor/typeshed/stubs/pywin32/win32/win32lz.pyi +9 -0
  3736. jaclang/vendor/typeshed/stubs/pywin32/win32/win32net.pyi +94 -0
  3737. jaclang/vendor/typeshed/stubs/pywin32/win32/win32pdh.pyi +62 -0
  3738. jaclang/vendor/typeshed/stubs/pywin32/win32/win32pipe.pyi +64 -0
  3739. jaclang/vendor/typeshed/stubs/pywin32/win32/win32print.pyi +201 -0
  3740. jaclang/vendor/typeshed/stubs/pywin32/win32/win32process.pyi +124 -0
  3741. jaclang/vendor/typeshed/stubs/pywin32/win32/win32profile.pyi +19 -0
  3742. jaclang/vendor/typeshed/stubs/pywin32/win32/win32ras.pyi +56 -0
  3743. jaclang/vendor/typeshed/stubs/pywin32/win32/win32security.pyi +598 -0
  3744. jaclang/vendor/typeshed/stubs/pywin32/win32/win32service.pyi +187 -0
  3745. jaclang/vendor/typeshed/stubs/pywin32/win32/win32trace.pyi +13 -0
  3746. jaclang/vendor/typeshed/stubs/pywin32/win32/win32transaction.pyi +18 -0
  3747. jaclang/vendor/typeshed/stubs/pywin32/win32/win32ts.pyi +97 -0
  3748. jaclang/vendor/typeshed/stubs/pywin32/win32/win32wnet.pyi +36 -0
  3749. jaclang/vendor/typeshed/stubs/pywin32/win32/winxpgui.pyi +5 -0
  3750. jaclang/vendor/typeshed/stubs/pywin32/win32api.pyi +1 -0
  3751. jaclang/vendor/typeshed/stubs/pywin32/win32clipboard.pyi +1 -0
  3752. jaclang/vendor/typeshed/stubs/pywin32/win32com/__init__.pyi +9 -0
  3753. jaclang/vendor/typeshed/stubs/pywin32/win32com/adsi/__init__.pyi +1 -0
  3754. jaclang/vendor/typeshed/stubs/pywin32/win32com/adsi/adsi.pyi +1 -0
  3755. jaclang/vendor/typeshed/stubs/pywin32/win32com/adsi/adsicon.pyi +1 -0
  3756. jaclang/vendor/typeshed/stubs/pywin32/win32com/authorization/__init__.pyi +1 -0
  3757. jaclang/vendor/typeshed/stubs/pywin32/win32com/authorization/authorization.pyi +1 -0
  3758. jaclang/vendor/typeshed/stubs/pywin32/win32com/axcontrol/__init__.pyi +1 -0
  3759. jaclang/vendor/typeshed/stubs/pywin32/win32com/axcontrol/axcontrol.pyi +1 -0
  3760. jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/__init__.pyi +1 -0
  3761. jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/adb.pyi +1 -0
  3762. jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/axdebug.pyi +1 -0
  3763. jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/codecontainer.pyi +1 -0
  3764. jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/contexts.pyi +1 -0
  3765. jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/debugger.pyi +1 -0
  3766. jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/documents.pyi +1 -0
  3767. jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/expressions.pyi +1 -0
  3768. jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/gateways.pyi +1 -0
  3769. jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/stackframe.pyi +1 -0
  3770. jaclang/vendor/typeshed/stubs/pywin32/win32com/axdebug/util.pyi +1 -0
  3771. jaclang/vendor/typeshed/stubs/pywin32/win32com/axscript/__init__.pyi +1 -0
  3772. jaclang/vendor/typeshed/stubs/pywin32/win32com/axscript/asputil.pyi +1 -0
  3773. jaclang/vendor/typeshed/stubs/pywin32/win32com/axscript/axscript.pyi +1 -0
  3774. jaclang/vendor/typeshed/stubs/pywin32/win32com/axscript/client/__init__.pyi +1 -0
  3775. jaclang/vendor/typeshed/stubs/pywin32/win32com/axscript/client/debug.pyi +1 -0
  3776. jaclang/vendor/typeshed/stubs/pywin32/win32com/axscript/client/error.pyi +1 -0
  3777. jaclang/vendor/typeshed/stubs/pywin32/win32com/axscript/client/framework.pyi +1 -0
  3778. jaclang/vendor/typeshed/stubs/pywin32/win32com/axscript/server/__init__.pyi +1 -0
  3779. jaclang/vendor/typeshed/stubs/pywin32/win32com/axscript/server/axsite.pyi +1 -0
  3780. jaclang/vendor/typeshed/stubs/pywin32/win32com/bits/__init__.pyi +1 -0
  3781. jaclang/vendor/typeshed/stubs/pywin32/win32com/bits/bits.pyi +1 -0
  3782. jaclang/vendor/typeshed/stubs/pywin32/win32com/client/__init__.pyi +75 -0
  3783. jaclang/vendor/typeshed/stubs/pywin32/win32com/client/build.pyi +36 -0
  3784. jaclang/vendor/typeshed/stubs/pywin32/win32com/client/dynamic.pyi +70 -0
  3785. jaclang/vendor/typeshed/stubs/pywin32/win32com/client/gencache.pyi +5 -0
  3786. jaclang/vendor/typeshed/stubs/pywin32/win32com/directsound/__init__.pyi +1 -0
  3787. jaclang/vendor/typeshed/stubs/pywin32/win32com/directsound/directsound.pyi +1 -0
  3788. jaclang/vendor/typeshed/stubs/pywin32/win32com/gen_py/__init__.pyi +0 -0
  3789. jaclang/vendor/typeshed/stubs/pywin32/win32com/ifilter/__init__.pyi +1 -0
  3790. jaclang/vendor/typeshed/stubs/pywin32/win32com/ifilter/ifilter.pyi +1 -0
  3791. jaclang/vendor/typeshed/stubs/pywin32/win32com/ifilter/ifiltercon.pyi +1 -0
  3792. jaclang/vendor/typeshed/stubs/pywin32/win32com/internet/__init__.pyi +1 -0
  3793. jaclang/vendor/typeshed/stubs/pywin32/win32com/internet/inetcon.pyi +1 -0
  3794. jaclang/vendor/typeshed/stubs/pywin32/win32com/internet/internet.pyi +1 -0
  3795. jaclang/vendor/typeshed/stubs/pywin32/win32com/mapi/__init__.pyi +1 -0
  3796. jaclang/vendor/typeshed/stubs/pywin32/win32com/mapi/emsabtags.pyi +1 -0
  3797. jaclang/vendor/typeshed/stubs/pywin32/win32com/mapi/exchange.pyi +1 -0
  3798. jaclang/vendor/typeshed/stubs/pywin32/win32com/mapi/mapi.pyi +1 -0
  3799. jaclang/vendor/typeshed/stubs/pywin32/win32com/mapi/mapitags.pyi +1 -0
  3800. jaclang/vendor/typeshed/stubs/pywin32/win32com/mapi/mapiutil.pyi +1 -0
  3801. jaclang/vendor/typeshed/stubs/pywin32/win32com/olectl.pyi +54 -0
  3802. jaclang/vendor/typeshed/stubs/pywin32/win32com/propsys/__init__.pyi +1 -0
  3803. jaclang/vendor/typeshed/stubs/pywin32/win32com/propsys/propsys.pyi +1 -0
  3804. jaclang/vendor/typeshed/stubs/pywin32/win32com/propsys/pscon.pyi +1 -0
  3805. jaclang/vendor/typeshed/stubs/pywin32/win32com/server/__init__.pyi +0 -0
  3806. jaclang/vendor/typeshed/stubs/pywin32/win32com/server/connect.pyi +15 -0
  3807. jaclang/vendor/typeshed/stubs/pywin32/win32com/server/dispatcher.pyi +18 -0
  3808. jaclang/vendor/typeshed/stubs/pywin32/win32com/server/exception.pyi +23 -0
  3809. jaclang/vendor/typeshed/stubs/pywin32/win32com/server/policy.pyi +43 -0
  3810. jaclang/vendor/typeshed/stubs/pywin32/win32com/server/util.pyi +39 -0
  3811. jaclang/vendor/typeshed/stubs/pywin32/win32com/shell/__init__.pyi +1 -0
  3812. jaclang/vendor/typeshed/stubs/pywin32/win32com/shell/shell.pyi +1 -0
  3813. jaclang/vendor/typeshed/stubs/pywin32/win32com/shell/shellcon.pyi +1 -0
  3814. jaclang/vendor/typeshed/stubs/pywin32/win32com/storagecon.pyi +113 -0
  3815. jaclang/vendor/typeshed/stubs/pywin32/win32com/taskscheduler/__init__.pyi +1 -0
  3816. jaclang/vendor/typeshed/stubs/pywin32/win32com/taskscheduler/taskscheduler.pyi +1 -0
  3817. jaclang/vendor/typeshed/stubs/pywin32/win32com/universal.pyi +36 -0
  3818. jaclang/vendor/typeshed/stubs/pywin32/win32com/util.pyi +1 -0
  3819. jaclang/vendor/typeshed/stubs/pywin32/win32comext/__init__.pyi +0 -0
  3820. jaclang/vendor/typeshed/stubs/pywin32/win32comext/adsi/__init__.pyi +77 -0
  3821. jaclang/vendor/typeshed/stubs/pywin32/win32comext/adsi/adsi.pyi +58 -0
  3822. jaclang/vendor/typeshed/stubs/pywin32/win32comext/adsi/adsicon.pyi +318 -0
  3823. jaclang/vendor/typeshed/stubs/pywin32/win32comext/authorization/__init__.pyi +0 -0
  3824. jaclang/vendor/typeshed/stubs/pywin32/win32comext/authorization/authorization.pyi +5 -0
  3825. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axcontrol/__init__.pyi +0 -0
  3826. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axcontrol/axcontrol.pyi +61 -0
  3827. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/__init__.pyi +0 -0
  3828. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/adb.pyi +71 -0
  3829. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/axdebug.pyi +122 -0
  3830. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/codecontainer.pyi +42 -0
  3831. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/contexts.pyi +18 -0
  3832. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/debugger.pyi +56 -0
  3833. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/documents.pyi +30 -0
  3834. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/expressions.pyi +67 -0
  3835. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/gateways.pyi +114 -0
  3836. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/stackframe.pyi +33 -0
  3837. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axdebug/util.pyi +11 -0
  3838. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axscript/__init__.pyi +0 -0
  3839. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axscript/asputil.pyi +1 -0
  3840. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axscript/axscript.pyi +52 -0
  3841. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axscript/client/__init__.pyi +0 -0
  3842. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axscript/client/debug.pyi +42 -0
  3843. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axscript/client/error.pyi +35 -0
  3844. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axscript/client/framework.pyi +154 -0
  3845. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axscript/server/__init__.pyi +0 -0
  3846. jaclang/vendor/typeshed/stubs/pywin32/win32comext/axscript/server/axsite.pyi +32 -0
  3847. jaclang/vendor/typeshed/stubs/pywin32/win32comext/bits/__init__.pyi +0 -0
  3848. jaclang/vendor/typeshed/stubs/pywin32/win32comext/bits/bits.pyi +61 -0
  3849. jaclang/vendor/typeshed/stubs/pywin32/win32comext/directsound/__init__.pyi +0 -0
  3850. jaclang/vendor/typeshed/stubs/pywin32/win32comext/directsound/directsound.pyi +116 -0
  3851. jaclang/vendor/typeshed/stubs/pywin32/win32comext/ifilter/__init__.pyi +0 -0
  3852. jaclang/vendor/typeshed/stubs/pywin32/win32comext/ifilter/ifilter.pyi +33 -0
  3853. jaclang/vendor/typeshed/stubs/pywin32/win32comext/ifilter/ifiltercon.pyi +103 -0
  3854. jaclang/vendor/typeshed/stubs/pywin32/win32comext/internet/__init__.pyi +0 -0
  3855. jaclang/vendor/typeshed/stubs/pywin32/win32comext/internet/inetcon.pyi +254 -0
  3856. jaclang/vendor/typeshed/stubs/pywin32/win32comext/internet/internet.pyi +51 -0
  3857. jaclang/vendor/typeshed/stubs/pywin32/win32comext/mapi/__init__.pyi +0 -0
  3858. jaclang/vendor/typeshed/stubs/pywin32/win32comext/mapi/emsabtags.pyi +865 -0
  3859. jaclang/vendor/typeshed/stubs/pywin32/win32comext/mapi/exchange.pyi +9 -0
  3860. jaclang/vendor/typeshed/stubs/pywin32/win32comext/mapi/mapi.pyi +342 -0
  3861. jaclang/vendor/typeshed/stubs/pywin32/win32comext/mapi/mapitags.pyi +991 -0
  3862. jaclang/vendor/typeshed/stubs/pywin32/win32comext/mapi/mapiutil.pyi +15 -0
  3863. jaclang/vendor/typeshed/stubs/pywin32/win32comext/propsys/__init__.pyi +0 -0
  3864. jaclang/vendor/typeshed/stubs/pywin32/win32comext/propsys/propsys.pyi +61 -0
  3865. jaclang/vendor/typeshed/stubs/pywin32/win32comext/propsys/pscon.pyi +694 -0
  3866. jaclang/vendor/typeshed/stubs/pywin32/win32comext/shell/__init__.pyi +0 -0
  3867. jaclang/vendor/typeshed/stubs/pywin32/win32comext/shell/shell.pyi +438 -0
  3868. jaclang/vendor/typeshed/stubs/pywin32/win32comext/shell/shellcon.pyi +1413 -0
  3869. jaclang/vendor/typeshed/stubs/pywin32/win32comext/taskscheduler/__init__.pyi +0 -0
  3870. jaclang/vendor/typeshed/stubs/pywin32/win32comext/taskscheduler/taskscheduler.pyi +83 -0
  3871. jaclang/vendor/typeshed/stubs/pywin32/win32con.pyi +1 -0
  3872. jaclang/vendor/typeshed/stubs/pywin32/win32console.pyi +1 -0
  3873. jaclang/vendor/typeshed/stubs/pywin32/win32cred.pyi +1 -0
  3874. jaclang/vendor/typeshed/stubs/pywin32/win32crypt.pyi +1 -0
  3875. jaclang/vendor/typeshed/stubs/pywin32/win32cryptcon.pyi +1 -0
  3876. jaclang/vendor/typeshed/stubs/pywin32/win32event.pyi +1 -0
  3877. jaclang/vendor/typeshed/stubs/pywin32/win32evtlog.pyi +1 -0
  3878. jaclang/vendor/typeshed/stubs/pywin32/win32evtlogutil.pyi +1 -0
  3879. jaclang/vendor/typeshed/stubs/pywin32/win32file.pyi +1 -0
  3880. jaclang/vendor/typeshed/stubs/pywin32/win32gui.pyi +1 -0
  3881. jaclang/vendor/typeshed/stubs/pywin32/win32gui_struct.pyi +1 -0
  3882. jaclang/vendor/typeshed/stubs/pywin32/win32help.pyi +1 -0
  3883. jaclang/vendor/typeshed/stubs/pywin32/win32inet.pyi +1 -0
  3884. jaclang/vendor/typeshed/stubs/pywin32/win32inetcon.pyi +1 -0
  3885. jaclang/vendor/typeshed/stubs/pywin32/win32job.pyi +1 -0
  3886. jaclang/vendor/typeshed/stubs/pywin32/win32lz.pyi +1 -0
  3887. jaclang/vendor/typeshed/stubs/pywin32/win32net.pyi +1 -0
  3888. jaclang/vendor/typeshed/stubs/pywin32/win32netcon.pyi +1 -0
  3889. jaclang/vendor/typeshed/stubs/pywin32/win32pdh.pyi +1 -0
  3890. jaclang/vendor/typeshed/stubs/pywin32/win32pdhquery.pyi +1 -0
  3891. jaclang/vendor/typeshed/stubs/pywin32/win32pipe.pyi +1 -0
  3892. jaclang/vendor/typeshed/stubs/pywin32/win32print.pyi +1 -0
  3893. jaclang/vendor/typeshed/stubs/pywin32/win32process.pyi +1 -0
  3894. jaclang/vendor/typeshed/stubs/pywin32/win32profile.pyi +1 -0
  3895. jaclang/vendor/typeshed/stubs/pywin32/win32ras.pyi +1 -0
  3896. jaclang/vendor/typeshed/stubs/pywin32/win32security.pyi +1 -0
  3897. jaclang/vendor/typeshed/stubs/pywin32/win32service.pyi +1 -0
  3898. jaclang/vendor/typeshed/stubs/pywin32/win32serviceutil.pyi +1 -0
  3899. jaclang/vendor/typeshed/stubs/pywin32/win32timezone.pyi +1 -0
  3900. jaclang/vendor/typeshed/stubs/pywin32/win32trace.pyi +1 -0
  3901. jaclang/vendor/typeshed/stubs/pywin32/win32transaction.pyi +1 -0
  3902. jaclang/vendor/typeshed/stubs/pywin32/win32ts.pyi +1 -0
  3903. jaclang/vendor/typeshed/stubs/pywin32/win32ui.pyi +1 -0
  3904. jaclang/vendor/typeshed/stubs/pywin32/win32uiole.pyi +1 -0
  3905. jaclang/vendor/typeshed/stubs/pywin32/win32verstamp.pyi +1 -0
  3906. jaclang/vendor/typeshed/stubs/pywin32/win32wnet.pyi +1 -0
  3907. jaclang/vendor/typeshed/stubs/pywin32/winerror.pyi +1 -0
  3908. jaclang/vendor/typeshed/stubs/pywin32/winioctlcon.pyi +1 -0
  3909. jaclang/vendor/typeshed/stubs/pywin32/winnt.pyi +1 -0
  3910. jaclang/vendor/typeshed/stubs/pywin32/winperf.pyi +1 -0
  3911. jaclang/vendor/typeshed/stubs/pywin32/winxpgui.pyi +1 -0
  3912. jaclang/vendor/typeshed/stubs/pywin32/winxptheme.pyi +1 -0
  3913. jaclang/vendor/typeshed/stubs/pyxdg/METADATA.toml +2 -0
  3914. jaclang/vendor/typeshed/stubs/pyxdg/xdg/BaseDirectory.pyi +18 -0
  3915. jaclang/vendor/typeshed/stubs/pyxdg/xdg/Config.pyi +13 -0
  3916. jaclang/vendor/typeshed/stubs/pyxdg/xdg/DesktopEntry.pyi +65 -0
  3917. jaclang/vendor/typeshed/stubs/pyxdg/xdg/Exceptions.pyi +41 -0
  3918. jaclang/vendor/typeshed/stubs/pyxdg/xdg/IconTheme.pyi +55 -0
  3919. jaclang/vendor/typeshed/stubs/pyxdg/xdg/IniFile.pyi +254 -0
  3920. jaclang/vendor/typeshed/stubs/pyxdg/xdg/Locale.pyi +8 -0
  3921. jaclang/vendor/typeshed/stubs/pyxdg/xdg/Menu.pyi +167 -0
  3922. jaclang/vendor/typeshed/stubs/pyxdg/xdg/MenuEditor.pyi +146 -0
  3923. jaclang/vendor/typeshed/stubs/pyxdg/xdg/Mime.pyi +102 -0
  3924. jaclang/vendor/typeshed/stubs/pyxdg/xdg/RecentFiles.pyi +28 -0
  3925. jaclang/vendor/typeshed/stubs/pyxdg/xdg/__init__.pyi +15 -0
  3926. jaclang/vendor/typeshed/stubs/pyxdg/xdg/util.pyi +6 -0
  3927. jaclang/vendor/typeshed/stubs/qrbill/METADATA.toml +3 -0
  3928. jaclang/vendor/typeshed/stubs/qrbill/qrbill/__init__.pyi +1 -0
  3929. jaclang/vendor/typeshed/stubs/qrbill/qrbill/bill.pyi +180 -0
  3930. jaclang/vendor/typeshed/stubs/qrcode/METADATA.toml +7 -0
  3931. jaclang/vendor/typeshed/stubs/qrcode/qrcode/LUT.pyi +3 -0
  3932. jaclang/vendor/typeshed/stubs/qrcode/qrcode/__init__.pyi +22 -0
  3933. jaclang/vendor/typeshed/stubs/qrcode/qrcode/_types.pyi +15 -0
  3934. jaclang/vendor/typeshed/stubs/qrcode/qrcode/base.pyi +27 -0
  3935. jaclang/vendor/typeshed/stubs/qrcode/qrcode/console_scripts.pyi +12 -0
  3936. jaclang/vendor/typeshed/stubs/qrcode/qrcode/constants.pyi +6 -0
  3937. jaclang/vendor/typeshed/stubs/qrcode/qrcode/exceptions.pyi +1 -0
  3938. jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/__init__.pyi +0 -0
  3939. jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/base.pyi +67 -0
  3940. jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/pil.pyi +30 -0
  3941. jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/pure.pyi +23 -0
  3942. jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/styledpil.pyi +56 -0
  3943. jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/styles/__init__.pyi +0 -0
  3944. jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/styles/colormasks.pyi +64 -0
  3945. jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/styles/moduledrawers/__init__.pyi +8 -0
  3946. jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/styles/moduledrawers/base.pyi +12 -0
  3947. jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/styles/moduledrawers/pil.pyi +66 -0
  3948. jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/styles/moduledrawers/svg.pyi +56 -0
  3949. jaclang/vendor/typeshed/stubs/qrcode/qrcode/image/svg.pyi +66 -0
  3950. jaclang/vendor/typeshed/stubs/qrcode/qrcode/main.pyi +133 -0
  3951. jaclang/vendor/typeshed/stubs/qrcode/qrcode/release.pyi +1 -0
  3952. jaclang/vendor/typeshed/stubs/qrcode/qrcode/util.pyi +69 -0
  3953. jaclang/vendor/typeshed/stubs/ratelimit/METADATA.toml +2 -0
  3954. jaclang/vendor/typeshed/stubs/ratelimit/ratelimit/__init__.pyi +7 -0
  3955. jaclang/vendor/typeshed/stubs/ratelimit/ratelimit/decorators.pyi +14 -0
  3956. jaclang/vendor/typeshed/stubs/ratelimit/ratelimit/exception.pyi +3 -0
  3957. jaclang/vendor/typeshed/stubs/regex/METADATA.toml +2 -0
  3958. jaclang/vendor/typeshed/stubs/regex/regex/__init__.pyi +1 -0
  3959. jaclang/vendor/typeshed/stubs/regex/regex/_regex.pyi +26 -0
  3960. jaclang/vendor/typeshed/stubs/regex/regex/_regex_core.pyi +91 -0
  3961. jaclang/vendor/typeshed/stubs/regex/regex/regex.pyi +647 -0
  3962. jaclang/vendor/typeshed/stubs/reportlab/METADATA.toml +7 -0
  3963. jaclang/vendor/typeshed/stubs/reportlab/reportlab/__init__.pyi +11 -0
  3964. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/__init__.pyi +3 -0
  3965. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/__init__.pyi +7 -0
  3966. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/code128.pyi +33 -0
  3967. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/code39.pyi +32 -0
  3968. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/code93.pyi +28 -0
  3969. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/common.pyi +124 -0
  3970. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/dmtx.pyi +68 -0
  3971. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/eanbc.pyi +43 -0
  3972. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/ecc200datamatrix.pyi +24 -0
  3973. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/fourstate.pyi +0 -0
  3974. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/lto.pyi +35 -0
  3975. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/qr.pyi +52 -0
  3976. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/qrencoder.pyi +202 -0
  3977. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/usps.pyi +36 -0
  3978. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/usps4s.pyi +87 -0
  3979. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/barcode/widgets.pyi +80 -0
  3980. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/__init__.pyi +3 -0
  3981. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/areas.pyi +19 -0
  3982. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/axes.pyi +205 -0
  3983. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/barcharts.pyi +105 -0
  3984. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/dotbox.pyi +24 -0
  3985. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/doughnut.pyi +35 -0
  3986. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/legends.pyi +101 -0
  3987. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/linecharts.pyi +67 -0
  3988. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/lineplots.pyi +119 -0
  3989. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/markers.pyi +10 -0
  3990. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/piecharts.pyi +183 -0
  3991. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/slidebox.pyi +38 -0
  3992. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/spider.pyi +60 -0
  3993. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/textlabels.pyi +60 -0
  3994. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/utils.pyi +45 -0
  3995. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/charts/utils3d.pyi +26 -0
  3996. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/renderPDF.pyi +39 -0
  3997. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/renderPM.pyi +132 -0
  3998. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/renderPS.pyi +73 -0
  3999. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/renderSVG.pyi +107 -0
  4000. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/renderbase.pyi +39 -0
  4001. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/__init__.pyi +0 -0
  4002. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/bubble.pyi +5 -0
  4003. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/clustered_bar.pyi +5 -0
  4004. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/clustered_column.pyi +5 -0
  4005. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/excelcolors.pyi +33 -0
  4006. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/exploded_pie.pyi +8 -0
  4007. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/filled_radar.pyi +5 -0
  4008. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/line_chart.pyi +5 -0
  4009. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/linechart_with_markers.pyi +5 -0
  4010. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/radar.pyi +5 -0
  4011. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/runall.pyi +3 -0
  4012. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/scatter.pyi +5 -0
  4013. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/scatter_lines.pyi +5 -0
  4014. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/scatter_lines_markers.pyi +5 -0
  4015. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/simple_pie.pyi +8 -0
  4016. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/stacked_bar.pyi +5 -0
  4017. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/samples/stacked_column.pyi +5 -0
  4018. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/shapes.pyi +371 -0
  4019. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/svgpath.pyi +10 -0
  4020. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/transform.pyi +27 -0
  4021. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/utils.pyi +22 -0
  4022. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/widgetbase.pyi +112 -0
  4023. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/widgets/__init__.pyi +3 -0
  4024. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/widgets/adjustableArrow.pyi +11 -0
  4025. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/widgets/eventcal.pyi +29 -0
  4026. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/widgets/flags.pyi +32 -0
  4027. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/widgets/grids.pyi +76 -0
  4028. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/widgets/markers.pyi +21 -0
  4029. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/widgets/signsandsymbols.pyi +164 -0
  4030. jaclang/vendor/typeshed/stubs/reportlab/reportlab/graphics/widgets/table.pyi +32 -0
  4031. jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/__init__.pyi +3 -0
  4032. jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/acroform.pyi +214 -0
  4033. jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/cidfonts.pyi +51 -0
  4034. jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/pdfdoc.pyi +612 -0
  4035. jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/pdfform.pyi +81 -0
  4036. jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/pdfmetrics.pyi +88 -0
  4037. jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/pdfpattern.pyi +21 -0
  4038. jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/pdfutils.pyi +15 -0
  4039. jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/rl_codecs.pyi +24 -0
  4040. jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfbase/ttfonts.pyi +186 -0
  4041. jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfgen/__init__.pyi +3 -0
  4042. jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfgen/canvas.pyi +271 -0
  4043. jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfgen/pathobject.pyi +17 -0
  4044. jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfgen/pdfgeom.pyi +5 -0
  4045. jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfgen/pdfimages.pyi +36 -0
  4046. jaclang/vendor/typeshed/stubs/reportlab/reportlab/pdfgen/textobject.pyi +72 -0
  4047. jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/__init__.pyi +12 -0
  4048. jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/doctemplate.pyi +273 -0
  4049. jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/figures.pyi +108 -0
  4050. jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/flowables.pyi +471 -0
  4051. jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/frames.pyi +38 -0
  4052. jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/multicol.pyi +19 -0
  4053. jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/para.pyi +271 -0
  4054. jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/paragraph.pyi +40 -0
  4055. jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/paraparser.pyi +117 -0
  4056. jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/tableofcontents.pyi +108 -0
  4057. jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/tables.pyi +126 -0
  4058. jaclang/vendor/typeshed/stubs/reportlab/reportlab/platypus/xpreformatted.pyi +32 -0
  4059. jaclang/vendor/typeshed/stubs/reportlab/reportlab/rl_config.pyi +72 -0
  4060. jaclang/vendor/typeshed/stubs/reportlab/reportlab/rl_settings.pyi +140 -0
  4061. jaclang/vendor/typeshed/stubs/requests/METADATA.toml +13 -0
  4062. jaclang/vendor/typeshed/stubs/requests/requests/__init__.pyi +39 -0
  4063. jaclang/vendor/typeshed/stubs/requests/requests/__version__.pyi +12 -0
  4064. jaclang/vendor/typeshed/stubs/requests/requests/adapters.pyi +109 -0
  4065. jaclang/vendor/typeshed/stubs/requests/requests/api.pyi +154 -0
  4066. jaclang/vendor/typeshed/stubs/requests/requests/auth.pyi +39 -0
  4067. jaclang/vendor/typeshed/stubs/requests/requests/certs.pyi +1 -0
  4068. jaclang/vendor/typeshed/stubs/requests/requests/compat.pyi +26 -0
  4069. jaclang/vendor/typeshed/stubs/requests/requests/cookies.pyi +62 -0
  4070. jaclang/vendor/typeshed/stubs/requests/requests/exceptions.pyi +42 -0
  4071. jaclang/vendor/typeshed/stubs/requests/requests/help.pyi +34 -0
  4072. jaclang/vendor/typeshed/stubs/requests/requests/hooks.pyi +6 -0
  4073. jaclang/vendor/typeshed/stubs/requests/requests/models.pyi +169 -0
  4074. jaclang/vendor/typeshed/stubs/requests/requests/packages.pyi +3 -0
  4075. jaclang/vendor/typeshed/stubs/requests/requests/sessions.pyi +313 -0
  4076. jaclang/vendor/typeshed/stubs/requests/requests/status_codes.pyi +3 -0
  4077. jaclang/vendor/typeshed/stubs/requests/requests/structures.pyi +25 -0
  4078. jaclang/vendor/typeshed/stubs/requests/requests/utils.pyi +70 -0
  4079. jaclang/vendor/typeshed/stubs/requests-oauthlib/METADATA.toml +3 -0
  4080. jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/__init__.pyi +6 -0
  4081. jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/__init__.pyi +8 -0
  4082. jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/douban.pyi +7 -0
  4083. jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/ebay.pyi +7 -0
  4084. jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/facebook.pyi +7 -0
  4085. jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/fitbit.pyi +3 -0
  4086. jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/instagram.pyi +7 -0
  4087. jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/mailchimp.pyi +7 -0
  4088. jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/plentymarkets.pyi +7 -0
  4089. jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/slack.pyi +7 -0
  4090. jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/compliance_fixes/weibo.pyi +7 -0
  4091. jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/oauth1_auth.pyi +35 -0
  4092. jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/oauth1_session.pyi +65 -0
  4093. jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/oauth2_auth.pyi +5 -0
  4094. jaclang/vendor/typeshed/stubs/requests-oauthlib/requests_oauthlib/oauth2_session.pyi +138 -0
  4095. jaclang/vendor/typeshed/stubs/retry/METADATA.toml +2 -0
  4096. jaclang/vendor/typeshed/stubs/retry/retry/__init__.pyi +3 -0
  4097. jaclang/vendor/typeshed/stubs/retry/retry/api.pyi +30 -0
  4098. jaclang/vendor/typeshed/stubs/rfc3339-validator/METADATA.toml +2 -0
  4099. jaclang/vendor/typeshed/stubs/rfc3339-validator/rfc3339_validator.pyi +10 -0
  4100. jaclang/vendor/typeshed/stubs/s2clientprotocol/METADATA.toml +7 -0
  4101. jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/build.pyi +5 -0
  4102. jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/common_pb2.pyi +177 -0
  4103. jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/data_pb2.pyi +615 -0
  4104. jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/debug_pb2.pyi +501 -0
  4105. jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/error_pb2.pyi +459 -0
  4106. jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/query_pb2.pyi +228 -0
  4107. jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/raw_pb2.pyi +1024 -0
  4108. jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/sc2api_pb2.pyi +2896 -0
  4109. jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/score_pb2.pyi +406 -0
  4110. jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/spatial_pb2.pyi +712 -0
  4111. jaclang/vendor/typeshed/stubs/s2clientprotocol/s2clientprotocol/ui_pb2.pyi +681 -0
  4112. jaclang/vendor/typeshed/stubs/seaborn/METADATA.toml +4 -0
  4113. jaclang/vendor/typeshed/stubs/seaborn/seaborn/__init__.pyi +13 -0
  4114. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/__init__.pyi +0 -0
  4115. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/data.pyi +26 -0
  4116. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/exceptions.pyi +1 -0
  4117. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/groupby.pyi +33 -0
  4118. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/moves.pyi +44 -0
  4119. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/plot.pyi +153 -0
  4120. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/properties.pyi +98 -0
  4121. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/rules.pyi +14 -0
  4122. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/scales.pyi +100 -0
  4123. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/subplots.pyi +19 -0
  4124. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_core/typing.pyi +32 -0
  4125. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_marks/__init__.pyi +0 -0
  4126. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_marks/area.pyi +28 -0
  4127. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_marks/bar.pyi +31 -0
  4128. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_marks/base.pyi +38 -0
  4129. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_marks/dot.pyi +39 -0
  4130. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_marks/line.pyi +42 -0
  4131. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_marks/text.pyi +14 -0
  4132. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_stats/__init__.pyi +0 -0
  4133. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_stats/aggregation.pyi +19 -0
  4134. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_stats/base.pyi +11 -0
  4135. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_stats/counting.pyi +19 -0
  4136. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_stats/density.pyi +15 -0
  4137. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_stats/order.pyi +8 -0
  4138. jaclang/vendor/typeshed/stubs/seaborn/seaborn/_stats/regression.pyi +11 -0
  4139. jaclang/vendor/typeshed/stubs/seaborn/seaborn/algorithms.pyi +28 -0
  4140. jaclang/vendor/typeshed/stubs/seaborn/seaborn/axisgrid.pyi +402 -0
  4141. jaclang/vendor/typeshed/stubs/seaborn/seaborn/categorical.pyi +294 -0
  4142. jaclang/vendor/typeshed/stubs/seaborn/seaborn/cm.pyi +15 -0
  4143. jaclang/vendor/typeshed/stubs/seaborn/seaborn/colors/__init__.pyi +2 -0
  4144. jaclang/vendor/typeshed/stubs/seaborn/seaborn/colors/crayons.pyi +1 -0
  4145. jaclang/vendor/typeshed/stubs/seaborn/seaborn/colors/xkcd_rgb.pyi +1 -0
  4146. jaclang/vendor/typeshed/stubs/seaborn/seaborn/distributions.pyi +170 -0
  4147. jaclang/vendor/typeshed/stubs/seaborn/seaborn/external/__init__.pyi +0 -0
  4148. jaclang/vendor/typeshed/stubs/seaborn/seaborn/external/appdirs.pyi +9 -0
  4149. jaclang/vendor/typeshed/stubs/seaborn/seaborn/external/docscrape.pyi +68 -0
  4150. jaclang/vendor/typeshed/stubs/seaborn/seaborn/external/husl.pyi +42 -0
  4151. jaclang/vendor/typeshed/stubs/seaborn/seaborn/external/kde.pyi +43 -0
  4152. jaclang/vendor/typeshed/stubs/seaborn/seaborn/external/version.pyi +45 -0
  4153. jaclang/vendor/typeshed/stubs/seaborn/seaborn/matrix.pyi +196 -0
  4154. jaclang/vendor/typeshed/stubs/seaborn/seaborn/miscplot.pyi +9 -0
  4155. jaclang/vendor/typeshed/stubs/seaborn/seaborn/objects.pyi +21 -0
  4156. jaclang/vendor/typeshed/stubs/seaborn/seaborn/palettes.pyi +149 -0
  4157. jaclang/vendor/typeshed/stubs/seaborn/seaborn/rcmod.pyi +74 -0
  4158. jaclang/vendor/typeshed/stubs/seaborn/seaborn/regression.pyi +162 -0
  4159. jaclang/vendor/typeshed/stubs/seaborn/seaborn/relational.pyi +103 -0
  4160. jaclang/vendor/typeshed/stubs/seaborn/seaborn/utils.pyi +113 -0
  4161. jaclang/vendor/typeshed/stubs/seaborn/seaborn/widgets.pyi +36 -0
  4162. jaclang/vendor/typeshed/stubs/setuptools/METADATA.toml +11 -0
  4163. jaclang/vendor/typeshed/stubs/setuptools/distutils/__init__.pyi +3 -0
  4164. jaclang/vendor/typeshed/stubs/setuptools/distutils/_modified.pyi +1 -0
  4165. jaclang/vendor/typeshed/stubs/setuptools/distutils/_msvccompiler.pyi +1 -0
  4166. jaclang/vendor/typeshed/stubs/setuptools/distutils/archive_util.pyi +1 -0
  4167. jaclang/vendor/typeshed/stubs/setuptools/distutils/ccompiler.pyi +12 -0
  4168. jaclang/vendor/typeshed/stubs/setuptools/distutils/cmd.pyi +1 -0
  4169. jaclang/vendor/typeshed/stubs/setuptools/distutils/command/__init__.pyi +39 -0
  4170. jaclang/vendor/typeshed/stubs/setuptools/distutils/command/bdist.pyi +1 -0
  4171. jaclang/vendor/typeshed/stubs/setuptools/distutils/command/bdist_rpm.pyi +1 -0
  4172. jaclang/vendor/typeshed/stubs/setuptools/distutils/command/build.pyi +1 -0
  4173. jaclang/vendor/typeshed/stubs/setuptools/distutils/command/build_clib.pyi +1 -0
  4174. jaclang/vendor/typeshed/stubs/setuptools/distutils/command/build_ext.pyi +1 -0
  4175. jaclang/vendor/typeshed/stubs/setuptools/distutils/command/build_py.pyi +1 -0
  4176. jaclang/vendor/typeshed/stubs/setuptools/distutils/command/install.pyi +1 -0
  4177. jaclang/vendor/typeshed/stubs/setuptools/distutils/command/install_data.pyi +1 -0
  4178. jaclang/vendor/typeshed/stubs/setuptools/distutils/command/install_lib.pyi +1 -0
  4179. jaclang/vendor/typeshed/stubs/setuptools/distutils/command/install_scripts.pyi +1 -0
  4180. jaclang/vendor/typeshed/stubs/setuptools/distutils/command/sdist.pyi +1 -0
  4181. jaclang/vendor/typeshed/stubs/setuptools/distutils/compat/__init__.pyi +1 -0
  4182. jaclang/vendor/typeshed/stubs/setuptools/distutils/compilers/C/base.pyi +1 -0
  4183. jaclang/vendor/typeshed/stubs/setuptools/distutils/compilers/C/errors.pyi +1 -0
  4184. jaclang/vendor/typeshed/stubs/setuptools/distutils/compilers/C/msvc.pyi +1 -0
  4185. jaclang/vendor/typeshed/stubs/setuptools/distutils/compilers/C/unix.pyi +1 -0
  4186. jaclang/vendor/typeshed/stubs/setuptools/distutils/dep_util.pyi +1 -0
  4187. jaclang/vendor/typeshed/stubs/setuptools/distutils/dist.pyi +1 -0
  4188. jaclang/vendor/typeshed/stubs/setuptools/distutils/errors.pyi +1 -0
  4189. jaclang/vendor/typeshed/stubs/setuptools/distutils/extension.pyi +1 -0
  4190. jaclang/vendor/typeshed/stubs/setuptools/distutils/filelist.pyi +1 -0
  4191. jaclang/vendor/typeshed/stubs/setuptools/distutils/spawn.pyi +1 -0
  4192. jaclang/vendor/typeshed/stubs/setuptools/distutils/sysconfig.pyi +1 -0
  4193. jaclang/vendor/typeshed/stubs/setuptools/distutils/unixccompiler.pyi +1 -0
  4194. jaclang/vendor/typeshed/stubs/setuptools/distutils/util.pyi +1 -0
  4195. jaclang/vendor/typeshed/stubs/setuptools/setuptools/__init__.pyi +219 -0
  4196. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/__init__.pyi +3 -0
  4197. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/_modified.pyi +17 -0
  4198. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/_msvccompiler.pyi +5 -0
  4199. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/archive_util.pyi +35 -0
  4200. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/ccompiler.pyi +15 -0
  4201. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/cmd.pyi +117 -0
  4202. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/__init__.pyi +39 -0
  4203. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/bdist.pyi +26 -0
  4204. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/bdist_rpm.pyi +53 -0
  4205. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/build.pyi +30 -0
  4206. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/build_clib.pyi +27 -0
  4207. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/build_ext.pyi +49 -0
  4208. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/build_py.pyi +39 -0
  4209. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/install.pyi +60 -0
  4210. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/install_data.pyi +20 -0
  4211. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/install_lib.pyi +24 -0
  4212. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/install_scripts.pyi +19 -0
  4213. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/command/sdist.pyi +46 -0
  4214. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/compat/__init__.pyi +6 -0
  4215. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/compilers/C/base.pyi +196 -0
  4216. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/compilers/C/errors.pyi +6 -0
  4217. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/compilers/C/msvc.pyi +19 -0
  4218. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/compilers/C/unix.pyi +16 -0
  4219. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/dep_util.pyi +1 -0
  4220. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/dist.pyi +176 -0
  4221. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/errors.pyi +25 -0
  4222. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/extension.pyi +39 -0
  4223. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/filelist.pyi +38 -0
  4224. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/spawn.pyi +12 -0
  4225. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/sysconfig.pyi +22 -0
  4226. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/unixccompiler.pyi +3 -0
  4227. jaclang/vendor/typeshed/stubs/setuptools/setuptools/_distutils/util.pyi +38 -0
  4228. jaclang/vendor/typeshed/stubs/setuptools/setuptools/archive_util.pyi +24 -0
  4229. jaclang/vendor/typeshed/stubs/setuptools/setuptools/build_meta.pyi +64 -0
  4230. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/__init__.pyi +0 -0
  4231. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/alias.pyi +19 -0
  4232. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/bdist_egg.pyi +61 -0
  4233. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/bdist_rpm.pyi +7 -0
  4234. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/bdist_wheel.pyi +54 -0
  4235. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/build.pyi +18 -0
  4236. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/build_clib.pyi +8 -0
  4237. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/build_ext.pyi +51 -0
  4238. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/build_py.pyi +43 -0
  4239. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/develop.pyi +24 -0
  4240. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/dist_info.pyi +12 -0
  4241. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/easy_install.pyi +11 -0
  4242. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/editable_wheel.pyi +80 -0
  4243. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/egg_info.pyi +84 -0
  4244. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/install.pyi +21 -0
  4245. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/install_egg_info.pyi +17 -0
  4246. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/install_lib.pyi +20 -0
  4247. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/install_scripts.pyi +11 -0
  4248. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/rotate.pyi +15 -0
  4249. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/saveopts.pyi +5 -0
  4250. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/sdist.pyi +24 -0
  4251. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/setopt.pyi +33 -0
  4252. jaclang/vendor/typeshed/stubs/setuptools/setuptools/command/test.pyi +17 -0
  4253. jaclang/vendor/typeshed/stubs/setuptools/setuptools/config/__init__.pyi +3 -0
  4254. jaclang/vendor/typeshed/stubs/setuptools/setuptools/config/expand.pyi +50 -0
  4255. jaclang/vendor/typeshed/stubs/setuptools/setuptools/config/pyprojecttoml.pyi +50 -0
  4256. jaclang/vendor/typeshed/stubs/setuptools/setuptools/config/setupcfg.pyi +84 -0
  4257. jaclang/vendor/typeshed/stubs/setuptools/setuptools/depends.pyi +20 -0
  4258. jaclang/vendor/typeshed/stubs/setuptools/setuptools/discovery.pyi +43 -0
  4259. jaclang/vendor/typeshed/stubs/setuptools/setuptools/dist.pyi +195 -0
  4260. jaclang/vendor/typeshed/stubs/setuptools/setuptools/errors.pyi +24 -0
  4261. jaclang/vendor/typeshed/stubs/setuptools/setuptools/extension.pyi +32 -0
  4262. jaclang/vendor/typeshed/stubs/setuptools/setuptools/glob.pyi +5 -0
  4263. jaclang/vendor/typeshed/stubs/setuptools/setuptools/installer.pyi +16 -0
  4264. jaclang/vendor/typeshed/stubs/setuptools/setuptools/launch.pyi +1 -0
  4265. jaclang/vendor/typeshed/stubs/setuptools/setuptools/logging.pyi +2 -0
  4266. jaclang/vendor/typeshed/stubs/setuptools/setuptools/modified.pyi +3 -0
  4267. jaclang/vendor/typeshed/stubs/setuptools/setuptools/monkey.pyi +15 -0
  4268. jaclang/vendor/typeshed/stubs/setuptools/setuptools/msvc.pyi +166 -0
  4269. jaclang/vendor/typeshed/stubs/setuptools/setuptools/namespaces.pyi +10 -0
  4270. jaclang/vendor/typeshed/stubs/setuptools/setuptools/unicode_utils.pyi +3 -0
  4271. jaclang/vendor/typeshed/stubs/setuptools/setuptools/version.pyi +1 -0
  4272. jaclang/vendor/typeshed/stubs/setuptools/setuptools/warnings.pyi +19 -0
  4273. jaclang/vendor/typeshed/stubs/setuptools/setuptools/wheel.pyi +17 -0
  4274. jaclang/vendor/typeshed/stubs/setuptools/setuptools/windows_support.pyi +2 -0
  4275. jaclang/vendor/typeshed/stubs/shapely/METADATA.toml +4 -0
  4276. jaclang/vendor/typeshed/stubs/shapely/shapely/__init__.pyi +34 -0
  4277. jaclang/vendor/typeshed/stubs/shapely/shapely/_enum.pyi +5 -0
  4278. jaclang/vendor/typeshed/stubs/shapely/shapely/_geometry.pyi +189 -0
  4279. jaclang/vendor/typeshed/stubs/shapely/shapely/_ragged_array.pyi +14 -0
  4280. jaclang/vendor/typeshed/stubs/shapely/shapely/_typing.pyi +58 -0
  4281. jaclang/vendor/typeshed/stubs/shapely/shapely/_version.pyi +6 -0
  4282. jaclang/vendor/typeshed/stubs/shapely/shapely/affinity.pyi +23 -0
  4283. jaclang/vendor/typeshed/stubs/shapely/shapely/algorithms/__init__.pyi +0 -0
  4284. jaclang/vendor/typeshed/stubs/shapely/shapely/algorithms/cga.pyi +3 -0
  4285. jaclang/vendor/typeshed/stubs/shapely/shapely/algorithms/polylabel.pyi +3 -0
  4286. jaclang/vendor/typeshed/stubs/shapely/shapely/constructive.pyi +536 -0
  4287. jaclang/vendor/typeshed/stubs/shapely/shapely/coordinates.pyi +51 -0
  4288. jaclang/vendor/typeshed/stubs/shapely/shapely/coords.pyi +18 -0
  4289. jaclang/vendor/typeshed/stubs/shapely/shapely/creation.pyi +295 -0
  4290. jaclang/vendor/typeshed/stubs/shapely/shapely/decorators.pyi +12 -0
  4291. jaclang/vendor/typeshed/stubs/shapely/shapely/errors.pyi +17 -0
  4292. jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/__init__.pyi +25 -0
  4293. jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/base.pyi +289 -0
  4294. jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/collection.pyi +18 -0
  4295. jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/geo.pyi +9 -0
  4296. jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/linestring.pyi +45 -0
  4297. jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/multilinestring.pyi +15 -0
  4298. jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/multipoint.pyi +20 -0
  4299. jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/multipolygon.pyi +22 -0
  4300. jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/point.pyi +41 -0
  4301. jaclang/vendor/typeshed/stubs/shapely/shapely/geometry/polygon.pyi +45 -0
  4302. jaclang/vendor/typeshed/stubs/shapely/shapely/geos.pyi +3 -0
  4303. jaclang/vendor/typeshed/stubs/shapely/shapely/io.pyi +153 -0
  4304. jaclang/vendor/typeshed/stubs/shapely/shapely/lib.pyi +179 -0
  4305. jaclang/vendor/typeshed/stubs/shapely/shapely/linear.pyi +69 -0
  4306. jaclang/vendor/typeshed/stubs/shapely/shapely/measurement.pyi +68 -0
  4307. jaclang/vendor/typeshed/stubs/shapely/shapely/ops.pyi +100 -0
  4308. jaclang/vendor/typeshed/stubs/shapely/shapely/plotting.pyi +76 -0
  4309. jaclang/vendor/typeshed/stubs/shapely/shapely/predicates.pyi +234 -0
  4310. jaclang/vendor/typeshed/stubs/shapely/shapely/prepared.pyi +20 -0
  4311. jaclang/vendor/typeshed/stubs/shapely/shapely/set_operations.pyi +96 -0
  4312. jaclang/vendor/typeshed/stubs/shapely/shapely/speedups.pyi +12 -0
  4313. jaclang/vendor/typeshed/stubs/shapely/shapely/strtree.pyi +82 -0
  4314. jaclang/vendor/typeshed/stubs/shapely/shapely/testing.pyi +14 -0
  4315. jaclang/vendor/typeshed/stubs/shapely/shapely/validation.pyi +7 -0
  4316. jaclang/vendor/typeshed/stubs/shapely/shapely/vectorized/__init__.pyi +37 -0
  4317. jaclang/vendor/typeshed/stubs/shapely/shapely/wkb.pyi +16 -0
  4318. jaclang/vendor/typeshed/stubs/shapely/shapely/wkt.pyi +8 -0
  4319. jaclang/vendor/typeshed/stubs/simplejson/METADATA.toml +2 -0
  4320. jaclang/vendor/typeshed/stubs/simplejson/simplejson/__init__.pyi +182 -0
  4321. jaclang/vendor/typeshed/stubs/simplejson/simplejson/decoder.pyi +32 -0
  4322. jaclang/vendor/typeshed/stubs/simplejson/simplejson/encoder.pyi +60 -0
  4323. jaclang/vendor/typeshed/stubs/simplejson/simplejson/errors.pyi +16 -0
  4324. jaclang/vendor/typeshed/stubs/simplejson/simplejson/raw_json.pyi +3 -0
  4325. jaclang/vendor/typeshed/stubs/simplejson/simplejson/scanner.pyi +17 -0
  4326. jaclang/vendor/typeshed/stubs/singledispatch/METADATA.toml +2 -0
  4327. jaclang/vendor/typeshed/stubs/singledispatch/singledispatch.pyi +33 -0
  4328. jaclang/vendor/typeshed/stubs/six/METADATA.toml +2 -0
  4329. jaclang/vendor/typeshed/stubs/six/six/__init__.pyi +112 -0
  4330. jaclang/vendor/typeshed/stubs/six/six/moves/BaseHTTPServer.pyi +1 -0
  4331. jaclang/vendor/typeshed/stubs/six/six/moves/CGIHTTPServer.pyi +1 -0
  4332. jaclang/vendor/typeshed/stubs/six/six/moves/SimpleHTTPServer.pyi +1 -0
  4333. jaclang/vendor/typeshed/stubs/six/six/moves/__init__.pyi +65 -0
  4334. jaclang/vendor/typeshed/stubs/six/six/moves/_dummy_thread.pyi +1 -0
  4335. jaclang/vendor/typeshed/stubs/six/six/moves/_thread.pyi +1 -0
  4336. jaclang/vendor/typeshed/stubs/six/six/moves/builtins.pyi +3 -0
  4337. jaclang/vendor/typeshed/stubs/six/six/moves/cPickle.pyi +1 -0
  4338. jaclang/vendor/typeshed/stubs/six/six/moves/collections_abc.pyi +1 -0
  4339. jaclang/vendor/typeshed/stubs/six/six/moves/configparser.pyi +3 -0
  4340. jaclang/vendor/typeshed/stubs/six/six/moves/copyreg.pyi +1 -0
  4341. jaclang/vendor/typeshed/stubs/six/six/moves/email_mime_base.pyi +1 -0
  4342. jaclang/vendor/typeshed/stubs/six/six/moves/email_mime_multipart.pyi +1 -0
  4343. jaclang/vendor/typeshed/stubs/six/six/moves/email_mime_nonmultipart.pyi +1 -0
  4344. jaclang/vendor/typeshed/stubs/six/six/moves/email_mime_text.pyi +1 -0
  4345. jaclang/vendor/typeshed/stubs/six/six/moves/html_entities.pyi +1 -0
  4346. jaclang/vendor/typeshed/stubs/six/six/moves/html_parser.pyi +1 -0
  4347. jaclang/vendor/typeshed/stubs/six/six/moves/http_client.pyi +61 -0
  4348. jaclang/vendor/typeshed/stubs/six/six/moves/http_cookiejar.pyi +1 -0
  4349. jaclang/vendor/typeshed/stubs/six/six/moves/http_cookies.pyi +3 -0
  4350. jaclang/vendor/typeshed/stubs/six/six/moves/queue.pyi +1 -0
  4351. jaclang/vendor/typeshed/stubs/six/six/moves/reprlib.pyi +1 -0
  4352. jaclang/vendor/typeshed/stubs/six/six/moves/socketserver.pyi +1 -0
  4353. jaclang/vendor/typeshed/stubs/six/six/moves/tkinter.pyi +1 -0
  4354. jaclang/vendor/typeshed/stubs/six/six/moves/tkinter_commondialog.pyi +1 -0
  4355. jaclang/vendor/typeshed/stubs/six/six/moves/tkinter_constants.pyi +1 -0
  4356. jaclang/vendor/typeshed/stubs/six/six/moves/tkinter_dialog.pyi +1 -0
  4357. jaclang/vendor/typeshed/stubs/six/six/moves/tkinter_filedialog.pyi +1 -0
  4358. jaclang/vendor/typeshed/stubs/six/six/moves/tkinter_tkfiledialog.pyi +1 -0
  4359. jaclang/vendor/typeshed/stubs/six/six/moves/tkinter_ttk.pyi +1 -0
  4360. jaclang/vendor/typeshed/stubs/six/six/moves/urllib/__init__.pyi +1 -0
  4361. jaclang/vendor/typeshed/stubs/six/six/moves/urllib/error.pyi +1 -0
  4362. jaclang/vendor/typeshed/stubs/six/six/moves/urllib/parse.pyi +30 -0
  4363. jaclang/vendor/typeshed/stubs/six/six/moves/urllib/request.pyi +44 -0
  4364. jaclang/vendor/typeshed/stubs/six/six/moves/urllib/response.pyi +8 -0
  4365. jaclang/vendor/typeshed/stubs/six/six/moves/urllib/robotparser.pyi +1 -0
  4366. jaclang/vendor/typeshed/stubs/six/six/moves/urllib_error.pyi +1 -0
  4367. jaclang/vendor/typeshed/stubs/six/six/moves/urllib_parse.pyi +1 -0
  4368. jaclang/vendor/typeshed/stubs/six/six/moves/urllib_request.pyi +1 -0
  4369. jaclang/vendor/typeshed/stubs/six/six/moves/urllib_response.pyi +1 -0
  4370. jaclang/vendor/typeshed/stubs/six/six/moves/urllib_robotparser.pyi +1 -0
  4371. jaclang/vendor/typeshed/stubs/slumber/METADATA.toml +3 -0
  4372. jaclang/vendor/typeshed/stubs/slumber/slumber/__init__.pyi +39 -0
  4373. jaclang/vendor/typeshed/stubs/slumber/slumber/exceptions.pyi +13 -0
  4374. jaclang/vendor/typeshed/stubs/slumber/slumber/serialize.pyi +28 -0
  4375. jaclang/vendor/typeshed/stubs/slumber/slumber/utils.pyi +10 -0
  4376. jaclang/vendor/typeshed/stubs/str2bool/METADATA.toml +2 -0
  4377. jaclang/vendor/typeshed/stubs/str2bool/str2bool/__init__.pyi +7 -0
  4378. jaclang/vendor/typeshed/stubs/tabulate/METADATA.toml +2 -0
  4379. jaclang/vendor/typeshed/stubs/tabulate/tabulate/__init__.pyi +66 -0
  4380. jaclang/vendor/typeshed/stubs/tabulate/tabulate/version.pyi +6 -0
  4381. jaclang/vendor/typeshed/stubs/toml/METADATA.toml +2 -0
  4382. jaclang/vendor/typeshed/stubs/toml/toml/__init__.pyi +18 -0
  4383. jaclang/vendor/typeshed/stubs/toml/toml/decoder.pyi +70 -0
  4384. jaclang/vendor/typeshed/stubs/toml/toml/encoder.pyi +45 -0
  4385. jaclang/vendor/typeshed/stubs/toml/toml/ordered.pyi +11 -0
  4386. jaclang/vendor/typeshed/stubs/toml/toml/tz.pyi +10 -0
  4387. jaclang/vendor/typeshed/stubs/toposort/METADATA.toml +2 -0
  4388. jaclang/vendor/typeshed/stubs/toposort/toposort.pyi +19 -0
  4389. jaclang/vendor/typeshed/stubs/tqdm/METADATA.toml +10 -0
  4390. jaclang/vendor/typeshed/stubs/tqdm/tqdm/__init__.pyi +41 -0
  4391. jaclang/vendor/typeshed/stubs/tqdm/tqdm/_dist_ver.pyi +0 -0
  4392. jaclang/vendor/typeshed/stubs/tqdm/tqdm/_main.pyi +2 -0
  4393. jaclang/vendor/typeshed/stubs/tqdm/tqdm/_monitor.pyi +18 -0
  4394. jaclang/vendor/typeshed/stubs/tqdm/tqdm/_tqdm.pyi +2 -0
  4395. jaclang/vendor/typeshed/stubs/tqdm/tqdm/_tqdm_gui.pyi +2 -0
  4396. jaclang/vendor/typeshed/stubs/tqdm/tqdm/_tqdm_notebook.pyi +2 -0
  4397. jaclang/vendor/typeshed/stubs/tqdm/tqdm/_tqdm_pandas.pyi +3 -0
  4398. jaclang/vendor/typeshed/stubs/tqdm/tqdm/_utils.pyi +10 -0
  4399. jaclang/vendor/typeshed/stubs/tqdm/tqdm/asyncio.pyi +210 -0
  4400. jaclang/vendor/typeshed/stubs/tqdm/tqdm/auto.pyi +3 -0
  4401. jaclang/vendor/typeshed/stubs/tqdm/tqdm/autonotebook.pyi +3 -0
  4402. jaclang/vendor/typeshed/stubs/tqdm/tqdm/cli.pyi +5 -0
  4403. jaclang/vendor/typeshed/stubs/tqdm/tqdm/contrib/__init__.pyi +15 -0
  4404. jaclang/vendor/typeshed/stubs/tqdm/tqdm/contrib/bells.pyi +3 -0
  4405. jaclang/vendor/typeshed/stubs/tqdm/tqdm/contrib/concurrent.pyi +4 -0
  4406. jaclang/vendor/typeshed/stubs/tqdm/tqdm/contrib/discord.pyi +101 -0
  4407. jaclang/vendor/typeshed/stubs/tqdm/tqdm/contrib/itertools.pyi +6 -0
  4408. jaclang/vendor/typeshed/stubs/tqdm/tqdm/contrib/logging.pyi +19 -0
  4409. jaclang/vendor/typeshed/stubs/tqdm/tqdm/contrib/slack.pyi +95 -0
  4410. jaclang/vendor/typeshed/stubs/tqdm/tqdm/contrib/telegram.pyi +101 -0
  4411. jaclang/vendor/typeshed/stubs/tqdm/tqdm/contrib/utils_worker.pyi +16 -0
  4412. jaclang/vendor/typeshed/stubs/tqdm/tqdm/dask.pyi +29 -0
  4413. jaclang/vendor/typeshed/stubs/tqdm/tqdm/gui.pyi +92 -0
  4414. jaclang/vendor/typeshed/stubs/tqdm/tqdm/keras.pyi +44 -0
  4415. jaclang/vendor/typeshed/stubs/tqdm/tqdm/notebook.pyi +101 -0
  4416. jaclang/vendor/typeshed/stubs/tqdm/tqdm/rich.pyi +107 -0
  4417. jaclang/vendor/typeshed/stubs/tqdm/tqdm/std.pyi +296 -0
  4418. jaclang/vendor/typeshed/stubs/tqdm/tqdm/tk.pyi +93 -0
  4419. jaclang/vendor/typeshed/stubs/tqdm/tqdm/utils.pyi +58 -0
  4420. jaclang/vendor/typeshed/stubs/tqdm/tqdm/version.pyi +1 -0
  4421. jaclang/vendor/typeshed/stubs/translationstring/METADATA.toml +2 -0
  4422. jaclang/vendor/typeshed/stubs/translationstring/translationstring/__init__.pyi +81 -0
  4423. jaclang/vendor/typeshed/stubs/ttkthemes/METADATA.toml +2 -0
  4424. jaclang/vendor/typeshed/stubs/ttkthemes/ttkthemes/__init__.pyi +7 -0
  4425. jaclang/vendor/typeshed/stubs/ttkthemes/ttkthemes/_imgops.pyi +7 -0
  4426. jaclang/vendor/typeshed/stubs/ttkthemes/ttkthemes/_utils.pyi +8 -0
  4427. jaclang/vendor/typeshed/stubs/ttkthemes/ttkthemes/_widget.pyi +26 -0
  4428. jaclang/vendor/typeshed/stubs/ttkthemes/ttkthemes/themed_style.pyi +12 -0
  4429. jaclang/vendor/typeshed/stubs/ttkthemes/ttkthemes/themed_tk.pyi +76 -0
  4430. jaclang/vendor/typeshed/stubs/uWSGI/METADATA.toml +15 -0
  4431. jaclang/vendor/typeshed/stubs/uWSGI/uwsgi.pyi +240 -0
  4432. jaclang/vendor/typeshed/stubs/uWSGI/uwsgidecorators.pyi +180 -0
  4433. jaclang/vendor/typeshed/stubs/ujson/METADATA.toml +2 -0
  4434. jaclang/vendor/typeshed/stubs/ujson/ujson.pyi +52 -0
  4435. jaclang/vendor/typeshed/stubs/unidiff/METADATA.toml +2 -0
  4436. jaclang/vendor/typeshed/stubs/unidiff/unidiff/__init__.pyi +12 -0
  4437. jaclang/vendor/typeshed/stubs/unidiff/unidiff/__version__.pyi +1 -0
  4438. jaclang/vendor/typeshed/stubs/unidiff/unidiff/constants.pyi +24 -0
  4439. jaclang/vendor/typeshed/stubs/unidiff/unidiff/errors.pyi +1 -0
  4440. jaclang/vendor/typeshed/stubs/unidiff/unidiff/patch.pyi +115 -0
  4441. jaclang/vendor/typeshed/stubs/untangle/METADATA.toml +2 -0
  4442. jaclang/vendor/typeshed/stubs/untangle/untangle.pyi +37 -0
  4443. jaclang/vendor/typeshed/stubs/usersettings/METADATA.toml +2 -0
  4444. jaclang/vendor/typeshed/stubs/usersettings/usersettings.pyi +14 -0
  4445. jaclang/vendor/typeshed/stubs/vobject/@tests/stubtest_allowlist.txt +22 -0
  4446. jaclang/vendor/typeshed/stubs/vobject/METADATA.toml +2 -0
  4447. jaclang/vendor/typeshed/stubs/vobject/vobject/__init__.pyi +6 -0
  4448. jaclang/vendor/typeshed/stubs/vobject/vobject/base.pyi +147 -0
  4449. jaclang/vendor/typeshed/stubs/vobject/vobject/behavior.pyi +33 -0
  4450. jaclang/vendor/typeshed/stubs/vobject/vobject/change_tz.pyi +10 -0
  4451. jaclang/vendor/typeshed/stubs/vobject/vobject/hcalendar.pyi +6 -0
  4452. jaclang/vendor/typeshed/stubs/vobject/vobject/icalendar.pyi +228 -0
  4453. jaclang/vendor/typeshed/stubs/vobject/vobject/ics_diff.pyi +7 -0
  4454. jaclang/vendor/typeshed/stubs/vobject/vobject/vcard.pyi +116 -0
  4455. jaclang/vendor/typeshed/stubs/vobject/vobject/win32tz.pyi +40 -0
  4456. jaclang/vendor/typeshed/stubs/waitress/METADATA.toml +6 -0
  4457. jaclang/vendor/typeshed/stubs/waitress/waitress/__init__.pyi +18 -0
  4458. jaclang/vendor/typeshed/stubs/waitress/waitress/adjustments.pyi +65 -0
  4459. jaclang/vendor/typeshed/stubs/waitress/waitress/buffers.pyi +56 -0
  4460. jaclang/vendor/typeshed/stubs/waitress/waitress/channel.pyi +52 -0
  4461. jaclang/vendor/typeshed/stubs/waitress/waitress/compat.pyi +7 -0
  4462. jaclang/vendor/typeshed/stubs/waitress/waitress/parser.pyi +44 -0
  4463. jaclang/vendor/typeshed/stubs/waitress/waitress/proxy_headers.pyi +37 -0
  4464. jaclang/vendor/typeshed/stubs/waitress/waitress/receiver.pyi +31 -0
  4465. jaclang/vendor/typeshed/stubs/waitress/waitress/rfc7230.pyi +28 -0
  4466. jaclang/vendor/typeshed/stubs/waitress/waitress/runner.pyi +10 -0
  4467. jaclang/vendor/typeshed/stubs/waitress/waitress/server.pyi +109 -0
  4468. jaclang/vendor/typeshed/stubs/waitress/waitress/task.pyi +72 -0
  4469. jaclang/vendor/typeshed/stubs/waitress/waitress/trigger.pyi +31 -0
  4470. jaclang/vendor/typeshed/stubs/waitress/waitress/utilities.pyi +68 -0
  4471. jaclang/vendor/typeshed/stubs/waitress/waitress/wasyncore.pyi +88 -0
  4472. jaclang/vendor/typeshed/stubs/watchpoints/METADATA.toml +2 -0
  4473. jaclang/vendor/typeshed/stubs/watchpoints/watchpoints/__init__.pyi +10 -0
  4474. jaclang/vendor/typeshed/stubs/watchpoints/watchpoints/ast_monkey.pyi +3 -0
  4475. jaclang/vendor/typeshed/stubs/watchpoints/watchpoints/util.pyi +6 -0
  4476. jaclang/vendor/typeshed/stubs/watchpoints/watchpoints/watch.pyi +68 -0
  4477. jaclang/vendor/typeshed/stubs/watchpoints/watchpoints/watch_element.pyi +56 -0
  4478. jaclang/vendor/typeshed/stubs/watchpoints/watchpoints/watch_print.pyi +24 -0
  4479. jaclang/vendor/typeshed/stubs/whatthepatch/METADATA.toml +2 -0
  4480. jaclang/vendor/typeshed/stubs/whatthepatch/whatthepatch/__init__.pyi +4 -0
  4481. jaclang/vendor/typeshed/stubs/whatthepatch/whatthepatch/apply.pyi +8 -0
  4482. jaclang/vendor/typeshed/stubs/whatthepatch/whatthepatch/exceptions.pyi +14 -0
  4483. jaclang/vendor/typeshed/stubs/whatthepatch/whatthepatch/patch.pyi +90 -0
  4484. jaclang/vendor/typeshed/stubs/whatthepatch/whatthepatch/snippets.pyi +7 -0
  4485. jaclang/vendor/typeshed/stubs/workalendar/METADATA.toml +2 -0
  4486. jaclang/vendor/typeshed/stubs/workalendar/workalendar/__init__.pyi +0 -0
  4487. jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/__init__.pyi +25 -0
  4488. jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/algeria.pyi +13 -0
  4489. jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/angola.pyi +15 -0
  4490. jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/benin.pyi +18 -0
  4491. jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/ivory_coast.pyi +18 -0
  4492. jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/kenya.pyi +18 -0
  4493. jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/madagascar.pyi +13 -0
  4494. jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/mozambique.pyi +10 -0
  4495. jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/nigeria.pyi +18 -0
  4496. jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/sao_tome.pyi +9 -0
  4497. jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/south_africa.pyi +12 -0
  4498. jaclang/vendor/typeshed/stubs/workalendar/workalendar/africa/tunisia.pyi +16 -0
  4499. jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/__init__.pyi +174 -0
  4500. jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/argentina.pyi +23 -0
  4501. jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/barbados.pyi +18 -0
  4502. jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/brazil.pyi +268 -0
  4503. jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/canada.pyi +89 -0
  4504. jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/chile.pyi +14 -0
  4505. jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/colombia.pyi +25 -0
  4506. jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/el_salvador.pyi +11 -0
  4507. jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/mexico.pyi +10 -0
  4508. jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/panama.pyi +12 -0
  4509. jaclang/vendor/typeshed/stubs/workalendar/workalendar/america/paraguay.pyi +17 -0
  4510. jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/__init__.pyi +27 -0
  4511. jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/china.pyi +18 -0
  4512. jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/hong_kong.pyi +24 -0
  4513. jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/israel.pyi +10 -0
  4514. jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/japan.pyi +12 -0
  4515. jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/kazakhstan.pyi +30 -0
  4516. jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/malaysia.pyi +25 -0
  4517. jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/philippines.pyi +24 -0
  4518. jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/qatar.pyi +13 -0
  4519. jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/singapore.pyi +20 -0
  4520. jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/south_korea.pyi +13 -0
  4521. jaclang/vendor/typeshed/stubs/workalendar/workalendar/asia/taiwan.pyi +11 -0
  4522. jaclang/vendor/typeshed/stubs/workalendar/workalendar/astronomy.pyi +3 -0
  4523. jaclang/vendor/typeshed/stubs/workalendar/workalendar/core.pyi +180 -0
  4524. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/__init__.pyi +279 -0
  4525. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/austria.pyi +20 -0
  4526. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/belarus.pyi +13 -0
  4527. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/belgium.pyi +13 -0
  4528. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/bulgaria.pyi +24 -0
  4529. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/cayman_islands.pyi +19 -0
  4530. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/croatia.pyi +19 -0
  4531. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/cyprus.pyi +20 -0
  4532. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/czech_republic.pyi +11 -0
  4533. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/denmark.pyi +19 -0
  4534. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/estonia.pyi +15 -0
  4535. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/european_central_bank.pyi +10 -0
  4536. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/finland.pyi +22 -0
  4537. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/france.pyi +17 -0
  4538. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/georgia.pyi +16 -0
  4539. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/germany.pyi +82 -0
  4540. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/greece.pyi +21 -0
  4541. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/guernsey.pyi +14 -0
  4542. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/hungary.pyi +19 -0
  4543. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/iceland.pyi +19 -0
  4544. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/ireland.pyi +13 -0
  4545. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/italy.pyi +16 -0
  4546. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/latvia.pyi +17 -0
  4547. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/lithuania.pyi +20 -0
  4548. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/luxembourg.pyi +15 -0
  4549. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/malta.pyi +13 -0
  4550. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/monaco.pyi +15 -0
  4551. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/netherlands.pyi +37 -0
  4552. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/norway.pyi +17 -0
  4553. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/poland.pyi +16 -0
  4554. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/portugal.pyi +16 -0
  4555. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/romania.pyi +21 -0
  4556. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/russia.pyi +15 -0
  4557. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/scotland/__init__.pyi +147 -0
  4558. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/scotland/mixins/__init__.pyi +63 -0
  4559. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/scotland/mixins/autumn_holiday.pyi +17 -0
  4560. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/scotland/mixins/fair_holiday.pyi +26 -0
  4561. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/scotland/mixins/spring_holiday.pyi +19 -0
  4562. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/scotland/mixins/victoria_day.pyi +14 -0
  4563. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/serbia.pyi +12 -0
  4564. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/slovakia.pyi +15 -0
  4565. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/slovenia.pyi +14 -0
  4566. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/spain.pyi +86 -0
  4567. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/sweden.pyi +22 -0
  4568. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/switzerland.pyi +188 -0
  4569. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/turkey.pyi +16 -0
  4570. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/ukraine.pyi +17 -0
  4571. jaclang/vendor/typeshed/stubs/workalendar/workalendar/europe/united_kingdom.pyi +20 -0
  4572. jaclang/vendor/typeshed/stubs/workalendar/workalendar/exceptions.pyi +6 -0
  4573. jaclang/vendor/typeshed/stubs/workalendar/workalendar/oceania/__init__.pyi +31 -0
  4574. jaclang/vendor/typeshed/stubs/workalendar/workalendar/oceania/australia.pyi +93 -0
  4575. jaclang/vendor/typeshed/stubs/workalendar/workalendar/oceania/marshall_islands.pyi +9 -0
  4576. jaclang/vendor/typeshed/stubs/workalendar/workalendar/oceania/new_zealand.pyi +13 -0
  4577. jaclang/vendor/typeshed/stubs/workalendar/workalendar/precomputed_astronomy.pyi +14 -0
  4578. jaclang/vendor/typeshed/stubs/workalendar/workalendar/registry.pyi +15 -0
  4579. jaclang/vendor/typeshed/stubs/workalendar/workalendar/registry_tools.pyi +1 -0
  4580. jaclang/vendor/typeshed/stubs/workalendar/workalendar/skyfield_astronomy.pyi +12 -0
  4581. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/__init__.pyi +142 -0
  4582. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/alabama.pyi +20 -0
  4583. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/alaska.pyi +9 -0
  4584. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/american_samoa.pyi +9 -0
  4585. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/arizona.pyi +7 -0
  4586. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/arkansas.pyi +8 -0
  4587. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/california.pyi +30 -0
  4588. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/colorado.pyi +3 -0
  4589. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/connecticut.pyi +7 -0
  4590. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/core.pyi +56 -0
  4591. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/delaware.pyi +10 -0
  4592. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/district_columbia.pyi +8 -0
  4593. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/florida.pyi +45 -0
  4594. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/georgia.pyi +13 -0
  4595. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/guam.pyi +10 -0
  4596. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/hawaii.pyi +12 -0
  4597. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/idaho.pyi +6 -0
  4598. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/illinois.pyi +13 -0
  4599. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/indiana.pyi +15 -0
  4600. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/iowa.pyi +8 -0
  4601. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/kansas.pyi +7 -0
  4602. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/kentucky.pyi +12 -0
  4603. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/louisiana.pyi +9 -0
  4604. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/maine.pyi +7 -0
  4605. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/maryland.pyi +8 -0
  4606. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/massachusetts.pyi +10 -0
  4607. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/michigan.pyi +10 -0
  4608. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/minnesota.pyi +7 -0
  4609. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/mississippi.pyi +11 -0
  4610. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/missouri.pyi +8 -0
  4611. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/montana.pyi +7 -0
  4612. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/nebraska.pyi +7 -0
  4613. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/nevada.pyi +9 -0
  4614. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/new_hampshire.pyi +7 -0
  4615. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/new_jersey.pyi +7 -0
  4616. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/new_mexico.pyi +8 -0
  4617. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/new_york.pyi +7 -0
  4618. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/north_carolina.pyi +13 -0
  4619. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/north_dakota.pyi +7 -0
  4620. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/ohio.pyi +3 -0
  4621. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/oklahoma.pyi +8 -0
  4622. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/oregon.pyi +6 -0
  4623. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/pennsylvania.pyi +8 -0
  4624. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/rhode_island.pyi +8 -0
  4625. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/south_carolina.pyi +11 -0
  4626. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/south_dakota.pyi +6 -0
  4627. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/tennessee.pyi +8 -0
  4628. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/texas.pyi +25 -0
  4629. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/utah.pyi +6 -0
  4630. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/vermont.pyi +9 -0
  4631. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/virginia.pyi +11 -0
  4632. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/washington.pyi +6 -0
  4633. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/west_virginia.pyi +14 -0
  4634. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/wisconsin.pyi +10 -0
  4635. jaclang/vendor/typeshed/stubs/workalendar/workalendar/usa/wyoming.pyi +6 -0
  4636. jaclang/vendor/typeshed/stubs/wurlitzer/METADATA.toml +2 -0
  4637. jaclang/vendor/typeshed/stubs/wurlitzer/wurlitzer.pyi +140 -0
  4638. jaclang/vendor/typeshed/stubs/xdgenvpy/METADATA.toml +2 -0
  4639. jaclang/vendor/typeshed/stubs/xdgenvpy/xdgenvpy/__init__.pyi +0 -0
  4640. jaclang/vendor/typeshed/stubs/xdgenvpy/xdgenvpy/_defaults.pyi +7 -0
  4641. jaclang/vendor/typeshed/stubs/xdgenvpy/xdgenvpy/xdgenv.pyi +35 -0
  4642. jaclang/vendor/typeshed/stubs/xlrd/METADATA.toml +2 -0
  4643. jaclang/vendor/typeshed/stubs/xlrd/xlrd/__init__.pyi +41 -0
  4644. jaclang/vendor/typeshed/stubs/xlrd/xlrd/biffh.pyi +176 -0
  4645. jaclang/vendor/typeshed/stubs/xlrd/xlrd/book.pyi +151 -0
  4646. jaclang/vendor/typeshed/stubs/xlrd/xlrd/compdoc.pyi +54 -0
  4647. jaclang/vendor/typeshed/stubs/xlrd/xlrd/formatting.pyi +111 -0
  4648. jaclang/vendor/typeshed/stubs/xlrd/xlrd/formula.pyi +87 -0
  4649. jaclang/vendor/typeshed/stubs/xlrd/xlrd/info.pyi +4 -0
  4650. jaclang/vendor/typeshed/stubs/xlrd/xlrd/sheet.pyi +163 -0
  4651. jaclang/vendor/typeshed/stubs/xlrd/xlrd/timemachine.pyi +19 -0
  4652. jaclang/vendor/typeshed/stubs/xlrd/xlrd/xldate.pyi +24 -0
  4653. jaclang/vendor/typeshed/stubs/xmltodict/METADATA.toml +2 -0
  4654. jaclang/vendor/typeshed/stubs/xmltodict/xmltodict.pyi +38 -0
  4655. jaclang/vendor/typeshed/stubs/zstd/METADATA.toml +2 -0
  4656. jaclang/vendor/typeshed/stubs/zstd/zstd.pyi +33 -0
  4657. jaclang/vendor/typeshed/stubs/zxcvbn/METADATA.toml +2 -0
  4658. jaclang/vendor/typeshed/stubs/zxcvbn/zxcvbn/__init__.pyi +18 -0
  4659. jaclang/vendor/typeshed/stubs/zxcvbn/zxcvbn/adjacency_graphs.pyi +5 -0
  4660. jaclang/vendor/typeshed/stubs/zxcvbn/zxcvbn/feedback.pyi +12 -0
  4661. jaclang/vendor/typeshed/stubs/zxcvbn/zxcvbn/frequency_lists.pyi +1 -0
  4662. jaclang/vendor/typeshed/stubs/zxcvbn/zxcvbn/matching.pyi +95 -0
  4663. jaclang/vendor/typeshed/stubs/zxcvbn/zxcvbn/scoring.pyi +49 -0
  4664. jaclang/vendor/typeshed/stubs/zxcvbn/zxcvbn/time_estimates.pyi +24 -0
  4665. {jaclang-0.8.3.dist-info → jaclang-0.8.5.dist-info}/METADATA +1 -1
  4666. jaclang-0.8.5.dist-info/RECORD +5200 -0
  4667. jaclang-0.8.3.dist-info/RECORD +0 -575
  4668. {jaclang-0.8.3.dist-info → jaclang-0.8.5.dist-info}/WHEEL +0 -0
  4669. {jaclang-0.8.3.dist-info → jaclang-0.8.5.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,2855 @@
1
+ """
2
+ @generated by mypy-protobuf. Do not edit manually!
3
+ isort:skip_file
4
+ Author: kenton@google.com (Kenton Varda)
5
+ Based on original Protocol Buffers design by
6
+ Sanjay Ghemawat, Jeff Dean, and others.
7
+
8
+ The messages in this file describe the definitions found in .proto files.
9
+ A valid .proto file can be translated directly to a FileDescriptorProto
10
+ without any other information (e.g. without reading its imports).
11
+ """
12
+
13
+ import builtins
14
+ import collections.abc
15
+ import sys
16
+ import typing
17
+
18
+ import google.protobuf.descriptor
19
+ import google.protobuf.internal.containers
20
+ import google.protobuf.internal.enum_type_wrapper
21
+ import google.protobuf.message
22
+
23
+ if sys.version_info >= (3, 10):
24
+ import typing as typing_extensions
25
+ else:
26
+ import typing_extensions
27
+
28
+ DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
29
+
30
+ class _Edition:
31
+ ValueType = typing.NewType("ValueType", builtins.int)
32
+ V: typing_extensions.TypeAlias = ValueType
33
+
34
+ class _EditionEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_Edition.ValueType], builtins.type):
35
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
36
+ EDITION_UNKNOWN: _Edition.ValueType # 0
37
+ """A placeholder for an unknown edition value."""
38
+ EDITION_LEGACY: _Edition.ValueType # 900
39
+ """A placeholder edition for specifying default behaviors *before* a feature
40
+ was first introduced. This is effectively an "infinite past".
41
+ """
42
+ EDITION_PROTO2: _Edition.ValueType # 998
43
+ """Legacy syntax "editions". These pre-date editions, but behave much like
44
+ distinct editions. These can't be used to specify the edition of proto
45
+ files, but feature definitions must supply proto2/proto3 defaults for
46
+ backwards compatibility.
47
+ """
48
+ EDITION_PROTO3: _Edition.ValueType # 999
49
+ EDITION_2023: _Edition.ValueType # 1000
50
+ """Editions that have been released. The specific values are arbitrary and
51
+ should not be depended on, but they will always be time-ordered for easy
52
+ comparison.
53
+ """
54
+ EDITION_2024: _Edition.ValueType # 1001
55
+ EDITION_1_TEST_ONLY: _Edition.ValueType # 1
56
+ """Placeholder editions for testing feature resolution. These should not be
57
+ used or relied on outside of tests.
58
+ """
59
+ EDITION_2_TEST_ONLY: _Edition.ValueType # 2
60
+ EDITION_99997_TEST_ONLY: _Edition.ValueType # 99997
61
+ EDITION_99998_TEST_ONLY: _Edition.ValueType # 99998
62
+ EDITION_99999_TEST_ONLY: _Edition.ValueType # 99999
63
+ EDITION_MAX: _Edition.ValueType # 2147483647
64
+ """Placeholder for specifying unbounded edition support. This should only
65
+ ever be used by plugins that can expect to never require any changes to
66
+ support a new edition.
67
+ """
68
+
69
+ class Edition(_Edition, metaclass=_EditionEnumTypeWrapper):
70
+ """The full set of known editions."""
71
+
72
+ EDITION_UNKNOWN: Edition.ValueType # 0
73
+ """A placeholder for an unknown edition value."""
74
+ EDITION_LEGACY: Edition.ValueType # 900
75
+ """A placeholder edition for specifying default behaviors *before* a feature
76
+ was first introduced. This is effectively an "infinite past".
77
+ """
78
+ EDITION_PROTO2: Edition.ValueType # 998
79
+ """Legacy syntax "editions". These pre-date editions, but behave much like
80
+ distinct editions. These can't be used to specify the edition of proto
81
+ files, but feature definitions must supply proto2/proto3 defaults for
82
+ backwards compatibility.
83
+ """
84
+ EDITION_PROTO3: Edition.ValueType # 999
85
+ EDITION_2023: Edition.ValueType # 1000
86
+ """Editions that have been released. The specific values are arbitrary and
87
+ should not be depended on, but they will always be time-ordered for easy
88
+ comparison.
89
+ """
90
+ EDITION_2024: Edition.ValueType # 1001
91
+ EDITION_1_TEST_ONLY: Edition.ValueType # 1
92
+ """Placeholder editions for testing feature resolution. These should not be
93
+ used or relied on outside of tests.
94
+ """
95
+ EDITION_2_TEST_ONLY: Edition.ValueType # 2
96
+ EDITION_99997_TEST_ONLY: Edition.ValueType # 99997
97
+ EDITION_99998_TEST_ONLY: Edition.ValueType # 99998
98
+ EDITION_99999_TEST_ONLY: Edition.ValueType # 99999
99
+ EDITION_MAX: Edition.ValueType # 2147483647
100
+ """Placeholder for specifying unbounded edition support. This should only
101
+ ever be used by plugins that can expect to never require any changes to
102
+ support a new edition.
103
+ """
104
+ global___Edition = Edition
105
+
106
+ @typing.final
107
+ class FileDescriptorSet(google.protobuf.message.Message):
108
+ """The protocol compiler can output a FileDescriptorSet containing the .proto
109
+ files it parses.
110
+ """
111
+
112
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
113
+
114
+ FILE_FIELD_NUMBER: builtins.int
115
+ @property
116
+ def file(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___FileDescriptorProto]: ...
117
+ def __init__(self, *, file: collections.abc.Iterable[global___FileDescriptorProto] | None = ...) -> None: ...
118
+ def ClearField(self, field_name: typing.Literal["file", b"file"]) -> None: ...
119
+
120
+ global___FileDescriptorSet = FileDescriptorSet
121
+
122
+ @typing.final
123
+ class FileDescriptorProto(google.protobuf.message.Message):
124
+ """Describes a complete .proto file."""
125
+
126
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
127
+
128
+ NAME_FIELD_NUMBER: builtins.int
129
+ PACKAGE_FIELD_NUMBER: builtins.int
130
+ DEPENDENCY_FIELD_NUMBER: builtins.int
131
+ PUBLIC_DEPENDENCY_FIELD_NUMBER: builtins.int
132
+ WEAK_DEPENDENCY_FIELD_NUMBER: builtins.int
133
+ MESSAGE_TYPE_FIELD_NUMBER: builtins.int
134
+ ENUM_TYPE_FIELD_NUMBER: builtins.int
135
+ SERVICE_FIELD_NUMBER: builtins.int
136
+ EXTENSION_FIELD_NUMBER: builtins.int
137
+ OPTIONS_FIELD_NUMBER: builtins.int
138
+ SOURCE_CODE_INFO_FIELD_NUMBER: builtins.int
139
+ SYNTAX_FIELD_NUMBER: builtins.int
140
+ EDITION_FIELD_NUMBER: builtins.int
141
+ name: builtins.str
142
+ """file name, relative to root of source tree"""
143
+ package: builtins.str
144
+ """e.g. "foo", "foo.bar", etc."""
145
+ syntax: builtins.str
146
+ """The syntax of the proto file.
147
+ The supported values are "proto2", "proto3", and "editions".
148
+
149
+ If `edition` is present, this value must be "editions".
150
+ WARNING: This field should only be used by protobuf plugins or special
151
+ cases like the proto compiler. Other uses are discouraged and
152
+ developers should rely on the protoreflect APIs for their client language.
153
+ """
154
+ edition: global___Edition.ValueType
155
+ """The edition of the proto file.
156
+ WARNING: This field should only be used by protobuf plugins or special
157
+ cases like the proto compiler. Other uses are discouraged and
158
+ developers should rely on the protoreflect APIs for their client language.
159
+ """
160
+ @property
161
+ def dependency(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
162
+ """Names of files imported by this file."""
163
+
164
+ @property
165
+ def public_dependency(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.int]:
166
+ """Indexes of the public imported files in the dependency list above."""
167
+
168
+ @property
169
+ def weak_dependency(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.int]:
170
+ """Indexes of the weak imported files in the dependency list.
171
+ For Google-internal migration only. Do not use.
172
+ """
173
+
174
+ @property
175
+ def message_type(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___DescriptorProto]:
176
+ """All top-level definitions in this file."""
177
+
178
+ @property
179
+ def enum_type(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___EnumDescriptorProto]: ...
180
+ @property
181
+ def service(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___ServiceDescriptorProto]: ...
182
+ @property
183
+ def extension(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___FieldDescriptorProto]: ...
184
+ @property
185
+ def options(self) -> global___FileOptions: ...
186
+ @property
187
+ def source_code_info(self) -> global___SourceCodeInfo:
188
+ """This field contains optional information about the original source code.
189
+ You may safely remove this entire field without harming runtime
190
+ functionality of the descriptors -- the information is needed only by
191
+ development tools.
192
+ """
193
+
194
+ def __init__(
195
+ self,
196
+ *,
197
+ name: builtins.str | None = ...,
198
+ package: builtins.str | None = ...,
199
+ dependency: collections.abc.Iterable[builtins.str] | None = ...,
200
+ public_dependency: collections.abc.Iterable[builtins.int] | None = ...,
201
+ weak_dependency: collections.abc.Iterable[builtins.int] | None = ...,
202
+ message_type: collections.abc.Iterable[global___DescriptorProto] | None = ...,
203
+ enum_type: collections.abc.Iterable[global___EnumDescriptorProto] | None = ...,
204
+ service: collections.abc.Iterable[global___ServiceDescriptorProto] | None = ...,
205
+ extension: collections.abc.Iterable[global___FieldDescriptorProto] | None = ...,
206
+ options: global___FileOptions | None = ...,
207
+ source_code_info: global___SourceCodeInfo | None = ...,
208
+ syntax: builtins.str | None = ...,
209
+ edition: global___Edition.ValueType | None = ...,
210
+ ) -> None: ...
211
+ def HasField(
212
+ self,
213
+ field_name: typing.Literal[
214
+ "edition",
215
+ b"edition",
216
+ "name",
217
+ b"name",
218
+ "options",
219
+ b"options",
220
+ "package",
221
+ b"package",
222
+ "source_code_info",
223
+ b"source_code_info",
224
+ "syntax",
225
+ b"syntax",
226
+ ],
227
+ ) -> builtins.bool: ...
228
+ def ClearField(
229
+ self,
230
+ field_name: typing.Literal[
231
+ "dependency",
232
+ b"dependency",
233
+ "edition",
234
+ b"edition",
235
+ "enum_type",
236
+ b"enum_type",
237
+ "extension",
238
+ b"extension",
239
+ "message_type",
240
+ b"message_type",
241
+ "name",
242
+ b"name",
243
+ "options",
244
+ b"options",
245
+ "package",
246
+ b"package",
247
+ "public_dependency",
248
+ b"public_dependency",
249
+ "service",
250
+ b"service",
251
+ "source_code_info",
252
+ b"source_code_info",
253
+ "syntax",
254
+ b"syntax",
255
+ "weak_dependency",
256
+ b"weak_dependency",
257
+ ],
258
+ ) -> None: ...
259
+
260
+ global___FileDescriptorProto = FileDescriptorProto
261
+
262
+ @typing.final
263
+ class DescriptorProto(google.protobuf.message.Message):
264
+ """Describes a message type."""
265
+
266
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
267
+
268
+ @typing.final
269
+ class ExtensionRange(google.protobuf.message.Message):
270
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
271
+
272
+ START_FIELD_NUMBER: builtins.int
273
+ END_FIELD_NUMBER: builtins.int
274
+ OPTIONS_FIELD_NUMBER: builtins.int
275
+ start: builtins.int
276
+ """Inclusive."""
277
+ end: builtins.int
278
+ """Exclusive."""
279
+ @property
280
+ def options(self) -> global___ExtensionRangeOptions: ...
281
+ def __init__(
282
+ self,
283
+ *,
284
+ start: builtins.int | None = ...,
285
+ end: builtins.int | None = ...,
286
+ options: global___ExtensionRangeOptions | None = ...,
287
+ ) -> None: ...
288
+ def HasField(
289
+ self, field_name: typing.Literal["end", b"end", "options", b"options", "start", b"start"]
290
+ ) -> builtins.bool: ...
291
+ def ClearField(self, field_name: typing.Literal["end", b"end", "options", b"options", "start", b"start"]) -> None: ...
292
+
293
+ @typing.final
294
+ class ReservedRange(google.protobuf.message.Message):
295
+ """Range of reserved tag numbers. Reserved tag numbers may not be used by
296
+ fields or extension ranges in the same message. Reserved ranges may
297
+ not overlap.
298
+ """
299
+
300
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
301
+
302
+ START_FIELD_NUMBER: builtins.int
303
+ END_FIELD_NUMBER: builtins.int
304
+ start: builtins.int
305
+ """Inclusive."""
306
+ end: builtins.int
307
+ """Exclusive."""
308
+ def __init__(self, *, start: builtins.int | None = ..., end: builtins.int | None = ...) -> None: ...
309
+ def HasField(self, field_name: typing.Literal["end", b"end", "start", b"start"]) -> builtins.bool: ...
310
+ def ClearField(self, field_name: typing.Literal["end", b"end", "start", b"start"]) -> None: ...
311
+
312
+ NAME_FIELD_NUMBER: builtins.int
313
+ FIELD_FIELD_NUMBER: builtins.int
314
+ EXTENSION_FIELD_NUMBER: builtins.int
315
+ NESTED_TYPE_FIELD_NUMBER: builtins.int
316
+ ENUM_TYPE_FIELD_NUMBER: builtins.int
317
+ EXTENSION_RANGE_FIELD_NUMBER: builtins.int
318
+ ONEOF_DECL_FIELD_NUMBER: builtins.int
319
+ OPTIONS_FIELD_NUMBER: builtins.int
320
+ RESERVED_RANGE_FIELD_NUMBER: builtins.int
321
+ RESERVED_NAME_FIELD_NUMBER: builtins.int
322
+ name: builtins.str
323
+ @property
324
+ def field(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___FieldDescriptorProto]: ...
325
+ @property
326
+ def extension(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___FieldDescriptorProto]: ...
327
+ @property
328
+ def nested_type(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___DescriptorProto]: ...
329
+ @property
330
+ def enum_type(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___EnumDescriptorProto]: ...
331
+ @property
332
+ def extension_range(
333
+ self,
334
+ ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___DescriptorProto.ExtensionRange]: ...
335
+ @property
336
+ def oneof_decl(
337
+ self,
338
+ ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___OneofDescriptorProto]: ...
339
+ @property
340
+ def options(self) -> global___MessageOptions: ...
341
+ @property
342
+ def reserved_range(
343
+ self,
344
+ ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___DescriptorProto.ReservedRange]: ...
345
+ @property
346
+ def reserved_name(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
347
+ """Reserved field names, which may not be used by fields in the same message.
348
+ A given name may only be reserved once.
349
+ """
350
+
351
+ def __init__(
352
+ self,
353
+ *,
354
+ name: builtins.str | None = ...,
355
+ field: collections.abc.Iterable[global___FieldDescriptorProto] | None = ...,
356
+ extension: collections.abc.Iterable[global___FieldDescriptorProto] | None = ...,
357
+ nested_type: collections.abc.Iterable[global___DescriptorProto] | None = ...,
358
+ enum_type: collections.abc.Iterable[global___EnumDescriptorProto] | None = ...,
359
+ extension_range: collections.abc.Iterable[global___DescriptorProto.ExtensionRange] | None = ...,
360
+ oneof_decl: collections.abc.Iterable[global___OneofDescriptorProto] | None = ...,
361
+ options: global___MessageOptions | None = ...,
362
+ reserved_range: collections.abc.Iterable[global___DescriptorProto.ReservedRange] | None = ...,
363
+ reserved_name: collections.abc.Iterable[builtins.str] | None = ...,
364
+ ) -> None: ...
365
+ def HasField(self, field_name: typing.Literal["name", b"name", "options", b"options"]) -> builtins.bool: ...
366
+ def ClearField(
367
+ self,
368
+ field_name: typing.Literal[
369
+ "enum_type",
370
+ b"enum_type",
371
+ "extension",
372
+ b"extension",
373
+ "extension_range",
374
+ b"extension_range",
375
+ "field",
376
+ b"field",
377
+ "name",
378
+ b"name",
379
+ "nested_type",
380
+ b"nested_type",
381
+ "oneof_decl",
382
+ b"oneof_decl",
383
+ "options",
384
+ b"options",
385
+ "reserved_name",
386
+ b"reserved_name",
387
+ "reserved_range",
388
+ b"reserved_range",
389
+ ],
390
+ ) -> None: ...
391
+
392
+ global___DescriptorProto = DescriptorProto
393
+
394
+ @typing.final
395
+ class ExtensionRangeOptions(google.protobuf.message.Message):
396
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
397
+
398
+ class _VerificationState:
399
+ ValueType = typing.NewType("ValueType", builtins.int)
400
+ V: typing_extensions.TypeAlias = ValueType
401
+
402
+ class _VerificationStateEnumTypeWrapper(
403
+ google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[ExtensionRangeOptions._VerificationState.ValueType],
404
+ builtins.type,
405
+ ):
406
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
407
+ DECLARATION: ExtensionRangeOptions._VerificationState.ValueType # 0
408
+ """All the extensions of the range must be declared."""
409
+ UNVERIFIED: ExtensionRangeOptions._VerificationState.ValueType # 1
410
+
411
+ class VerificationState(_VerificationState, metaclass=_VerificationStateEnumTypeWrapper):
412
+ """The verification state of the extension range."""
413
+
414
+ DECLARATION: ExtensionRangeOptions.VerificationState.ValueType # 0
415
+ """All the extensions of the range must be declared."""
416
+ UNVERIFIED: ExtensionRangeOptions.VerificationState.ValueType # 1
417
+
418
+ @typing.final
419
+ class Declaration(google.protobuf.message.Message):
420
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
421
+
422
+ NUMBER_FIELD_NUMBER: builtins.int
423
+ FULL_NAME_FIELD_NUMBER: builtins.int
424
+ TYPE_FIELD_NUMBER: builtins.int
425
+ RESERVED_FIELD_NUMBER: builtins.int
426
+ REPEATED_FIELD_NUMBER: builtins.int
427
+ number: builtins.int
428
+ """The extension number declared within the extension range."""
429
+ full_name: builtins.str
430
+ """The fully-qualified name of the extension field. There must be a leading
431
+ dot in front of the full name.
432
+ """
433
+ type: builtins.str
434
+ """The fully-qualified type name of the extension field. Unlike
435
+ Metadata.type, Declaration.type must have a leading dot for messages
436
+ and enums.
437
+ """
438
+ reserved: builtins.bool
439
+ """If true, indicates that the number is reserved in the extension range,
440
+ and any extension field with the number will fail to compile. Set this
441
+ when a declared extension field is deleted.
442
+ """
443
+ repeated: builtins.bool
444
+ """If true, indicates that the extension must be defined as repeated.
445
+ Otherwise the extension must be defined as optional.
446
+ """
447
+ def __init__(
448
+ self,
449
+ *,
450
+ number: builtins.int | None = ...,
451
+ full_name: builtins.str | None = ...,
452
+ type: builtins.str | None = ...,
453
+ reserved: builtins.bool | None = ...,
454
+ repeated: builtins.bool | None = ...,
455
+ ) -> None: ...
456
+ def HasField(
457
+ self,
458
+ field_name: typing.Literal[
459
+ "full_name", b"full_name", "number", b"number", "repeated", b"repeated", "reserved", b"reserved", "type", b"type"
460
+ ],
461
+ ) -> builtins.bool: ...
462
+ def ClearField(
463
+ self,
464
+ field_name: typing.Literal[
465
+ "full_name", b"full_name", "number", b"number", "repeated", b"repeated", "reserved", b"reserved", "type", b"type"
466
+ ],
467
+ ) -> None: ...
468
+
469
+ UNINTERPRETED_OPTION_FIELD_NUMBER: builtins.int
470
+ DECLARATION_FIELD_NUMBER: builtins.int
471
+ FEATURES_FIELD_NUMBER: builtins.int
472
+ VERIFICATION_FIELD_NUMBER: builtins.int
473
+ verification: global___ExtensionRangeOptions.VerificationState.ValueType
474
+ """The verification state of the range.
475
+ TODO: flip the default to DECLARATION once all empty ranges
476
+ are marked as UNVERIFIED.
477
+ """
478
+ @property
479
+ def uninterpreted_option(
480
+ self,
481
+ ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___UninterpretedOption]:
482
+ """The parser stores options it doesn't recognize here. See above."""
483
+
484
+ @property
485
+ def declaration(
486
+ self,
487
+ ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___ExtensionRangeOptions.Declaration]:
488
+ """For external users: DO NOT USE. We are in the process of open sourcing
489
+ extension declaration and executing internal cleanups before it can be
490
+ used externally.
491
+ """
492
+
493
+ @property
494
+ def features(self) -> global___FeatureSet:
495
+ """Any features defined in the specific edition."""
496
+
497
+ def __init__(
498
+ self,
499
+ *,
500
+ uninterpreted_option: collections.abc.Iterable[global___UninterpretedOption] | None = ...,
501
+ declaration: collections.abc.Iterable[global___ExtensionRangeOptions.Declaration] | None = ...,
502
+ features: global___FeatureSet | None = ...,
503
+ verification: global___ExtensionRangeOptions.VerificationState.ValueType | None = ...,
504
+ ) -> None: ...
505
+ def HasField(self, field_name: typing.Literal["features", b"features", "verification", b"verification"]) -> builtins.bool: ...
506
+ def ClearField(
507
+ self,
508
+ field_name: typing.Literal[
509
+ "declaration",
510
+ b"declaration",
511
+ "features",
512
+ b"features",
513
+ "uninterpreted_option",
514
+ b"uninterpreted_option",
515
+ "verification",
516
+ b"verification",
517
+ ],
518
+ ) -> None: ...
519
+
520
+ global___ExtensionRangeOptions = ExtensionRangeOptions
521
+
522
+ @typing.final
523
+ class FieldDescriptorProto(google.protobuf.message.Message):
524
+ """Describes a field within a message."""
525
+
526
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
527
+
528
+ class _Type:
529
+ ValueType = typing.NewType("ValueType", builtins.int)
530
+ V: typing_extensions.TypeAlias = ValueType
531
+
532
+ class _TypeEnumTypeWrapper(
533
+ google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[FieldDescriptorProto._Type.ValueType], builtins.type
534
+ ):
535
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
536
+ TYPE_DOUBLE: FieldDescriptorProto._Type.ValueType # 1
537
+ """0 is reserved for errors.
538
+ Order is weird for historical reasons.
539
+ """
540
+ TYPE_FLOAT: FieldDescriptorProto._Type.ValueType # 2
541
+ TYPE_INT64: FieldDescriptorProto._Type.ValueType # 3
542
+ """Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if
543
+ negative values are likely.
544
+ """
545
+ TYPE_UINT64: FieldDescriptorProto._Type.ValueType # 4
546
+ TYPE_INT32: FieldDescriptorProto._Type.ValueType # 5
547
+ """Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if
548
+ negative values are likely.
549
+ """
550
+ TYPE_FIXED64: FieldDescriptorProto._Type.ValueType # 6
551
+ TYPE_FIXED32: FieldDescriptorProto._Type.ValueType # 7
552
+ TYPE_BOOL: FieldDescriptorProto._Type.ValueType # 8
553
+ TYPE_STRING: FieldDescriptorProto._Type.ValueType # 9
554
+ TYPE_GROUP: FieldDescriptorProto._Type.ValueType # 10
555
+ """Tag-delimited aggregate.
556
+ Group type is deprecated and not supported after google.protobuf. However, Proto3
557
+ implementations should still be able to parse the group wire format and
558
+ treat group fields as unknown fields. In Editions, the group wire format
559
+ can be enabled via the `message_encoding` feature.
560
+ """
561
+ TYPE_MESSAGE: FieldDescriptorProto._Type.ValueType # 11
562
+ """Length-delimited aggregate."""
563
+ TYPE_BYTES: FieldDescriptorProto._Type.ValueType # 12
564
+ """New in version 2."""
565
+ TYPE_UINT32: FieldDescriptorProto._Type.ValueType # 13
566
+ TYPE_ENUM: FieldDescriptorProto._Type.ValueType # 14
567
+ TYPE_SFIXED32: FieldDescriptorProto._Type.ValueType # 15
568
+ TYPE_SFIXED64: FieldDescriptorProto._Type.ValueType # 16
569
+ TYPE_SINT32: FieldDescriptorProto._Type.ValueType # 17
570
+ """Uses ZigZag encoding."""
571
+ TYPE_SINT64: FieldDescriptorProto._Type.ValueType # 18
572
+ """Uses ZigZag encoding."""
573
+
574
+ class Type(_Type, metaclass=_TypeEnumTypeWrapper): ...
575
+ TYPE_DOUBLE: FieldDescriptorProto.Type.ValueType # 1
576
+ """0 is reserved for errors.
577
+ Order is weird for historical reasons.
578
+ """
579
+ TYPE_FLOAT: FieldDescriptorProto.Type.ValueType # 2
580
+ TYPE_INT64: FieldDescriptorProto.Type.ValueType # 3
581
+ """Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if
582
+ negative values are likely.
583
+ """
584
+ TYPE_UINT64: FieldDescriptorProto.Type.ValueType # 4
585
+ TYPE_INT32: FieldDescriptorProto.Type.ValueType # 5
586
+ """Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if
587
+ negative values are likely.
588
+ """
589
+ TYPE_FIXED64: FieldDescriptorProto.Type.ValueType # 6
590
+ TYPE_FIXED32: FieldDescriptorProto.Type.ValueType # 7
591
+ TYPE_BOOL: FieldDescriptorProto.Type.ValueType # 8
592
+ TYPE_STRING: FieldDescriptorProto.Type.ValueType # 9
593
+ TYPE_GROUP: FieldDescriptorProto.Type.ValueType # 10
594
+ """Tag-delimited aggregate.
595
+ Group type is deprecated and not supported after google.protobuf. However, Proto3
596
+ implementations should still be able to parse the group wire format and
597
+ treat group fields as unknown fields. In Editions, the group wire format
598
+ can be enabled via the `message_encoding` feature.
599
+ """
600
+ TYPE_MESSAGE: FieldDescriptorProto.Type.ValueType # 11
601
+ """Length-delimited aggregate."""
602
+ TYPE_BYTES: FieldDescriptorProto.Type.ValueType # 12
603
+ """New in version 2."""
604
+ TYPE_UINT32: FieldDescriptorProto.Type.ValueType # 13
605
+ TYPE_ENUM: FieldDescriptorProto.Type.ValueType # 14
606
+ TYPE_SFIXED32: FieldDescriptorProto.Type.ValueType # 15
607
+ TYPE_SFIXED64: FieldDescriptorProto.Type.ValueType # 16
608
+ TYPE_SINT32: FieldDescriptorProto.Type.ValueType # 17
609
+ """Uses ZigZag encoding."""
610
+ TYPE_SINT64: FieldDescriptorProto.Type.ValueType # 18
611
+ """Uses ZigZag encoding."""
612
+
613
+ class _Label:
614
+ ValueType = typing.NewType("ValueType", builtins.int)
615
+ V: typing_extensions.TypeAlias = ValueType
616
+
617
+ class _LabelEnumTypeWrapper(
618
+ google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[FieldDescriptorProto._Label.ValueType], builtins.type
619
+ ):
620
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
621
+ LABEL_OPTIONAL: FieldDescriptorProto._Label.ValueType # 1
622
+ """0 is reserved for errors"""
623
+ LABEL_REPEATED: FieldDescriptorProto._Label.ValueType # 3
624
+ LABEL_REQUIRED: FieldDescriptorProto._Label.ValueType # 2
625
+ """The required label is only allowed in google.protobuf. In proto3 and Editions
626
+ it's explicitly prohibited. In Editions, the `field_presence` feature
627
+ can be used to get this behavior.
628
+ """
629
+
630
+ class Label(_Label, metaclass=_LabelEnumTypeWrapper): ...
631
+ LABEL_OPTIONAL: FieldDescriptorProto.Label.ValueType # 1
632
+ """0 is reserved for errors"""
633
+ LABEL_REPEATED: FieldDescriptorProto.Label.ValueType # 3
634
+ LABEL_REQUIRED: FieldDescriptorProto.Label.ValueType # 2
635
+ """The required label is only allowed in google.protobuf. In proto3 and Editions
636
+ it's explicitly prohibited. In Editions, the `field_presence` feature
637
+ can be used to get this behavior.
638
+ """
639
+
640
+ NAME_FIELD_NUMBER: builtins.int
641
+ NUMBER_FIELD_NUMBER: builtins.int
642
+ LABEL_FIELD_NUMBER: builtins.int
643
+ TYPE_FIELD_NUMBER: builtins.int
644
+ TYPE_NAME_FIELD_NUMBER: builtins.int
645
+ EXTENDEE_FIELD_NUMBER: builtins.int
646
+ DEFAULT_VALUE_FIELD_NUMBER: builtins.int
647
+ ONEOF_INDEX_FIELD_NUMBER: builtins.int
648
+ JSON_NAME_FIELD_NUMBER: builtins.int
649
+ OPTIONS_FIELD_NUMBER: builtins.int
650
+ PROTO3_OPTIONAL_FIELD_NUMBER: builtins.int
651
+ name: builtins.str
652
+ number: builtins.int
653
+ label: global___FieldDescriptorProto.Label.ValueType
654
+ type: global___FieldDescriptorProto.Type.ValueType
655
+ """If type_name is set, this need not be set. If both this and type_name
656
+ are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.
657
+ """
658
+ type_name: builtins.str
659
+ """For message and enum types, this is the name of the type. If the name
660
+ starts with a '.', it is fully-qualified. Otherwise, C++-like scoping
661
+ rules are used to find the type (i.e. first the nested types within this
662
+ message are searched, then within the parent, on up to the root
663
+ namespace).
664
+ """
665
+ extendee: builtins.str
666
+ """For extensions, this is the name of the type being extended. It is
667
+ resolved in the same manner as type_name.
668
+ """
669
+ default_value: builtins.str
670
+ """For numeric types, contains the original text representation of the value.
671
+ For booleans, "true" or "false".
672
+ For strings, contains the default text contents (not escaped in any way).
673
+ For bytes, contains the C escaped value. All bytes >= 128 are escaped.
674
+ """
675
+ oneof_index: builtins.int
676
+ """If set, gives the index of a oneof in the containing type's oneof_decl
677
+ list. This field is a member of that oneof.
678
+ """
679
+ json_name: builtins.str
680
+ """JSON name of this field. The value is set by protocol compiler. If the
681
+ user has set a "json_name" option on this field, that option's value
682
+ will be used. Otherwise, it's deduced from the field's name by converting
683
+ it to camelCase.
684
+ """
685
+ proto3_optional: builtins.bool
686
+ """If true, this is a proto3 "optional". When a proto3 field is optional, it
687
+ tracks presence regardless of field type.
688
+
689
+ When proto3_optional is true, this field must belong to a oneof to signal
690
+ to old proto3 clients that presence is tracked for this field. This oneof
691
+ is known as a "synthetic" oneof, and this field must be its sole member
692
+ (each proto3 optional field gets its own synthetic oneof). Synthetic oneofs
693
+ exist in the descriptor only, and do not generate any API. Synthetic oneofs
694
+ must be ordered after all "real" oneofs.
695
+
696
+ For message fields, proto3_optional doesn't create any semantic change,
697
+ since non-repeated message fields always track presence. However it still
698
+ indicates the semantic detail of whether the user wrote "optional" or not.
699
+ This can be useful for round-tripping the .proto file. For consistency we
700
+ give message fields a synthetic oneof also, even though it is not required
701
+ to track presence. This is especially important because the parser can't
702
+ tell if a field is a message or an enum, so it must always create a
703
+ synthetic oneof.
704
+
705
+ Proto2 optional fields do not set this flag, because they already indicate
706
+ optional with `LABEL_OPTIONAL`.
707
+ """
708
+ @property
709
+ def options(self) -> global___FieldOptions: ...
710
+ def __init__(
711
+ self,
712
+ *,
713
+ name: builtins.str | None = ...,
714
+ number: builtins.int | None = ...,
715
+ label: global___FieldDescriptorProto.Label.ValueType | None = ...,
716
+ type: global___FieldDescriptorProto.Type.ValueType | None = ...,
717
+ type_name: builtins.str | None = ...,
718
+ extendee: builtins.str | None = ...,
719
+ default_value: builtins.str | None = ...,
720
+ oneof_index: builtins.int | None = ...,
721
+ json_name: builtins.str | None = ...,
722
+ options: global___FieldOptions | None = ...,
723
+ proto3_optional: builtins.bool | None = ...,
724
+ ) -> None: ...
725
+ def HasField(
726
+ self,
727
+ field_name: typing.Literal[
728
+ "default_value",
729
+ b"default_value",
730
+ "extendee",
731
+ b"extendee",
732
+ "json_name",
733
+ b"json_name",
734
+ "label",
735
+ b"label",
736
+ "name",
737
+ b"name",
738
+ "number",
739
+ b"number",
740
+ "oneof_index",
741
+ b"oneof_index",
742
+ "options",
743
+ b"options",
744
+ "proto3_optional",
745
+ b"proto3_optional",
746
+ "type",
747
+ b"type",
748
+ "type_name",
749
+ b"type_name",
750
+ ],
751
+ ) -> builtins.bool: ...
752
+ def ClearField(
753
+ self,
754
+ field_name: typing.Literal[
755
+ "default_value",
756
+ b"default_value",
757
+ "extendee",
758
+ b"extendee",
759
+ "json_name",
760
+ b"json_name",
761
+ "label",
762
+ b"label",
763
+ "name",
764
+ b"name",
765
+ "number",
766
+ b"number",
767
+ "oneof_index",
768
+ b"oneof_index",
769
+ "options",
770
+ b"options",
771
+ "proto3_optional",
772
+ b"proto3_optional",
773
+ "type",
774
+ b"type",
775
+ "type_name",
776
+ b"type_name",
777
+ ],
778
+ ) -> None: ...
779
+
780
+ global___FieldDescriptorProto = FieldDescriptorProto
781
+
782
+ @typing.final
783
+ class OneofDescriptorProto(google.protobuf.message.Message):
784
+ """Describes a oneof."""
785
+
786
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
787
+
788
+ NAME_FIELD_NUMBER: builtins.int
789
+ OPTIONS_FIELD_NUMBER: builtins.int
790
+ name: builtins.str
791
+ @property
792
+ def options(self) -> global___OneofOptions: ...
793
+ def __init__(self, *, name: builtins.str | None = ..., options: global___OneofOptions | None = ...) -> None: ...
794
+ def HasField(self, field_name: typing.Literal["name", b"name", "options", b"options"]) -> builtins.bool: ...
795
+ def ClearField(self, field_name: typing.Literal["name", b"name", "options", b"options"]) -> None: ...
796
+
797
+ global___OneofDescriptorProto = OneofDescriptorProto
798
+
799
+ @typing.final
800
+ class EnumDescriptorProto(google.protobuf.message.Message):
801
+ """Describes an enum type."""
802
+
803
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
804
+
805
+ @typing.final
806
+ class EnumReservedRange(google.protobuf.message.Message):
807
+ """Range of reserved numeric values. Reserved values may not be used by
808
+ entries in the same enum. Reserved ranges may not overlap.
809
+
810
+ Note that this is distinct from DescriptorProto.ReservedRange in that it
811
+ is inclusive such that it can appropriately represent the entire int32
812
+ domain.
813
+ """
814
+
815
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
816
+
817
+ START_FIELD_NUMBER: builtins.int
818
+ END_FIELD_NUMBER: builtins.int
819
+ start: builtins.int
820
+ """Inclusive."""
821
+ end: builtins.int
822
+ """Inclusive."""
823
+ def __init__(self, *, start: builtins.int | None = ..., end: builtins.int | None = ...) -> None: ...
824
+ def HasField(self, field_name: typing.Literal["end", b"end", "start", b"start"]) -> builtins.bool: ...
825
+ def ClearField(self, field_name: typing.Literal["end", b"end", "start", b"start"]) -> None: ...
826
+
827
+ NAME_FIELD_NUMBER: builtins.int
828
+ VALUE_FIELD_NUMBER: builtins.int
829
+ OPTIONS_FIELD_NUMBER: builtins.int
830
+ RESERVED_RANGE_FIELD_NUMBER: builtins.int
831
+ RESERVED_NAME_FIELD_NUMBER: builtins.int
832
+ name: builtins.str
833
+ @property
834
+ def value(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___EnumValueDescriptorProto]: ...
835
+ @property
836
+ def options(self) -> global___EnumOptions: ...
837
+ @property
838
+ def reserved_range(
839
+ self,
840
+ ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___EnumDescriptorProto.EnumReservedRange]:
841
+ """Range of reserved numeric values. Reserved numeric values may not be used
842
+ by enum values in the same enum declaration. Reserved ranges may not
843
+ overlap.
844
+ """
845
+
846
+ @property
847
+ def reserved_name(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
848
+ """Reserved enum value names, which may not be reused. A given name may only
849
+ be reserved once.
850
+ """
851
+
852
+ def __init__(
853
+ self,
854
+ *,
855
+ name: builtins.str | None = ...,
856
+ value: collections.abc.Iterable[global___EnumValueDescriptorProto] | None = ...,
857
+ options: global___EnumOptions | None = ...,
858
+ reserved_range: collections.abc.Iterable[global___EnumDescriptorProto.EnumReservedRange] | None = ...,
859
+ reserved_name: collections.abc.Iterable[builtins.str] | None = ...,
860
+ ) -> None: ...
861
+ def HasField(self, field_name: typing.Literal["name", b"name", "options", b"options"]) -> builtins.bool: ...
862
+ def ClearField(
863
+ self,
864
+ field_name: typing.Literal[
865
+ "name",
866
+ b"name",
867
+ "options",
868
+ b"options",
869
+ "reserved_name",
870
+ b"reserved_name",
871
+ "reserved_range",
872
+ b"reserved_range",
873
+ "value",
874
+ b"value",
875
+ ],
876
+ ) -> None: ...
877
+
878
+ global___EnumDescriptorProto = EnumDescriptorProto
879
+
880
+ @typing.final
881
+ class EnumValueDescriptorProto(google.protobuf.message.Message):
882
+ """Describes a value within an enum."""
883
+
884
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
885
+
886
+ NAME_FIELD_NUMBER: builtins.int
887
+ NUMBER_FIELD_NUMBER: builtins.int
888
+ OPTIONS_FIELD_NUMBER: builtins.int
889
+ name: builtins.str
890
+ number: builtins.int
891
+ @property
892
+ def options(self) -> global___EnumValueOptions: ...
893
+ def __init__(
894
+ self,
895
+ *,
896
+ name: builtins.str | None = ...,
897
+ number: builtins.int | None = ...,
898
+ options: global___EnumValueOptions | None = ...,
899
+ ) -> None: ...
900
+ def HasField(
901
+ self, field_name: typing.Literal["name", b"name", "number", b"number", "options", b"options"]
902
+ ) -> builtins.bool: ...
903
+ def ClearField(self, field_name: typing.Literal["name", b"name", "number", b"number", "options", b"options"]) -> None: ...
904
+
905
+ global___EnumValueDescriptorProto = EnumValueDescriptorProto
906
+
907
+ @typing.final
908
+ class ServiceDescriptorProto(google.protobuf.message.Message):
909
+ """Describes a service."""
910
+
911
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
912
+
913
+ NAME_FIELD_NUMBER: builtins.int
914
+ METHOD_FIELD_NUMBER: builtins.int
915
+ OPTIONS_FIELD_NUMBER: builtins.int
916
+ name: builtins.str
917
+ @property
918
+ def method(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___MethodDescriptorProto]: ...
919
+ @property
920
+ def options(self) -> global___ServiceOptions: ...
921
+ def __init__(
922
+ self,
923
+ *,
924
+ name: builtins.str | None = ...,
925
+ method: collections.abc.Iterable[global___MethodDescriptorProto] | None = ...,
926
+ options: global___ServiceOptions | None = ...,
927
+ ) -> None: ...
928
+ def HasField(self, field_name: typing.Literal["name", b"name", "options", b"options"]) -> builtins.bool: ...
929
+ def ClearField(self, field_name: typing.Literal["method", b"method", "name", b"name", "options", b"options"]) -> None: ...
930
+
931
+ global___ServiceDescriptorProto = ServiceDescriptorProto
932
+
933
+ @typing.final
934
+ class MethodDescriptorProto(google.protobuf.message.Message):
935
+ """Describes a method of a service."""
936
+
937
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
938
+
939
+ NAME_FIELD_NUMBER: builtins.int
940
+ INPUT_TYPE_FIELD_NUMBER: builtins.int
941
+ OUTPUT_TYPE_FIELD_NUMBER: builtins.int
942
+ OPTIONS_FIELD_NUMBER: builtins.int
943
+ CLIENT_STREAMING_FIELD_NUMBER: builtins.int
944
+ SERVER_STREAMING_FIELD_NUMBER: builtins.int
945
+ name: builtins.str
946
+ input_type: builtins.str
947
+ """Input and output type names. These are resolved in the same way as
948
+ FieldDescriptorProto.type_name, but must refer to a message type.
949
+ """
950
+ output_type: builtins.str
951
+ client_streaming: builtins.bool
952
+ """Identifies if client streams multiple client messages"""
953
+ server_streaming: builtins.bool
954
+ """Identifies if server streams multiple server messages"""
955
+ @property
956
+ def options(self) -> global___MethodOptions: ...
957
+ def __init__(
958
+ self,
959
+ *,
960
+ name: builtins.str | None = ...,
961
+ input_type: builtins.str | None = ...,
962
+ output_type: builtins.str | None = ...,
963
+ options: global___MethodOptions | None = ...,
964
+ client_streaming: builtins.bool | None = ...,
965
+ server_streaming: builtins.bool | None = ...,
966
+ ) -> None: ...
967
+ def HasField(
968
+ self,
969
+ field_name: typing.Literal[
970
+ "client_streaming",
971
+ b"client_streaming",
972
+ "input_type",
973
+ b"input_type",
974
+ "name",
975
+ b"name",
976
+ "options",
977
+ b"options",
978
+ "output_type",
979
+ b"output_type",
980
+ "server_streaming",
981
+ b"server_streaming",
982
+ ],
983
+ ) -> builtins.bool: ...
984
+ def ClearField(
985
+ self,
986
+ field_name: typing.Literal[
987
+ "client_streaming",
988
+ b"client_streaming",
989
+ "input_type",
990
+ b"input_type",
991
+ "name",
992
+ b"name",
993
+ "options",
994
+ b"options",
995
+ "output_type",
996
+ b"output_type",
997
+ "server_streaming",
998
+ b"server_streaming",
999
+ ],
1000
+ ) -> None: ...
1001
+
1002
+ global___MethodDescriptorProto = MethodDescriptorProto
1003
+
1004
+ @typing.final
1005
+ class FileOptions(google.protobuf.message.Message):
1006
+ """Each of the definitions above may have "options" attached. These are
1007
+ just annotations which may cause code to be generated slightly differently
1008
+ or may contain hints for code that manipulates protocol messages.
1009
+
1010
+ Clients may define custom options as extensions of the *Options messages.
1011
+ These extensions may not yet be known at parsing time, so the parser cannot
1012
+ store the values in them. Instead it stores them in a field in the *Options
1013
+ message called uninterpreted_option. This field must have the same name
1014
+ across all *Options messages. We then use this field to populate the
1015
+ extensions when we build a descriptor, at which point all protos have been
1016
+ parsed and so all extensions are known.
1017
+
1018
+ Extension numbers for custom options may be chosen as follows:
1019
+ * For options which will only be used within a single application or
1020
+ organization, or for experimental options, use field numbers 50000
1021
+ through 99999. It is up to you to ensure that you do not use the
1022
+ same number for multiple options.
1023
+ * For options which will be published and used publicly by multiple
1024
+ independent entities, e-mail protobuf-global-extension-registry@google.com
1025
+ to reserve extension numbers. Simply provide your project name (e.g.
1026
+ Objective-C plugin) and your project website (if available) -- there's no
1027
+ need to explain how you intend to use them. Usually you only need one
1028
+ extension number. You can declare multiple options with only one extension
1029
+ number by putting them in a sub-message. See the Custom Options section of
1030
+ the docs for examples:
1031
+ https://developers.google.com/protocol-buffers/docs/proto#options
1032
+ If this turns out to be popular, a web service will be set up
1033
+ to automatically assign option numbers.
1034
+ """
1035
+
1036
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
1037
+
1038
+ class _OptimizeMode:
1039
+ ValueType = typing.NewType("ValueType", builtins.int)
1040
+ V: typing_extensions.TypeAlias = ValueType
1041
+
1042
+ class _OptimizeModeEnumTypeWrapper(
1043
+ google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[FileOptions._OptimizeMode.ValueType], builtins.type
1044
+ ):
1045
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
1046
+ SPEED: FileOptions._OptimizeMode.ValueType # 1
1047
+ """Generate complete code for parsing, serialization,"""
1048
+ CODE_SIZE: FileOptions._OptimizeMode.ValueType # 2
1049
+ """etc.
1050
+ Use ReflectionOps to implement these methods.
1051
+ """
1052
+ LITE_RUNTIME: FileOptions._OptimizeMode.ValueType # 3
1053
+ """Generate code using MessageLite and the lite runtime."""
1054
+
1055
+ class OptimizeMode(_OptimizeMode, metaclass=_OptimizeModeEnumTypeWrapper):
1056
+ """Generated classes can be optimized for speed or code size."""
1057
+
1058
+ SPEED: FileOptions.OptimizeMode.ValueType # 1
1059
+ """Generate complete code for parsing, serialization,"""
1060
+ CODE_SIZE: FileOptions.OptimizeMode.ValueType # 2
1061
+ """etc.
1062
+ Use ReflectionOps to implement these methods.
1063
+ """
1064
+ LITE_RUNTIME: FileOptions.OptimizeMode.ValueType # 3
1065
+ """Generate code using MessageLite and the lite runtime."""
1066
+
1067
+ JAVA_PACKAGE_FIELD_NUMBER: builtins.int
1068
+ JAVA_OUTER_CLASSNAME_FIELD_NUMBER: builtins.int
1069
+ JAVA_MULTIPLE_FILES_FIELD_NUMBER: builtins.int
1070
+ JAVA_GENERATE_EQUALS_AND_HASH_FIELD_NUMBER: builtins.int
1071
+ JAVA_STRING_CHECK_UTF8_FIELD_NUMBER: builtins.int
1072
+ OPTIMIZE_FOR_FIELD_NUMBER: builtins.int
1073
+ GO_PACKAGE_FIELD_NUMBER: builtins.int
1074
+ CC_GENERIC_SERVICES_FIELD_NUMBER: builtins.int
1075
+ JAVA_GENERIC_SERVICES_FIELD_NUMBER: builtins.int
1076
+ PY_GENERIC_SERVICES_FIELD_NUMBER: builtins.int
1077
+ DEPRECATED_FIELD_NUMBER: builtins.int
1078
+ CC_ENABLE_ARENAS_FIELD_NUMBER: builtins.int
1079
+ OBJC_CLASS_PREFIX_FIELD_NUMBER: builtins.int
1080
+ CSHARP_NAMESPACE_FIELD_NUMBER: builtins.int
1081
+ SWIFT_PREFIX_FIELD_NUMBER: builtins.int
1082
+ PHP_CLASS_PREFIX_FIELD_NUMBER: builtins.int
1083
+ PHP_NAMESPACE_FIELD_NUMBER: builtins.int
1084
+ PHP_METADATA_NAMESPACE_FIELD_NUMBER: builtins.int
1085
+ RUBY_PACKAGE_FIELD_NUMBER: builtins.int
1086
+ FEATURES_FIELD_NUMBER: builtins.int
1087
+ UNINTERPRETED_OPTION_FIELD_NUMBER: builtins.int
1088
+ java_package: builtins.str
1089
+ """Sets the Java package where classes generated from this .proto will be
1090
+ placed. By default, the proto package is used, but this is often
1091
+ inappropriate because proto packages do not normally start with backwards
1092
+ domain names.
1093
+ """
1094
+ java_outer_classname: builtins.str
1095
+ """Controls the name of the wrapper Java class generated for the .proto file.
1096
+ That class will always contain the .proto file's getDescriptor() method as
1097
+ well as any top-level extensions defined in the .proto file.
1098
+ If java_multiple_files is disabled, then all the other classes from the
1099
+ .proto file will be nested inside the single wrapper outer class.
1100
+ """
1101
+ java_multiple_files: builtins.bool
1102
+ """If enabled, then the Java code generator will generate a separate .java
1103
+ file for each top-level message, enum, and service defined in the .proto
1104
+ file. Thus, these types will *not* be nested inside the wrapper class
1105
+ named by java_outer_classname. However, the wrapper class will still be
1106
+ generated to contain the file's getDescriptor() method as well as any
1107
+ top-level extensions defined in the file.
1108
+ """
1109
+ java_generate_equals_and_hash: builtins.bool
1110
+ """This option does nothing."""
1111
+ java_string_check_utf8: builtins.bool
1112
+ """A proto2 file can set this to true to opt in to UTF-8 checking for Java,
1113
+ which will throw an exception if invalid UTF-8 is parsed from the wire or
1114
+ assigned to a string field.
1115
+
1116
+ TODO: clarify exactly what kinds of field types this option
1117
+ applies to, and update these docs accordingly.
1118
+
1119
+ Proto3 files already perform these checks. Setting the option explicitly to
1120
+ false has no effect: it cannot be used to opt proto3 files out of UTF-8
1121
+ checks.
1122
+ """
1123
+ optimize_for: global___FileOptions.OptimizeMode.ValueType
1124
+ go_package: builtins.str
1125
+ """Sets the Go package where structs generated from this .proto will be
1126
+ placed. If omitted, the Go package will be derived from the following:
1127
+ - The basename of the package import path, if provided.
1128
+ - Otherwise, the package statement in the .proto file, if present.
1129
+ - Otherwise, the basename of the .proto file, without extension.
1130
+ """
1131
+ cc_generic_services: builtins.bool
1132
+ """Should generic services be generated in each language? "Generic" services
1133
+ are not specific to any particular RPC system. They are generated by the
1134
+ main code generators in each language (without additional plugins).
1135
+ Generic services were the only kind of service generation supported by
1136
+ early versions of google.protobuf.
1137
+
1138
+ Generic services are now considered deprecated in favor of using plugins
1139
+ that generate code specific to your particular RPC system. Therefore,
1140
+ these default to false. Old code which depends on generic services should
1141
+ explicitly set them to true.
1142
+ """
1143
+ java_generic_services: builtins.bool
1144
+ py_generic_services: builtins.bool
1145
+ deprecated: builtins.bool
1146
+ """Is this file deprecated?
1147
+ Depending on the target platform, this can emit Deprecated annotations
1148
+ for everything in the file, or it will be completely ignored; in the very
1149
+ least, this is a formalization for deprecating files.
1150
+ """
1151
+ cc_enable_arenas: builtins.bool
1152
+ """Enables the use of arenas for the proto messages in this file. This applies
1153
+ only to generated classes for C++.
1154
+ """
1155
+ objc_class_prefix: builtins.str
1156
+ """Sets the objective c class prefix which is prepended to all objective c
1157
+ generated classes from this .proto. There is no default.
1158
+ """
1159
+ csharp_namespace: builtins.str
1160
+ """Namespace for generated classes; defaults to the package."""
1161
+ swift_prefix: builtins.str
1162
+ """By default Swift generators will take the proto package and CamelCase it
1163
+ replacing '.' with underscore and use that to prefix the types/symbols
1164
+ defined. When this options is provided, they will use this value instead
1165
+ to prefix the types/symbols defined.
1166
+ """
1167
+ php_class_prefix: builtins.str
1168
+ """Sets the php class prefix which is prepended to all php generated classes
1169
+ from this .proto. Default is empty.
1170
+ """
1171
+ php_namespace: builtins.str
1172
+ """Use this option to change the namespace of php generated classes. Default
1173
+ is empty. When this option is empty, the package name will be used for
1174
+ determining the namespace.
1175
+ """
1176
+ php_metadata_namespace: builtins.str
1177
+ """Use this option to change the namespace of php generated metadata classes.
1178
+ Default is empty. When this option is empty, the proto file name will be
1179
+ used for determining the namespace.
1180
+ """
1181
+ ruby_package: builtins.str
1182
+ """Use this option to change the package of ruby generated classes. Default
1183
+ is empty. When this option is not set, the package name will be used for
1184
+ determining the ruby package.
1185
+ """
1186
+ @property
1187
+ def features(self) -> global___FeatureSet:
1188
+ """Any features defined in the specific edition.
1189
+ WARNING: This field should only be used by protobuf plugins or special
1190
+ cases like the proto compiler. Other uses are discouraged and
1191
+ developers should rely on the protoreflect APIs for their client language.
1192
+ """
1193
+
1194
+ @property
1195
+ def uninterpreted_option(
1196
+ self,
1197
+ ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___UninterpretedOption]:
1198
+ """The parser stores options it doesn't recognize here.
1199
+ See the documentation for the "Options" section above.
1200
+ """
1201
+
1202
+ def __init__(
1203
+ self,
1204
+ *,
1205
+ java_package: builtins.str | None = ...,
1206
+ java_outer_classname: builtins.str | None = ...,
1207
+ java_multiple_files: builtins.bool | None = ...,
1208
+ java_generate_equals_and_hash: builtins.bool | None = ...,
1209
+ java_string_check_utf8: builtins.bool | None = ...,
1210
+ optimize_for: global___FileOptions.OptimizeMode.ValueType | None = ...,
1211
+ go_package: builtins.str | None = ...,
1212
+ cc_generic_services: builtins.bool | None = ...,
1213
+ java_generic_services: builtins.bool | None = ...,
1214
+ py_generic_services: builtins.bool | None = ...,
1215
+ deprecated: builtins.bool | None = ...,
1216
+ cc_enable_arenas: builtins.bool | None = ...,
1217
+ objc_class_prefix: builtins.str | None = ...,
1218
+ csharp_namespace: builtins.str | None = ...,
1219
+ swift_prefix: builtins.str | None = ...,
1220
+ php_class_prefix: builtins.str | None = ...,
1221
+ php_namespace: builtins.str | None = ...,
1222
+ php_metadata_namespace: builtins.str | None = ...,
1223
+ ruby_package: builtins.str | None = ...,
1224
+ features: global___FeatureSet | None = ...,
1225
+ uninterpreted_option: collections.abc.Iterable[global___UninterpretedOption] | None = ...,
1226
+ ) -> None: ...
1227
+ def HasField(
1228
+ self,
1229
+ field_name: typing.Literal[
1230
+ "cc_enable_arenas",
1231
+ b"cc_enable_arenas",
1232
+ "cc_generic_services",
1233
+ b"cc_generic_services",
1234
+ "csharp_namespace",
1235
+ b"csharp_namespace",
1236
+ "deprecated",
1237
+ b"deprecated",
1238
+ "features",
1239
+ b"features",
1240
+ "go_package",
1241
+ b"go_package",
1242
+ "java_generate_equals_and_hash",
1243
+ b"java_generate_equals_and_hash",
1244
+ "java_generic_services",
1245
+ b"java_generic_services",
1246
+ "java_multiple_files",
1247
+ b"java_multiple_files",
1248
+ "java_outer_classname",
1249
+ b"java_outer_classname",
1250
+ "java_package",
1251
+ b"java_package",
1252
+ "java_string_check_utf8",
1253
+ b"java_string_check_utf8",
1254
+ "objc_class_prefix",
1255
+ b"objc_class_prefix",
1256
+ "optimize_for",
1257
+ b"optimize_for",
1258
+ "php_class_prefix",
1259
+ b"php_class_prefix",
1260
+ "php_metadata_namespace",
1261
+ b"php_metadata_namespace",
1262
+ "php_namespace",
1263
+ b"php_namespace",
1264
+ "py_generic_services",
1265
+ b"py_generic_services",
1266
+ "ruby_package",
1267
+ b"ruby_package",
1268
+ "swift_prefix",
1269
+ b"swift_prefix",
1270
+ ],
1271
+ ) -> builtins.bool: ...
1272
+ def ClearField(
1273
+ self,
1274
+ field_name: typing.Literal[
1275
+ "cc_enable_arenas",
1276
+ b"cc_enable_arenas",
1277
+ "cc_generic_services",
1278
+ b"cc_generic_services",
1279
+ "csharp_namespace",
1280
+ b"csharp_namespace",
1281
+ "deprecated",
1282
+ b"deprecated",
1283
+ "features",
1284
+ b"features",
1285
+ "go_package",
1286
+ b"go_package",
1287
+ "java_generate_equals_and_hash",
1288
+ b"java_generate_equals_and_hash",
1289
+ "java_generic_services",
1290
+ b"java_generic_services",
1291
+ "java_multiple_files",
1292
+ b"java_multiple_files",
1293
+ "java_outer_classname",
1294
+ b"java_outer_classname",
1295
+ "java_package",
1296
+ b"java_package",
1297
+ "java_string_check_utf8",
1298
+ b"java_string_check_utf8",
1299
+ "objc_class_prefix",
1300
+ b"objc_class_prefix",
1301
+ "optimize_for",
1302
+ b"optimize_for",
1303
+ "php_class_prefix",
1304
+ b"php_class_prefix",
1305
+ "php_metadata_namespace",
1306
+ b"php_metadata_namespace",
1307
+ "php_namespace",
1308
+ b"php_namespace",
1309
+ "py_generic_services",
1310
+ b"py_generic_services",
1311
+ "ruby_package",
1312
+ b"ruby_package",
1313
+ "swift_prefix",
1314
+ b"swift_prefix",
1315
+ "uninterpreted_option",
1316
+ b"uninterpreted_option",
1317
+ ],
1318
+ ) -> None: ...
1319
+
1320
+ global___FileOptions = FileOptions
1321
+
1322
+ @typing.final
1323
+ class MessageOptions(google.protobuf.message.Message):
1324
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
1325
+
1326
+ MESSAGE_SET_WIRE_FORMAT_FIELD_NUMBER: builtins.int
1327
+ NO_STANDARD_DESCRIPTOR_ACCESSOR_FIELD_NUMBER: builtins.int
1328
+ DEPRECATED_FIELD_NUMBER: builtins.int
1329
+ MAP_ENTRY_FIELD_NUMBER: builtins.int
1330
+ DEPRECATED_LEGACY_JSON_FIELD_CONFLICTS_FIELD_NUMBER: builtins.int
1331
+ FEATURES_FIELD_NUMBER: builtins.int
1332
+ UNINTERPRETED_OPTION_FIELD_NUMBER: builtins.int
1333
+ message_set_wire_format: builtins.bool
1334
+ """Set true to use the old proto1 MessageSet wire format for extensions.
1335
+ This is provided for backwards-compatibility with the MessageSet wire
1336
+ format. You should not use this for any other reason: It's less
1337
+ efficient, has fewer features, and is more complicated.
1338
+
1339
+ The message must be defined exactly as follows:
1340
+ message Foo {
1341
+ option message_set_wire_format = true;
1342
+ extensions 4 to max;
1343
+ }
1344
+ Note that the message cannot have any defined fields; MessageSets only
1345
+ have extensions.
1346
+
1347
+ All extensions of your type must be singular messages; e.g. they cannot
1348
+ be int32s, enums, or repeated messages.
1349
+
1350
+ Because this is an option, the above two restrictions are not enforced by
1351
+ the protocol compiler.
1352
+ """
1353
+ no_standard_descriptor_accessor: builtins.bool
1354
+ """Disables the generation of the standard "descriptor()" accessor, which can
1355
+ conflict with a field of the same name. This is meant to make migration
1356
+ from proto1 easier; new code should avoid fields named "descriptor".
1357
+ """
1358
+ deprecated: builtins.bool
1359
+ """Is this message deprecated?
1360
+ Depending on the target platform, this can emit Deprecated annotations
1361
+ for the message, or it will be completely ignored; in the very least,
1362
+ this is a formalization for deprecating messages.
1363
+ """
1364
+ map_entry: builtins.bool
1365
+ """Whether the message is an automatically generated map entry type for the
1366
+ maps field.
1367
+
1368
+ For maps fields:
1369
+ map<KeyType, ValueType> map_field = 1;
1370
+ The parsed descriptor looks like:
1371
+ message MapFieldEntry {
1372
+ option map_entry = true;
1373
+ optional KeyType key = 1;
1374
+ optional ValueType value = 2;
1375
+ }
1376
+ repeated MapFieldEntry map_field = 1;
1377
+
1378
+ Implementations may choose not to generate the map_entry=true message, but
1379
+ use a native map in the target language to hold the keys and values.
1380
+ The reflection APIs in such implementations still need to work as
1381
+ if the field is a repeated message field.
1382
+
1383
+ NOTE: Do not set the option in .proto files. Always use the maps syntax
1384
+ instead. The option should only be implicitly set by the proto compiler
1385
+ parser.
1386
+ """
1387
+ deprecated_legacy_json_field_conflicts: builtins.bool
1388
+ """Enable the legacy handling of JSON field name conflicts. This lowercases
1389
+ and strips underscored from the fields before comparison in proto3 only.
1390
+ The new behavior takes `json_name` into account and applies to proto2 as
1391
+ well.
1392
+
1393
+ This should only be used as a temporary measure against broken builds due
1394
+ to the change in behavior for JSON field name conflicts.
1395
+
1396
+ TODO This is legacy behavior we plan to remove once downstream
1397
+ teams have had time to migrate.
1398
+ """
1399
+ @property
1400
+ def features(self) -> global___FeatureSet:
1401
+ """Any features defined in the specific edition.
1402
+ WARNING: This field should only be used by protobuf plugins or special
1403
+ cases like the proto compiler. Other uses are discouraged and
1404
+ developers should rely on the protoreflect APIs for their client language.
1405
+ """
1406
+
1407
+ @property
1408
+ def uninterpreted_option(
1409
+ self,
1410
+ ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___UninterpretedOption]:
1411
+ """The parser stores options it doesn't recognize here. See above."""
1412
+
1413
+ def __init__(
1414
+ self,
1415
+ *,
1416
+ message_set_wire_format: builtins.bool | None = ...,
1417
+ no_standard_descriptor_accessor: builtins.bool | None = ...,
1418
+ deprecated: builtins.bool | None = ...,
1419
+ map_entry: builtins.bool | None = ...,
1420
+ deprecated_legacy_json_field_conflicts: builtins.bool | None = ...,
1421
+ features: global___FeatureSet | None = ...,
1422
+ uninterpreted_option: collections.abc.Iterable[global___UninterpretedOption] | None = ...,
1423
+ ) -> None: ...
1424
+ def HasField(
1425
+ self,
1426
+ field_name: typing.Literal[
1427
+ "deprecated",
1428
+ b"deprecated",
1429
+ "deprecated_legacy_json_field_conflicts",
1430
+ b"deprecated_legacy_json_field_conflicts",
1431
+ "features",
1432
+ b"features",
1433
+ "map_entry",
1434
+ b"map_entry",
1435
+ "message_set_wire_format",
1436
+ b"message_set_wire_format",
1437
+ "no_standard_descriptor_accessor",
1438
+ b"no_standard_descriptor_accessor",
1439
+ ],
1440
+ ) -> builtins.bool: ...
1441
+ def ClearField(
1442
+ self,
1443
+ field_name: typing.Literal[
1444
+ "deprecated",
1445
+ b"deprecated",
1446
+ "deprecated_legacy_json_field_conflicts",
1447
+ b"deprecated_legacy_json_field_conflicts",
1448
+ "features",
1449
+ b"features",
1450
+ "map_entry",
1451
+ b"map_entry",
1452
+ "message_set_wire_format",
1453
+ b"message_set_wire_format",
1454
+ "no_standard_descriptor_accessor",
1455
+ b"no_standard_descriptor_accessor",
1456
+ "uninterpreted_option",
1457
+ b"uninterpreted_option",
1458
+ ],
1459
+ ) -> None: ...
1460
+
1461
+ global___MessageOptions = MessageOptions
1462
+
1463
+ @typing.final
1464
+ class FieldOptions(google.protobuf.message.Message):
1465
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
1466
+
1467
+ class _CType:
1468
+ ValueType = typing.NewType("ValueType", builtins.int)
1469
+ V: typing_extensions.TypeAlias = ValueType
1470
+
1471
+ class _CTypeEnumTypeWrapper(
1472
+ google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[FieldOptions._CType.ValueType], builtins.type
1473
+ ):
1474
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
1475
+ STRING: FieldOptions._CType.ValueType # 0
1476
+ """Default mode."""
1477
+ CORD: FieldOptions._CType.ValueType # 1
1478
+ """The option [ctype=CORD] may be applied to a non-repeated field of type
1479
+ "bytes". It indicates that in C++, the data should be stored in a Cord
1480
+ instead of a string. For very large strings, this may reduce memory
1481
+ fragmentation. It may also allow better performance when parsing from a
1482
+ Cord, or when parsing with aliasing enabled, as the parsed Cord may then
1483
+ alias the original buffer.
1484
+ """
1485
+ STRING_PIECE: FieldOptions._CType.ValueType # 2
1486
+
1487
+ class CType(_CType, metaclass=_CTypeEnumTypeWrapper): ...
1488
+ STRING: FieldOptions.CType.ValueType # 0
1489
+ """Default mode."""
1490
+ CORD: FieldOptions.CType.ValueType # 1
1491
+ """The option [ctype=CORD] may be applied to a non-repeated field of type
1492
+ "bytes". It indicates that in C++, the data should be stored in a Cord
1493
+ instead of a string. For very large strings, this may reduce memory
1494
+ fragmentation. It may also allow better performance when parsing from a
1495
+ Cord, or when parsing with aliasing enabled, as the parsed Cord may then
1496
+ alias the original buffer.
1497
+ """
1498
+ STRING_PIECE: FieldOptions.CType.ValueType # 2
1499
+
1500
+ class _JSType:
1501
+ ValueType = typing.NewType("ValueType", builtins.int)
1502
+ V: typing_extensions.TypeAlias = ValueType
1503
+
1504
+ class _JSTypeEnumTypeWrapper(
1505
+ google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[FieldOptions._JSType.ValueType], builtins.type
1506
+ ):
1507
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
1508
+ JS_NORMAL: FieldOptions._JSType.ValueType # 0
1509
+ """Use the default type."""
1510
+ JS_STRING: FieldOptions._JSType.ValueType # 1
1511
+ """Use JavaScript strings."""
1512
+ JS_NUMBER: FieldOptions._JSType.ValueType # 2
1513
+ """Use JavaScript numbers."""
1514
+
1515
+ class JSType(_JSType, metaclass=_JSTypeEnumTypeWrapper): ...
1516
+ JS_NORMAL: FieldOptions.JSType.ValueType # 0
1517
+ """Use the default type."""
1518
+ JS_STRING: FieldOptions.JSType.ValueType # 1
1519
+ """Use JavaScript strings."""
1520
+ JS_NUMBER: FieldOptions.JSType.ValueType # 2
1521
+ """Use JavaScript numbers."""
1522
+
1523
+ class _OptionRetention:
1524
+ ValueType = typing.NewType("ValueType", builtins.int)
1525
+ V: typing_extensions.TypeAlias = ValueType
1526
+
1527
+ class _OptionRetentionEnumTypeWrapper(
1528
+ google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[FieldOptions._OptionRetention.ValueType], builtins.type
1529
+ ):
1530
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
1531
+ RETENTION_UNKNOWN: FieldOptions._OptionRetention.ValueType # 0
1532
+ RETENTION_RUNTIME: FieldOptions._OptionRetention.ValueType # 1
1533
+ RETENTION_SOURCE: FieldOptions._OptionRetention.ValueType # 2
1534
+
1535
+ class OptionRetention(_OptionRetention, metaclass=_OptionRetentionEnumTypeWrapper):
1536
+ """If set to RETENTION_SOURCE, the option will be omitted from the binary."""
1537
+
1538
+ RETENTION_UNKNOWN: FieldOptions.OptionRetention.ValueType # 0
1539
+ RETENTION_RUNTIME: FieldOptions.OptionRetention.ValueType # 1
1540
+ RETENTION_SOURCE: FieldOptions.OptionRetention.ValueType # 2
1541
+
1542
+ class _OptionTargetType:
1543
+ ValueType = typing.NewType("ValueType", builtins.int)
1544
+ V: typing_extensions.TypeAlias = ValueType
1545
+
1546
+ class _OptionTargetTypeEnumTypeWrapper(
1547
+ google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[FieldOptions._OptionTargetType.ValueType], builtins.type
1548
+ ):
1549
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
1550
+ TARGET_TYPE_UNKNOWN: FieldOptions._OptionTargetType.ValueType # 0
1551
+ TARGET_TYPE_FILE: FieldOptions._OptionTargetType.ValueType # 1
1552
+ TARGET_TYPE_EXTENSION_RANGE: FieldOptions._OptionTargetType.ValueType # 2
1553
+ TARGET_TYPE_MESSAGE: FieldOptions._OptionTargetType.ValueType # 3
1554
+ TARGET_TYPE_FIELD: FieldOptions._OptionTargetType.ValueType # 4
1555
+ TARGET_TYPE_ONEOF: FieldOptions._OptionTargetType.ValueType # 5
1556
+ TARGET_TYPE_ENUM: FieldOptions._OptionTargetType.ValueType # 6
1557
+ TARGET_TYPE_ENUM_ENTRY: FieldOptions._OptionTargetType.ValueType # 7
1558
+ TARGET_TYPE_SERVICE: FieldOptions._OptionTargetType.ValueType # 8
1559
+ TARGET_TYPE_METHOD: FieldOptions._OptionTargetType.ValueType # 9
1560
+
1561
+ class OptionTargetType(_OptionTargetType, metaclass=_OptionTargetTypeEnumTypeWrapper):
1562
+ """This indicates the types of entities that the field may apply to when used
1563
+ as an option. If it is unset, then the field may be freely used as an
1564
+ option on any kind of entity.
1565
+ """
1566
+
1567
+ TARGET_TYPE_UNKNOWN: FieldOptions.OptionTargetType.ValueType # 0
1568
+ TARGET_TYPE_FILE: FieldOptions.OptionTargetType.ValueType # 1
1569
+ TARGET_TYPE_EXTENSION_RANGE: FieldOptions.OptionTargetType.ValueType # 2
1570
+ TARGET_TYPE_MESSAGE: FieldOptions.OptionTargetType.ValueType # 3
1571
+ TARGET_TYPE_FIELD: FieldOptions.OptionTargetType.ValueType # 4
1572
+ TARGET_TYPE_ONEOF: FieldOptions.OptionTargetType.ValueType # 5
1573
+ TARGET_TYPE_ENUM: FieldOptions.OptionTargetType.ValueType # 6
1574
+ TARGET_TYPE_ENUM_ENTRY: FieldOptions.OptionTargetType.ValueType # 7
1575
+ TARGET_TYPE_SERVICE: FieldOptions.OptionTargetType.ValueType # 8
1576
+ TARGET_TYPE_METHOD: FieldOptions.OptionTargetType.ValueType # 9
1577
+
1578
+ @typing.final
1579
+ class EditionDefault(google.protobuf.message.Message):
1580
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
1581
+
1582
+ EDITION_FIELD_NUMBER: builtins.int
1583
+ VALUE_FIELD_NUMBER: builtins.int
1584
+ edition: global___Edition.ValueType
1585
+ value: builtins.str
1586
+ """Textproto value."""
1587
+ def __init__(self, *, edition: global___Edition.ValueType | None = ..., value: builtins.str | None = ...) -> None: ...
1588
+ def HasField(self, field_name: typing.Literal["edition", b"edition", "value", b"value"]) -> builtins.bool: ...
1589
+ def ClearField(self, field_name: typing.Literal["edition", b"edition", "value", b"value"]) -> None: ...
1590
+
1591
+ @typing.final
1592
+ class FeatureSupport(google.protobuf.message.Message):
1593
+ """Information about the support window of a feature."""
1594
+
1595
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
1596
+
1597
+ EDITION_INTRODUCED_FIELD_NUMBER: builtins.int
1598
+ EDITION_DEPRECATED_FIELD_NUMBER: builtins.int
1599
+ DEPRECATION_WARNING_FIELD_NUMBER: builtins.int
1600
+ EDITION_REMOVED_FIELD_NUMBER: builtins.int
1601
+ edition_introduced: global___Edition.ValueType
1602
+ """The edition that this feature was first available in. In editions
1603
+ earlier than this one, the default assigned to EDITION_LEGACY will be
1604
+ used, and proto files will not be able to override it.
1605
+ """
1606
+ edition_deprecated: global___Edition.ValueType
1607
+ """The edition this feature becomes deprecated in. Using this after this
1608
+ edition may trigger warnings.
1609
+ """
1610
+ deprecation_warning: builtins.str
1611
+ """The deprecation warning text if this feature is used after the edition it
1612
+ was marked deprecated in.
1613
+ """
1614
+ edition_removed: global___Edition.ValueType
1615
+ """The edition this feature is no longer available in. In editions after
1616
+ this one, the last default assigned will be used, and proto files will
1617
+ not be able to override it.
1618
+ """
1619
+ def __init__(
1620
+ self,
1621
+ *,
1622
+ edition_introduced: global___Edition.ValueType | None = ...,
1623
+ edition_deprecated: global___Edition.ValueType | None = ...,
1624
+ deprecation_warning: builtins.str | None = ...,
1625
+ edition_removed: global___Edition.ValueType | None = ...,
1626
+ ) -> None: ...
1627
+ def HasField(
1628
+ self,
1629
+ field_name: typing.Literal[
1630
+ "deprecation_warning",
1631
+ b"deprecation_warning",
1632
+ "edition_deprecated",
1633
+ b"edition_deprecated",
1634
+ "edition_introduced",
1635
+ b"edition_introduced",
1636
+ "edition_removed",
1637
+ b"edition_removed",
1638
+ ],
1639
+ ) -> builtins.bool: ...
1640
+ def ClearField(
1641
+ self,
1642
+ field_name: typing.Literal[
1643
+ "deprecation_warning",
1644
+ b"deprecation_warning",
1645
+ "edition_deprecated",
1646
+ b"edition_deprecated",
1647
+ "edition_introduced",
1648
+ b"edition_introduced",
1649
+ "edition_removed",
1650
+ b"edition_removed",
1651
+ ],
1652
+ ) -> None: ...
1653
+
1654
+ CTYPE_FIELD_NUMBER: builtins.int
1655
+ PACKED_FIELD_NUMBER: builtins.int
1656
+ JSTYPE_FIELD_NUMBER: builtins.int
1657
+ LAZY_FIELD_NUMBER: builtins.int
1658
+ UNVERIFIED_LAZY_FIELD_NUMBER: builtins.int
1659
+ DEPRECATED_FIELD_NUMBER: builtins.int
1660
+ WEAK_FIELD_NUMBER: builtins.int
1661
+ DEBUG_REDACT_FIELD_NUMBER: builtins.int
1662
+ RETENTION_FIELD_NUMBER: builtins.int
1663
+ TARGETS_FIELD_NUMBER: builtins.int
1664
+ EDITION_DEFAULTS_FIELD_NUMBER: builtins.int
1665
+ FEATURES_FIELD_NUMBER: builtins.int
1666
+ FEATURE_SUPPORT_FIELD_NUMBER: builtins.int
1667
+ UNINTERPRETED_OPTION_FIELD_NUMBER: builtins.int
1668
+ ctype: global___FieldOptions.CType.ValueType
1669
+ """NOTE: ctype is deprecated. Use `features.(pb.cpp).string_type` instead.
1670
+ The ctype option instructs the C++ code generator to use a different
1671
+ representation of the field than it normally would. See the specific
1672
+ options below. This option is only implemented to support use of
1673
+ [ctype=CORD] and [ctype=STRING] (the default) on non-repeated fields of
1674
+ type "bytes" in the open source release.
1675
+ TODO: make ctype actually deprecated.
1676
+ """
1677
+ packed: builtins.bool
1678
+ """The packed option can be enabled for repeated primitive fields to enable
1679
+ a more efficient representation on the wire. Rather than repeatedly
1680
+ writing the tag and type for each element, the entire array is encoded as
1681
+ a single length-delimited blob. In proto3, only explicit setting it to
1682
+ false will avoid using packed encoding. This option is prohibited in
1683
+ Editions, but the `repeated_field_encoding` feature can be used to control
1684
+ the behavior.
1685
+ """
1686
+ jstype: global___FieldOptions.JSType.ValueType
1687
+ """The jstype option determines the JavaScript type used for values of the
1688
+ field. The option is permitted only for 64 bit integral and fixed types
1689
+ (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING
1690
+ is represented as JavaScript string, which avoids loss of precision that
1691
+ can happen when a large value is converted to a floating point JavaScript.
1692
+ Specifying JS_NUMBER for the jstype causes the generated JavaScript code to
1693
+ use the JavaScript "number" type. The behavior of the default option
1694
+ JS_NORMAL is implementation dependent.
1695
+
1696
+ This option is an enum to permit additional types to be added, e.g.
1697
+ goog.math.Integer.
1698
+ """
1699
+ lazy: builtins.bool
1700
+ """Should this field be parsed lazily? Lazy applies only to message-type
1701
+ fields. It means that when the outer message is initially parsed, the
1702
+ inner message's contents will not be parsed but instead stored in encoded
1703
+ form. The inner message will actually be parsed when it is first accessed.
1704
+
1705
+ This is only a hint. Implementations are free to choose whether to use
1706
+ eager or lazy parsing regardless of the value of this option. However,
1707
+ setting this option true suggests that the protocol author believes that
1708
+ using lazy parsing on this field is worth the additional bookkeeping
1709
+ overhead typically needed to implement it.
1710
+
1711
+ This option does not affect the public interface of any generated code;
1712
+ all method signatures remain the same. Furthermore, thread-safety of the
1713
+ interface is not affected by this option; const methods remain safe to
1714
+ call from multiple threads concurrently, while non-const methods continue
1715
+ to require exclusive access.
1716
+
1717
+ Note that lazy message fields are still eagerly verified to check
1718
+ ill-formed wireformat or missing required fields. Calling IsInitialized()
1719
+ on the outer message would fail if the inner message has missing required
1720
+ fields. Failed verification would result in parsing failure (except when
1721
+ uninitialized messages are acceptable).
1722
+ """
1723
+ unverified_lazy: builtins.bool
1724
+ """unverified_lazy does no correctness checks on the byte stream. This should
1725
+ only be used where lazy with verification is prohibitive for performance
1726
+ reasons.
1727
+ """
1728
+ deprecated: builtins.bool
1729
+ """Is this field deprecated?
1730
+ Depending on the target platform, this can emit Deprecated annotations
1731
+ for accessors, or it will be completely ignored; in the very least, this
1732
+ is a formalization for deprecating fields.
1733
+ """
1734
+ weak: builtins.bool
1735
+ """For Google-internal migration only. Do not use."""
1736
+ debug_redact: builtins.bool
1737
+ """Indicate that the field value should not be printed out when using debug
1738
+ formats, e.g. when the field contains sensitive credentials.
1739
+ """
1740
+ retention: global___FieldOptions.OptionRetention.ValueType
1741
+ @property
1742
+ def targets(
1743
+ self,
1744
+ ) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[global___FieldOptions.OptionTargetType.ValueType]: ...
1745
+ @property
1746
+ def edition_defaults(
1747
+ self,
1748
+ ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___FieldOptions.EditionDefault]: ...
1749
+ @property
1750
+ def features(self) -> global___FeatureSet:
1751
+ """Any features defined in the specific edition.
1752
+ WARNING: This field should only be used by protobuf plugins or special
1753
+ cases like the proto compiler. Other uses are discouraged and
1754
+ developers should rely on the protoreflect APIs for their client language.
1755
+ """
1756
+
1757
+ @property
1758
+ def feature_support(self) -> global___FieldOptions.FeatureSupport: ...
1759
+ @property
1760
+ def uninterpreted_option(
1761
+ self,
1762
+ ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___UninterpretedOption]:
1763
+ """The parser stores options it doesn't recognize here. See above."""
1764
+
1765
+ def __init__(
1766
+ self,
1767
+ *,
1768
+ ctype: global___FieldOptions.CType.ValueType | None = ...,
1769
+ packed: builtins.bool | None = ...,
1770
+ jstype: global___FieldOptions.JSType.ValueType | None = ...,
1771
+ lazy: builtins.bool | None = ...,
1772
+ unverified_lazy: builtins.bool | None = ...,
1773
+ deprecated: builtins.bool | None = ...,
1774
+ weak: builtins.bool | None = ...,
1775
+ debug_redact: builtins.bool | None = ...,
1776
+ retention: global___FieldOptions.OptionRetention.ValueType | None = ...,
1777
+ targets: collections.abc.Iterable[global___FieldOptions.OptionTargetType.ValueType] | None = ...,
1778
+ edition_defaults: collections.abc.Iterable[global___FieldOptions.EditionDefault] | None = ...,
1779
+ features: global___FeatureSet | None = ...,
1780
+ feature_support: global___FieldOptions.FeatureSupport | None = ...,
1781
+ uninterpreted_option: collections.abc.Iterable[global___UninterpretedOption] | None = ...,
1782
+ ) -> None: ...
1783
+ def HasField(
1784
+ self,
1785
+ field_name: typing.Literal[
1786
+ "ctype",
1787
+ b"ctype",
1788
+ "debug_redact",
1789
+ b"debug_redact",
1790
+ "deprecated",
1791
+ b"deprecated",
1792
+ "feature_support",
1793
+ b"feature_support",
1794
+ "features",
1795
+ b"features",
1796
+ "jstype",
1797
+ b"jstype",
1798
+ "lazy",
1799
+ b"lazy",
1800
+ "packed",
1801
+ b"packed",
1802
+ "retention",
1803
+ b"retention",
1804
+ "unverified_lazy",
1805
+ b"unverified_lazy",
1806
+ "weak",
1807
+ b"weak",
1808
+ ],
1809
+ ) -> builtins.bool: ...
1810
+ def ClearField(
1811
+ self,
1812
+ field_name: typing.Literal[
1813
+ "ctype",
1814
+ b"ctype",
1815
+ "debug_redact",
1816
+ b"debug_redact",
1817
+ "deprecated",
1818
+ b"deprecated",
1819
+ "edition_defaults",
1820
+ b"edition_defaults",
1821
+ "feature_support",
1822
+ b"feature_support",
1823
+ "features",
1824
+ b"features",
1825
+ "jstype",
1826
+ b"jstype",
1827
+ "lazy",
1828
+ b"lazy",
1829
+ "packed",
1830
+ b"packed",
1831
+ "retention",
1832
+ b"retention",
1833
+ "targets",
1834
+ b"targets",
1835
+ "uninterpreted_option",
1836
+ b"uninterpreted_option",
1837
+ "unverified_lazy",
1838
+ b"unverified_lazy",
1839
+ "weak",
1840
+ b"weak",
1841
+ ],
1842
+ ) -> None: ...
1843
+
1844
+ global___FieldOptions = FieldOptions
1845
+
1846
+ @typing.final
1847
+ class OneofOptions(google.protobuf.message.Message):
1848
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
1849
+
1850
+ FEATURES_FIELD_NUMBER: builtins.int
1851
+ UNINTERPRETED_OPTION_FIELD_NUMBER: builtins.int
1852
+ @property
1853
+ def features(self) -> global___FeatureSet:
1854
+ """Any features defined in the specific edition.
1855
+ WARNING: This field should only be used by protobuf plugins or special
1856
+ cases like the proto compiler. Other uses are discouraged and
1857
+ developers should rely on the protoreflect APIs for their client language.
1858
+ """
1859
+
1860
+ @property
1861
+ def uninterpreted_option(
1862
+ self,
1863
+ ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___UninterpretedOption]:
1864
+ """The parser stores options it doesn't recognize here. See above."""
1865
+
1866
+ def __init__(
1867
+ self,
1868
+ *,
1869
+ features: global___FeatureSet | None = ...,
1870
+ uninterpreted_option: collections.abc.Iterable[global___UninterpretedOption] | None = ...,
1871
+ ) -> None: ...
1872
+ def HasField(self, field_name: typing.Literal["features", b"features"]) -> builtins.bool: ...
1873
+ def ClearField(
1874
+ self, field_name: typing.Literal["features", b"features", "uninterpreted_option", b"uninterpreted_option"]
1875
+ ) -> None: ...
1876
+
1877
+ global___OneofOptions = OneofOptions
1878
+
1879
+ @typing.final
1880
+ class EnumOptions(google.protobuf.message.Message):
1881
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
1882
+
1883
+ ALLOW_ALIAS_FIELD_NUMBER: builtins.int
1884
+ DEPRECATED_FIELD_NUMBER: builtins.int
1885
+ DEPRECATED_LEGACY_JSON_FIELD_CONFLICTS_FIELD_NUMBER: builtins.int
1886
+ FEATURES_FIELD_NUMBER: builtins.int
1887
+ UNINTERPRETED_OPTION_FIELD_NUMBER: builtins.int
1888
+ allow_alias: builtins.bool
1889
+ """Set this option to true to allow mapping different tag names to the same
1890
+ value.
1891
+ """
1892
+ deprecated: builtins.bool
1893
+ """Is this enum deprecated?
1894
+ Depending on the target platform, this can emit Deprecated annotations
1895
+ for the enum, or it will be completely ignored; in the very least, this
1896
+ is a formalization for deprecating enums.
1897
+ """
1898
+ deprecated_legacy_json_field_conflicts: builtins.bool
1899
+ """Enable the legacy handling of JSON field name conflicts. This lowercases
1900
+ and strips underscored from the fields before comparison in proto3 only.
1901
+ The new behavior takes `json_name` into account and applies to proto2 as
1902
+ well.
1903
+ TODO Remove this legacy behavior once downstream teams have
1904
+ had time to migrate.
1905
+ """
1906
+ @property
1907
+ def features(self) -> global___FeatureSet:
1908
+ """Any features defined in the specific edition.
1909
+ WARNING: This field should only be used by protobuf plugins or special
1910
+ cases like the proto compiler. Other uses are discouraged and
1911
+ developers should rely on the protoreflect APIs for their client language.
1912
+ """
1913
+
1914
+ @property
1915
+ def uninterpreted_option(
1916
+ self,
1917
+ ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___UninterpretedOption]:
1918
+ """The parser stores options it doesn't recognize here. See above."""
1919
+
1920
+ def __init__(
1921
+ self,
1922
+ *,
1923
+ allow_alias: builtins.bool | None = ...,
1924
+ deprecated: builtins.bool | None = ...,
1925
+ deprecated_legacy_json_field_conflicts: builtins.bool | None = ...,
1926
+ features: global___FeatureSet | None = ...,
1927
+ uninterpreted_option: collections.abc.Iterable[global___UninterpretedOption] | None = ...,
1928
+ ) -> None: ...
1929
+ def HasField(
1930
+ self,
1931
+ field_name: typing.Literal[
1932
+ "allow_alias",
1933
+ b"allow_alias",
1934
+ "deprecated",
1935
+ b"deprecated",
1936
+ "deprecated_legacy_json_field_conflicts",
1937
+ b"deprecated_legacy_json_field_conflicts",
1938
+ "features",
1939
+ b"features",
1940
+ ],
1941
+ ) -> builtins.bool: ...
1942
+ def ClearField(
1943
+ self,
1944
+ field_name: typing.Literal[
1945
+ "allow_alias",
1946
+ b"allow_alias",
1947
+ "deprecated",
1948
+ b"deprecated",
1949
+ "deprecated_legacy_json_field_conflicts",
1950
+ b"deprecated_legacy_json_field_conflicts",
1951
+ "features",
1952
+ b"features",
1953
+ "uninterpreted_option",
1954
+ b"uninterpreted_option",
1955
+ ],
1956
+ ) -> None: ...
1957
+
1958
+ global___EnumOptions = EnumOptions
1959
+
1960
+ @typing.final
1961
+ class EnumValueOptions(google.protobuf.message.Message):
1962
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
1963
+
1964
+ DEPRECATED_FIELD_NUMBER: builtins.int
1965
+ FEATURES_FIELD_NUMBER: builtins.int
1966
+ DEBUG_REDACT_FIELD_NUMBER: builtins.int
1967
+ FEATURE_SUPPORT_FIELD_NUMBER: builtins.int
1968
+ UNINTERPRETED_OPTION_FIELD_NUMBER: builtins.int
1969
+ deprecated: builtins.bool
1970
+ """Is this enum value deprecated?
1971
+ Depending on the target platform, this can emit Deprecated annotations
1972
+ for the enum value, or it will be completely ignored; in the very least,
1973
+ this is a formalization for deprecating enum values.
1974
+ """
1975
+ debug_redact: builtins.bool
1976
+ """Indicate that fields annotated with this enum value should not be printed
1977
+ out when using debug formats, e.g. when the field contains sensitive
1978
+ credentials.
1979
+ """
1980
+ @property
1981
+ def features(self) -> global___FeatureSet:
1982
+ """Any features defined in the specific edition.
1983
+ WARNING: This field should only be used by protobuf plugins or special
1984
+ cases like the proto compiler. Other uses are discouraged and
1985
+ developers should rely on the protoreflect APIs for their client language.
1986
+ """
1987
+
1988
+ @property
1989
+ def feature_support(self) -> global___FieldOptions.FeatureSupport:
1990
+ """Information about the support window of a feature value."""
1991
+
1992
+ @property
1993
+ def uninterpreted_option(
1994
+ self,
1995
+ ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___UninterpretedOption]:
1996
+ """The parser stores options it doesn't recognize here. See above."""
1997
+
1998
+ def __init__(
1999
+ self,
2000
+ *,
2001
+ deprecated: builtins.bool | None = ...,
2002
+ features: global___FeatureSet | None = ...,
2003
+ debug_redact: builtins.bool | None = ...,
2004
+ feature_support: global___FieldOptions.FeatureSupport | None = ...,
2005
+ uninterpreted_option: collections.abc.Iterable[global___UninterpretedOption] | None = ...,
2006
+ ) -> None: ...
2007
+ def HasField(
2008
+ self,
2009
+ field_name: typing.Literal[
2010
+ "debug_redact",
2011
+ b"debug_redact",
2012
+ "deprecated",
2013
+ b"deprecated",
2014
+ "feature_support",
2015
+ b"feature_support",
2016
+ "features",
2017
+ b"features",
2018
+ ],
2019
+ ) -> builtins.bool: ...
2020
+ def ClearField(
2021
+ self,
2022
+ field_name: typing.Literal[
2023
+ "debug_redact",
2024
+ b"debug_redact",
2025
+ "deprecated",
2026
+ b"deprecated",
2027
+ "feature_support",
2028
+ b"feature_support",
2029
+ "features",
2030
+ b"features",
2031
+ "uninterpreted_option",
2032
+ b"uninterpreted_option",
2033
+ ],
2034
+ ) -> None: ...
2035
+
2036
+ global___EnumValueOptions = EnumValueOptions
2037
+
2038
+ @typing.final
2039
+ class ServiceOptions(google.protobuf.message.Message):
2040
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
2041
+
2042
+ FEATURES_FIELD_NUMBER: builtins.int
2043
+ DEPRECATED_FIELD_NUMBER: builtins.int
2044
+ UNINTERPRETED_OPTION_FIELD_NUMBER: builtins.int
2045
+ deprecated: builtins.bool
2046
+ """Note: Field numbers 1 through 32 are reserved for Google's internal RPC
2047
+ framework. We apologize for hoarding these numbers to ourselves, but
2048
+ we were already using them long before we decided to release Protocol
2049
+ Buffers.
2050
+
2051
+ Is this service deprecated?
2052
+ Depending on the target platform, this can emit Deprecated annotations
2053
+ for the service, or it will be completely ignored; in the very least,
2054
+ this is a formalization for deprecating services.
2055
+ """
2056
+ @property
2057
+ def features(self) -> global___FeatureSet:
2058
+ """Any features defined in the specific edition.
2059
+ WARNING: This field should only be used by protobuf plugins or special
2060
+ cases like the proto compiler. Other uses are discouraged and
2061
+ developers should rely on the protoreflect APIs for their client language.
2062
+ """
2063
+
2064
+ @property
2065
+ def uninterpreted_option(
2066
+ self,
2067
+ ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___UninterpretedOption]:
2068
+ """The parser stores options it doesn't recognize here. See above."""
2069
+
2070
+ def __init__(
2071
+ self,
2072
+ *,
2073
+ features: global___FeatureSet | None = ...,
2074
+ deprecated: builtins.bool | None = ...,
2075
+ uninterpreted_option: collections.abc.Iterable[global___UninterpretedOption] | None = ...,
2076
+ ) -> None: ...
2077
+ def HasField(self, field_name: typing.Literal["deprecated", b"deprecated", "features", b"features"]) -> builtins.bool: ...
2078
+ def ClearField(
2079
+ self,
2080
+ field_name: typing.Literal[
2081
+ "deprecated", b"deprecated", "features", b"features", "uninterpreted_option", b"uninterpreted_option"
2082
+ ],
2083
+ ) -> None: ...
2084
+
2085
+ global___ServiceOptions = ServiceOptions
2086
+
2087
+ @typing.final
2088
+ class MethodOptions(google.protobuf.message.Message):
2089
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
2090
+
2091
+ class _IdempotencyLevel:
2092
+ ValueType = typing.NewType("ValueType", builtins.int)
2093
+ V: typing_extensions.TypeAlias = ValueType
2094
+
2095
+ class _IdempotencyLevelEnumTypeWrapper(
2096
+ google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[MethodOptions._IdempotencyLevel.ValueType], builtins.type
2097
+ ):
2098
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
2099
+ IDEMPOTENCY_UNKNOWN: MethodOptions._IdempotencyLevel.ValueType # 0
2100
+ NO_SIDE_EFFECTS: MethodOptions._IdempotencyLevel.ValueType # 1
2101
+ """implies idempotent"""
2102
+ IDEMPOTENT: MethodOptions._IdempotencyLevel.ValueType # 2
2103
+ """idempotent, but may have side effects"""
2104
+
2105
+ class IdempotencyLevel(_IdempotencyLevel, metaclass=_IdempotencyLevelEnumTypeWrapper):
2106
+ """Is this method side-effect-free (or safe in HTTP parlance), or idempotent,
2107
+ or neither? HTTP based RPC implementation may choose GET verb for safe
2108
+ methods, and PUT verb for idempotent methods instead of the default POST.
2109
+ """
2110
+
2111
+ IDEMPOTENCY_UNKNOWN: MethodOptions.IdempotencyLevel.ValueType # 0
2112
+ NO_SIDE_EFFECTS: MethodOptions.IdempotencyLevel.ValueType # 1
2113
+ """implies idempotent"""
2114
+ IDEMPOTENT: MethodOptions.IdempotencyLevel.ValueType # 2
2115
+ """idempotent, but may have side effects"""
2116
+
2117
+ DEPRECATED_FIELD_NUMBER: builtins.int
2118
+ IDEMPOTENCY_LEVEL_FIELD_NUMBER: builtins.int
2119
+ FEATURES_FIELD_NUMBER: builtins.int
2120
+ UNINTERPRETED_OPTION_FIELD_NUMBER: builtins.int
2121
+ deprecated: builtins.bool
2122
+ """Note: Field numbers 1 through 32 are reserved for Google's internal RPC
2123
+ framework. We apologize for hoarding these numbers to ourselves, but
2124
+ we were already using them long before we decided to release Protocol
2125
+ Buffers.
2126
+
2127
+ Is this method deprecated?
2128
+ Depending on the target platform, this can emit Deprecated annotations
2129
+ for the method, or it will be completely ignored; in the very least,
2130
+ this is a formalization for deprecating methods.
2131
+ """
2132
+ idempotency_level: global___MethodOptions.IdempotencyLevel.ValueType
2133
+ @property
2134
+ def features(self) -> global___FeatureSet:
2135
+ """Any features defined in the specific edition.
2136
+ WARNING: This field should only be used by protobuf plugins or special
2137
+ cases like the proto compiler. Other uses are discouraged and
2138
+ developers should rely on the protoreflect APIs for their client language.
2139
+ """
2140
+
2141
+ @property
2142
+ def uninterpreted_option(
2143
+ self,
2144
+ ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___UninterpretedOption]:
2145
+ """The parser stores options it doesn't recognize here. See above."""
2146
+
2147
+ def __init__(
2148
+ self,
2149
+ *,
2150
+ deprecated: builtins.bool | None = ...,
2151
+ idempotency_level: global___MethodOptions.IdempotencyLevel.ValueType | None = ...,
2152
+ features: global___FeatureSet | None = ...,
2153
+ uninterpreted_option: collections.abc.Iterable[global___UninterpretedOption] | None = ...,
2154
+ ) -> None: ...
2155
+ def HasField(
2156
+ self,
2157
+ field_name: typing.Literal[
2158
+ "deprecated", b"deprecated", "features", b"features", "idempotency_level", b"idempotency_level"
2159
+ ],
2160
+ ) -> builtins.bool: ...
2161
+ def ClearField(
2162
+ self,
2163
+ field_name: typing.Literal[
2164
+ "deprecated",
2165
+ b"deprecated",
2166
+ "features",
2167
+ b"features",
2168
+ "idempotency_level",
2169
+ b"idempotency_level",
2170
+ "uninterpreted_option",
2171
+ b"uninterpreted_option",
2172
+ ],
2173
+ ) -> None: ...
2174
+
2175
+ global___MethodOptions = MethodOptions
2176
+
2177
+ @typing.final
2178
+ class UninterpretedOption(google.protobuf.message.Message):
2179
+ """A message representing a option the parser does not recognize. This only
2180
+ appears in options protos created by the compiler::Parser class.
2181
+ DescriptorPool resolves these when building Descriptor objects. Therefore,
2182
+ options protos in descriptor objects (e.g. returned by Descriptor::options(),
2183
+ or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
2184
+ in them.
2185
+ """
2186
+
2187
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
2188
+
2189
+ @typing.final
2190
+ class NamePart(google.protobuf.message.Message):
2191
+ """The name of the uninterpreted option. Each string represents a segment in
2192
+ a dot-separated name. is_extension is true iff a segment represents an
2193
+ extension (denoted with parentheses in options specs in .proto files).
2194
+ E.g.,{ ["foo", false], ["bar.baz", true], ["moo", false] } represents
2195
+ "foo.(bar.baz).moo".
2196
+ """
2197
+
2198
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
2199
+
2200
+ NAME_PART_FIELD_NUMBER: builtins.int
2201
+ IS_EXTENSION_FIELD_NUMBER: builtins.int
2202
+ name_part: builtins.str
2203
+ is_extension: builtins.bool
2204
+ def __init__(self, *, name_part: builtins.str | None = ..., is_extension: builtins.bool | None = ...) -> None: ...
2205
+ def HasField(
2206
+ self, field_name: typing.Literal["is_extension", b"is_extension", "name_part", b"name_part"]
2207
+ ) -> builtins.bool: ...
2208
+ def ClearField(self, field_name: typing.Literal["is_extension", b"is_extension", "name_part", b"name_part"]) -> None: ...
2209
+
2210
+ NAME_FIELD_NUMBER: builtins.int
2211
+ IDENTIFIER_VALUE_FIELD_NUMBER: builtins.int
2212
+ POSITIVE_INT_VALUE_FIELD_NUMBER: builtins.int
2213
+ NEGATIVE_INT_VALUE_FIELD_NUMBER: builtins.int
2214
+ DOUBLE_VALUE_FIELD_NUMBER: builtins.int
2215
+ STRING_VALUE_FIELD_NUMBER: builtins.int
2216
+ AGGREGATE_VALUE_FIELD_NUMBER: builtins.int
2217
+ identifier_value: builtins.str
2218
+ """The value of the uninterpreted option, in whatever type the tokenizer
2219
+ identified it as during parsing. Exactly one of these should be set.
2220
+ """
2221
+ positive_int_value: builtins.int
2222
+ negative_int_value: builtins.int
2223
+ double_value: builtins.float
2224
+ string_value: builtins.bytes
2225
+ aggregate_value: builtins.str
2226
+ @property
2227
+ def name(
2228
+ self,
2229
+ ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___UninterpretedOption.NamePart]: ...
2230
+ def __init__(
2231
+ self,
2232
+ *,
2233
+ name: collections.abc.Iterable[global___UninterpretedOption.NamePart] | None = ...,
2234
+ identifier_value: builtins.str | None = ...,
2235
+ positive_int_value: builtins.int | None = ...,
2236
+ negative_int_value: builtins.int | None = ...,
2237
+ double_value: builtins.float | None = ...,
2238
+ string_value: builtins.bytes | None = ...,
2239
+ aggregate_value: builtins.str | None = ...,
2240
+ ) -> None: ...
2241
+ def HasField(
2242
+ self,
2243
+ field_name: typing.Literal[
2244
+ "aggregate_value",
2245
+ b"aggregate_value",
2246
+ "double_value",
2247
+ b"double_value",
2248
+ "identifier_value",
2249
+ b"identifier_value",
2250
+ "negative_int_value",
2251
+ b"negative_int_value",
2252
+ "positive_int_value",
2253
+ b"positive_int_value",
2254
+ "string_value",
2255
+ b"string_value",
2256
+ ],
2257
+ ) -> builtins.bool: ...
2258
+ def ClearField(
2259
+ self,
2260
+ field_name: typing.Literal[
2261
+ "aggregate_value",
2262
+ b"aggregate_value",
2263
+ "double_value",
2264
+ b"double_value",
2265
+ "identifier_value",
2266
+ b"identifier_value",
2267
+ "name",
2268
+ b"name",
2269
+ "negative_int_value",
2270
+ b"negative_int_value",
2271
+ "positive_int_value",
2272
+ b"positive_int_value",
2273
+ "string_value",
2274
+ b"string_value",
2275
+ ],
2276
+ ) -> None: ...
2277
+
2278
+ global___UninterpretedOption = UninterpretedOption
2279
+
2280
+ @typing.final
2281
+ class FeatureSet(google.protobuf.message.Message):
2282
+ """===================================================================
2283
+ Features
2284
+
2285
+ TODO Enums in C++ gencode (and potentially other languages) are
2286
+ not well scoped. This means that each of the feature enums below can clash
2287
+ with each other. The short names we've chosen maximize call-site
2288
+ readability, but leave us very open to this scenario. A future feature will
2289
+ be designed and implemented to handle this, hopefully before we ever hit a
2290
+ conflict here.
2291
+ """
2292
+
2293
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
2294
+
2295
+ class _FieldPresence:
2296
+ ValueType = typing.NewType("ValueType", builtins.int)
2297
+ V: typing_extensions.TypeAlias = ValueType
2298
+
2299
+ class _FieldPresenceEnumTypeWrapper(
2300
+ google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[FeatureSet._FieldPresence.ValueType], builtins.type
2301
+ ):
2302
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
2303
+ FIELD_PRESENCE_UNKNOWN: FeatureSet._FieldPresence.ValueType # 0
2304
+ EXPLICIT: FeatureSet._FieldPresence.ValueType # 1
2305
+ IMPLICIT: FeatureSet._FieldPresence.ValueType # 2
2306
+ LEGACY_REQUIRED: FeatureSet._FieldPresence.ValueType # 3
2307
+
2308
+ class FieldPresence(_FieldPresence, metaclass=_FieldPresenceEnumTypeWrapper): ...
2309
+ FIELD_PRESENCE_UNKNOWN: FeatureSet.FieldPresence.ValueType # 0
2310
+ EXPLICIT: FeatureSet.FieldPresence.ValueType # 1
2311
+ IMPLICIT: FeatureSet.FieldPresence.ValueType # 2
2312
+ LEGACY_REQUIRED: FeatureSet.FieldPresence.ValueType # 3
2313
+
2314
+ class _EnumType:
2315
+ ValueType = typing.NewType("ValueType", builtins.int)
2316
+ V: typing_extensions.TypeAlias = ValueType
2317
+
2318
+ class _EnumTypeEnumTypeWrapper(
2319
+ google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[FeatureSet._EnumType.ValueType], builtins.type
2320
+ ):
2321
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
2322
+ ENUM_TYPE_UNKNOWN: FeatureSet._EnumType.ValueType # 0
2323
+ OPEN: FeatureSet._EnumType.ValueType # 1
2324
+ CLOSED: FeatureSet._EnumType.ValueType # 2
2325
+
2326
+ class EnumType(_EnumType, metaclass=_EnumTypeEnumTypeWrapper): ...
2327
+ ENUM_TYPE_UNKNOWN: FeatureSet.EnumType.ValueType # 0
2328
+ OPEN: FeatureSet.EnumType.ValueType # 1
2329
+ CLOSED: FeatureSet.EnumType.ValueType # 2
2330
+
2331
+ class _RepeatedFieldEncoding:
2332
+ ValueType = typing.NewType("ValueType", builtins.int)
2333
+ V: typing_extensions.TypeAlias = ValueType
2334
+
2335
+ class _RepeatedFieldEncodingEnumTypeWrapper(
2336
+ google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[FeatureSet._RepeatedFieldEncoding.ValueType], builtins.type
2337
+ ):
2338
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
2339
+ REPEATED_FIELD_ENCODING_UNKNOWN: FeatureSet._RepeatedFieldEncoding.ValueType # 0
2340
+ PACKED: FeatureSet._RepeatedFieldEncoding.ValueType # 1
2341
+ EXPANDED: FeatureSet._RepeatedFieldEncoding.ValueType # 2
2342
+
2343
+ class RepeatedFieldEncoding(_RepeatedFieldEncoding, metaclass=_RepeatedFieldEncodingEnumTypeWrapper): ...
2344
+ REPEATED_FIELD_ENCODING_UNKNOWN: FeatureSet.RepeatedFieldEncoding.ValueType # 0
2345
+ PACKED: FeatureSet.RepeatedFieldEncoding.ValueType # 1
2346
+ EXPANDED: FeatureSet.RepeatedFieldEncoding.ValueType # 2
2347
+
2348
+ class _Utf8Validation:
2349
+ ValueType = typing.NewType("ValueType", builtins.int)
2350
+ V: typing_extensions.TypeAlias = ValueType
2351
+
2352
+ class _Utf8ValidationEnumTypeWrapper(
2353
+ google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[FeatureSet._Utf8Validation.ValueType], builtins.type
2354
+ ):
2355
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
2356
+ UTF8_VALIDATION_UNKNOWN: FeatureSet._Utf8Validation.ValueType # 0
2357
+ VERIFY: FeatureSet._Utf8Validation.ValueType # 2
2358
+ NONE: FeatureSet._Utf8Validation.ValueType # 3
2359
+
2360
+ class Utf8Validation(_Utf8Validation, metaclass=_Utf8ValidationEnumTypeWrapper): ...
2361
+ UTF8_VALIDATION_UNKNOWN: FeatureSet.Utf8Validation.ValueType # 0
2362
+ VERIFY: FeatureSet.Utf8Validation.ValueType # 2
2363
+ NONE: FeatureSet.Utf8Validation.ValueType # 3
2364
+
2365
+ class _MessageEncoding:
2366
+ ValueType = typing.NewType("ValueType", builtins.int)
2367
+ V: typing_extensions.TypeAlias = ValueType
2368
+
2369
+ class _MessageEncodingEnumTypeWrapper(
2370
+ google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[FeatureSet._MessageEncoding.ValueType], builtins.type
2371
+ ):
2372
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
2373
+ MESSAGE_ENCODING_UNKNOWN: FeatureSet._MessageEncoding.ValueType # 0
2374
+ LENGTH_PREFIXED: FeatureSet._MessageEncoding.ValueType # 1
2375
+ DELIMITED: FeatureSet._MessageEncoding.ValueType # 2
2376
+
2377
+ class MessageEncoding(_MessageEncoding, metaclass=_MessageEncodingEnumTypeWrapper): ...
2378
+ MESSAGE_ENCODING_UNKNOWN: FeatureSet.MessageEncoding.ValueType # 0
2379
+ LENGTH_PREFIXED: FeatureSet.MessageEncoding.ValueType # 1
2380
+ DELIMITED: FeatureSet.MessageEncoding.ValueType # 2
2381
+
2382
+ class _JsonFormat:
2383
+ ValueType = typing.NewType("ValueType", builtins.int)
2384
+ V: typing_extensions.TypeAlias = ValueType
2385
+
2386
+ class _JsonFormatEnumTypeWrapper(
2387
+ google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[FeatureSet._JsonFormat.ValueType], builtins.type
2388
+ ):
2389
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
2390
+ JSON_FORMAT_UNKNOWN: FeatureSet._JsonFormat.ValueType # 0
2391
+ ALLOW: FeatureSet._JsonFormat.ValueType # 1
2392
+ LEGACY_BEST_EFFORT: FeatureSet._JsonFormat.ValueType # 2
2393
+
2394
+ class JsonFormat(_JsonFormat, metaclass=_JsonFormatEnumTypeWrapper): ...
2395
+ JSON_FORMAT_UNKNOWN: FeatureSet.JsonFormat.ValueType # 0
2396
+ ALLOW: FeatureSet.JsonFormat.ValueType # 1
2397
+ LEGACY_BEST_EFFORT: FeatureSet.JsonFormat.ValueType # 2
2398
+
2399
+ class _EnforceNamingStyle:
2400
+ ValueType = typing.NewType("ValueType", builtins.int)
2401
+ V: typing_extensions.TypeAlias = ValueType
2402
+
2403
+ class _EnforceNamingStyleEnumTypeWrapper(
2404
+ google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[FeatureSet._EnforceNamingStyle.ValueType], builtins.type
2405
+ ):
2406
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
2407
+ ENFORCE_NAMING_STYLE_UNKNOWN: FeatureSet._EnforceNamingStyle.ValueType # 0
2408
+ STYLE2024: FeatureSet._EnforceNamingStyle.ValueType # 1
2409
+ STYLE_LEGACY: FeatureSet._EnforceNamingStyle.ValueType # 2
2410
+
2411
+ class EnforceNamingStyle(_EnforceNamingStyle, metaclass=_EnforceNamingStyleEnumTypeWrapper): ...
2412
+ ENFORCE_NAMING_STYLE_UNKNOWN: FeatureSet.EnforceNamingStyle.ValueType # 0
2413
+ STYLE2024: FeatureSet.EnforceNamingStyle.ValueType # 1
2414
+ STYLE_LEGACY: FeatureSet.EnforceNamingStyle.ValueType # 2
2415
+
2416
+ FIELD_PRESENCE_FIELD_NUMBER: builtins.int
2417
+ ENUM_TYPE_FIELD_NUMBER: builtins.int
2418
+ REPEATED_FIELD_ENCODING_FIELD_NUMBER: builtins.int
2419
+ UTF8_VALIDATION_FIELD_NUMBER: builtins.int
2420
+ MESSAGE_ENCODING_FIELD_NUMBER: builtins.int
2421
+ JSON_FORMAT_FIELD_NUMBER: builtins.int
2422
+ ENFORCE_NAMING_STYLE_FIELD_NUMBER: builtins.int
2423
+ field_presence: global___FeatureSet.FieldPresence.ValueType
2424
+ enum_type: global___FeatureSet.EnumType.ValueType
2425
+ repeated_field_encoding: global___FeatureSet.RepeatedFieldEncoding.ValueType
2426
+ utf8_validation: global___FeatureSet.Utf8Validation.ValueType
2427
+ message_encoding: global___FeatureSet.MessageEncoding.ValueType
2428
+ json_format: global___FeatureSet.JsonFormat.ValueType
2429
+ enforce_naming_style: global___FeatureSet.EnforceNamingStyle.ValueType
2430
+ def __init__(
2431
+ self,
2432
+ *,
2433
+ field_presence: global___FeatureSet.FieldPresence.ValueType | None = ...,
2434
+ enum_type: global___FeatureSet.EnumType.ValueType | None = ...,
2435
+ repeated_field_encoding: global___FeatureSet.RepeatedFieldEncoding.ValueType | None = ...,
2436
+ utf8_validation: global___FeatureSet.Utf8Validation.ValueType | None = ...,
2437
+ message_encoding: global___FeatureSet.MessageEncoding.ValueType | None = ...,
2438
+ json_format: global___FeatureSet.JsonFormat.ValueType | None = ...,
2439
+ enforce_naming_style: global___FeatureSet.EnforceNamingStyle.ValueType | None = ...,
2440
+ ) -> None: ...
2441
+ def HasField(
2442
+ self,
2443
+ field_name: typing.Literal[
2444
+ "enforce_naming_style",
2445
+ b"enforce_naming_style",
2446
+ "enum_type",
2447
+ b"enum_type",
2448
+ "field_presence",
2449
+ b"field_presence",
2450
+ "json_format",
2451
+ b"json_format",
2452
+ "message_encoding",
2453
+ b"message_encoding",
2454
+ "repeated_field_encoding",
2455
+ b"repeated_field_encoding",
2456
+ "utf8_validation",
2457
+ b"utf8_validation",
2458
+ ],
2459
+ ) -> builtins.bool: ...
2460
+ def ClearField(
2461
+ self,
2462
+ field_name: typing.Literal[
2463
+ "enforce_naming_style",
2464
+ b"enforce_naming_style",
2465
+ "enum_type",
2466
+ b"enum_type",
2467
+ "field_presence",
2468
+ b"field_presence",
2469
+ "json_format",
2470
+ b"json_format",
2471
+ "message_encoding",
2472
+ b"message_encoding",
2473
+ "repeated_field_encoding",
2474
+ b"repeated_field_encoding",
2475
+ "utf8_validation",
2476
+ b"utf8_validation",
2477
+ ],
2478
+ ) -> None: ...
2479
+
2480
+ global___FeatureSet = FeatureSet
2481
+
2482
+ @typing.final
2483
+ class FeatureSetDefaults(google.protobuf.message.Message):
2484
+ """A compiled specification for the defaults of a set of features. These
2485
+ messages are generated from FeatureSet extensions and can be used to seed
2486
+ feature resolution. The resolution with this object becomes a simple search
2487
+ for the closest matching edition, followed by proto merges.
2488
+ """
2489
+
2490
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
2491
+
2492
+ @typing.final
2493
+ class FeatureSetEditionDefault(google.protobuf.message.Message):
2494
+ """A map from every known edition with a unique set of defaults to its
2495
+ defaults. Not all editions may be contained here. For a given edition,
2496
+ the defaults at the closest matching edition ordered at or before it should
2497
+ be used. This field must be in strict ascending order by edition.
2498
+ """
2499
+
2500
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
2501
+
2502
+ EDITION_FIELD_NUMBER: builtins.int
2503
+ OVERRIDABLE_FEATURES_FIELD_NUMBER: builtins.int
2504
+ FIXED_FEATURES_FIELD_NUMBER: builtins.int
2505
+ edition: global___Edition.ValueType
2506
+ @property
2507
+ def overridable_features(self) -> global___FeatureSet:
2508
+ """Defaults of features that can be overridden in this edition."""
2509
+
2510
+ @property
2511
+ def fixed_features(self) -> global___FeatureSet:
2512
+ """Defaults of features that can't be overridden in this edition."""
2513
+
2514
+ def __init__(
2515
+ self,
2516
+ *,
2517
+ edition: global___Edition.ValueType | None = ...,
2518
+ overridable_features: global___FeatureSet | None = ...,
2519
+ fixed_features: global___FeatureSet | None = ...,
2520
+ ) -> None: ...
2521
+ def HasField(
2522
+ self,
2523
+ field_name: typing.Literal[
2524
+ "edition", b"edition", "fixed_features", b"fixed_features", "overridable_features", b"overridable_features"
2525
+ ],
2526
+ ) -> builtins.bool: ...
2527
+ def ClearField(
2528
+ self,
2529
+ field_name: typing.Literal[
2530
+ "edition", b"edition", "fixed_features", b"fixed_features", "overridable_features", b"overridable_features"
2531
+ ],
2532
+ ) -> None: ...
2533
+
2534
+ DEFAULTS_FIELD_NUMBER: builtins.int
2535
+ MINIMUM_EDITION_FIELD_NUMBER: builtins.int
2536
+ MAXIMUM_EDITION_FIELD_NUMBER: builtins.int
2537
+ minimum_edition: global___Edition.ValueType
2538
+ """The minimum supported edition (inclusive) when this was constructed.
2539
+ Editions before this will not have defaults.
2540
+ """
2541
+ maximum_edition: global___Edition.ValueType
2542
+ """The maximum known edition (inclusive) when this was constructed. Editions
2543
+ after this will not have reliable defaults.
2544
+ """
2545
+ @property
2546
+ def defaults(
2547
+ self,
2548
+ ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[
2549
+ global___FeatureSetDefaults.FeatureSetEditionDefault
2550
+ ]: ...
2551
+ def __init__(
2552
+ self,
2553
+ *,
2554
+ defaults: collections.abc.Iterable[global___FeatureSetDefaults.FeatureSetEditionDefault] | None = ...,
2555
+ minimum_edition: global___Edition.ValueType | None = ...,
2556
+ maximum_edition: global___Edition.ValueType | None = ...,
2557
+ ) -> None: ...
2558
+ def HasField(
2559
+ self, field_name: typing.Literal["maximum_edition", b"maximum_edition", "minimum_edition", b"minimum_edition"]
2560
+ ) -> builtins.bool: ...
2561
+ def ClearField(
2562
+ self,
2563
+ field_name: typing.Literal[
2564
+ "defaults", b"defaults", "maximum_edition", b"maximum_edition", "minimum_edition", b"minimum_edition"
2565
+ ],
2566
+ ) -> None: ...
2567
+
2568
+ global___FeatureSetDefaults = FeatureSetDefaults
2569
+
2570
+ @typing.final
2571
+ class SourceCodeInfo(google.protobuf.message.Message):
2572
+ """===================================================================
2573
+ Optional source code info
2574
+
2575
+ Encapsulates information about the original source file from which a
2576
+ FileDescriptorProto was generated.
2577
+ """
2578
+
2579
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
2580
+
2581
+ @typing.final
2582
+ class Location(google.protobuf.message.Message):
2583
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
2584
+
2585
+ PATH_FIELD_NUMBER: builtins.int
2586
+ SPAN_FIELD_NUMBER: builtins.int
2587
+ LEADING_COMMENTS_FIELD_NUMBER: builtins.int
2588
+ TRAILING_COMMENTS_FIELD_NUMBER: builtins.int
2589
+ LEADING_DETACHED_COMMENTS_FIELD_NUMBER: builtins.int
2590
+ leading_comments: builtins.str
2591
+ """If this SourceCodeInfo represents a complete declaration, these are any
2592
+ comments appearing before and after the declaration which appear to be
2593
+ attached to the declaration.
2594
+
2595
+ A series of line comments appearing on consecutive lines, with no other
2596
+ tokens appearing on those lines, will be treated as a single comment.
2597
+
2598
+ leading_detached_comments will keep paragraphs of comments that appear
2599
+ before (but not connected to) the current element. Each paragraph,
2600
+ separated by empty lines, will be one comment element in the repeated
2601
+ field.
2602
+
2603
+ Only the comment content is provided; comment markers (e.g. //) are
2604
+ stripped out. For block comments, leading whitespace and an asterisk
2605
+ will be stripped from the beginning of each line other than the first.
2606
+ Newlines are included in the output.
2607
+
2608
+ Examples:
2609
+
2610
+ optional int32 foo = 1; // Comment attached to foo.
2611
+ // Comment attached to bar.
2612
+ optional int32 bar = 2;
2613
+
2614
+ optional string baz = 3;
2615
+ // Comment attached to baz.
2616
+ // Another line attached to baz.
2617
+
2618
+ // Comment attached to moo.
2619
+ //
2620
+ // Another line attached to moo.
2621
+ optional double moo = 4;
2622
+
2623
+ // Detached comment for corge. This is not leading or trailing comments
2624
+ // to moo or corge because there are blank lines separating it from
2625
+ // both.
2626
+
2627
+ // Detached comment for corge paragraph 2.
2628
+
2629
+ optional string corge = 5;
2630
+ /* Block comment attached
2631
+ * to corge. Leading asterisks
2632
+ * will be removed. */
2633
+ /* Block comment attached to
2634
+ * grault. */
2635
+ optional int32 grault = 6;
2636
+
2637
+ // ignored detached comments.
2638
+ """
2639
+ trailing_comments: builtins.str
2640
+ @property
2641
+ def path(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.int]:
2642
+ """Identifies which part of the FileDescriptorProto was defined at this
2643
+ location.
2644
+
2645
+ Each element is a field number or an index. They form a path from
2646
+ the root FileDescriptorProto to the place where the definition appears.
2647
+ For example, this path:
2648
+ [ 4, 3, 2, 7, 1 ]
2649
+ refers to:
2650
+ file.message_type(3) // 4, 3
2651
+ .field(7) // 2, 7
2652
+ .name() // 1
2653
+ This is because FileDescriptorProto.message_type has field number 4:
2654
+ repeated DescriptorProto message_type = 4;
2655
+ and DescriptorProto.field has field number 2:
2656
+ repeated FieldDescriptorProto field = 2;
2657
+ and FieldDescriptorProto.name has field number 1:
2658
+ optional string name = 1;
2659
+
2660
+ Thus, the above path gives the location of a field name. If we removed
2661
+ the last element:
2662
+ [ 4, 3, 2, 7 ]
2663
+ this path refers to the whole field declaration (from the beginning
2664
+ of the label to the terminating semicolon).
2665
+ """
2666
+
2667
+ @property
2668
+ def span(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.int]:
2669
+ """Always has exactly three or four elements: start line, start column,
2670
+ end line (optional, otherwise assumed same as start line), end column.
2671
+ These are packed into a single field for efficiency. Note that line
2672
+ and column numbers are zero-based -- typically you will want to add
2673
+ 1 to each before displaying to a user.
2674
+ """
2675
+
2676
+ @property
2677
+ def leading_detached_comments(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]: ...
2678
+ def __init__(
2679
+ self,
2680
+ *,
2681
+ path: collections.abc.Iterable[builtins.int] | None = ...,
2682
+ span: collections.abc.Iterable[builtins.int] | None = ...,
2683
+ leading_comments: builtins.str | None = ...,
2684
+ trailing_comments: builtins.str | None = ...,
2685
+ leading_detached_comments: collections.abc.Iterable[builtins.str] | None = ...,
2686
+ ) -> None: ...
2687
+ def HasField(
2688
+ self, field_name: typing.Literal["leading_comments", b"leading_comments", "trailing_comments", b"trailing_comments"]
2689
+ ) -> builtins.bool: ...
2690
+ def ClearField(
2691
+ self,
2692
+ field_name: typing.Literal[
2693
+ "leading_comments",
2694
+ b"leading_comments",
2695
+ "leading_detached_comments",
2696
+ b"leading_detached_comments",
2697
+ "path",
2698
+ b"path",
2699
+ "span",
2700
+ b"span",
2701
+ "trailing_comments",
2702
+ b"trailing_comments",
2703
+ ],
2704
+ ) -> None: ...
2705
+
2706
+ LOCATION_FIELD_NUMBER: builtins.int
2707
+ @property
2708
+ def location(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___SourceCodeInfo.Location]:
2709
+ """A Location identifies a piece of source code in a .proto file which
2710
+ corresponds to a particular definition. This information is intended
2711
+ to be useful to IDEs, code indexers, documentation generators, and similar
2712
+ tools.
2713
+
2714
+ For example, say we have a file like:
2715
+ message Foo {
2716
+ optional string foo = 1;
2717
+ }
2718
+ Let's look at just the field definition:
2719
+ optional string foo = 1;
2720
+ ^ ^^ ^^ ^ ^^^
2721
+ a bc de f ghi
2722
+ We have the following locations:
2723
+ span path represents
2724
+ [a,i) [ 4, 0, 2, 0 ] The whole field definition.
2725
+ [a,b) [ 4, 0, 2, 0, 4 ] The label (optional).
2726
+ [c,d) [ 4, 0, 2, 0, 5 ] The type (string).
2727
+ [e,f) [ 4, 0, 2, 0, 1 ] The name (foo).
2728
+ [g,h) [ 4, 0, 2, 0, 3 ] The number (1).
2729
+
2730
+ Notes:
2731
+ - A location may refer to a repeated field itself (i.e. not to any
2732
+ particular index within it). This is used whenever a set of elements are
2733
+ logically enclosed in a single code segment. For example, an entire
2734
+ extend block (possibly containing multiple extension definitions) will
2735
+ have an outer location whose path refers to the "extensions" repeated
2736
+ field without an index.
2737
+ - Multiple locations may have the same path. This happens when a single
2738
+ logical declaration is spread out across multiple places. The most
2739
+ obvious example is the "extend" block again -- there may be multiple
2740
+ extend blocks in the same scope, each of which will have the same path.
2741
+ - A location's span is not always a subset of its parent's span. For
2742
+ example, the "extendee" of an extension declaration appears at the
2743
+ beginning of the "extend" block and is shared by all extensions within
2744
+ the block.
2745
+ - Just because a location's span is a subset of some other location's span
2746
+ does not mean that it is a descendant. For example, a "group" defines
2747
+ both a type and a field in a single declaration. Thus, the locations
2748
+ corresponding to the type and field and their components will overlap.
2749
+ - Code which tries to interpret locations should probably be designed to
2750
+ ignore those that it doesn't understand, as more types of locations could
2751
+ be recorded in the future.
2752
+ """
2753
+
2754
+ def __init__(self, *, location: collections.abc.Iterable[global___SourceCodeInfo.Location] | None = ...) -> None: ...
2755
+ def ClearField(self, field_name: typing.Literal["location", b"location"]) -> None: ...
2756
+
2757
+ global___SourceCodeInfo = SourceCodeInfo
2758
+
2759
+ @typing.final
2760
+ class GeneratedCodeInfo(google.protobuf.message.Message):
2761
+ """Describes the relationship between generated code and its original source
2762
+ file. A GeneratedCodeInfo message is associated with only one generated
2763
+ source file, but may contain references to different source .proto files.
2764
+ """
2765
+
2766
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
2767
+
2768
+ @typing.final
2769
+ class Annotation(google.protobuf.message.Message):
2770
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
2771
+
2772
+ class _Semantic:
2773
+ ValueType = typing.NewType("ValueType", builtins.int)
2774
+ V: typing_extensions.TypeAlias = ValueType
2775
+
2776
+ class _SemanticEnumTypeWrapper(
2777
+ google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[GeneratedCodeInfo.Annotation._Semantic.ValueType],
2778
+ builtins.type,
2779
+ ):
2780
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
2781
+ NONE: GeneratedCodeInfo.Annotation._Semantic.ValueType # 0
2782
+ """There is no effect or the effect is indescribable."""
2783
+ SET: GeneratedCodeInfo.Annotation._Semantic.ValueType # 1
2784
+ """The element is set or otherwise mutated."""
2785
+ ALIAS: GeneratedCodeInfo.Annotation._Semantic.ValueType # 2
2786
+ """An alias to the element is returned."""
2787
+
2788
+ class Semantic(_Semantic, metaclass=_SemanticEnumTypeWrapper):
2789
+ """Represents the identified object's effect on the element in the original
2790
+ .proto file.
2791
+ """
2792
+
2793
+ NONE: GeneratedCodeInfo.Annotation.Semantic.ValueType # 0
2794
+ """There is no effect or the effect is indescribable."""
2795
+ SET: GeneratedCodeInfo.Annotation.Semantic.ValueType # 1
2796
+ """The element is set or otherwise mutated."""
2797
+ ALIAS: GeneratedCodeInfo.Annotation.Semantic.ValueType # 2
2798
+ """An alias to the element is returned."""
2799
+
2800
+ PATH_FIELD_NUMBER: builtins.int
2801
+ SOURCE_FILE_FIELD_NUMBER: builtins.int
2802
+ BEGIN_FIELD_NUMBER: builtins.int
2803
+ END_FIELD_NUMBER: builtins.int
2804
+ SEMANTIC_FIELD_NUMBER: builtins.int
2805
+ source_file: builtins.str
2806
+ """Identifies the filesystem path to the original source .proto."""
2807
+ begin: builtins.int
2808
+ """Identifies the starting offset in bytes in the generated code
2809
+ that relates to the identified object.
2810
+ """
2811
+ end: builtins.int
2812
+ """Identifies the ending offset in bytes in the generated code that
2813
+ relates to the identified object. The end offset should be one past
2814
+ the last relevant byte (so the length of the text = end - begin).
2815
+ """
2816
+ semantic: global___GeneratedCodeInfo.Annotation.Semantic.ValueType
2817
+ @property
2818
+ def path(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.int]:
2819
+ """Identifies the element in the original source .proto file. This field
2820
+ is formatted the same as SourceCodeInfo.Location.path.
2821
+ """
2822
+
2823
+ def __init__(
2824
+ self,
2825
+ *,
2826
+ path: collections.abc.Iterable[builtins.int] | None = ...,
2827
+ source_file: builtins.str | None = ...,
2828
+ begin: builtins.int | None = ...,
2829
+ end: builtins.int | None = ...,
2830
+ semantic: global___GeneratedCodeInfo.Annotation.Semantic.ValueType | None = ...,
2831
+ ) -> None: ...
2832
+ def HasField(
2833
+ self,
2834
+ field_name: typing.Literal["begin", b"begin", "end", b"end", "semantic", b"semantic", "source_file", b"source_file"],
2835
+ ) -> builtins.bool: ...
2836
+ def ClearField(
2837
+ self,
2838
+ field_name: typing.Literal[
2839
+ "begin", b"begin", "end", b"end", "path", b"path", "semantic", b"semantic", "source_file", b"source_file"
2840
+ ],
2841
+ ) -> None: ...
2842
+
2843
+ ANNOTATION_FIELD_NUMBER: builtins.int
2844
+ @property
2845
+ def annotation(
2846
+ self,
2847
+ ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___GeneratedCodeInfo.Annotation]:
2848
+ """An Annotation connects some span of text in generated code to an element
2849
+ of its generating .proto file.
2850
+ """
2851
+
2852
+ def __init__(self, *, annotation: collections.abc.Iterable[global___GeneratedCodeInfo.Annotation] | None = ...) -> None: ...
2853
+ def ClearField(self, field_name: typing.Literal["annotation", b"annotation"]) -> None: ...
2854
+
2855
+ global___GeneratedCodeInfo = GeneratedCodeInfo