fake-bpy-module 20231205__py3-none-any.whl → 20231207__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.
- addon_utils/__init__.pyi +84 -0
- animsys_refactor/__init__.pyi +55 -0
- aud/__init__.pyi +1190 -0
- bgl/__init__.pyi +5084 -0
- bl_app_override/__init__.pyi +31 -0
- bl_app_override/helpers/__init__.pyi +42 -0
- bl_app_override/helpers/py.typed +0 -0
- bl_app_template_utils/__init__.pyi +36 -0
- bl_console_utils/autocomplete/__init__.pyi +8 -0
- bl_console_utils/autocomplete/complete_calltip/__init__.pyi +44 -0
- bl_console_utils/autocomplete/complete_calltip/py.typed +0 -0
- bl_console_utils/autocomplete/complete_import/__init__.pyi +28 -0
- bl_console_utils/autocomplete/complete_import/py.typed +0 -0
- bl_console_utils/autocomplete/complete_namespace/__init__.pyi +44 -0
- bl_console_utils/autocomplete/complete_namespace/py.typed +0 -0
- bl_console_utils/autocomplete/intellisense/__init__.pyi +20 -0
- bl_console_utils/autocomplete/intellisense/py.typed +0 -0
- bl_i18n_utils/__init__.pyi +11 -0
- bl_i18n_utils/bl_extract_messages/__init__.pyi +124 -0
- bl_i18n_utils/bl_extract_messages/py.typed +0 -0
- bl_i18n_utils/merge_po/__init__.pyi +12 -0
- bl_i18n_utils/merge_po/py.typed +0 -0
- bl_i18n_utils/settings/__init__.pyi +66 -0
- bl_i18n_utils/settings/py.typed +0 -0
- bl_i18n_utils/utils/__init__.pyi +338 -0
- bl_i18n_utils/utils/py.typed +0 -0
- bl_i18n_utils/utils_cli/__init__.pyi +52 -0
- bl_i18n_utils/utils_cli/py.typed +0 -0
- bl_i18n_utils/utils_languages_menu/__init__.pyi +12 -0
- bl_i18n_utils/utils_languages_menu/py.typed +0 -0
- bl_i18n_utils/utils_rtl/__init__.pyi +20 -0
- bl_i18n_utils/utils_rtl/py.typed +0 -0
- bl_keymap_utils/__init__.pyi +9 -0
- bl_keymap_utils/io/__init__.pyi +76 -0
- bl_keymap_utils/io/py.typed +0 -0
- bl_keymap_utils/keymap_from_toolbar/__init__.pyi +12 -0
- bl_keymap_utils/keymap_from_toolbar/py.typed +0 -0
- bl_keymap_utils/keymap_hierarchy/__init__.pyi +12 -0
- bl_keymap_utils/keymap_hierarchy/py.typed +0 -0
- bl_keymap_utils/platform_helpers/__init__.pyi +20 -0
- bl_keymap_utils/platform_helpers/py.typed +0 -0
- bl_keymap_utils/versioning/__init__.pyi +12 -0
- bl_keymap_utils/versioning/py.typed +0 -0
- bl_math/__init__.pyi +52 -0
- bl_operators/__init__.pyi +49 -0
- bl_operators/add_mesh_torus/__init__.pyi +231 -0
- bl_operators/add_mesh_torus/py.typed +0 -0
- bl_operators/anim/__init__.pyi +1291 -0
- bl_operators/anim/py.typed +0 -0
- bl_operators/assets/__init__.pyi +586 -0
- bl_operators/assets/py.typed +0 -0
- bl_operators/bmesh/find_adjacent/__init__.pyi +76 -0
- bl_operators/bmesh/find_adjacent/py.typed +0 -0
- bl_operators/clip/__init__.pyi +1898 -0
- bl_operators/clip/py.typed +0 -0
- bl_operators/console/__init__.pyi +918 -0
- bl_operators/console/py.typed +0 -0
- bl_operators/constraint/__init__.pyi +745 -0
- bl_operators/constraint/py.typed +0 -0
- bl_operators/file/__init__.pyi +560 -0
- bl_operators/file/py.typed +0 -0
- bl_operators/freestyle/__init__.pyi +751 -0
- bl_operators/freestyle/py.typed +0 -0
- bl_operators/geometry_nodes/__init__.pyi +2553 -0
- bl_operators/geometry_nodes/py.typed +0 -0
- bl_operators/image/__init__.pyi +548 -0
- bl_operators/image/py.typed +0 -0
- bl_operators/mesh/__init__.pyi +566 -0
- bl_operators/mesh/py.typed +0 -0
- bl_operators/node/__init__.pyi +1814 -0
- bl_operators/node/py.typed +0 -0
- bl_operators/object/__init__.pyi +3212 -0
- bl_operators/object/py.typed +0 -0
- bl_operators/object_align/__init__.pyi +215 -0
- bl_operators/object_align/py.typed +0 -0
- bl_operators/object_quick_effects/__init__.pyi +777 -0
- bl_operators/object_quick_effects/py.typed +0 -0
- bl_operators/object_randomize_transform/__init__.pyi +199 -0
- bl_operators/object_randomize_transform/py.typed +0 -0
- bl_operators/presets/__init__.pyi +3776 -0
- bl_operators/presets/py.typed +0 -0
- bl_operators/rigidbody/__init__.pyi +566 -0
- bl_operators/rigidbody/py.typed +0 -0
- bl_operators/screen_play_rendered_anim/__init__.pyi +192 -0
- bl_operators/screen_play_rendered_anim/py.typed +0 -0
- bl_operators/sequencer/__init__.pyi +1001 -0
- bl_operators/sequencer/py.typed +0 -0
- bl_operators/spreadsheet/__init__.pyi +202 -0
- bl_operators/spreadsheet/py.typed +0 -0
- bl_operators/userpref/__init__.pyi +4701 -0
- bl_operators/userpref/py.typed +0 -0
- bl_operators/uvcalc_follow_active/__init__.pyi +212 -0
- bl_operators/uvcalc_follow_active/py.typed +0 -0
- bl_operators/uvcalc_lightmap/__init__.pyi +257 -0
- bl_operators/uvcalc_lightmap/py.typed +0 -0
- bl_operators/uvcalc_transform/__init__.pyi +501 -0
- bl_operators/uvcalc_transform/py.typed +0 -0
- bl_operators/vertexpaint_dirt/__init__.pyi +207 -0
- bl_operators/vertexpaint_dirt/py.typed +0 -0
- bl_operators/view3d/__init__.pyi +955 -0
- bl_operators/view3d/py.typed +0 -0
- bl_operators/wm/__init__.pyi +8409 -0
- bl_operators/wm/py.typed +0 -0
- bl_previews_utils/bl_previews_render/__init__.pyi +60 -0
- bl_previews_utils/bl_previews_render/py.typed +0 -0
- bl_rna_utils/data_path/__init__.pyi +25 -0
- bl_rna_utils/data_path/py.typed +0 -0
- bl_text_utils/external_editor/__init__.pyi +12 -0
- bl_text_utils/external_editor/py.typed +0 -0
- bl_ui/__init__.pyi +706 -0
- bl_ui/asset_shelf/__init__.pyi +202 -0
- bl_ui/asset_shelf/py.typed +0 -0
- bl_ui/generic_ui_list/__init__.pyi +629 -0
- bl_ui/generic_ui_list/py.typed +0 -0
- bl_ui/node_add_menu/__init__.pyi +260 -0
- bl_ui/node_add_menu/py.typed +0 -0
- bl_ui/node_add_menu_compositor/__init__.pyi +3739 -0
- bl_ui/node_add_menu_compositor/py.typed +0 -0
- bl_ui/node_add_menu_geometry/__init__.pyi +8520 -0
- bl_ui/node_add_menu_geometry/py.typed +0 -0
- bl_ui/node_add_menu_shader/__init__.pyi +2139 -0
- bl_ui/node_add_menu_shader/py.typed +0 -0
- bl_ui/node_add_menu_texture/__init__.pyi +1868 -0
- bl_ui/node_add_menu_texture/py.typed +0 -0
- bl_ui/properties_animviz/__init__.pyi +38 -0
- bl_ui/properties_animviz/py.typed +0 -0
- bl_ui/properties_collection/__init__.pyi +1051 -0
- bl_ui/properties_collection/py.typed +0 -0
- bl_ui/properties_constraint/__init__.pyi +29694 -0
- bl_ui/properties_constraint/py.typed +0 -0
- bl_ui/properties_data_armature/__init__.pyi +2274 -0
- bl_ui/properties_data_armature/py.typed +0 -0
- bl_ui/properties_data_bone/__init__.pyi +2087 -0
- bl_ui/properties_data_bone/py.typed +0 -0
- bl_ui/properties_data_camera/__init__.pyi +3004 -0
- bl_ui/properties_data_camera/py.typed +0 -0
- bl_ui/properties_data_curve/__init__.pyi +3164 -0
- bl_ui/properties_data_curve/py.typed +0 -0
- bl_ui/properties_data_curves/__init__.pyi +1247 -0
- bl_ui/properties_data_curves/py.typed +0 -0
- bl_ui/properties_data_empty/__init__.pyi +426 -0
- bl_ui/properties_data_empty/py.typed +0 -0
- bl_ui/properties_data_gpencil/__init__.pyi +3758 -0
- bl_ui/properties_data_gpencil/py.typed +0 -0
- bl_ui/properties_data_grease_pencil/__init__.pyi +632 -0
- bl_ui/properties_data_grease_pencil/py.typed +0 -0
- bl_ui/properties_data_lattice/__init__.pyi +637 -0
- bl_ui/properties_data_lattice/py.typed +0 -0
- bl_ui/properties_data_light/__init__.pyi +2111 -0
- bl_ui/properties_data_light/py.typed +0 -0
- bl_ui/properties_data_lightprobe/__init__.pyi +1264 -0
- bl_ui/properties_data_lightprobe/py.typed +0 -0
- bl_ui/properties_data_mesh/__init__.pyi +4052 -0
- bl_ui/properties_data_mesh/py.typed +0 -0
- bl_ui/properties_data_metaball/__init__.pyi +1047 -0
- bl_ui/properties_data_metaball/py.typed +0 -0
- bl_ui/properties_data_modifier/__init__.pyi +1741 -0
- bl_ui/properties_data_modifier/py.typed +0 -0
- bl_ui/properties_data_pointcloud/__init__.pyi +1045 -0
- bl_ui/properties_data_pointcloud/py.typed +0 -0
- bl_ui/properties_data_shaderfx/__init__.pyi +214 -0
- bl_ui/properties_data_shaderfx/py.typed +0 -0
- bl_ui/properties_data_speaker/__init__.pyi +1056 -0
- bl_ui/properties_data_speaker/py.typed +0 -0
- bl_ui/properties_data_volume/__init__.pyi +1652 -0
- bl_ui/properties_data_volume/py.typed +0 -0
- bl_ui/properties_freestyle/__init__.pyi +5309 -0
- bl_ui/properties_freestyle/py.typed +0 -0
- bl_ui/properties_grease_pencil_common/__init__.pyi +2780 -0
- bl_ui/properties_grease_pencil_common/py.typed +0 -0
- bl_ui/properties_mask_common/__init__.pyi +1554 -0
- bl_ui/properties_mask_common/py.typed +0 -0
- bl_ui/properties_material/__init__.pyi +3117 -0
- bl_ui/properties_material/py.typed +0 -0
- bl_ui/properties_material_gpencil/__init__.pyi +2086 -0
- bl_ui/properties_material_gpencil/py.typed +0 -0
- bl_ui/properties_object/__init__.pyi +2875 -0
- bl_ui/properties_object/py.typed +0 -0
- bl_ui/properties_output/__init__.pyi +3799 -0
- bl_ui/properties_output/py.typed +0 -0
- bl_ui/properties_paint_common/__init__.pyi +814 -0
- bl_ui/properties_paint_common/py.typed +0 -0
- bl_ui/properties_particle/__init__.pyi +10938 -0
- bl_ui/properties_particle/py.typed +0 -0
- bl_ui/properties_physics_cloth/__init__.pyi +2984 -0
- bl_ui/properties_physics_cloth/py.typed +0 -0
- bl_ui/properties_physics_common/__init__.pyi +277 -0
- bl_ui/properties_physics_common/py.typed +0 -0
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +5431 -0
- bl_ui/properties_physics_dynamicpaint/py.typed +0 -0
- bl_ui/properties_physics_field/__init__.pyi +2220 -0
- bl_ui/properties_physics_field/py.typed +0 -0
- bl_ui/properties_physics_fluid/__init__.pyi +7296 -0
- bl_ui/properties_physics_fluid/py.typed +0 -0
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +214 -0
- bl_ui/properties_physics_geometry_nodes/py.typed +0 -0
- bl_ui/properties_physics_rigidbody/__init__.pyi +1698 -0
- bl_ui/properties_physics_rigidbody/py.typed +0 -0
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2734 -0
- bl_ui/properties_physics_rigidbody_constraint/py.typed +0 -0
- bl_ui/properties_physics_softbody/__init__.pyi +3198 -0
- bl_ui/properties_physics_softbody/py.typed +0 -0
- bl_ui/properties_render/__init__.pyi +12664 -0
- bl_ui/properties_render/py.typed +0 -0
- bl_ui/properties_scene/__init__.pyi +2872 -0
- bl_ui/properties_scene/py.typed +0 -0
- bl_ui/properties_texture/__init__.pyi +5470 -0
- bl_ui/properties_texture/py.typed +0 -0
- bl_ui/properties_view_layer/__init__.pyi +3493 -0
- bl_ui/properties_view_layer/py.typed +0 -0
- bl_ui/properties_workspace/__init__.pyi +630 -0
- bl_ui/properties_workspace/py.typed +0 -0
- bl_ui/properties_world/__init__.pyi +1478 -0
- bl_ui/properties_world/py.typed +0 -0
- bl_ui/space_clip/__init__.pyi +14313 -0
- bl_ui/space_clip/py.typed +0 -0
- bl_ui/space_console/__init__.pyi +1221 -0
- bl_ui/space_console/py.typed +0 -0
- bl_ui/space_dopesheet/__init__.pyi +5388 -0
- bl_ui/space_dopesheet/py.typed +0 -0
- bl_ui/space_filebrowser/__init__.pyi +5996 -0
- bl_ui/space_filebrowser/py.typed +0 -0
- bl_ui/space_graph/__init__.pyi +4053 -0
- bl_ui/space_graph/py.typed +0 -0
- bl_ui/space_image/__init__.pyi +14801 -0
- bl_ui/space_image/py.typed +0 -0
- bl_ui/space_info/__init__.pyi +1216 -0
- bl_ui/space_info/py.typed +0 -0
- bl_ui/space_nla/__init__.pyi +3460 -0
- bl_ui/space_nla/py.typed +0 -0
- bl_ui/space_node/__init__.pyi +6519 -0
- bl_ui/space_node/py.typed +0 -0
- bl_ui/space_outliner/__init__.pyi +2864 -0
- bl_ui/space_outliner/py.typed +0 -0
- bl_ui/space_properties/__init__.pyi +575 -0
- bl_ui/space_properties/py.typed +0 -0
- bl_ui/space_sequencer/__init__.pyi +15360 -0
- bl_ui/space_sequencer/py.typed +0 -0
- bl_ui/space_spreadsheet/__init__.pyi +226 -0
- bl_ui/space_spreadsheet/py.typed +0 -0
- bl_ui/space_statusbar/__init__.pyi +190 -0
- bl_ui/space_statusbar/py.typed +0 -0
- bl_ui/space_text/__init__.pyi +3223 -0
- bl_ui/space_text/py.typed +0 -0
- bl_ui/space_time/__init__.pyi +1472 -0
- bl_ui/space_time/py.typed +0 -0
- bl_ui/space_toolsystem_common/__init__.pyi +435 -0
- bl_ui/space_toolsystem_common/py.typed +0 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +1671 -0
- bl_ui/space_toolsystem_toolbar/py.typed +0 -0
- bl_ui/space_topbar/__init__.pyi +5296 -0
- bl_ui/space_topbar/py.typed +0 -0
- bl_ui/space_userpref/__init__.pyi +17826 -0
- bl_ui/space_userpref/py.typed +0 -0
- bl_ui/space_view3d/__init__.pyi +51846 -0
- bl_ui/space_view3d/py.typed +0 -0
- bl_ui/space_view3d_toolbar/__init__.pyi +18993 -0
- bl_ui/space_view3d_toolbar/py.typed +0 -0
- bl_ui/utils/__init__.pyi +40 -0
- bl_ui/utils/py.typed +0 -0
- bl_ui_utils/__init__.pyi +6 -0
- bl_ui_utils/bug_report_url/__init__.pyi +12 -0
- bl_ui_utils/bug_report_url/py.typed +0 -0
- bl_ui_utils/layout/__init__.pyi +12 -0
- bl_ui_utils/layout/py.typed +0 -0
- blend_render_info/__init__.pyi +24 -0
- blf/__init__.pyi +231 -0
- bmesh/__init__.pyi +51 -0
- bmesh/geometry/__init__.pyi +23 -0
- bmesh/geometry/py.typed +0 -0
- bmesh/ops/__init__.pyi +1935 -0
- bmesh/ops/py.typed +0 -0
- bmesh/types/__init__.pyi +1399 -0
- bmesh/types/py.typed +0 -0
- bmesh/utils/__init__.pyi +207 -0
- bmesh/utils/py.typed +0 -0
- bpy/__init__.pyi +18 -0
- bpy/app/__init__.pyi +247 -0
- bpy/app/handlers/__init__.pyi +151 -0
- bpy/app/handlers/py.typed +0 -0
- bpy/app/icons/__init__.pyi +42 -0
- bpy/app/icons/py.typed +0 -0
- bpy/app/timers/__init__.pyi +42 -0
- bpy/app/timers/py.typed +0 -0
- bpy/app/translations/__init__.pyi +107 -0
- bpy/app/translations/py.typed +0 -0
- bpy/msgbus/__init__.pyi +40 -0
- bpy/msgbus/py.typed +0 -0
- bpy/ops/__init__.pyi +81 -0
- bpy/ops/action/__init__.pyi +723 -0
- bpy/ops/action/py.typed +0 -0
- bpy/ops/anim/__init__.pyi +978 -0
- bpy/ops/anim/py.typed +0 -0
- bpy/ops/armature/__init__.pyi +858 -0
- bpy/ops/armature/py.typed +0 -0
- bpy/ops/asset/__init__.pyi +339 -0
- bpy/ops/asset/py.typed +0 -0
- bpy/ops/boid/__init__.pyi +127 -0
- bpy/ops/boid/py.typed +0 -0
- bpy/ops/brush/__init__.pyi +171 -0
- bpy/ops/brush/py.typed +0 -0
- bpy/ops/buttons/__init__.pyi +255 -0
- bpy/ops/buttons/py.typed +0 -0
- bpy/ops/cachefile/__init__.pyi +241 -0
- bpy/ops/cachefile/py.typed +0 -0
- bpy/ops/camera/__init__.pyi +60 -0
- bpy/ops/camera/py.typed +0 -0
- bpy/ops/clip/__init__.pyi +1782 -0
- bpy/ops/clip/py.typed +0 -0
- bpy/ops/cloth/__init__.pyi +31 -0
- bpy/ops/cloth/py.typed +0 -0
- bpy/ops/collection/__init__.pyi +95 -0
- bpy/ops/collection/py.typed +0 -0
- bpy/ops/console/__init__.pyi +370 -0
- bpy/ops/console/py.typed +0 -0
- bpy/ops/constraint/__init__.pyi +391 -0
- bpy/ops/constraint/py.typed +0 -0
- bpy/ops/curve/__init__.pyi +1052 -0
- bpy/ops/curve/py.typed +0 -0
- bpy/ops/curves/__init__.pyi +259 -0
- bpy/ops/curves/py.typed +0 -0
- bpy/ops/cycles/__init__.pyi +67 -0
- bpy/ops/cycles/py.typed +0 -0
- bpy/ops/dpaint/__init__.pyi +87 -0
- bpy/ops/dpaint/py.typed +0 -0
- bpy/ops/ed/__init__.pyi +276 -0
- bpy/ops/ed/py.typed +0 -0
- bpy/ops/export_anim/__init__.pyi +45 -0
- bpy/ops/export_anim/py.typed +0 -0
- bpy/ops/export_mesh/__init__.pyi +62 -0
- bpy/ops/export_mesh/py.typed +0 -0
- bpy/ops/export_scene/__init__.pyi +577 -0
- bpy/ops/export_scene/py.typed +0 -0
- bpy/ops/file/__init__.pyi +787 -0
- bpy/ops/file/py.typed +0 -0
- bpy/ops/fluid/__init__.pyi +224 -0
- bpy/ops/fluid/py.typed +0 -0
- bpy/ops/font/__init__.pyi +537 -0
- bpy/ops/font/py.typed +0 -0
- bpy/ops/geometry/__init__.pyi +219 -0
- bpy/ops/geometry/py.typed +0 -0
- bpy/ops/gizmogroup/__init__.pyi +52 -0
- bpy/ops/gizmogroup/py.typed +0 -0
- bpy/ops/gpencil/__init__.pyi +3247 -0
- bpy/ops/gpencil/py.typed +0 -0
- bpy/ops/graph/__init__.pyi +1392 -0
- bpy/ops/graph/py.typed +0 -0
- bpy/ops/grease_pencil/__init__.pyi +724 -0
- bpy/ops/grease_pencil/py.typed +0 -0
- bpy/ops/image/__init__.pyi +1261 -0
- bpy/ops/image/py.typed +0 -0
- bpy/ops/import_anim/__init__.pyi +58 -0
- bpy/ops/import_anim/py.typed +0 -0
- bpy/ops/import_curve/__init__.pyi +26 -0
- bpy/ops/import_curve/py.typed +0 -0
- bpy/ops/import_mesh/__init__.pyi +50 -0
- bpy/ops/import_mesh/py.typed +0 -0
- bpy/ops/import_scene/__init__.pyi +191 -0
- bpy/ops/import_scene/py.typed +0 -0
- bpy/ops/info/__init__.pyi +140 -0
- bpy/ops/info/py.typed +0 -0
- bpy/ops/lattice/__init__.pyi +153 -0
- bpy/ops/lattice/py.typed +0 -0
- bpy/ops/marker/__init__.pyi +238 -0
- bpy/ops/marker/py.typed +0 -0
- bpy/ops/mask/__init__.pyi +747 -0
- bpy/ops/mask/py.typed +0 -0
- bpy/ops/material/__init__.pyi +47 -0
- bpy/ops/material/py.typed +0 -0
- bpy/ops/mball/__init__.pyi +168 -0
- bpy/ops/mball/py.typed +0 -0
- bpy/ops/mesh/__init__.pyi +4168 -0
- bpy/ops/mesh/py.typed +0 -0
- bpy/ops/nla/__init__.pyi +756 -0
- bpy/ops/nla/py.typed +0 -0
- bpy/ops/node/__init__.pyi +1894 -0
- bpy/ops/node/py.typed +0 -0
- bpy/ops/object/__init__.pyi +5343 -0
- bpy/ops/object/py.typed +0 -0
- bpy/ops/outliner/__init__.pyi +1172 -0
- bpy/ops/outliner/py.typed +0 -0
- bpy/ops/paint/__init__.pyi +1067 -0
- bpy/ops/paint/py.typed +0 -0
- bpy/ops/paintcurve/__init__.pyi +148 -0
- bpy/ops/paintcurve/py.typed +0 -0
- bpy/ops/palette/__init__.pyi +123 -0
- bpy/ops/palette/py.typed +0 -0
- bpy/ops/particle/__init__.pyi +635 -0
- bpy/ops/particle/py.typed +0 -0
- bpy/ops/pose/__init__.pyi +763 -0
- bpy/ops/pose/py.typed +0 -0
- bpy/ops/poselib/__init__.pyi +173 -0
- bpy/ops/poselib/py.typed +0 -0
- bpy/ops/preferences/__init__.pyi +849 -0
- bpy/ops/preferences/py.typed +0 -0
- bpy/ops/ptcache/__init__.pyi +114 -0
- bpy/ops/ptcache/py.typed +0 -0
- bpy/ops/render/__init__.pyi +262 -0
- bpy/ops/render/py.typed +0 -0
- bpy/ops/rigidbody/__init__.pyi +244 -0
- bpy/ops/rigidbody/py.typed +0 -0
- bpy/ops/scene/__init__.pyi +675 -0
- bpy/ops/scene/py.typed +0 -0
- bpy/ops/screen/__init__.pyi +846 -0
- bpy/ops/screen/py.typed +0 -0
- bpy/ops/script/__init__.pyi +60 -0
- bpy/ops/script/py.typed +0 -0
- bpy/ops/sculpt/__init__.pyi +862 -0
- bpy/ops/sculpt/py.typed +0 -0
- bpy/ops/sculpt_curves/__init__.pyi +94 -0
- bpy/ops/sculpt_curves/py.typed +0 -0
- bpy/ops/sequencer/__init__.pyi +2165 -0
- bpy/ops/sequencer/py.typed +0 -0
- bpy/ops/sound/__init__.pyi +395 -0
- bpy/ops/sound/py.typed +0 -0
- bpy/ops/spreadsheet/__init__.pyi +76 -0
- bpy/ops/spreadsheet/py.typed +0 -0
- bpy/ops/surface/__init__.pyi +215 -0
- bpy/ops/surface/py.typed +0 -0
- bpy/ops/text/__init__.pyi +863 -0
- bpy/ops/text/py.typed +0 -0
- bpy/ops/text_editor/__init__.pyi +31 -0
- bpy/ops/text_editor/py.typed +0 -0
- bpy/ops/texture/__init__.pyi +68 -0
- bpy/ops/texture/py.typed +0 -0
- bpy/ops/transform/__init__.pyi +1545 -0
- bpy/ops/transform/py.typed +0 -0
- bpy/ops/ui/__init__.pyi +536 -0
- bpy/ops/ui/py.typed +0 -0
- bpy/ops/uilist/__init__.pyi +74 -0
- bpy/ops/uilist/py.typed +0 -0
- bpy/ops/uv/__init__.pyi +1251 -0
- bpy/ops/uv/py.typed +0 -0
- bpy/ops/view2d/__init__.pyi +329 -0
- bpy/ops/view2d/py.typed +0 -0
- bpy/ops/view3d/__init__.pyi +1392 -0
- bpy/ops/view3d/py.typed +0 -0
- bpy/ops/wm/__init__.pyi +4821 -0
- bpy/ops/wm/py.typed +0 -0
- bpy/ops/workspace/__init__.pyi +115 -0
- bpy/ops/workspace/py.typed +0 -0
- bpy/ops/world/__init__.pyi +19 -0
- bpy/ops/world/py.typed +0 -0
- bpy/path/__init__.pyi +194 -0
- bpy/path/py.typed +0 -0
- bpy/props/__init__.pyi +509 -0
- bpy/props/py.typed +0 -0
- bpy/types/__init__.pyi +131533 -0
- bpy/types/py.typed +0 -0
- bpy/utils/__init__.pyi +429 -0
- bpy/utils/previews/__init__.pyi +73 -0
- bpy/utils/previews/py.typed +0 -0
- bpy/utils/units/__init__.pyi +61 -0
- bpy/utils/units/py.typed +0 -0
- bpy_extras/__init__.pyi +18 -0
- bpy_extras/anim_utils/__init__.pyi +108 -0
- bpy_extras/anim_utils/py.typed +0 -0
- bpy_extras/asset_utils/__init__.pyi +39 -0
- bpy_extras/asset_utils/py.typed +0 -0
- bpy_extras/bmesh_utils/__init__.pyi +20 -0
- bpy_extras/bmesh_utils/py.typed +0 -0
- bpy_extras/extensions/junction_module/__init__.pyi +48 -0
- bpy_extras/extensions/junction_module/py.typed +0 -0
- bpy_extras/id_map_utils/__init__.pyi +28 -0
- bpy_extras/id_map_utils/py.typed +0 -0
- bpy_extras/image_utils/__init__.pyi +42 -0
- bpy_extras/image_utils/py.typed +0 -0
- bpy_extras/io_utils/__init__.pyi +165 -0
- bpy_extras/io_utils/py.typed +0 -0
- bpy_extras/keyconfig_utils/__init__.pyi +28 -0
- bpy_extras/keyconfig_utils/py.typed +0 -0
- bpy_extras/mesh_utils/__init__.pyi +91 -0
- bpy_extras/mesh_utils/py.typed +0 -0
- bpy_extras/node_shader_utils/__init__.pyi +562 -0
- bpy_extras/node_shader_utils/py.typed +0 -0
- bpy_extras/node_utils/__init__.pyi +28 -0
- bpy_extras/node_utils/py.typed +0 -0
- bpy_extras/object_utils/__init__.pyi +87 -0
- bpy_extras/object_utils/py.typed +0 -0
- bpy_extras/view3d_utils/__init__.pyi +90 -0
- bpy_extras/view3d_utils/py.typed +0 -0
- bpy_extras/wm_utils/progress_report/__init__.pyi +98 -0
- bpy_extras/wm_utils/progress_report/py.typed +0 -0
- bpy_restrict_state/__init__.pyi +24 -0
- bpy_types/__init__.pyi +5189 -0
- console_python/__init__.pyi +71 -0
- console_shell/__init__.pyi +44 -0
- fake_bpy_module-20231207.dist-info/METADATA +175 -0
- fake_bpy_module-20231207.dist-info/RECORD +610 -0
- freestyle/chainingiterators/__init__.pyi +306 -0
- freestyle/chainingiterators/py.typed +0 -0
- freestyle/functions/__init__.pyi +1270 -0
- freestyle/functions/py.typed +0 -0
- freestyle/predicates/__init__.pyi +535 -0
- freestyle/predicates/py.typed +0 -0
- freestyle/shaders/__init__.pyi +872 -0
- freestyle/shaders/py.typed +0 -0
- freestyle/types/__init__.pyi +2407 -0
- freestyle/types/py.typed +0 -0
- freestyle/utils/ContextFunctions/__init__.pyi +127 -0
- freestyle/utils/ContextFunctions/py.typed +0 -0
- freestyle/utils/__init__.pyi +246 -0
- gpu/capabilities/__init__.pyi +186 -0
- gpu/capabilities/py.typed +0 -0
- gpu/matrix/__init__.pyi +162 -0
- gpu/matrix/py.typed +0 -0
- gpu/platform/__init__.pyi +54 -0
- gpu/platform/py.typed +0 -0
- gpu/select/__init__.pyi +15 -0
- gpu/select/py.typed +0 -0
- gpu/shader/__init__.pyi +38 -0
- gpu/shader/py.typed +0 -0
- gpu/state/__init__.pyi +214 -0
- gpu/state/py.typed +0 -0
- gpu/texture/__init__.pyi +18 -0
- gpu/texture/py.typed +0 -0
- gpu/types/__init__.pyi +698 -0
- gpu/types/py.typed +0 -0
- gpu_extras/batch/__init__.pyi +25 -0
- gpu_extras/batch/py.typed +0 -0
- gpu_extras/presets/__init__.pyi +43 -0
- gpu_extras/presets/py.typed +0 -0
- graphviz_export/__init__.pyi +21 -0
- idprop/types/__init__.pyi +98 -0
- idprop/types/py.typed +0 -0
- imbuf/__init__.pyi +44 -0
- imbuf/types/__init__.pyi +70 -0
- imbuf/types/py.typed +0 -0
- keyingsets_builtins/__init__.pyi +4028 -0
- keyingsets_utils/__init__.pyi +116 -0
- mathutils/__init__.pyi +2917 -0
- mathutils/bvhtree/__init__.pyi +124 -0
- mathutils/bvhtree/py.typed +0 -0
- mathutils/geometry/__init__.pyi +526 -0
- mathutils/geometry/py.typed +0 -0
- mathutils/interpolate/__init__.pyi +16 -0
- mathutils/interpolate/py.typed +0 -0
- mathutils/kdtree/__init__.pyi +77 -0
- mathutils/kdtree/py.typed +0 -0
- mathutils/noise/__init__.pyi +342 -0
- mathutils/noise/py.typed +0 -0
- nodeitems_builtins/__init__.pyi +69 -0
- nodeitems_utils/__init__.pyi +86 -0
- rna_info/__init__.pyi +343 -0
- rna_keymap_ui/__init__.pyi +52 -0
- rna_prop_ui/__init__.pyi +109 -0
- rna_xml/__init__.pyi +53 -0
- sys_info/__init__.pyi +12 -0
- addon_utils/__init__.py +0 -84
- animsys_refactor/__init__.py +0 -55
- aud/__init__.py +0 -1190
- bgl/__init__.py +0 -5084
- bl_app_override/__init__.py +0 -31
- bl_app_override/helpers.py +0 -42
- bl_app_template_utils/__init__.py +0 -36
- bl_console_utils/autocomplete/__init__.py +0 -8
- bl_console_utils/autocomplete/complete_calltip.py +0 -44
- bl_console_utils/autocomplete/complete_import.py +0 -28
- bl_console_utils/autocomplete/complete_namespace.py +0 -44
- bl_console_utils/autocomplete/intellisense.py +0 -20
- bl_i18n_utils/__init__.py +0 -11
- bl_i18n_utils/bl_extract_messages.py +0 -124
- bl_i18n_utils/merge_po.py +0 -12
- bl_i18n_utils/settings.py +0 -66
- bl_i18n_utils/utils.py +0 -338
- bl_i18n_utils/utils_cli.py +0 -52
- bl_i18n_utils/utils_languages_menu.py +0 -12
- bl_i18n_utils/utils_rtl.py +0 -20
- bl_keymap_utils/__init__.py +0 -9
- bl_keymap_utils/io.py +0 -76
- bl_keymap_utils/keymap_from_toolbar.py +0 -12
- bl_keymap_utils/keymap_hierarchy.py +0 -12
- bl_keymap_utils/platform_helpers.py +0 -20
- bl_keymap_utils/versioning.py +0 -12
- bl_math/__init__.py +0 -52
- bl_operators/__init__.py +0 -49
- bl_operators/add_mesh_torus.py +0 -231
- bl_operators/anim.py +0 -1291
- bl_operators/assets.py +0 -586
- bl_operators/bmesh/find_adjacent.py +0 -76
- bl_operators/clip.py +0 -1898
- bl_operators/console.py +0 -918
- bl_operators/constraint.py +0 -745
- bl_operators/file.py +0 -560
- bl_operators/freestyle.py +0 -751
- bl_operators/geometry_nodes.py +0 -2553
- bl_operators/image.py +0 -548
- bl_operators/mesh.py +0 -566
- bl_operators/node.py +0 -1814
- bl_operators/object.py +0 -3212
- bl_operators/object_align.py +0 -215
- bl_operators/object_quick_effects.py +0 -777
- bl_operators/object_randomize_transform.py +0 -199
- bl_operators/presets.py +0 -3776
- bl_operators/rigidbody.py +0 -566
- bl_operators/screen_play_rendered_anim.py +0 -192
- bl_operators/sequencer.py +0 -1001
- bl_operators/spreadsheet.py +0 -202
- bl_operators/userpref.py +0 -4701
- bl_operators/uvcalc_follow_active.py +0 -212
- bl_operators/uvcalc_lightmap.py +0 -257
- bl_operators/uvcalc_transform.py +0 -501
- bl_operators/vertexpaint_dirt.py +0 -207
- bl_operators/view3d.py +0 -955
- bl_operators/wm.py +0 -8409
- bl_previews_utils/bl_previews_render.py +0 -60
- bl_rna_utils/data_path.py +0 -25
- bl_text_utils/external_editor.py +0 -12
- bl_ui/__init__.py +0 -706
- bl_ui/asset_shelf.py +0 -202
- bl_ui/generic_ui_list.py +0 -629
- bl_ui/node_add_menu.py +0 -260
- bl_ui/node_add_menu_compositor.py +0 -3739
- bl_ui/node_add_menu_geometry.py +0 -8520
- bl_ui/node_add_menu_shader.py +0 -2139
- bl_ui/node_add_menu_texture.py +0 -1868
- bl_ui/properties_animviz.py +0 -38
- bl_ui/properties_collection.py +0 -1051
- bl_ui/properties_constraint.py +0 -29694
- bl_ui/properties_data_armature.py +0 -2274
- bl_ui/properties_data_bone.py +0 -2087
- bl_ui/properties_data_camera.py +0 -3004
- bl_ui/properties_data_curve.py +0 -3164
- bl_ui/properties_data_curves.py +0 -1247
- bl_ui/properties_data_empty.py +0 -426
- bl_ui/properties_data_gpencil.py +0 -3758
- bl_ui/properties_data_grease_pencil.py +0 -632
- bl_ui/properties_data_lattice.py +0 -637
- bl_ui/properties_data_light.py +0 -2111
- bl_ui/properties_data_lightprobe.py +0 -1264
- bl_ui/properties_data_mesh.py +0 -4052
- bl_ui/properties_data_metaball.py +0 -1047
- bl_ui/properties_data_modifier.py +0 -1741
- bl_ui/properties_data_pointcloud.py +0 -1045
- bl_ui/properties_data_shaderfx.py +0 -214
- bl_ui/properties_data_speaker.py +0 -1056
- bl_ui/properties_data_volume.py +0 -1652
- bl_ui/properties_freestyle.py +0 -5309
- bl_ui/properties_grease_pencil_common.py +0 -2780
- bl_ui/properties_mask_common.py +0 -1554
- bl_ui/properties_material.py +0 -3117
- bl_ui/properties_material_gpencil.py +0 -2086
- bl_ui/properties_object.py +0 -2875
- bl_ui/properties_output.py +0 -3799
- bl_ui/properties_paint_common.py +0 -814
- bl_ui/properties_particle.py +0 -10938
- bl_ui/properties_physics_cloth.py +0 -2984
- bl_ui/properties_physics_common.py +0 -277
- bl_ui/properties_physics_dynamicpaint.py +0 -5431
- bl_ui/properties_physics_field.py +0 -2220
- bl_ui/properties_physics_fluid.py +0 -7296
- bl_ui/properties_physics_geometry_nodes.py +0 -214
- bl_ui/properties_physics_rigidbody.py +0 -1698
- bl_ui/properties_physics_rigidbody_constraint.py +0 -2734
- bl_ui/properties_physics_softbody.py +0 -3198
- bl_ui/properties_render.py +0 -12664
- bl_ui/properties_scene.py +0 -2872
- bl_ui/properties_texture.py +0 -5470
- bl_ui/properties_view_layer.py +0 -3493
- bl_ui/properties_workspace.py +0 -630
- bl_ui/properties_world.py +0 -1478
- bl_ui/space_clip.py +0 -14313
- bl_ui/space_console.py +0 -1221
- bl_ui/space_dopesheet.py +0 -5388
- bl_ui/space_filebrowser.py +0 -5996
- bl_ui/space_graph.py +0 -4053
- bl_ui/space_image.py +0 -14801
- bl_ui/space_info.py +0 -1216
- bl_ui/space_nla.py +0 -3460
- bl_ui/space_node.py +0 -6519
- bl_ui/space_outliner.py +0 -2864
- bl_ui/space_properties.py +0 -575
- bl_ui/space_sequencer.py +0 -15360
- bl_ui/space_spreadsheet.py +0 -226
- bl_ui/space_statusbar.py +0 -190
- bl_ui/space_text.py +0 -3223
- bl_ui/space_time.py +0 -1472
- bl_ui/space_toolsystem_common.py +0 -435
- bl_ui/space_toolsystem_toolbar.py +0 -1671
- bl_ui/space_topbar.py +0 -5296
- bl_ui/space_userpref.py +0 -17826
- bl_ui/space_view3d.py +0 -51846
- bl_ui/space_view3d_toolbar.py +0 -18993
- bl_ui/utils.py +0 -40
- bl_ui_utils/__init__.py +0 -6
- bl_ui_utils/bug_report_url.py +0 -12
- bl_ui_utils/layout.py +0 -12
- blend_render_info/__init__.py +0 -24
- blf/__init__.py +0 -231
- bmesh/__init__.py +0 -51
- bmesh/geometry.py +0 -23
- bmesh/ops.py +0 -1935
- bmesh/types.py +0 -1399
- bmesh/utils.py +0 -207
- bpy/__init__.py +0 -18
- bpy/app/__init__.py +0 -247
- bpy/app/handlers.py +0 -160
- bpy/app/icons.py +0 -42
- bpy/app/timers.py +0 -42
- bpy/app/translations.py +0 -107
- bpy/msgbus.py +0 -40
- bpy/ops/__init__.py +0 -81
- bpy/ops/action.py +0 -723
- bpy/ops/anim.py +0 -978
- bpy/ops/armature.py +0 -858
- bpy/ops/asset.py +0 -339
- bpy/ops/boid.py +0 -127
- bpy/ops/brush.py +0 -171
- bpy/ops/buttons.py +0 -255
- bpy/ops/cachefile.py +0 -241
- bpy/ops/camera.py +0 -60
- bpy/ops/clip.py +0 -1782
- bpy/ops/cloth.py +0 -31
- bpy/ops/collection.py +0 -95
- bpy/ops/console.py +0 -370
- bpy/ops/constraint.py +0 -391
- bpy/ops/curve.py +0 -1052
- bpy/ops/curves.py +0 -259
- bpy/ops/cycles.py +0 -67
- bpy/ops/dpaint.py +0 -87
- bpy/ops/ed.py +0 -276
- bpy/ops/export_anim.py +0 -45
- bpy/ops/export_mesh.py +0 -62
- bpy/ops/export_scene.py +0 -577
- bpy/ops/file.py +0 -787
- bpy/ops/fluid.py +0 -224
- bpy/ops/font.py +0 -537
- bpy/ops/geometry.py +0 -219
- bpy/ops/gizmogroup.py +0 -52
- bpy/ops/gpencil.py +0 -3247
- bpy/ops/graph.py +0 -1392
- bpy/ops/grease_pencil.py +0 -724
- bpy/ops/image.py +0 -1261
- bpy/ops/import_anim.py +0 -58
- bpy/ops/import_curve.py +0 -26
- bpy/ops/import_mesh.py +0 -50
- bpy/ops/import_scene.py +0 -191
- bpy/ops/info.py +0 -140
- bpy/ops/lattice.py +0 -153
- bpy/ops/marker.py +0 -238
- bpy/ops/mask.py +0 -747
- bpy/ops/material.py +0 -47
- bpy/ops/mball.py +0 -168
- bpy/ops/mesh.py +0 -4168
- bpy/ops/nla.py +0 -756
- bpy/ops/node.py +0 -1894
- bpy/ops/object.py +0 -5343
- bpy/ops/outliner.py +0 -1172
- bpy/ops/paint.py +0 -1067
- bpy/ops/paintcurve.py +0 -148
- bpy/ops/palette.py +0 -123
- bpy/ops/particle.py +0 -635
- bpy/ops/pose.py +0 -763
- bpy/ops/poselib.py +0 -173
- bpy/ops/preferences.py +0 -849
- bpy/ops/ptcache.py +0 -114
- bpy/ops/render.py +0 -262
- bpy/ops/rigidbody.py +0 -244
- bpy/ops/scene.py +0 -675
- bpy/ops/screen.py +0 -846
- bpy/ops/script.py +0 -60
- bpy/ops/sculpt.py +0 -862
- bpy/ops/sculpt_curves.py +0 -94
- bpy/ops/sequencer.py +0 -2165
- bpy/ops/sound.py +0 -395
- bpy/ops/spreadsheet.py +0 -76
- bpy/ops/surface.py +0 -215
- bpy/ops/text.py +0 -863
- bpy/ops/text_editor.py +0 -31
- bpy/ops/texture.py +0 -68
- bpy/ops/transform.py +0 -1545
- bpy/ops/ui.py +0 -536
- bpy/ops/uilist.py +0 -74
- bpy/ops/uv.py +0 -1251
- bpy/ops/view2d.py +0 -329
- bpy/ops/view3d.py +0 -1392
- bpy/ops/wm.py +0 -4821
- bpy/ops/workspace.py +0 -115
- bpy/ops/world.py +0 -19
- bpy/path.py +0 -194
- bpy/props.py +0 -509
- bpy/types.py +0 -131806
- bpy/utils/__init__.py +0 -429
- bpy/utils/previews.py +0 -73
- bpy/utils/units.py +0 -61
- bpy_extras/__init__.py +0 -18
- bpy_extras/anim_utils.py +0 -108
- bpy_extras/asset_utils.py +0 -39
- bpy_extras/bmesh_utils.py +0 -20
- bpy_extras/extensions/junction_module.py +0 -48
- bpy_extras/id_map_utils.py +0 -28
- bpy_extras/image_utils.py +0 -42
- bpy_extras/io_utils.py +0 -165
- bpy_extras/keyconfig_utils.py +0 -28
- bpy_extras/mesh_utils.py +0 -91
- bpy_extras/node_shader_utils.py +0 -562
- bpy_extras/node_utils.py +0 -28
- bpy_extras/object_utils.py +0 -87
- bpy_extras/view3d_utils.py +0 -90
- bpy_extras/wm_utils/progress_report.py +0 -98
- bpy_restrict_state/__init__.py +0 -24
- bpy_types/__init__.py +0 -5189
- console_python/__init__.py +0 -71
- console_shell/__init__.py +0 -44
- fake_bpy_module-20231205.dist-info/METADATA +0 -175
- fake_bpy_module-20231205.dist-info/RECORD +0 -356
- freestyle/chainingiterators.py +0 -306
- freestyle/functions.py +0 -1270
- freestyle/predicates.py +0 -535
- freestyle/shaders.py +0 -872
- freestyle/types.py +0 -2409
- freestyle/utils/ContextFunctions.py +0 -127
- freestyle/utils/__init__.py +0 -246
- gpu/capabilities.py +0 -186
- gpu/matrix.py +0 -162
- gpu/platform.py +0 -54
- gpu/select.py +0 -15
- gpu/shader.py +0 -38
- gpu/state.py +0 -214
- gpu/texture.py +0 -18
- gpu/types.py +0 -698
- gpu_extras/batch.py +0 -25
- gpu_extras/presets.py +0 -43
- graphviz_export/__init__.py +0 -21
- idprop/types.py +0 -98
- imbuf/__init__.py +0 -44
- imbuf/types.py +0 -70
- keyingsets_builtins/__init__.py +0 -4028
- keyingsets_utils/__init__.py +0 -116
- mathutils/__init__.py +0 -2917
- mathutils/bvhtree.py +0 -124
- mathutils/geometry.py +0 -526
- mathutils/interpolate.py +0 -16
- mathutils/kdtree.py +0 -77
- mathutils/noise.py +0 -342
- nodeitems_builtins/__init__.py +0 -69
- nodeitems_utils/__init__.py +0 -86
- rna_info/__init__.py +0 -343
- rna_keymap_ui/__init__.py +0 -52
- rna_prop_ui/__init__.py +0 -109
- rna_xml/__init__.py +0 -53
- sys_info/__init__.py +0 -12
- /bl_console_utils/{__init__.py → __init__.pyi} +0 -0
- /bl_operators/bmesh/{__init__.py → __init__.pyi} +0 -0
- /bl_previews_utils/{__init__.py → __init__.pyi} +0 -0
- /bl_rna_utils/{__init__.py → __init__.pyi} +0 -0
- /bl_text_utils/{__init__.py → __init__.pyi} +0 -0
- /bpy_extras/extensions/{__init__.py → __init__.pyi} +0 -0
- /bpy_extras/wm_utils/{__init__.py → __init__.pyi} +0 -0
- {fake_bpy_module-20231205.dist-info → fake_bpy_module-20231207.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20231205.dist-info → fake_bpy_module-20231207.dist-info}/top_level.txt +0 -0
- /freestyle/{__init__.py → __init__.pyi} +0 -0
- /gpu/{__init__.py → __init__.pyi} +0 -0
- /gpu_extras/{__init__.py → __init__.pyi} +0 -0
- /idprop/{__init__.py → __init__.pyi} +0 -0
|
@@ -0,0 +1,610 @@
|
|
|
1
|
+
addon_utils/__init__.pyi,sha256=vD4emKw5XhhGQ6a0RglmRcOJIV1skMzNaPVKVliEURI,741
|
|
2
|
+
addon_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
animsys_refactor/__init__.pyi,sha256=zpjkSZnj55W-B1UDcCdaHEHNDPNzA1E4yikB8IxgeBE,587
|
|
4
|
+
animsys_refactor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
aud/__init__.pyi,sha256=DwCvUJWdwlfT_p_Ek-rVR_T-RuhKpjcs-9wXrPsRoZE,33720
|
|
6
|
+
aud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
bgl/__init__.pyi,sha256=FjB_tleUZg2aQBOSTPbV6H4nbdURW7-rRsBMv_fmlYA,110310
|
|
8
|
+
bgl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
bl_app_override/__init__.pyi,sha256=QDzojbEruXnMJ64HKGWbRdXbNl7PEvOxkItzqdF5vPE,438
|
|
10
|
+
bl_app_override/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
bl_app_override/helpers/__init__.pyi,sha256=bOFWfrJ8E79MMuyESvmQ8bM95OqHlFJ9IjrXZiIsDok,569
|
|
12
|
+
bl_app_override/helpers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
+
bl_app_template_utils/__init__.pyi,sha256=Zn4Q5_vPUQV4SnQqSvTsOlNYEHEoZr1rx1DZvcsYSIA,353
|
|
14
|
+
bl_app_template_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
+
bl_console_utils/__init__.pyi,sha256=qOGRa_N1-VEAf9cr60mvvxQMYSKNNSzuSQ0_TuSEq1I,97
|
|
16
|
+
bl_console_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
+
bl_console_utils/autocomplete/__init__.pyi,sha256=562X75V0Fm7o54YGqhBqE-SVgMYbuY4dBlI0noBGuZE,191
|
|
18
|
+
bl_console_utils/autocomplete/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
+
bl_console_utils/autocomplete/complete_calltip/__init__.pyi,sha256=AW7fGzddfUeEKYRROS2ktvB95v8xBv2xfNQHZ-UZtmk,372
|
|
20
|
+
bl_console_utils/autocomplete/complete_calltip/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
+
bl_console_utils/autocomplete/complete_import/__init__.pyi,sha256=_QdUTOj1qbGgzWilKaw-2VmBClB5WVixNbAmcwlnE6g,224
|
|
22
|
+
bl_console_utils/autocomplete/complete_import/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
+
bl_console_utils/autocomplete/complete_namespace/__init__.pyi,sha256=7_ctcFmQsIWC4WlDcwMk60Q3fzN6AsHjG-s8BFvSBIk,384
|
|
24
|
+
bl_console_utils/autocomplete/complete_namespace/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
+
bl_console_utils/autocomplete/intellisense/__init__.pyi,sha256=b60v0t56txcAZ4R9cW60VMqooCXj07PF4Q6rcYGvVJs,222
|
|
26
|
+
bl_console_utils/autocomplete/intellisense/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
+
bl_i18n_utils/__init__.pyi,sha256=IEV0Jzg3WOjK0RNVspJb7ZT-msXxCI7sKEYpjBNIE2Q,253
|
|
28
|
+
bl_i18n_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
+
bl_i18n_utils/bl_extract_messages/__init__.pyi,sha256=kaVfcFpWiEy1RnI7UtUJrkMk4uLWZegVUHR8uYBzpdM,1276
|
|
30
|
+
bl_i18n_utils/bl_extract_messages/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
+
bl_i18n_utils/merge_po/__init__.pyi,sha256=y_0lk6kQfjxrbYB0lvhpGa9Mw775Oxp2lHY7WrQCRi0,111
|
|
32
|
+
bl_i18n_utils/merge_po/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
+
bl_i18n_utils/settings/__init__.pyi,sha256=UavoaC2-UJ7CjqDB5aM6qkDwQYGVcMiUji7MFx8NZqI,851
|
|
34
|
+
bl_i18n_utils/settings/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
+
bl_i18n_utils/utils/__init__.pyi,sha256=SBGZg2IE-sFgaM1vmDI4GFlPipa8B-suR8a13uAQuzE,4233
|
|
36
|
+
bl_i18n_utils/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
+
bl_i18n_utils/utils_cli/__init__.pyi,sha256=B4HVhLVoEWcehXtMgQ8xGTKsbfoQlDgZzZ1RuN1_eRE,420
|
|
38
|
+
bl_i18n_utils/utils_cli/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
+
bl_i18n_utils/utils_languages_menu/__init__.pyi,sha256=_gqX_O3eE0AiLLCw9rz_A6q_LjGy-JaI4udOHR35niw,135
|
|
40
|
+
bl_i18n_utils/utils_languages_menu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
|
+
bl_i18n_utils/utils_rtl/__init__.pyi,sha256=U3u2cgQIuLogSl25uhiHs2s9DFK9UYMeXGg3_R1sQ0c,186
|
|
42
|
+
bl_i18n_utils/utils_rtl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
|
+
bl_keymap_utils/__init__.pyi,sha256=LYleQ7feuPNQVOh2y8SAfORQVb9uRW0G1jCdlugHVEg,208
|
|
44
|
+
bl_keymap_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
|
+
bl_keymap_utils/io/__init__.pyi,sha256=y4yZFHq6xL9t52t5oUsUqb31Qe1kJUOOfCuM5A5LOQU,684
|
|
46
|
+
bl_keymap_utils/io/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
|
+
bl_keymap_utils/keymap_from_toolbar/__init__.pyi,sha256=Dhx92_vVTtqHNYNH2voEyk0PL1gWvpXUHlLkTgGdeZY,164
|
|
48
|
+
bl_keymap_utils/keymap_from_toolbar/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
|
+
bl_keymap_utils/keymap_hierarchy/__init__.pyi,sha256=xYxsc7XSD-tq5Ng0nPdxSukEGL4dPx0q6q9WU0BKrAs,115
|
|
50
|
+
bl_keymap_utils/keymap_hierarchy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
+
bl_keymap_utils/platform_helpers/__init__.pyi,sha256=bV6Vq7p3iauNvol-urPJ4dUeElQAnZL5iUjYOcmnmpg,261
|
|
52
|
+
bl_keymap_utils/platform_helpers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
|
+
bl_keymap_utils/versioning/__init__.pyi,sha256=3yw6oHUQGFejTCnrsOY6IL9y78-EJz1VP4MD_nD6OiE,156
|
|
54
|
+
bl_keymap_utils/versioning/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
+
bl_math/__init__.pyi,sha256=jFSKwCJVEo3O0yrPDTeKwSWMJ3bAiKcMcS_7wm-ZusI,1597
|
|
56
|
+
bl_math/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
|
+
bl_operators/__init__.pyi,sha256=m2uPnqXPlLF9WdttwVQAQTkI3vose-ro5kptMqomcJ0,895
|
|
58
|
+
bl_operators/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
|
+
bl_operators/add_mesh_torus/__init__.pyi,sha256=sW6-uVCW2WoTcOdAcc8RAfqx07MECvLNyNcrtoKXZOI,2811
|
|
60
|
+
bl_operators/add_mesh_torus/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
|
+
bl_operators/anim/__init__.pyi,sha256=fhAzPjfQX5Q3otWo5RSz7W7BJ0sCTR7FhLcTJoXQpQs,15373
|
|
62
|
+
bl_operators/anim/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
|
+
bl_operators/assets/__init__.pyi,sha256=hJxtnkr5yc-3vtuyZuof3iVmhOkc6wAXvqqJW4Z_4Jo,7056
|
|
64
|
+
bl_operators/assets/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
65
|
+
bl_operators/bmesh/__init__.pyi,sha256=RqpKaBmg6ClJZrSrvnS72CwoyvtEOYtDxSIE85m-Gg8,98
|
|
66
|
+
bl_operators/bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
|
+
bl_operators/bmesh/find_adjacent/__init__.pyi,sha256=uWejsye_zUjdI2qfoLPAL5G3apIMghVriGHc-xYTUvw,675
|
|
68
|
+
bl_operators/bmesh/find_adjacent/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
+
bl_operators/clip/__init__.pyi,sha256=oQzdJjaQW6txTQ81j-5BXY-UirIXdBA3RL6fbUpZwcY,22515
|
|
70
|
+
bl_operators/clip/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
|
+
bl_operators/console/__init__.pyi,sha256=o3pVHhR4VaulxUFx8XCmZoaDrpyoMfG_T-_33hbA-Jc,10844
|
|
72
|
+
bl_operators/console/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
|
+
bl_operators/constraint/__init__.pyi,sha256=7c5MFeWTJKEHTqeG62Wfl3UXbBCd6Na72_E9D3CES-4,8884
|
|
74
|
+
bl_operators/constraint/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
|
+
bl_operators/file/__init__.pyi,sha256=a68ITxhLzS2wbsoBJvI2a0c6RYE1ET8c9S0B7o4Ko20,6721
|
|
76
|
+
bl_operators/file/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
|
+
bl_operators/freestyle/__init__.pyi,sha256=rHtmZexB425ggvg9ORR6LZAZgV9Vb28gsx79U7JC3_M,9004
|
|
78
|
+
bl_operators/freestyle/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
|
+
bl_operators/geometry_nodes/__init__.pyi,sha256=D2k9RllnXM9mSKxDj0AAebFw3SGDtTIkAud6E5lBsuI,31083
|
|
80
|
+
bl_operators/geometry_nodes/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
|
+
bl_operators/image/__init__.pyi,sha256=1qd2Fvq9xt8W0ds4nxVBxujuoRIctd7oihRWt8gqO4I,6503
|
|
82
|
+
bl_operators/image/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
|
+
bl_operators/mesh/__init__.pyi,sha256=97gs6Qv79XWl5aeDnWUfJ373I24hqkGeSbujv7CuEcU,6714
|
|
84
|
+
bl_operators/mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
85
|
+
bl_operators/node/__init__.pyi,sha256=oSMXomCaEiRnXazkwZfCxXo2-W-GCkvtQ7EJNYGSmKc,22068
|
|
86
|
+
bl_operators/node/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
87
|
+
bl_operators/object/__init__.pyi,sha256=gYj2kEj_CexVfsTLtnrBz3-PasMuVuO47CjgC7C1HKc,38108
|
|
88
|
+
bl_operators/object/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
89
|
+
bl_operators/object_align/__init__.pyi,sha256=n5Bs1_FrtgiwXuLf57fnkDrDXQpk8xYb7gLBeJhta_I,2572
|
|
90
|
+
bl_operators/object_align/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
|
+
bl_operators/object_quick_effects/__init__.pyi,sha256=cq5WkMPLxZhF6GODgss9PbNH7xhhpF7UU9F4XgFr26Y,9160
|
|
92
|
+
bl_operators/object_quick_effects/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
93
|
+
bl_operators/object_randomize_transform/__init__.pyi,sha256=zKj5wWfROJlpjsq6kUoShsjytRApq-wiCp9Xou9Y608,2413
|
|
94
|
+
bl_operators/object_randomize_transform/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
|
+
bl_operators/presets/__init__.pyi,sha256=DBfpGruJhC53Lk--ps4ViPc7tSRQVPi9Gb_U6Lxz-nE,45686
|
|
96
|
+
bl_operators/presets/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
97
|
+
bl_operators/rigidbody/__init__.pyi,sha256=YVYQ_A7P1lieXcq0fla20NMY12bq2Wa027Lc2lCl4P4,6723
|
|
98
|
+
bl_operators/rigidbody/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
99
|
+
bl_operators/screen_play_rendered_anim/__init__.pyi,sha256=FLsNWbqh061srFu8ZKpCg9AoDVieIaswJk3ERhzZ4Po,2263
|
|
100
|
+
bl_operators/screen_play_rendered_anim/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
101
|
+
bl_operators/sequencer/__init__.pyi,sha256=KyG2ci82dVf0gLCTTqSkKQEvsobyxpiJ4NdrBmU2fOU,12106
|
|
102
|
+
bl_operators/sequencer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
103
|
+
bl_operators/spreadsheet/__init__.pyi,sha256=ven4DP_hPn03CR6P6_rqT1mkY26dBV3pDeZSvBBJlhk,2416
|
|
104
|
+
bl_operators/spreadsheet/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
105
|
+
bl_operators/userpref/__init__.pyi,sha256=JlkGMzC6R1SKPBGwTrNw7NPFULgW68G1f5h2QN-IRPk,55939
|
|
106
|
+
bl_operators/userpref/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
107
|
+
bl_operators/uvcalc_follow_active/__init__.pyi,sha256=zRynpXKuAfqEwi1bFkjIImiv-mrwxXNMerli_Wi_v6s,2485
|
|
108
|
+
bl_operators/uvcalc_follow_active/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
|
+
bl_operators/uvcalc_lightmap/__init__.pyi,sha256=QhQzB8a4vyFWNnbs3y7gZY63anjmBrf4M18c7BvRP5w,3105
|
|
110
|
+
bl_operators/uvcalc_lightmap/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
|
+
bl_operators/uvcalc_transform/__init__.pyi,sha256=PhmFQ9z_O_Z3Z-iGNyb7n20Fur9oPcPUzzouzm0ZMxU,5809
|
|
112
|
+
bl_operators/uvcalc_transform/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
113
|
+
bl_operators/vertexpaint_dirt/__init__.pyi,sha256=m3C6es08N3AzLn18U6lU2P4Crsm4Jfo1paZG0JZVTWw,2491
|
|
114
|
+
bl_operators/vertexpaint_dirt/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
|
+
bl_operators/view3d/__init__.pyi,sha256=esW58HstVT2n-kxe9Opf8Y96pMxkR7zcZ12iWalxQec,11488
|
|
116
|
+
bl_operators/view3d/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
117
|
+
bl_operators/wm/__init__.pyi,sha256=zU1lAaQRZ8luRf2PJP3euF_S1cG7WUz9H0CivRTV2oE,100394
|
|
118
|
+
bl_operators/wm/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
119
|
+
bl_previews_utils/__init__.pyi,sha256=JILVVvj9rfHf6QQP0IRbkKeY0rSyXjhbwBNLtbFY2gQ,103
|
|
120
|
+
bl_previews_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
|
+
bl_previews_utils/bl_previews_render/__init__.pyi,sha256=WLs14QVyEFuIjBRMzw0_ofqFV1In1ML7UNlrIhn7k5g,590
|
|
122
|
+
bl_previews_utils/bl_previews_render/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
123
|
+
bl_rna_utils/__init__.pyi,sha256=_ZedP0Rq98G84OMuo8xTNA45-U4caz9i1nPCLr8u1SI,94
|
|
124
|
+
bl_rna_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
125
|
+
bl_rna_utils/data_path/__init__.pyi,sha256=BW1_XDBeortPqZBAaJcU02LzoUtQf16g55ap2ivfGqY,286
|
|
126
|
+
bl_rna_utils/data_path/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
127
|
+
bl_text_utils/__init__.pyi,sha256=mA4rhlhHGbhXjawE0_uzcLQZhw4Rj4xm5DsFzDaoR0I,100
|
|
128
|
+
bl_text_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
|
+
bl_text_utils/external_editor/__init__.pyi,sha256=5Nuo8o17p8djL8yMnRuDIvFEXGPlvPddQrWlkZD6IBs,149
|
|
130
|
+
bl_text_utils/external_editor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
|
+
bl_ui/__init__.pyi,sha256=KZLsMS7-ZlMC85RClVxXJA6M0g5cxktVLKOmsIw3LAc,10382
|
|
132
|
+
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
133
|
+
bl_ui/asset_shelf/__init__.pyi,sha256=4uzMddV5uYdHeGzUgUra82g7RrfPXJmzqdC5-Re_ebQ,2438
|
|
134
|
+
bl_ui/asset_shelf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
135
|
+
bl_ui/generic_ui_list/__init__.pyi,sha256=6ZUw9no-eHG_-cB1lX0B-4kQ7t_fWmBTZ2x6bGVJi8o,7756
|
|
136
|
+
bl_ui/generic_ui_list/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
137
|
+
bl_ui/node_add_menu/__init__.pyi,sha256=cc98yWR2ytD9kXtmN9WvDd-QTvCtvegDUfZw6jBRCnI,3105
|
|
138
|
+
bl_ui/node_add_menu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
139
|
+
bl_ui/node_add_menu_compositor/__init__.pyi,sha256=0VU4M3HaQwXjDSZznnieviWizYH1ZoWxKR7XPUaSM4I,47273
|
|
140
|
+
bl_ui/node_add_menu_compositor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
141
|
+
bl_ui/node_add_menu_geometry/__init__.pyi,sha256=WGbhYrKezlyxgj3GSjjenPF7Xd1Gp4XYHYmrGoEq9-Y,107771
|
|
142
|
+
bl_ui/node_add_menu_geometry/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
143
|
+
bl_ui/node_add_menu_shader/__init__.pyi,sha256=XamxbcbI67mOu55tSSdh1yF8oW9LKyTDeZzTOnMT0I8,26609
|
|
144
|
+
bl_ui/node_add_menu_shader/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
145
|
+
bl_ui/node_add_menu_texture/__init__.pyi,sha256=3UAUCcCvm11FjkiC0h9DbeUWljAfVedL4XyQoZsoaUs,23459
|
|
146
|
+
bl_ui/node_add_menu_texture/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
147
|
+
bl_ui/properties_animviz/__init__.pyi,sha256=hXZtK7HCKvNoA1WfR-rMABUjLxTfvMW6crZ1h6AvWkw,584
|
|
148
|
+
bl_ui/properties_animviz/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
149
|
+
bl_ui/properties_collection/__init__.pyi,sha256=Otm0L6ZiYwYfWiFNgLBBKDB-_EKDaagKvVz8PV3gVes,13060
|
|
150
|
+
bl_ui/properties_collection/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
151
|
+
bl_ui/properties_constraint/__init__.pyi,sha256=MAb6QQaZD2gwlzcLheclOdNsE9HM4cS9XsdCgeJXiU8,383489
|
|
152
|
+
bl_ui/properties_constraint/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
153
|
+
bl_ui/properties_data_armature/__init__.pyi,sha256=5vKfJ01EmHO3CH6G9ADo8CKDD0APGwp3_hi5vxp37Is,28047
|
|
154
|
+
bl_ui/properties_data_armature/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
155
|
+
bl_ui/properties_data_bone/__init__.pyi,sha256=ArMvVi4RrPRYq2oyuUn9CBDMhcXSihj_8fJ2-HJnrRI,25400
|
|
156
|
+
bl_ui/properties_data_bone/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
157
|
+
bl_ui/properties_data_camera/__init__.pyi,sha256=vkDRQZW7SAM1AWZRqs3OlHHSLDUcBVMKyhsbeqixW8k,37108
|
|
158
|
+
bl_ui/properties_data_camera/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
159
|
+
bl_ui/properties_data_curve/__init__.pyi,sha256=vhCb9XX-ezJRODjteIwszglIZFFU6mBndPLW8qpGZZQ,39011
|
|
160
|
+
bl_ui/properties_data_curve/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
|
+
bl_ui/properties_data_curves/__init__.pyi,sha256=BdjgKRx0aqRVkgm7Wq2QpcCGnaQzHEWuo1K83oGSUzs,15434
|
|
162
|
+
bl_ui/properties_data_curves/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
163
|
+
bl_ui/properties_data_empty/__init__.pyi,sha256=7oQjBADZig3l51zN6gwMTW0_aCgAwzrkCEwGhB1QO2c,5193
|
|
164
|
+
bl_ui/properties_data_empty/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
165
|
+
bl_ui/properties_data_gpencil/__init__.pyi,sha256=EtkvBjACqX8zw0Bo8KOldCTniM7iLtfr2_vDlkkTK7o,46499
|
|
166
|
+
bl_ui/properties_data_gpencil/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
167
|
+
bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=ef48vfNovxf2dge342XC4AYYB4KceOKxhDgiSMNtXu4,7876
|
|
168
|
+
bl_ui/properties_data_grease_pencil/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
169
|
+
bl_ui/properties_data_lattice/__init__.pyi,sha256=QHWb7j6rrxc_KN1oOxVDj9hJMkoPW1pnYaCtkQiNn7A,7810
|
|
170
|
+
bl_ui/properties_data_lattice/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
171
|
+
bl_ui/properties_data_light/__init__.pyi,sha256=eNAUa0Yx2Zikk35FFH-rg2cuTwMwk1DcX0qoBnF1GNo,25759
|
|
172
|
+
bl_ui/properties_data_light/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
173
|
+
bl_ui/properties_data_lightprobe/__init__.pyi,sha256=32L_NlF67pnro-ysoz0B0eCw80EZgl_BP5Js-xMuzFE,15488
|
|
174
|
+
bl_ui/properties_data_lightprobe/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
175
|
+
bl_ui/properties_data_mesh/__init__.pyi,sha256=lQEj2KnfH0whlnbGPA1JTbxBhXelTUtfWXwhDNhcZUk,50095
|
|
176
|
+
bl_ui/properties_data_mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
177
|
+
bl_ui/properties_data_metaball/__init__.pyi,sha256=4ABqXnn-1Q5HjLkT2C0Ybuefg5be8j2YrjTY4QXiCS0,12850
|
|
178
|
+
bl_ui/properties_data_metaball/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
179
|
+
bl_ui/properties_data_modifier/__init__.pyi,sha256=GM5-btWDyDhkTlzw5w3UzgouRfkXpKGR_IcbIovYJVI,22196
|
|
180
|
+
bl_ui/properties_data_modifier/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
181
|
+
bl_ui/properties_data_pointcloud/__init__.pyi,sha256=r86lNXu7L0jrtuiksIY8IzAR0X0ydKRG3K_-3uDUfGA,13056
|
|
182
|
+
bl_ui/properties_data_pointcloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
183
|
+
bl_ui/properties_data_shaderfx/__init__.pyi,sha256=E4kmdRQPHTjiZvFuSZ-6AEJK5AyNUCYQjLL0qN2Hat0,2649
|
|
184
|
+
bl_ui/properties_data_shaderfx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
185
|
+
bl_ui/properties_data_speaker/__init__.pyi,sha256=TqM5uk1uVozW7G3gXgIq2SYpZNfMlq_1srZbJ-sxLHs,12893
|
|
186
|
+
bl_ui/properties_data_speaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
187
|
+
bl_ui/properties_data_volume/__init__.pyi,sha256=HwUfh1it-HLaFCVcZbqd1TI_y_DSExjoDYMsZKw8kf4,20227
|
|
188
|
+
bl_ui/properties_data_volume/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
189
|
+
bl_ui/properties_freestyle/__init__.pyi,sha256=1sTTXt95YnUnJVXwwh3RlG9uGbADLQcEHngGwaip6do,67052
|
|
190
|
+
bl_ui/properties_freestyle/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
191
|
+
bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=NWM1p3qfNgBZZyVY_0UtPwcbwRviRh-7I9IoRuYmInc,34620
|
|
192
|
+
bl_ui/properties_grease_pencil_common/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
193
|
+
bl_ui/properties_mask_common/__init__.pyi,sha256=2iskIGCRAOoyUIgD2DSUGz4DlscxdamWIO7-OXH81GY,19251
|
|
194
|
+
bl_ui/properties_mask_common/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
195
|
+
bl_ui/properties_material/__init__.pyi,sha256=IuFFYiZBUAELyCPzYYQCPmgn_P3dyISxMTt-GdV1Mo8,38231
|
|
196
|
+
bl_ui/properties_material/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
197
|
+
bl_ui/properties_material_gpencil/__init__.pyi,sha256=ubPGAa_4RHKbIU7aJCjQKJWPmYku6wl4p1BVEy5LBpM,25919
|
|
198
|
+
bl_ui/properties_material_gpencil/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
199
|
+
bl_ui/properties_object/__init__.pyi,sha256=8RN66ADmP_Wrh9H2RglG1b58fI2NuZlYTdhucmf-ABA,35270
|
|
200
|
+
bl_ui/properties_object/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
201
|
+
bl_ui/properties_output/__init__.pyi,sha256=rF2zpeGtZ-5MOSovvqmbUzV1qpJ5u5CE_Wy5WrHl4cE,46887
|
|
202
|
+
bl_ui/properties_output/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
203
|
+
bl_ui/properties_paint_common/__init__.pyi,sha256=L_kky7fDAyAEQlEQE-bXIgeMu03HSu3Pk6C_t6OAJkQ,12448
|
|
204
|
+
bl_ui/properties_paint_common/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
205
|
+
bl_ui/properties_particle/__init__.pyi,sha256=Ah35eZs3F2nfrbpJ6OpWrjad43zebUd8ixOKyDvNDwU,134223
|
|
206
|
+
bl_ui/properties_particle/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
207
|
+
bl_ui/properties_physics_cloth/__init__.pyi,sha256=cy2pvUN3xpUihrvrc3tSjETefIsV-gINwJqcv97GoHE,36729
|
|
208
|
+
bl_ui/properties_physics_cloth/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
209
|
+
bl_ui/properties_physics_common/__init__.pyi,sha256=yYdVrzg_KLjONtQ3jqtKO5OjvUTH2B0sARhJODW0UxQ,3301
|
|
210
|
+
bl_ui/properties_physics_common/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
211
|
+
bl_ui/properties_physics_dynamicpaint/__init__.pyi,sha256=42CodrIY_hCxfiY13X6MCnPnNy9v6iYhMXxYxlAbZoU,67725
|
|
212
|
+
bl_ui/properties_physics_dynamicpaint/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
|
+
bl_ui/properties_physics_field/__init__.pyi,sha256=27mg2OmDZXW-bBzJb0RwMi0ELT_D4jk10c38kHflxrM,27299
|
|
214
|
+
bl_ui/properties_physics_field/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
215
|
+
bl_ui/properties_physics_fluid/__init__.pyi,sha256=WN-88iekW4FxkomoGBDGCcMFK3V-rNx8BVatdqLQpns,91432
|
|
216
|
+
bl_ui/properties_physics_fluid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
217
|
+
bl_ui/properties_physics_geometry_nodes/__init__.pyi,sha256=q4oBOtWg3m-biv2zUnRIlr8UxQ8bTE5-rOSkAq2zcTo,2608
|
|
218
|
+
bl_ui/properties_physics_geometry_nodes/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
219
|
+
bl_ui/properties_physics_rigidbody/__init__.pyi,sha256=X1IHOqNYBbQ2uTeOI2gWI3IvGrgC9mxIQ3IwKidoZRc,20882
|
|
220
|
+
bl_ui/properties_physics_rigidbody/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
221
|
+
bl_ui/properties_physics_rigidbody_constraint/__init__.pyi,sha256=WLyqJRbA3wtKGfWdfyPBr0rp9PZyKPsRE7lQ0Vx3_oE,33684
|
|
222
|
+
bl_ui/properties_physics_rigidbody_constraint/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
223
|
+
bl_ui/properties_physics_softbody/__init__.pyi,sha256=9ESPb00wP8RmXYJZd7w67WShIfDtj3KRbOjdGIfNvTQ,39254
|
|
224
|
+
bl_ui/properties_physics_softbody/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
225
|
+
bl_ui/properties_render/__init__.pyi,sha256=zyw3dKHEIatICLQVVTvOO_uDWvfmE3zObN3rnzsC-WE,155414
|
|
226
|
+
bl_ui/properties_render/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
227
|
+
bl_ui/properties_scene/__init__.pyi,sha256=_aDGoZdauE3uwAxypX-bJ0fAwzaLeps6-NqQ8ZklYfM,35377
|
|
228
|
+
bl_ui/properties_scene/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
229
|
+
bl_ui/properties_texture/__init__.pyi,sha256=p8O3Rc2ItvtKKdsy_QfQ8clDasCKngJyzRAtAFdciD8,67250
|
|
230
|
+
bl_ui/properties_texture/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
231
|
+
bl_ui/properties_view_layer/__init__.pyi,sha256=-jvR6QD-OPHODqMhaNt7vKckqdhJBUT576EreY-pckk,42821
|
|
232
|
+
bl_ui/properties_view_layer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
233
|
+
bl_ui/properties_workspace/__init__.pyi,sha256=LoZipGH1VPIDIjJI0QOOaSe6sKFYspJSk-YuHs2kFW4,7789
|
|
234
|
+
bl_ui/properties_workspace/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
235
|
+
bl_ui/properties_world/__init__.pyi,sha256=eis2G7j6rWR-N6I3yfYGXNpdl9S0IBCeChjSCNa6Gkg,18110
|
|
236
|
+
bl_ui/properties_world/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
237
|
+
bl_ui/space_clip/__init__.pyi,sha256=tHiWlgJh5bryUgeNUJUq7gCGWgX_4ysaJ4nKN4EC_DU,176498
|
|
238
|
+
bl_ui/space_clip/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
239
|
+
bl_ui/space_console/__init__.pyi,sha256=mnlFf1no9dbhrFsHLSFtVagSfv4i-3spip2azV71Gqs,15123
|
|
240
|
+
bl_ui/space_console/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
241
|
+
bl_ui/space_dopesheet/__init__.pyi,sha256=1MsFjIbkic40nLzFuaEltQQbSE_lZeHvEBnXMIRTOLA,67050
|
|
242
|
+
bl_ui/space_dopesheet/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
243
|
+
bl_ui/space_filebrowser/__init__.pyi,sha256=RA-R7EKHG81KM7TeKsDc5hBd_4t0sstUJ4-Y9e693Kg,74224
|
|
244
|
+
bl_ui/space_filebrowser/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
245
|
+
bl_ui/space_graph/__init__.pyi,sha256=MoEMwLijmaZVc1ZCZ2DlOXl8L_P5vT17lLfKXDTp4rM,50319
|
|
246
|
+
bl_ui/space_graph/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
247
|
+
bl_ui/space_image/__init__.pyi,sha256=ws9hig6LYvZMHlhrYxK7sDt6G3dJywuOgILe2u24WSU,186756
|
|
248
|
+
bl_ui/space_image/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
249
|
+
bl_ui/space_info/__init__.pyi,sha256=Fco_Ioi1ui7FpCoNQqOji4wCo0QJRlP73ZWqqPNKXM4,15083
|
|
250
|
+
bl_ui/space_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
251
|
+
bl_ui/space_nla/__init__.pyi,sha256=2kxXeN7jsOgqozoJQS3ta4BF4hCBA_C4-58bXaRhHAk,42971
|
|
252
|
+
bl_ui/space_nla/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
253
|
+
bl_ui/space_node/__init__.pyi,sha256=A7RvBt77TekhZIIYKdFb4zkGtwUlhts_HllgHdP_DN4,79963
|
|
254
|
+
bl_ui/space_node/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
255
|
+
bl_ui/space_outliner/__init__.pyi,sha256=5Hq2c5GQ8Kg6AXXW_vKS8ilY63v4bm9laMXnXUlCTm4,35608
|
|
256
|
+
bl_ui/space_outliner/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
257
|
+
bl_ui/space_properties/__init__.pyi,sha256=OahVuKARrR2bPoKzF4yhuoROla2Yj1l80D8iE13hcbQ,6901
|
|
258
|
+
bl_ui/space_properties/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
259
|
+
bl_ui/space_sequencer/__init__.pyi,sha256=79RZOOMfrwgqOMWq2M_WjeiSk9GVeo8sCNThsEejo60,189776
|
|
260
|
+
bl_ui/space_sequencer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
261
|
+
bl_ui/space_spreadsheet/__init__.pyi,sha256=G-XsUnWKDlkAUY3a5A3m_PJ2xYX-Hd8h7NqKz1cLQUg,2882
|
|
262
|
+
bl_ui/space_spreadsheet/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
263
|
+
bl_ui/space_statusbar/__init__.pyi,sha256=sFTWf4N9IbqaBon__Wl4yv9RLKWT2jhzoUCFmGw3E_M,2287
|
|
264
|
+
bl_ui/space_statusbar/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
265
|
+
bl_ui/space_text/__init__.pyi,sha256=7gz3WbNdtROOnqM_wqrGTxpMwypxGgbIlEs53QzNOOY,39787
|
|
266
|
+
bl_ui/space_text/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
267
|
+
bl_ui/space_time/__init__.pyi,sha256=y9Ib2V3_2ke_1rPmR-_jKnTsR0efNjuzb71eo97RZoU,18201
|
|
268
|
+
bl_ui/space_time/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
269
|
+
bl_ui/space_toolsystem_common/__init__.pyi,sha256=8UbViBtm9GAVYzPPHnrlZ-AameCS8nJmrYI1YNV0bH8,5577
|
|
270
|
+
bl_ui/space_toolsystem_common/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
271
|
+
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=WiANUvODMZ1pHEcpCmJlUznof4AlkCIAFPvzYJ432YI,22335
|
|
272
|
+
bl_ui/space_toolsystem_toolbar/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
273
|
+
bl_ui/space_topbar/__init__.pyi,sha256=VBCgWvIud2YSJ_bnYXJIx1lLuzmEDfX22UHkg4-Y65Y,65543
|
|
274
|
+
bl_ui/space_topbar/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
275
|
+
bl_ui/space_userpref/__init__.pyi,sha256=G6znJCYIqFxGhYQEZvtFbPLy21wBD1kULbvB_cvt8WA,220416
|
|
276
|
+
bl_ui/space_userpref/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
277
|
+
bl_ui/space_view3d/__init__.pyi,sha256=YtY2EjJgJ1ql5WkJxesbb0QZ5B50owqMMhyHUX42DmM,644224
|
|
278
|
+
bl_ui/space_view3d/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
279
|
+
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=a5feb0tvktjo-udAI9j7W6OjoCFFeVoHMQNw1P1nUxE,244079
|
|
280
|
+
bl_ui/space_view3d_toolbar/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
281
|
+
bl_ui/utils/__init__.pyi,sha256=GFZxoxA7Kqq5GlPCROlxHTZvZ0ZQdQ3anCCOu_1PQ00,629
|
|
282
|
+
bl_ui/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
283
|
+
bl_ui_utils/__init__.pyi,sha256=NueTVhcSnz7Cgzo_iG7uvCHf8HbOarIj8-uz79zg-LA,120
|
|
284
|
+
bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
285
|
+
bl_ui_utils/bug_report_url/__init__.pyi,sha256=dBZLU9VZ8QJUKvraIUG1S9DJf-FfLhckzBvNRD4gKa0,141
|
|
286
|
+
bl_ui_utils/bug_report_url/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
287
|
+
bl_ui_utils/layout/__init__.pyi,sha256=nFLBuf4NGXY_GnGsW3QJbJY2vZyKmPyGGm8ywYiOMiE,141
|
|
288
|
+
bl_ui_utils/layout/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
289
|
+
blend_render_info/__init__.pyi,sha256=iIUAHJK5R1r849byPdxW2lrQGefu5sfA8LjtxKuihEk,213
|
|
290
|
+
blend_render_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
291
|
+
blf/__init__.pyi,sha256=6nE-el2L5uOZpxcu_rni-BbHNqmioOsCIGhBipmEnXc,5223
|
|
292
|
+
blf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
293
|
+
bmesh/__init__.pyi,sha256=ueuryJrJBct5zFPxf5JTBsPpz3rh0K_XFgZPX5SEhOY,1325
|
|
294
|
+
bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
295
|
+
bmesh/geometry/__init__.pyi,sha256=YCriOMjIVXs9POelcPyph6GMFG3KQaGg67qnApzGAZc,625
|
|
296
|
+
bmesh/geometry/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
297
|
+
bmesh/ops/__init__.pyi,sha256=z9EJO5fQwFG6uLBp7guR86L70Dr8Ko5QifJP_4595tY,77279
|
|
298
|
+
bmesh/ops/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
299
|
+
bmesh/types/__init__.pyi,sha256=Jy5AV8xe4_4o9J7Y6I1QPsrXve41naWKWdC4cweSMCs,37065
|
|
300
|
+
bmesh/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
301
|
+
bmesh/utils/__init__.pyi,sha256=Zq-n06AUnuxrVpT9RQGaGyY4E16UesGsNeePnhik57w,6543
|
|
302
|
+
bmesh/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
303
|
+
bpy/__init__.pyi,sha256=fZI50Y8aiVeXoSwXQwP7I3lnZpRBMPM9vl2XFEHNmAQ,324
|
|
304
|
+
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
305
|
+
bpy/app/__init__.pyi,sha256=pf31M4rSg5F5CpLyGdFG20dkMrMXBQzAH1lEGau5Mzg,9478
|
|
306
|
+
bpy/app/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
307
|
+
bpy/app/handlers/__init__.pyi,sha256=w-3lbeY4grEb-CpZtk5nMQ45aneqMLUn27P7UchPT2Y,5400
|
|
308
|
+
bpy/app/handlers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
309
|
+
bpy/app/icons/__init__.pyi,sha256=jeRRT--nG3wifgfDPtShnENiqGun5JB40rjF3xzSOB4,1154
|
|
310
|
+
bpy/app/icons/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
311
|
+
bpy/app/timers/__init__.pyi,sha256=tRwCXq2SNUtb8dgswSL5eG0dmF4iq3bC7hZVSn5qX7s,1473
|
|
312
|
+
bpy/app/timers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
313
|
+
bpy/app/translations/__init__.pyi,sha256=sufofHqcHY64ZzC8sDeTV6USzOrJINAbxNeFSgk7y2Q,4512
|
|
314
|
+
bpy/app/translations/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
315
|
+
bpy/msgbus/__init__.pyi,sha256=_Wjy3pK_1bSGLACcS6i9nw4zR7BAEjjwRiaKu2mhj_k,1666
|
|
316
|
+
bpy/msgbus/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
317
|
+
bpy/ops/__init__.pyi,sha256=5ZFwM2hwk2m-_euZPkiVjwfi1LDBOxpSV9Sre_P9fWM,1751
|
|
318
|
+
bpy/ops/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
319
|
+
bpy/ops/action/__init__.pyi,sha256=8YFm2Fmch8zMUmLNqXcws6S3S4v33OQre5yulSOkbvo,29657
|
|
320
|
+
bpy/ops/action/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
321
|
+
bpy/ops/anim/__init__.pyi,sha256=KA3mJAtylmyUKBveIlXTTxzLQDjV2nPMntJ1kSN5i3o,38821
|
|
322
|
+
bpy/ops/anim/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
323
|
+
bpy/ops/armature/__init__.pyi,sha256=FvdZXPccIksuj6PC_tGPR-QMcXPtSe077iXh60LYqLo,34363
|
|
324
|
+
bpy/ops/armature/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
325
|
+
bpy/ops/asset/__init__.pyi,sha256=qyn8vI690LMeHKVo0i_DHANueg3UQ_r7weNC9336p1c,16046
|
|
326
|
+
bpy/ops/asset/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
327
|
+
bpy/ops/boid/__init__.pyi,sha256=j8qs5zYsouAWhqKy8kACXA29j3AVjSyotYLwoeATf-w,4303
|
|
328
|
+
bpy/ops/boid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
329
|
+
bpy/ops/brush/__init__.pyi,sha256=T4E54xYbSzZurZe_WUxxROSe7HhAOaP0f46Iffis7XM,6258
|
|
330
|
+
bpy/ops/brush/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
331
|
+
bpy/ops/buttons/__init__.pyi,sha256=cWaG5P6sVWf9lFfL8i7fer8WdLZ9v24QXLMBMz9FqFw,14197
|
|
332
|
+
bpy/ops/buttons/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
333
|
+
bpy/ops/cachefile/__init__.pyi,sha256=CKlZNGXNYSbnr5DxTUh6vw3-D6GKdPVfS1haJncanTs,13718
|
|
334
|
+
bpy/ops/cachefile/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
335
|
+
bpy/ops/camera/__init__.pyi,sha256=di6e_tw4wOWE_PKBac7Zbhgc5kgGkaQjqxECLVm8XBg,2884
|
|
336
|
+
bpy/ops/camera/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
337
|
+
bpy/ops/clip/__init__.pyi,sha256=E-KkkKcuSSeiZ3uWKuL2Ziw-6zSnhTAih-cuMgdPQkw,75382
|
|
338
|
+
bpy/ops/clip/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
339
|
+
bpy/ops/cloth/__init__.pyi,sha256=JjRy_ePCG8z7VtHvFqYBHwfaWIUdWLSLN46Su0nLgIU,1352
|
|
340
|
+
bpy/ops/cloth/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
341
|
+
bpy/ops/collection/__init__.pyi,sha256=kTrBNy4iE3zcMsNHwCMsuX_DB2FRfxxZDbC79PEpaHA,3671
|
|
342
|
+
bpy/ops/collection/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
343
|
+
bpy/ops/console/__init__.pyi,sha256=VTjMFZcC-16aPoAOdaJadVE0x7UBqQFo820ljg4Naz0,14642
|
|
344
|
+
bpy/ops/console/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
345
|
+
bpy/ops/constraint/__init__.pyi,sha256=CVsgll2E-0kWOOXsHATSzcPfLrHuP2MfinBnm2TUBSQ,18061
|
|
346
|
+
bpy/ops/constraint/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
347
|
+
bpy/ops/curve/__init__.pyi,sha256=smOKyWV0ew2kShTc7T11X24QOe-YK6K8sLCJCU_M-3k,43928
|
|
348
|
+
bpy/ops/curve/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
349
|
+
bpy/ops/curves/__init__.pyi,sha256=Z371fRj5RaOPoBRXL4vl6EANNuTGLed7tgTUyMa4Jp0,10265
|
|
350
|
+
bpy/ops/curves/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
351
|
+
bpy/ops/cycles/__init__.pyi,sha256=9L_spU4y9ri4fyFpLURh-trT0FbPIGPvnGpA_17ZpAw,3284
|
|
352
|
+
bpy/ops/cycles/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
353
|
+
bpy/ops/dpaint/__init__.pyi,sha256=FFoIQfGDcLt_QfEcinly56jC4mzINKlqhTTpFvr1GSI,2956
|
|
354
|
+
bpy/ops/dpaint/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
355
|
+
bpy/ops/ed/__init__.pyi,sha256=pyEVIAKW33rM4kGb5BIumY-78nzpr8CejNZ-XLQaQx0,12346
|
|
356
|
+
bpy/ops/ed/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
357
|
+
bpy/ops/export_anim/__init__.pyi,sha256=Adx0C-6mhi3VzxZV5iH67ZjZDd0FMfpASSjdhDQn44c,2713
|
|
358
|
+
bpy/ops/export_anim/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
|
+
bpy/ops/export_mesh/__init__.pyi,sha256=11NOIPobcwdRqD76IeoH89VGA7US90TO26ep2H6fq1Q,3455
|
|
360
|
+
bpy/ops/export_mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
361
|
+
bpy/ops/export_scene/__init__.pyi,sha256=0elERxkpds5lThgbZlyDnef467XpaXoV0JMdS06jCJU,49770
|
|
362
|
+
bpy/ops/export_scene/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
363
|
+
bpy/ops/file/__init__.pyi,sha256=V23XlNnughg1nruzSBxAYDSuWOaj1MjJzP6Cn5TpNhs,33289
|
|
364
|
+
bpy/ops/file/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
365
|
+
bpy/ops/fluid/__init__.pyi,sha256=-Ok3LM1Wb9G6H2wt5xcC8-gkfQi6jCAv5FFhdGy_7LY,7757
|
|
366
|
+
bpy/ops/fluid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
|
+
bpy/ops/font/__init__.pyi,sha256=yiPivTFjYgsy11aSwpRWTNjAn33-OZwqooTyyCmrpww,24130
|
|
368
|
+
bpy/ops/font/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
369
|
+
bpy/ops/geometry/__init__.pyi,sha256=uT8DjxcqdKN_x31fv5iMLBgSuBJLyZbI0mk0_60PQlc,8972
|
|
370
|
+
bpy/ops/geometry/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
371
|
+
bpy/ops/gizmogroup/__init__.pyi,sha256=QyxzRglgqeuLoNGfjUsDCSQ2MoF-eIB2XLjmzmJk-BQ,2305
|
|
372
|
+
bpy/ops/gizmogroup/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
373
|
+
bpy/ops/gpencil/__init__.pyi,sha256=L-iq11xAoHUy4xsJ6UJoyj5x_eOATT4L35pdgGG6AVw,140437
|
|
374
|
+
bpy/ops/gpencil/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
375
|
+
bpy/ops/graph/__init__.pyi,sha256=7ku12wAUds91mH7VMhEKHp_pQ__SF55Ww6Iy1G24moQ,63148
|
|
376
|
+
bpy/ops/graph/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
377
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=ib6DcAUN9DjMlwUhs4J4EZ6acs9N6OntNYY0QhGnuDA,28095
|
|
378
|
+
bpy/ops/grease_pencil/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
379
|
+
bpy/ops/image/__init__.pyi,sha256=p2OMjcLOOWJh0ydwG4sQTIhHhv-IuZNmW1m0zVF0Tto,60408
|
|
380
|
+
bpy/ops/image/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
381
|
+
bpy/ops/import_anim/__init__.pyi,sha256=bKgiHmcBwEhMuMc-idr2IY0uOCB1zB1hHGWz2EyXyBo,3572
|
|
382
|
+
bpy/ops/import_anim/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
383
|
+
bpy/ops/import_curve/__init__.pyi,sha256=7QD0r6JCAbimzLk-v1feEAi5fX_0NVt456lngu_rwC0,1029
|
|
384
|
+
bpy/ops/import_curve/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
385
|
+
bpy/ops/import_mesh/__init__.pyi,sha256=4Xy8yKhVh3XngM7R1NoEOKnrQNq6m59tffkmF2AxRoo,2481
|
|
386
|
+
bpy/ops/import_mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
387
|
+
bpy/ops/import_scene/__init__.pyi,sha256=ljHdo-3APCoJXVh4t6uJXkE64H1nfOn721MX1eraYU4,13432
|
|
388
|
+
bpy/ops/import_scene/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
389
|
+
bpy/ops/info/__init__.pyi,sha256=HCTfBUVi8CSB7TNA34IuBdWGA_siciB3VvpzmXUeIXM,5306
|
|
390
|
+
bpy/ops/info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
391
|
+
bpy/ops/lattice/__init__.pyi,sha256=OFjv3rpzdx8FrnrDkeiY6FCfh3duPCHXc1iLvk9ub1k,5884
|
|
392
|
+
bpy/ops/lattice/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
393
|
+
bpy/ops/marker/__init__.pyi,sha256=ZUXcn64ruQr-d-PYwTo7KPf112tCdqk864Bq12xXSzI,9443
|
|
394
|
+
bpy/ops/marker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
395
|
+
bpy/ops/mask/__init__.pyi,sha256=mbK1qxE_3B8NyF9STfgsWRCeZ3t5CqbQbLoin7MjMzY,28877
|
|
396
|
+
bpy/ops/mask/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
397
|
+
bpy/ops/material/__init__.pyi,sha256=CzrdSxsYaudNiBsJ1IJPRijXXbUrKRtzK_HUOM6OyG0,1552
|
|
398
|
+
bpy/ops/material/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
399
|
+
bpy/ops/mball/__init__.pyi,sha256=JB_H9rbJUBaF-j_OZW7qB3CZlL9GVm_11_X2oYf26X4,6635
|
|
400
|
+
bpy/ops/mball/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
401
|
+
bpy/ops/mesh/__init__.pyi,sha256=bnmAwuflJBwPr2Nz0KOoGLoKnVOdZ6fuJfwtSI1RkHI,195083
|
|
402
|
+
bpy/ops/mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
403
|
+
bpy/ops/nla/__init__.pyi,sha256=OzufnJIn1JZ204GbwJjdXZSn6IJ-2i9eD5NYMlEq5HQ,31659
|
|
404
|
+
bpy/ops/nla/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
405
|
+
bpy/ops/node/__init__.pyi,sha256=pyXymp1EUIvu4FgfSFM9zOY30tvA9hy7Q6RHAIv-Wwg,80578
|
|
406
|
+
bpy/ops/node/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
407
|
+
bpy/ops/object/__init__.pyi,sha256=jN_a_tBD516vZ074xaDJYyEGFk12docE3v7VWvCuPVI,246179
|
|
408
|
+
bpy/ops/object/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
409
|
+
bpy/ops/outliner/__init__.pyi,sha256=M7-BAlnhC7TIJaw13by9au0OEp1VKq15SwBALSrE2Lo,47092
|
|
410
|
+
bpy/ops/outliner/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
411
|
+
bpy/ops/paint/__init__.pyi,sha256=Y3XrbR3KSXFpDNfxorBNUqnc58Mx9aijk2eZlKuEaIE,46629
|
|
412
|
+
bpy/ops/paint/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
413
|
+
bpy/ops/paintcurve/__init__.pyi,sha256=libIDMr8RNcoAgVzkp0gFNgVGpNoHEdZJABcdwWCwgo,5628
|
|
414
|
+
bpy/ops/paintcurve/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
415
|
+
bpy/ops/palette/__init__.pyi,sha256=4t__B-OEx1wyyMsZ9GfjgQCNBe3USebdgIUgNLWyoHc,4144
|
|
416
|
+
bpy/ops/palette/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
417
|
+
bpy/ops/particle/__init__.pyi,sha256=PgGMxsN71QMFx0rpyN5fvnNK3OaQh2G23AK7x-HNcvc,24760
|
|
418
|
+
bpy/ops/particle/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
419
|
+
bpy/ops/pose/__init__.pyi,sha256=lQvqlcPCjcGbBnP9mbjZRmQnzxEM3gj7S15heZtnBn8,34807
|
|
420
|
+
bpy/ops/pose/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
421
|
+
bpy/ops/poselib/__init__.pyi,sha256=qIMUZCAAsnRNCeZrPrps3XA_3dVdmmt9kkd-JV8kbAI,8123
|
|
422
|
+
bpy/ops/poselib/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
423
|
+
bpy/ops/preferences/__init__.pyi,sha256=Wm1Tdsc9SHD86X3Dy5RG_PYvv6ZE_aUKNW4_JpsF-Ig,41218
|
|
424
|
+
bpy/ops/preferences/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
425
|
+
bpy/ops/ptcache/__init__.pyi,sha256=gOx2NAQ_QFeqxZiy8bkjcGTG7XQtd1HvPkhMx5v_zx0,3867
|
|
426
|
+
bpy/ops/ptcache/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
427
|
+
bpy/ops/render/__init__.pyi,sha256=GQUf4m2V3Wo4ZlsNvB-i1OsWGC4UYqUOIxv_rxNiUFc,12353
|
|
428
|
+
bpy/ops/render/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
429
|
+
bpy/ops/rigidbody/__init__.pyi,sha256=YMoev8V_r5n2xwClSwVIbSM3iVNm9LPyzm3HfCzRJ1Y,10747
|
|
430
|
+
bpy/ops/rigidbody/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
431
|
+
bpy/ops/scene/__init__.pyi,sha256=MlZOb4wdBMSEyk2E4P5W11CcV8E4j27aNdZ5atwIqS0,27349
|
|
432
|
+
bpy/ops/scene/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
433
|
+
bpy/ops/screen/__init__.pyi,sha256=v4rn5hpd2YIytOewVpsHRwNb_Bwlty3onYGEIceWMJA,35396
|
|
434
|
+
bpy/ops/screen/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
435
|
+
bpy/ops/script/__init__.pyi,sha256=UUXhPI80Q_qUZr6G8IAF6uMltIzfwZWeiNY8ZsF1ebo,2183
|
|
436
|
+
bpy/ops/script/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
437
|
+
bpy/ops/sculpt/__init__.pyi,sha256=_m4wVsPqfnxLp6hC1T39V7nPcOfPJQE0775Qal6_Kx4,46966
|
|
438
|
+
bpy/ops/sculpt/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
439
|
+
bpy/ops/sculpt_curves/__init__.pyi,sha256=jAuf32aHGBVS1bIG8gk73rkKtZROYInjQqjs-AFeJEM,4066
|
|
440
|
+
bpy/ops/sculpt_curves/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
441
|
+
bpy/ops/sequencer/__init__.pyi,sha256=sgMxy3YOK3yGr8kr7jmQbYNJIet1u_pvaCS72pwwTEo,106906
|
|
442
|
+
bpy/ops/sequencer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
443
|
+
bpy/ops/sound/__init__.pyi,sha256=At8K3M2txQTQXRLsr1Vl2NLwM6fj1TndI5jFmCWzzTk,23499
|
|
444
|
+
bpy/ops/sound/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
445
|
+
bpy/ops/spreadsheet/__init__.pyi,sha256=9Fqppqxvfcd6CF61CRBIEfSx1-GshWwBGhi7fPBNklY,2815
|
|
446
|
+
bpy/ops/spreadsheet/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
447
|
+
bpy/ops/surface/__init__.pyi,sha256=MKVZzXir_s1V67m-iPh1bLN6bT-1bAZAuA63DG8D7pU,11031
|
|
448
|
+
bpy/ops/surface/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
449
|
+
bpy/ops/text/__init__.pyi,sha256=wlgx-eDKMKEasNyWOyTD_hPWmQWCgMkUpA9m2p-GuGY,35596
|
|
450
|
+
bpy/ops/text/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
451
|
+
bpy/ops/text_editor/__init__.pyi,sha256=kYOw5alregZSA-RmjDtBWdywtTIpauImmXkSJOMVo60,1358
|
|
452
|
+
bpy/ops/text_editor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
453
|
+
bpy/ops/texture/__init__.pyi,sha256=ui41gzDv4diJMRDDuVjpZp4-3z4vT0pCvdY3cFXwIcU,2218
|
|
454
|
+
bpy/ops/texture/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
455
|
+
bpy/ops/transform/__init__.pyi,sha256=_jxr7an2cSvEuha4tySDiwdWj2IDRUDX2-X7fYaXSUo,87174
|
|
456
|
+
bpy/ops/transform/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
457
|
+
bpy/ops/ui/__init__.pyi,sha256=AIT58s3UV4QsL3vmhYDIC8etUwaxGFtUDVDzuETZLos,20772
|
|
458
|
+
bpy/ops/ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
459
|
+
bpy/ops/uilist/__init__.pyi,sha256=11XVA9xiVfXNgdeaXy5o-4VcGjCmIB7jk8bQsBks-fk,3253
|
|
460
|
+
bpy/ops/uilist/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
461
|
+
bpy/ops/uv/__init__.pyi,sha256=2wo6Ko-fdEWm0PRXDQPqIaFVjZ6_gEB09eG7r0ih3Rs,62429
|
|
462
|
+
bpy/ops/uv/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
463
|
+
bpy/ops/view2d/__init__.pyi,sha256=Cp_YPhOJnWyETljbEkVFgbDiM0fNLGpq0HP5aAI4pgI,12715
|
|
464
|
+
bpy/ops/view2d/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
465
|
+
bpy/ops/view3d/__init__.pyi,sha256=AMcJodTPF4u-dMdIa1Jw91OrhQkKB2j42S22p9b-2Tg,59685
|
|
466
|
+
bpy/ops/view3d/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
467
|
+
bpy/ops/wm/__init__.pyi,sha256=ghDo8mepdhNyfChmqv7rWi6TWArXHk3t_zn7xcym4Vo,290428
|
|
468
|
+
bpy/ops/wm/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
469
|
+
bpy/ops/workspace/__init__.pyi,sha256=_JxYjl8AuSUtwEmKHUR-EswIAhN-jSu_XnPAFqxTqMQ,4147
|
|
470
|
+
bpy/ops/workspace/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
471
|
+
bpy/ops/world/__init__.pyi,sha256=J0L2bR-WDLhzyvpEhcud7L6ovc5uwNlXHHuNXRF36nw,571
|
|
472
|
+
bpy/ops/world/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
473
|
+
bpy/path/__init__.pyi,sha256=UCfQ6H7g5j9jwGjKPxd2eYMJwzQ5-Vr3Kd6hXH3thiw,6314
|
|
474
|
+
bpy/path/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
475
|
+
bpy/props/__init__.pyi,sha256=ei-_J5SH-qKnDgtnMrvXkr0DofgLtDtjXgNB-1c8Ldk,29317
|
|
476
|
+
bpy/props/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
477
|
+
bpy/types/__init__.pyi,sha256=0NFN7aZA18T8i6J_3ilSbYMpEevtr_18HYtG18UKp-A,3487203
|
|
478
|
+
bpy/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
479
|
+
bpy/utils/__init__.pyi,sha256=ZE7sFvijAjY2YL8a5YtcVhr5dmYS-wMwScttr2C0yn0,11203
|
|
480
|
+
bpy/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
481
|
+
bpy/utils/previews/__init__.pyi,sha256=QUL94heIKlOmcCIBSYgpWFG75uqAW0YPzRTsIbtA1rA,2308
|
|
482
|
+
bpy/utils/previews/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
483
|
+
bpy/utils/units/__init__.pyi,sha256=Htz1Vbpcp-YbtdqyvJyv-rsNAVHZVahWNi6Xy2qHUco,2786
|
|
484
|
+
bpy/utils/units/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
485
|
+
bpy_extras/__init__.pyi,sha256=t0OTHtkJNthleUGeZ83mJxqaJBADaitgoACHSsP669s,437
|
|
486
|
+
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
487
|
+
bpy_extras/anim_utils/__init__.pyi,sha256=psMLSnVRlRP-Ha0sTc8Qi-5D-kM3abA55iIfFdjTF7I,2919
|
|
488
|
+
bpy_extras/anim_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
489
|
+
bpy_extras/asset_utils/__init__.pyi,sha256=Yw6_V8IX3GOGnnp8i26UFitkNVe2cHCatrn9_DcmRRY,509
|
|
490
|
+
bpy_extras/asset_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
491
|
+
bpy_extras/bmesh_utils/__init__.pyi,sha256=TEMjGNPk8Ct4FVF0ssIMDDw27gks-H6FePmYFG97x7A,211
|
|
492
|
+
bpy_extras/bmesh_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
493
|
+
bpy_extras/extensions/__init__.pyi,sha256=bdsIrb_l0d2w4d7-VdYRHrY1iSferwAUc8qAkJTmdtM,100
|
|
494
|
+
bpy_extras/extensions/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
495
|
+
bpy_extras/extensions/junction_module/__init__.pyi,sha256=hG4TWcKQBr0wrqBdCsmabbp6W0CRmoWFIb_fCK8mxvc,707
|
|
496
|
+
bpy_extras/extensions/junction_module/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
497
|
+
bpy_extras/id_map_utils/__init__.pyi,sha256=TVinBnflXrOEP_ZXxLxUiqD4rpRwrOu9sbMnQ7Kjs00,444
|
|
498
|
+
bpy_extras/id_map_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
499
|
+
bpy_extras/image_utils/__init__.pyi,sha256=56zC1RxKITUDSCeAT1eciP8YGFlwQ4w5V0G-Hu3RCtQ,2170
|
|
500
|
+
bpy_extras/image_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
501
|
+
bpy_extras/io_utils/__init__.pyi,sha256=UNvpYESQYotow9tA_5kTrelACBLRA7muo8_-Ai-MXgs,4944
|
|
502
|
+
bpy_extras/io_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
503
|
+
bpy_extras/keyconfig_utils/__init__.pyi,sha256=7N9lsVJHgOOAtSPM7-GRY0HGdwq54OgEDX247QAW558,428
|
|
504
|
+
bpy_extras/keyconfig_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
505
|
+
bpy_extras/mesh_utils/__init__.pyi,sha256=GnCwauIJ6iPCo85RbWvygfofFsu7LCbW8me3MAlioJI,2847
|
|
506
|
+
bpy_extras/mesh_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
507
|
+
bpy_extras/node_shader_utils/__init__.pyi,sha256=WXuo_urBm8x5L-hJjjqj-o7Mqtnjr4_Ta8jrveR3Z-0,7055
|
|
508
|
+
bpy_extras/node_shader_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
509
|
+
bpy_extras/node_utils/__init__.pyi,sha256=fvTu4PAFwCmaI1sUiPzrLRaiGtyFVSDgpdLUu1-5EIg,261
|
|
510
|
+
bpy_extras/node_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
511
|
+
bpy_extras/object_utils/__init__.pyi,sha256=kDcdLjbIZJevhzvWwD1y4BEqqEJPKSeEU62LkCvXVOc,2746
|
|
512
|
+
bpy_extras/object_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
513
|
+
bpy_extras/view3d_utils/__init__.pyi,sha256=RoBSY5O-e0nLCcuCkno4TOZIGvZCcPEMb6RuzzZXkOo,3558
|
|
514
|
+
bpy_extras/view3d_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
515
|
+
bpy_extras/wm_utils/__init__.pyi,sha256=DW9DeIMC3fdLn7M9-PndWQSe2eT-mB5rhr8au0xj02M,100
|
|
516
|
+
bpy_extras/wm_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
517
|
+
bpy_extras/wm_utils/progress_report/__init__.pyi,sha256=efwPJ3mbldHk5CsOLlmIKQsVJOxrT9biHyrWpDq4Jj0,1186
|
|
518
|
+
bpy_extras/wm_utils/progress_report/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
519
|
+
bpy_restrict_state/__init__.pyi,sha256=6i2ukZaWJLMRHxAakx8p30bqscwGijBiilia2U0aiDQ,304
|
|
520
|
+
bpy_restrict_state/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
521
|
+
bpy_types/__init__.pyi,sha256=bIxJ9X0UdhtRRAUuMl8LU11y-Ih0f3XkE_Lq9wOt_5U,60761
|
|
522
|
+
bpy_types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
523
|
+
console_python/__init__.pyi,sha256=9X01_85iTBCVYKipQk_Ixn5MsRVA38c6Ry72u_jzCs8,633
|
|
524
|
+
console_python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
525
|
+
console_shell/__init__.pyi,sha256=g8I7HiEd83mrHZqrD_1IyJRNTf6eWiG6UCYesXu2lPs,361
|
|
526
|
+
console_shell/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
527
|
+
freestyle/__init__.pyi,sha256=1Kko9644OCjZQsaRS59nww-E3Gum3iQi8lvUkxHmR4M,213
|
|
528
|
+
freestyle/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
529
|
+
freestyle/chainingiterators/__init__.pyi,sha256=uIca_D-01ahEACsx1Oj70KsiK3uAiwL53NZC_Gm2EJ4,9887
|
|
530
|
+
freestyle/chainingiterators/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
531
|
+
freestyle/functions/__init__.pyi,sha256=e_ckDssalzG1v4YTblq5cS-zJrK88RakBWjnT9yUIbE,47796
|
|
532
|
+
freestyle/functions/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
533
|
+
freestyle/predicates/__init__.pyi,sha256=IXjO_Fm5dNi93fW_EaQmTG1_KSc88pESx56jeyLN4Oc,13162
|
|
534
|
+
freestyle/predicates/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
535
|
+
freestyle/shaders/__init__.pyi,sha256=7qkykv9S33llp1SnX46VDjwJp-nmKDmsHFJOcnZuWUk,23670
|
|
536
|
+
freestyle/shaders/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
537
|
+
freestyle/types/__init__.pyi,sha256=MefvZ1iwnwAzDqgQBb7Gu1T0RU0N4NrupH9Zi0MtOw4,85235
|
|
538
|
+
freestyle/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
539
|
+
freestyle/utils/__init__.pyi,sha256=v2974YLxd2uha-lLH2zrEYcPYNJLaDeB64sWyQNZP-o,5617
|
|
540
|
+
freestyle/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
541
|
+
freestyle/utils/ContextFunctions/__init__.pyi,sha256=EQh-uQpb4Vm9zjo6F56AaRt569bTe993wBDFfPcvmrM,3348
|
|
542
|
+
freestyle/utils/ContextFunctions/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
543
|
+
gpu/__init__.pyi,sha256=qVb-CCBXJ4COcSNUmYKyT72qRnFkGLb5Jw6jx0KBEJI,245
|
|
544
|
+
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
545
|
+
gpu/capabilities/__init__.pyi,sha256=jboJ1JzD1NE0abClF-RnUZLj5hlJoFOnSPp-Cn_MKZk,3644
|
|
546
|
+
gpu/capabilities/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
547
|
+
gpu/matrix/__init__.pyi,sha256=PhvlHZXJ-DR3uwXlcDNa5Gd5tVZe_ta32_Ck9zsU-yE,2693
|
|
548
|
+
gpu/matrix/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
549
|
+
gpu/platform/__init__.pyi,sha256=O1NIYK4tJespUJKfS4plhrXeOcNLca1zz1zS4QpPIz4,799
|
|
550
|
+
gpu/platform/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
551
|
+
gpu/select/__init__.pyi,sha256=VGKkhRWB7q9Bjimk9yNRJDlsWupZpm6KJXhVlfL4BE8,234
|
|
552
|
+
gpu/select/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
553
|
+
gpu/shader/__init__.pyi,sha256=PxnUed0rpmWjT7JCNBLmR1O5QEPD_oBt-QQYPpLDVZ0,1187
|
|
554
|
+
gpu/shader/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
555
|
+
gpu/state/__init__.pyi,sha256=0kdRYDjz_3luIIhp-Cbjscg8yqQ08OoErUNYw66WF6E,5371
|
|
556
|
+
gpu/state/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
557
|
+
gpu/texture/__init__.pyi,sha256=iU0I-9Ru2NREGbZE0rGx5x3lj5Z0hn0MG51Bcl9sEsc,597
|
|
558
|
+
gpu/texture/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
559
|
+
gpu/types/__init__.pyi,sha256=qoTaUGTM4Wb5oys43M7tLP3mrkZSBMsRG1W_uxA1VT4,29736
|
|
560
|
+
gpu/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
561
|
+
gpu_extras/__init__.pyi,sha256=QnaA2BEZeaM89M3kwnsQ-c0KDAunbu3vRamRm6sI3JY,112
|
|
562
|
+
gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
563
|
+
gpu_extras/batch/__init__.pyi,sha256=e9K9IaNuUhe2uCRNEDINtXY6pFOa7GhQtsp4SIFkO7E,780
|
|
564
|
+
gpu_extras/batch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
565
|
+
gpu_extras/presets/__init__.pyi,sha256=T3Mx78yPPjDAh4N-6Rr5UJW6dtnYA2Jhfh_UYMg4y-c,1436
|
|
566
|
+
gpu_extras/presets/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
567
|
+
graphviz_export/__init__.pyi,sha256=6bOQn1crm9lzCcmM1VVE6IuHG-ogs1XTkOD9K7WX5fg,263
|
|
568
|
+
graphviz_export/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
569
|
+
idprop/__init__.pyi,sha256=VrqW1I_LJSGD7wUckdB6BuAnXGty0TKBrgII9mVAfsc,90
|
|
570
|
+
idprop/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
571
|
+
idprop/types/__init__.pyi,sha256=jsen1xhQnfAJomKezC2qqXkCWzHoqL6A819hFU-GbVo,1988
|
|
572
|
+
idprop/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
573
|
+
imbuf/__init__.pyi,sha256=EUoH7r6l91GT-Nf6Bkt9n-PA02Xn4jnoaLBuAYJ1bP8,994
|
|
574
|
+
imbuf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
575
|
+
imbuf/types/__init__.pyi,sha256=Bf_yZuYWamB90Xi3zZ6qgBpLKuxgT3uhSql0OnRNUqQ,1259
|
|
576
|
+
imbuf/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
577
|
+
keyingsets_builtins/__init__.pyi,sha256=DL08VlMMi4uFZ5jy_NGDg6gluImoc9gII4yxWddclRU,48437
|
|
578
|
+
keyingsets_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
579
|
+
keyingsets_utils/__init__.pyi,sha256=zxz1vU5dZBQDKhqPQXAy-rYmdO5Ezztsdb6rVqVEerw,1127
|
|
580
|
+
keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
581
|
+
mathutils/__init__.pyi,sha256=q7YRJ2zQc_h1ajyWqw28wKN5TQd08VMKS9G3h0g5UVs,88109
|
|
582
|
+
mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
583
|
+
mathutils/bvhtree/__init__.pyi,sha256=4uGsKHMlm30FSadf9J7yGJl-b_l2HPRfM1GUr7CzIsQ,4750
|
|
584
|
+
mathutils/bvhtree/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
585
|
+
mathutils/geometry/__init__.pyi,sha256=-I7dkz1s9zizBmqJH-EFLbmJxj9M3G7SMjxOsLpgPII,22690
|
|
586
|
+
mathutils/geometry/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
587
|
+
mathutils/interpolate/__init__.pyi,sha256=yjMupwMoV0tq4nVK_A2Gs2ZQMgd2L6po2EYMklEasFs,344
|
|
588
|
+
mathutils/interpolate/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
589
|
+
mathutils/kdtree/__init__.pyi,sha256=gB2aEQ1H4SSrGLcH4pC-X48aVzBMTf1yZ-y9QaS2a3w,2257
|
|
590
|
+
mathutils/kdtree/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
591
|
+
mathutils/noise/__init__.pyi,sha256=dOOCM_VJKuSGIWNolWwAkAWr_34SZnKxnqeNVy1Jr_c,13231
|
|
592
|
+
mathutils/noise/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
593
|
+
nodeitems_builtins/__init__.pyi,sha256=BBZWcnSi4Bahh1eAiukkUD74qgVL18cv60T1zDuoaE0,813
|
|
594
|
+
nodeitems_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
595
|
+
nodeitems_utils/__init__.pyi,sha256=tBm44w5drjesQaUJJ8aGVtokfJHGmbc3ZaeGDUw8Tto,845
|
|
596
|
+
nodeitems_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
597
|
+
rna_info/__init__.pyi,sha256=wPN_2iR1pNhcwI_pERCz1cRQ0N4FbQGj6vzJZlz2w50,3924
|
|
598
|
+
rna_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
599
|
+
rna_keymap_ui/__init__.pyi,sha256=uq19FwmKhFyoTE_rTIanQ9PPFvlaPH2CvVSr-rmr8YQ,568
|
|
600
|
+
rna_keymap_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
601
|
+
rna_prop_ui/__init__.pyi,sha256=tXoYTawux_7OGooIBOdK-qJUd0Ida6RGQQORBL6BGWA,1252
|
|
602
|
+
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
603
|
+
rna_xml/__init__.pyi,sha256=yyeBzQX0dO3yqIOD1PhXcgaE9jkEU7oyIOAfzZw8IVA,600
|
|
604
|
+
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
605
|
+
sys_info/__init__.pyi,sha256=o_UqpdlmDE4phA9Oyj4GV1u4zjo_rXndzej-ZUYFB7o,128
|
|
606
|
+
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
607
|
+
fake_bpy_module-20231207.dist-info/METADATA,sha256=0jUmQgjaT51E-XvfDnQTpgtuy9Q33wz-MI9C7_Ipt68,7008
|
|
608
|
+
fake_bpy_module-20231207.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
609
|
+
fake_bpy_module-20231207.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
610
|
+
fake_bpy_module-20231207.dist-info/RECORD,,
|