diff --git a/connpy/_version.py b/connpy/_version.py index 7859aa3..c97052c 100644 --- a/connpy/_version.py +++ b/connpy/_version.py @@ -1 +1 @@ -__version__ = "5.1b4" +__version__ = "5.1b5" diff --git a/connpy/ai.py b/connpy/ai.py index 6a9a343..13c1ae6 100755 --- a/connpy/ai.py +++ b/connpy/ai.py @@ -4,13 +4,28 @@ import json import re import datetime from textwrap import dedent -import litellm -from litellm import completion, stream_chunk_builder from .core import nodes -# Silenciar feedback de litellm -litellm.suppress_debug_info = True -litellm.set_verbose = False +_litellm_initialized = False + +def _init_litellm(): + global _litellm_initialized + if not _litellm_initialized: + import litellm + # Silenciar feedback de litellm + litellm.suppress_debug_info = True + litellm.set_verbose = False + _litellm_initialized = True + +def completion(*args, **kwargs): + _init_litellm() + from litellm import completion as _completion + return _completion(*args, **kwargs) + +def stream_chunk_builder(*args, **kwargs): + _init_litellm() + from litellm import stream_chunk_builder as _stream_chunk_builder + return _stream_chunk_builder(*args, **kwargs) from .hooks import ClassHook, MethodHook from . import printer from rich.markdown import Markdown diff --git a/connpy/cli/ai_handler.py b/connpy/cli/ai_handler.py index 41127e8..fc57b72 100644 --- a/connpy/cli/ai_handler.py +++ b/connpy/cli/ai_handler.py @@ -133,5 +133,6 @@ class AIHandler: u = result["usage"] console.print(f"[debug]Tokens: {u['total']} (Input: {u['input']}, Output: {u['output']})[/debug]") console.print() - except KeyboardInterrupt: + except (KeyboardInterrupt, EOFError): + console.print("\n[dim]Session closed.[/dim]") break diff --git a/connpy/printer.py b/connpy/printer.py index 11602b2..21e1892 100644 --- a/connpy/printer.py +++ b/connpy/printer.py @@ -252,12 +252,20 @@ class _ConsoleProxy: return getattr(_get_console(), name) def __call__(self, *args, **kwargs): return _get_console()(*args, **kwargs) + def __enter__(self): + return _get_console().__enter__() + def __exit__(self, exc_type, exc_val, exc_tb): + return _get_console().__exit__(exc_type, exc_val, exc_tb) class _ErrConsoleProxy: def __getattr__(self, name): return getattr(_get_err_console(), name) def __call__(self, *args, **kwargs): return _get_err_console()(*args, **kwargs) + def __enter__(self): + return _get_err_console().__enter__() + def __exit__(self, exc_type, exc_val, exc_tb): + return _get_err_console().__exit__(exc_type, exc_val, exc_tb) console = _ConsoleProxy() err_console = _ErrConsoleProxy() diff --git a/docs/connpy/cli/ai_handler.html b/docs/connpy/cli/ai_handler.html index 78de5bb..78549bc 100644 --- a/docs/connpy/cli/ai_handler.html +++ b/docs/connpy/cli/ai_handler.html @@ -179,7 +179,8 @@ el.replaceWith(d); u = result["usage"] console.print(f"[debug]Tokens: {u['total']} (Input: {u['input']}, Output: {u['output']})[/debug]") console.print() - except KeyboardInterrupt: + except (KeyboardInterrupt, EOFError): + console.print("\n[dim]Session closed.[/dim]") break
@@ -306,7 +307,8 @@ el.replaceWith(d); u = result["usage"] console.print(f"[debug]Tokens: {u['total']} (Input: {u['input']}, Output: {u['output']})[/debug]") console.print() - except KeyboardInterrupt: + except (KeyboardInterrupt, EOFError): + console.print("\n[dim]Session closed.[/dim]") break
diff --git a/docs/connpy/grpc/index.html b/docs/connpy/grpc/index.html index a307dc0..d1acfdd 100644 --- a/docs/connpy/grpc/index.html +++ b/docs/connpy/grpc/index.html @@ -33,7 +33,7 @@ el.replaceWith(d);
-

Namespace connpy.grpc

+

Module connpy.grpc

diff --git a/docs/connpy/index.html b/docs/connpy/index.html index 9c53b4d..3490362 100644 --- a/docs/connpy/index.html +++ b/docs/connpy/index.html @@ -520,6 +520,10 @@ class Preload:
+
connpy.proto
+
+
+
connpy.services
@@ -5265,6 +5269,7 @@ def test(self, commands, expected, vars = None,*, prompt = None, parallel = 10, diff --git a/docs/connpy/proto/index.html b/docs/connpy/proto/index.html new file mode 100644 index 0000000..573e196 --- /dev/null +++ b/docs/connpy/proto/index.html @@ -0,0 +1,66 @@ + + + + + + +connpy.proto API documentation + + + + + + + + + + + +
+
+
+

Module connpy.proto

+
+
+
+
+
+
+
+
+
+
+
+
+ +
+ + + diff --git a/docs/connpy/services/index.html b/docs/connpy/services/index.html index daa297f..d441f23 100644 --- a/docs/connpy/services/index.html +++ b/docs/connpy/services/index.html @@ -2795,7 +2795,6 @@ el.replaceWith(d); def start_api(self, port=None): """Start the Connpy REST API.""" - print(f"DEBUG SystemService: port type={type(port)} value={port}") from connpy.api import start_api try: start_api(port, config=self.config) @@ -2970,7 +2969,6 @@ el.replaceWith(d);
def start_api(self, port=None):
     """Start the Connpy REST API."""
-    print(f"DEBUG SystemService: port type={type(port)} value={port}")
     from connpy.api import start_api
     try:
         start_api(port, config=self.config)
diff --git a/docs/connpy/services/system_service.html b/docs/connpy/services/system_service.html
index ecf50ee..95f059e 100644
--- a/docs/connpy/services/system_service.html
+++ b/docs/connpy/services/system_service.html
@@ -60,7 +60,6 @@ el.replaceWith(d);
 
     def start_api(self, port=None):
         """Start the Connpy REST API."""
-        print(f"DEBUG SystemService: port type={type(port)} value={port}")
         from connpy.api import start_api
         try:
             start_api(port, config=self.config)
@@ -235,7 +234,6 @@ el.replaceWith(d);
 
 
def start_api(self, port=None):
     """Start the Connpy REST API."""
-    print(f"DEBUG SystemService: port type={type(port)} value={port}")
     from connpy.api import start_api
     try:
         start_api(port, config=self.config)
diff --git a/test.txt b/test.txt
new file mode 100644
index 0000000..8beaf18
--- /dev/null
+++ b/test.txt
@@ -0,0 +1,13469 @@
+──────────────────────────────────────────────── OUTPUT ────────────────────────────────────────────────
+╭──────────────────────────── qro1pe1@ctx — ✓ PASS ────────────────────────────╮
+│                                                                              │
+│ RP/0/RP0/CPU0:KE.MXQRO01.RT01#show ver                                       │
+│ Mon Apr 20 08:48:41.806 CST                                                  │
+│ Cisco IOS XR Software, Version 24.1.2                                        │
+│ Copyright (c) 2013-2024 by Cisco Systems, Inc.                               │
+│                                                                              │
+│ Build Information:                                                           │
+│  Built By     : swtools                                                      │
+│  Built On     : Tue Jun  4 18:20:38 PDT 2024                                 │
+│  Built Host   : iox-ucs-046                                                  │
+│  Workspace    : /auto/srcarchive16/prod/24.1.2/ncs5500/ws                    │
+│  Version      : 24.1.2                                                       │
+│  Location     : /opt/cisco/XR/packages/                                      │
+│  Label        : 24.1.2                                                       │
+│                                                                              │
+│ cisco NCS-5500 () processor                                                  │
+│ System uptime is 1 week 3 days 14 hours 41 minutes                           │
+│                                                                              │
+│ RP/0/RP0/CPU0:KE.MXQRO01.RT01#                                               │
+│                                                                              │
+╰──────────────────────────────────────────────────────────────────────────────╯
+         8262090 function calls (7055887 primitive calls) in 17.818 seconds
+
+   Ordered by: cumulative time
+
+   ncalls  tottime  percall  cumtime  percall filename:lineno(function)
+      266    0.013    0.000   46.271    0.174 __init__.py:1()
+   3670/1    0.044    0.000   17.824   17.824 {built-in method builtins.exec}
+        1    0.000    0.000   17.824   17.824 :1()
+        1    0.000    0.000   17.824   17.824 :201(run_module)
+  3583/12    0.029    0.000   13.509    1.126 :1167(_find_and_load)
+  3566/12    0.029    0.000   13.506    1.126 :1122(_find_and_load_unlocked)
+  3216/10    0.009    0.000   13.504    1.350 :934(exec_module)
+  7318/18    0.010    0.000   13.502    0.750 :233(_call_with_frames_removed)
+  3438/12    0.022    0.000   13.501    1.125 :666(_load_unlocked)
+   526/53    0.001    0.000   13.297    0.251 {built-in method builtins.__import__}
+      2/1    0.000    0.000   12.382   12.382 :105(_get_module_details)
+        1    0.000    0.000   12.231   12.231 connapp.py:1()
+        1    0.000    0.000   12.161   12.161 ai.py:1()
+7581/7355    0.075    0.000   10.314    0.001 {built-in method builtins.__build_class__}
+     1144    0.048    0.000    9.273    0.008 _model_construction.py:83(__new__)
+     1149    0.049    0.000    7.608    0.007 _model_construction.py:530(complete_model_class)
+        1    0.000    0.000    5.441    5.441 :65(_run_code)
+        1    0.000    0.000    5.441    5.441 __main__.py:1()
+        1    0.000    0.000    5.441    5.441 __main__.py:5(main)
+       41    0.001    0.000    4.814    0.117 utils.py:1()
+        1    0.000    0.000    4.792    4.792 connapp.py:424(start)
+ 1143/554    0.004    0.000    4.464    0.008 main.py:649(__get_pydantic_core_schema__)
+ 6040/554    0.016    0.000    4.462    0.008 _schema_generation_shared.py:82(__call__)
+ 5970/554    0.041    0.000    4.459    0.008 _generate_schema.py:620(generate_schema)
+10690/554    0.065    0.000    4.438    0.008 _generate_schema.py:906(_generate_schema_inner)
+  751/554    0.034    0.000    4.415    0.008 _generate_schema.py:667(_model_schema)
+       51    0.001    0.000    4.294    0.084 handler.py:1()
+  732/535    0.007    0.000    4.265    0.008 _generate_schema.py:739()
+4826/4063    0.017    0.000    4.260    0.001 _generate_schema.py:1108(_generate_md_field_schema)
+5203/4082    0.171    0.000    4.248    0.001 _generate_schema.py:1261(_common_field_schema)
+        1    0.000    0.000    4.142    4.142 anthropic_beta_headers_manager.py:1()
+        1    0.000    0.000    4.139    4.139 litellm_logging.py:1()
+     10/7    0.000    0.000    3.886    0.555 hooks.py:17(__call__)
+        1    0.000    0.000    3.851    3.851 run_handler.py:13(dispatch)
+        1    0.000    0.000    3.851    3.851 run_handler.py:19(node_run)
+        1    0.000    0.000    3.851    3.851 execution_service.py:11(run_commands)
+        1    0.000    0.000    3.841    3.841 core.py:740(run)
+       15    3.841    0.256    3.841    0.256 {method 'acquire' of '_thread.lock' objects}
+        1    0.000    0.000    3.841    3.841 threading.py:1080(join)
+        1    0.000    0.000    3.841    3.841 threading.py:1118(_wait_for_tstate_lock)
+       34    0.003    0.000    3.723    0.109 main.py:1()
+        3    0.001    0.000    3.653    1.218 _types.py:1()
+        2    0.000    0.000    3.639    1.819 gcs_bucket.py:1()
+5233/4082    0.042    0.000    3.565    0.001 _generate_schema.py:2066(_apply_annotations)
+5217/4081    0.026    0.000    3.426    0.001 _generate_schema.py:2085(inner_handler)
+       66    0.001    0.000    3.410    0.052 transformation.py:1()
+1852/1148    0.006    0.000    3.409    0.003 :1209(_handle_fromlist)
+      546    0.005    0.000    2.738    0.005 _generate_schema.py:589(clean_schema)
+9907/4031    0.259    0.000    2.693    0.001 _generate_schema.py:931(match_type)
+     3283    0.008    0.000    2.610    0.001 _core_utils.py:402(walk_core_schema)
+215058/4955    0.315    0.000    2.582    0.001 _core_utils.py:196(walk)
+214658/4955    0.577    0.000    2.544    0.001 _core_utils.py:199(_walk)
+181997/7335    0.305    0.000    2.492    0.000 _core_utils.py:206(_handle_other_schemas)
+13428/6146    0.142    0.000    2.389    0.000 _core_utils.py:325(handle_model_fields_schema)
+4131/3071    0.025    0.000    2.154    0.001 _generate_schema.py:1040(_match_generic_type)
+3426/2941    0.023    0.000    1.900    0.001 _generate_schema.py:1369(_union_schema)
+14764/12834    0.097    0.000    1.636    0.000 _generate_schema.py:800(_generate_schema_from_property)
+        2    0.000    0.000    1.544    0.772 http_handler.py:1()
+      546    0.005    0.000    1.304    0.002 _core_utils.py:419(simplify_schema_references)
+        5    0.000    0.000    1.282    0.256 streaming_iterator.py:1()
+        1    0.000    0.000    1.278    1.278 generated.py:1()
+        2    0.000    0.000    1.177    0.588 openai.py:1()
+     1143    0.005    0.000    1.108    0.001 _model_construction.py:500(set_model_fields)
+     1143    0.089    0.000    1.082    0.001 _fields.py:72(collect_model_fields)
+       21    0.000    0.000    1.060    0.050 base.py:1()
+      546    0.002    0.000    0.942    0.002 _discriminated_union.py:37(apply_discriminators)
+        1    0.000    0.000    0.938    0.938 connapp.py:201(get_parser)
+  601/518    0.002    0.000    0.918    0.002 _generate_schema.py:430(_list_schema)
+        2    0.002    0.001    0.889    0.444 plugins.py:138(_import_plugins_to_argparse)
+        2    0.000    0.000    0.871    0.435 router.py:1()
+1223520/1198354    0.768    0.000    0.854    0.000 {built-in method builtins.isinstance}
+47245/47243    0.063    0.000    0.809    0.000 {built-in method builtins.next}
+      195    0.004    0.000    0.797    0.004 _core_utils.py:223(handle_definitions_schema)
+9074/6848    0.018    0.000    0.776    0.000 _core_utils.py:251(handle_list_schema)
+    23444    0.034    0.000    0.737    0.000 contextlib.py:132(__enter__)
+3214/1669    0.030    0.000    0.736    0.000 _core_utils.py:294(handle_union_schema)
+24980/23539    0.036    0.000    0.732    0.000 typing.py:338(inner)
+        3    0.000    0.000    0.699    0.233 plugins.py:131(_import_from_path)
+        1    0.000    0.000    0.696    0.696 aws.py:1()
+    31242    0.070    0.000    0.670    0.000 _generate_schema.py:2520(get_schema_or_ref)
+    15762    0.159    0.000    0.585    0.000 _core_utils.py:77(get_type_ref)
+     3217    0.030    0.000    0.574    0.000 :1007(get_code)
+    21370    0.034    0.000    0.559    0.000 _utils.py:76(lenient_issubclass)
+        1    0.000    0.000    0.552    0.552 eval_create_params.py:1()
+        1    0.000    0.000    0.548    0.548 guardrails.py:1()
+    29074    0.023    0.000    0.544    0.000 {built-in method builtins.issubclass}
+40003/546    0.092    0.000    0.544    0.001 _core_utils.py:425(collect_refs)
+        1    0.000    0.000    0.538    0.538 multi_grader.py:1()
+121068/7428    0.145    0.000    0.529    0.000 :121(__subclasscheck__)
+121068/7428    0.382    0.000    0.518    0.000 {built-in method _abc._abc_subclasscheck}
+        1    0.000    0.000    0.516    0.516 label_model_grader.py:1()
+        1    0.000    0.000    0.511    0.511 grader_inputs.py:1()
+   848759    0.501    0.000    0.501    0.000 {method 'get' of 'dict' objects}
+276016/276002    0.275    0.000    0.498    0.000 {built-in method builtins.getattr}
+     3496    0.040    0.000    0.493    0.000 :1056(_find_spec)
+      553    0.003    0.000    0.479    0.001 _core_utils.py:122(collect_definitions)
+37234/553    0.073    0.000    0.474    0.001 _core_utils.py:125(_record_valid_refs)
+   124377    0.284    0.000    0.474    0.000 typing.py:2372(get_origin)
+37204/546    0.100    0.000    0.461    0.001 _discriminated_union.py:45(inner)
+     3302    0.008    0.000    0.450    0.000 __init__.py:272(_compile)
+        1    0.000    0.000    0.447    0.447 connapp.py:53(__init__)
+     1158    0.002    0.000    0.443    0.000 __init__.py:225(compile)
+36473/546    0.054    0.000    0.437    0.001 _core_utils.py:447(count_refs)
+      414    0.003    0.000    0.430    0.001 _compiler.py:738(compile)
+        1    0.000    0.000    0.419    0.419 provider.py:13(__init__)
+        1    0.000    0.000    0.419    0.419 provider.py:25(_init_local)
+        1    0.000    0.000    0.417    0.417 sync_service.py:1()
+13664/5205    0.061    0.000    0.413    0.000 _generics.py:337(has_instance_in_type)
+4252/2820    0.007    0.000    0.400    0.000 typing.py:461(__getitem__)
+   106/61    0.007    0.000    0.392    0.006 _generate_schema.py:1431(_typed_dict_schema)
+      546    0.002    0.000    0.381    0.001 _core_utils.py:158(collect_invalid_schemas)
+37204/546    0.055    0.000    0.377    0.001 _core_utils.py:161(_is_schema_valid)
+     5535    0.046    0.000    0.375    0.000 typing.py:1333(__init__)
+     3473    0.006    0.000    0.366    0.000 :1496(find_spec)
+        6    0.000    0.000    0.360    0.060 client.py:1()
+     3473    0.018    0.000    0.357    0.000 :1464(_get_spec)
+     2639    0.022    0.000    0.337    0.000 typing.py:638(Union)
+  358/214    0.002    0.000    0.332    0.002 _generate_schema.py:1089(_generate_td_field_schema)
+    72/50    0.000    0.000    0.310    0.006 _generate_schema.py:2188(new_handler)
+30223/546    0.045    0.000    0.307    0.001 _core_utils.py:488(inline_refs)
+97831/96935    0.107    0.000    0.306    0.000 {built-in method builtins.hasattr}
+     4109    0.059    0.000    0.304    0.000 :1604(find_spec)
+    16355    0.103    0.000    0.295    0.000 typing.py:168(_type_check)
+        1    0.000    0.000    0.293    0.293 well_known_api.py:1()
+        1    0.000    0.000    0.292    0.292 api_client.py:1()
+        3    0.000    0.000    0.291    0.097 _client.py:1()
+2646/1249    0.100    0.000    0.289    0.000 _decorators.py:424(build)
+     5378    0.107    0.000    0.287    0.000 fields.py:198(__init__)
+     1249    0.035    0.000    0.277    0.000 _typing_extra.py:230(get_cls_type_hints_lenient)
+    25/12    0.000    0.000    0.277    0.023 _generate_schema.py:2020(_annotated_schema)
+     28/9    0.000    0.000    0.275    0.031 _generate_schema.py:2185()
+      414    0.002    0.000    0.257    0.001 _parser.py:970(parse)
+   293367    0.257    0.000    0.257    0.000 {method 'copy' of 'dict' objects}
+    82250    0.160    0.000    0.254    0.000 typing.py:1226(_is_dunder)
+ 1353/414    0.011    0.000    0.252    0.001 _parser.py:447(_parse_sub)
+     8080    0.017    0.000    0.251    0.000 _typing_extra.py:249(eval_type_lenient)
+        2    0.000    0.000    0.250    0.125 _api.py:1()
+ 2143/610    0.071    0.000    0.246    0.000 _parser.py:507(_parse)
+        2    0.000    0.000    0.244    0.122 custom_logger.py:1()
+        2    0.000    0.000    0.243    0.122 datadog.py:1()
+        1    0.000    0.000    0.241    0.241 oci.py:1()
+        2    0.000    0.000    0.235    0.118 session.py:1()
+     3217    0.014    0.000    0.226    0.000 :727(_compile_bytecode)
+     1205    0.035    0.000    0.220    0.000 typing_extensions.py:916(__new__)
+    41443    0.081    0.000    0.219    0.000 typing.py:1267(__getattr__)
+     1434    0.005    0.000    0.212    0.000 typing.py:678(Optional)
+     8088    0.011    0.000    0.211    0.000 _typing_extra.py:263(eval_type_backport)
+     3217    0.205    0.000    0.205    0.000 {built-in method marshal.loads}
+15944/11243    0.051    0.000    0.204    0.000 _generate_schema.py:2432(_extract_get_pydantic_json_schema)
+     2841    0.014    0.000    0.203    0.000 fields.py:333(from_annotated_attribute)
+      3/2    0.000    0.000    0.202    0.101 hooks.py:69(__call__)
+        1    0.000    0.000    0.202    0.202 configfile.py:46(__init__)
+     8088    0.011    0.000    0.199    0.000 _typing_extra.py:296(_eval_type_backport)
+        1    0.000    0.000    0.199    0.199 RSA.py:781(import_key)
+        1    0.000    0.000    0.192    0.192 RSA.py:739(_import_keyDER)
+        1    0.000    0.000    0.192    0.192 RSA.py:683(_import_pkcs1_private)
+     3741    0.191    0.000    0.191    0.000 {built-in method builtins.compile}
+3441/3432    0.013    0.000    0.190    0.000 :566(module_from_spec)
+        1    0.000    0.000    0.189    0.189 RSA.py:539(construct)
+        6    0.000    0.000    0.189    0.031 core.py:1()
+     8088    0.013    0.000    0.188    0.000 _typing_extra.py:321(_eval_type)
+        2    0.000    0.000    0.188    0.094 Primality.py:222(test_probable_prime)
+    96103    0.124    0.000    0.185    0.000 typing.py:1632(__eq__)
+        2    0.032    0.016    0.181    0.091 Primality.py:119(lucas_test)
+       47    0.001    0.000    0.180    0.004 main.py:718(__class_getitem__)
+    41527    0.062    0.000    0.178    0.000 typing.py:1277(__setattr__)
+21725/8088    0.065    0.000    0.175    0.000 typing.py:352(_eval_type)
+      546    0.003    0.000    0.175    0.000 _signature.py:145(generate_pydantic_signature)
+     3217    0.013    0.000    0.171    0.000 :1127(get_data)
+  208/170    0.003    0.000    0.170    0.001 _core_utils.py:304(handle_tagged_union_schema)
+        1    0.000    0.000    0.169    0.169 _main.py:1()
+      414    0.001    0.000    0.166    0.000 _compiler.py:571(_code)
+9771/8164    0.069    0.000    0.165    0.000 _repr.py:86(display_as_type)
+        1    0.083    0.083    0.164    0.164 __init__.py:636(add_known_models)
+     2537    0.008    0.000    0.164    0.000 fields.py:271(from_annotation)
+      546    0.031    0.000    0.160    0.000 _signature.py:71(_generate_signature_parameters)
+       16    0.000    0.000    0.160    0.010 _generics.py:115(create_generic_submodel)
+        8    0.000    0.000    0.158    0.020 response.py:1()
+    81976    0.101    0.000    0.158    0.000 _core_utils.py:115(get_ref)
+    30843    0.040    0.000    0.156    0.000 _typing_extra.py:111(is_annotated)
+    24864    0.052    0.000    0.155    0.000 :126(_path_join)
+        3    0.000    0.000    0.153    0.051 plugins.py:36(verify_script)
+        3    0.000    0.000    0.153    0.051 _models.py:1()
+        6    0.000    0.000    0.153    0.025 ast.py:33(parse)
+    15494    0.033    0.000    0.152    0.000 _generics.py:206(get_args)
+     3441    0.027    0.000    0.148    0.000 :493(_init_module_attrs)
+        1    0.000    0.000    0.147    0.147 _assistants.py:1()
+    16104    0.054    0.000    0.146    0.000 _typing_extra.py:166(is_finalvar)
+        1    0.000    0.000    0.145    0.145 requests.py:1()
+     6434    0.034    0.000    0.142    0.000 :437(cache_from_source)
+ 3447/414    0.044    0.000    0.140    0.000 _compiler.py:37(_compile)
+        2    0.000    0.000    0.136    0.068 caching.py:1()
+     3219    0.135    0.000    0.135    0.000 {method 'read' of '_io.BufferedReader' objects}
+4971/4911    0.016    0.000    0.132    0.000 _core_utils.py:279(handle_dict_schema)
+       10    0.000    0.000    0.130    0.013 _generate_schema.py:1721(_iterable_schema)
+    27/26    0.000    0.000    0.126    0.005 __init__.py:108(import_module)
+    27/26    0.000    0.000    0.126    0.005 :1194(_gcd_import)
+    25459    0.076    0.000    0.126    0.000 typing.py:2399(get_args)
+     5662    0.034    0.000    0.125    0.000 typing_extensions.py:3029(_collect_parameters)
+     1205    0.005    0.000    0.124    0.000 typing_extensions.py:954()
+        1    0.000    0.000    0.123    0.123 batch.py:1()
+      546    0.041    0.000    0.123    0.000 _schema_validator.py:21(create_schema_validator)
+        1    0.000    0.000    0.122    0.122 get_model_cost_map.py:244(get_model_cost_map)
+        3    0.000    0.000    0.122    0.041 discovery.py:1()
+  455/453    0.002    0.000    0.121    0.000 _generate_schema.py:433(_dict_schema)
+    13315    0.028    0.000    0.118    0.000 _generics.py:213(get_origin)
+    23443    0.036    0.000    0.117    0.000 contextlib.py:141(__exit__)
+     5539    0.019    0.000    0.116    0.000 typing.py:1238(__init__)
+     1143    0.037    0.000    0.116    0.000 _model_construction.py:335(inspect_namespace)
+        1    0.000    0.000    0.115    0.115 openai_evals.py:1()
+     2527    0.018    0.000    0.114    0.000 copy.py:66(copy)
+    11/10    0.000    0.000    0.114    0.011 __init__.py:399(__getattr__)
+        3    0.000    0.000    0.112    0.037 credentials.py:1()
+        4    0.000    0.000    0.110    0.027 http.py:1()
+        6    0.000    0.000    0.109    0.018 helpers.py:1()
+    25447    0.058    0.000    0.107    0.000 core_schema.py:4035(_dict_not_none)
+    23444    0.049    0.000    0.107    0.000 contextlib.py:287(helper)
+     1173    0.006    0.000    0.106    0.000 typing.py:1531(__getitem__)
+        1    0.000    0.000    0.106    0.106 get_model_cost_map.py:145(fetch_remote_model_cost_map)
+        1    0.000    0.000    0.101    0.101 reauth.py:1()
+        1    0.000    0.000    0.101    0.101 console.py:1()
+     1381    0.004    0.000    0.100    0.000 typing.py:467(__getitem__)
+        2    0.000    0.000    0.099    0.049 completion.py:1()
+      546    0.002    0.000    0.099    0.000 _core_utils.py:567(validate_core_schema)
+        1    0.000    0.000    0.098    0.098 thread_create_params.py:1()
+        1    0.000    0.000    0.098    0.098 _api.py:187(get)
+        1    0.000    0.000    0.098    0.098 _api.py:38(request)
+        1    0.000    0.000    0.097    0.097 response_input_item.py:1()
+        1    0.000    0.000    0.094    0.094 jwt.py:1()
+      850    0.010    0.000    0.093    0.000 typing.py:687(Literal)
+     6470    0.007    0.000    0.093    0.000 :392(cached)
+     2647    0.093    0.000    0.093    0.000 :2(__init__)
+     1465    0.003    0.000    0.092    0.000 typing.py:1540(copy_with)
+        3    0.000    0.000    0.092    0.031 rsa.py:1()
+        1    0.000    0.000    0.092    0.092 _service_account_info.py:1()
+        4    0.000    0.000    0.092    0.023 auth.py:1()
+      546    0.091    0.000    0.091    0.000 {built-in method pydantic_core._pydantic_core.validate_core_schema}
+        1    0.000    0.000    0.090    0.090 markdown.py:1()
+        1    0.000    0.000    0.090    0.090 _cryptography_rsa.py:1()
+   137724    0.088    0.000    0.088    0.000 {method 'startswith' of 'str' objects}
+        2    0.000    0.000    0.088    0.044 _core.py:1()
+   153276    0.087    0.000    0.087    0.000 {method 'pop' of 'dict' objects}
+        2    0.000    0.000    0.087    0.043 _auth.py:1()
+    24864    0.055    0.000    0.087    0.000 :128()
+     9014    0.010    0.000    0.086    0.000 typing.py:670()
+     3254    0.010    0.000    0.086    0.000 :567(_get_cached)
+        1    0.000    0.000    0.085    0.085 http_parser.py:1()
+11650/10337    0.045    0.000    0.084    0.000 {built-in method __new__ of type object at 0x942fc8}
+        1    0.000    0.000    0.083    0.083 response_stream_event.py:1()
+        7    0.000    0.000    0.083    0.012 types.py:1()
+      113    0.000    0.000    0.083    0.001 dataclasses.py:1209(wrap)
+      113    0.007    0.000    0.082    0.001 dataclasses.py:884(_process_class)
+2524/2521    0.040    0.000    0.082    0.000 copy.py:259(_reconstruct)
+     5263    0.026    0.000    0.081    0.000 _generate_schema.py:2036(_get_prepare_pydantic_annotations_for_known_type)
+        2    0.000    0.000    0.080    0.040 default.py:1()
+    16542    0.033    0.000    0.079    0.000 dataclasses.py:1246(is_dataclass)
+  983/886    0.009    0.000    0.078    0.000 inspect.py:2426(_signature_from_callable)
+ 1319/963    0.009    0.000    0.078    0.000 _core_utils.py:344(handle_typed_dict_schema)
+        3    0.000    0.000    0.077    0.026 waiter.py:1()
+        2    0.000    0.000    0.077    0.038 service.py:1()
+     8333    0.036    0.000    0.076    0.000 _typing_extra.py:119(is_namedtuple)
+        1    0.000    0.000    0.075    0.075 tool_param.py:1()
+    12580    0.019    0.000    0.074    0.000 typing.py:1284(__instancecheck__)
+        3    0.074    0.025    0.074    0.025 {method 'load_verify_locations' of '_ssl._SSLContext' objects}
+   117648    0.073    0.000    0.073    0.000 {method 'append' of 'list' objects}
+        1    0.000    0.000    0.073    0.073 _client.py:783(request)
+        1    0.000    0.000    0.072    0.072 _client.py:891(send)
+    13177    0.016    0.000    0.072    0.000 :140(_path_stat)
+        5    0.000    0.000    0.071    0.014 connection.py:1()
+        1    0.000    0.000    0.071    0.071 RSA.py:1()
+        1    0.000    0.000    0.071    0.071 arize_phoenix_prompt_manager.py:1()
+19656/15722    0.025    0.000    0.071    0.000 typing.py:373()
+        1    0.000    0.000    0.069    0.069 Numbers.py:1()
+      730    0.002    0.000    0.069    0.000 inspect.py:3277(signature)
+        1    0.000    0.000    0.068    0.068 _IntegerGMP.py:1()
+        1    0.000    0.000    0.068    0.068 caching_handler.py:1()
+        1    0.000    0.000    0.068    0.068 llm_http_handler.py:1()
+      730    0.002    0.000    0.068    0.000 inspect.py:3023(from_callable)
+        1    0.000    0.000    0.067    0.067 vertex_and_google_ai_studio_gemini.py:1()
+     1221    0.004    0.000    0.066    0.000 typing.py:842(_evaluate)
+   114304    0.066    0.000    0.066    0.000 {method 'items' of 'dict' objects}
+      612    0.006    0.000    0.066    0.000 fields.py:685(Field)
+40944/40670    0.033    0.000    0.065    0.000 {method 'join' of 'str' objects}
+        1    0.000    0.000    0.065    0.065 _base_connection.py:1()
+        1    0.000    0.000    0.064    0.064 tool.py:1()
+        1    0.000    0.000    0.064    0.064 connector.py:1()
+        1    0.000    0.000    0.062    0.062 environment.py:1()
+    15593    0.051    0.000    0.062    0.000 _generate_schema.py:205(filter_field_decorator_info_by_field)
+        1    0.000    0.000    0.062    0.062 __init__.py:183(dumps)
+        1    0.000    0.000    0.062    0.062 encoder.py:183(encode)
+    34896    0.041    0.000    0.062    0.000 typing.py:1345(__eq__)
+        1    0.062    0.062    0.062    0.062 encoder.py:205(iterencode)
+     6519    0.009    0.000    0.061    0.000 _fields.py:243(_is_finalvar_with_default_val)
+        1    0.000    0.000    0.061    0.061 _client.py:942(_send_handling_auth)
+        1    0.000    0.000    0.061    0.061 _client.py:976(_send_handling_redirects)
+        1    0.000    0.000    0.061    0.061 _client.py:1013(_send_single_request)
+     3567    0.008    0.000    0.061    0.000 :169(__enter__)
+    16703    0.022    0.000    0.060    0.000 typing.py:159(_type_convert)
+88728/84437    0.055    0.000    0.060    0.000 {built-in method builtins.len}
+        1    0.000    0.000    0.060    0.060 gemini.py:1()
+      178    0.008    0.000    0.060    0.000 enum.py:488(__new__)
+        1    0.000    0.000    0.059    0.059 default.py:217(handle_request)
+        1    0.000    0.000    0.059    0.059 connection_pool.py:159(handle_request)
+    23444    0.043    0.000    0.058    0.000 contextlib.py:104(__init__)
+        1    0.000    0.000    0.058    0.058 connection.py:67(handle_request)
+    14409    0.058    0.000    0.058    0.000 {built-in method posix.stat}
+        2    0.000    0.000    0.058    0.029 ssl.py:745(create_default_context)
+        1    0.000    0.000    0.058    0.058 base_protocol.py:1()
+        1    0.000    0.000    0.058    0.058 ssl_.py:1()
+      156    0.001    0.000    0.057    0.000 _doc_utils.py:215(_add_function)
+      612    0.002    0.000    0.057    0.000 fields.py:243(from_field)
+        1    0.000    0.000    0.057    0.057 url.py:1()
+    27403    0.038    0.000    0.056    0.000 _model_construction.py:257(__getattr__)
+      886    0.013    0.000    0.056    0.000 inspect.py:2331(_signature_from_function)
+     9856    0.025    0.000    0.056    0.000 {built-in method builtins.any}
+    12580    0.033    0.000    0.056    0.000 typing.py:1547(__subclasscheck__)
+     6538    0.018    0.000    0.056    0.000 _typing_extra.py:146(is_classvar)
+        2    0.000    0.000    0.055    0.028 themes.py:1()
+    24454    0.035    0.000    0.055    0.000 :405(parent)
+     6880    0.027    0.000    0.055    0.000 inspect.py:2683(__init__)
+     4868    0.009    0.000    0.053    0.000 :159(_path_isfile)
+        1    0.000    0.000    0.053    0.053 node_handler.py:1()
+        2    0.000    0.000    0.053    0.027 connector.py:897(_make_ssl_context)
+        2    0.000    0.000    0.052    0.026 app.py:1()
+        2    0.052    0.026    0.052    0.026 {method 'set_default_verify_paths' of '_ssl._SSLContext' objects}
+       44    0.000    0.000    0.051    0.001 argparse.py:1742(__init__)
+    23564    0.035    0.000    0.051    0.000 _generate_schema.py:401(_config_wrapper)
+        2    0.000    0.000    0.051    0.025 prompt.py:1()
+     1403    0.028    0.000    0.050    0.000 _config.py:157(core_config)
+        1    0.000    0.000    0.049    0.049 mcp_server_manager.py:1()
+        2    0.000    0.000    0.049    0.025 globals.py:1()
+       24    0.001    0.000    0.049    0.002 common_utils.py:1()
+        1    0.000    0.000    0.049    0.049 deepeval.py:1()
+      546    0.002    0.000    0.048    0.000 _loader.py:21(get_plugins)
+       21    0.000    0.000    0.048    0.002 exceptions.py:1()
+        1    0.000    0.000    0.048    0.048 connection.py:103(_connect)
+     6437    0.014    0.000    0.048    0.000 :132(_path_split)
+        1    0.000    0.000    0.048    0.048 anthropic_skills.py:1()
+    23922    0.032    0.000    0.048    0.000 _parser.py:162(__getitem__)
+    24957    0.030    0.000    0.048    0.000 _parser.py:252(get)
+     4213    0.013    0.000    0.048    0.000 _generate_schema.py:883(_get_args_resolving_forward_refs)
+     5441    0.008    0.000    0.047    0.000 :150(_path_is_mode_type)
+        7    0.000    0.000    0.047    0.007 api.py:1()
+        1    0.000    0.000    0.046    0.046 policy.py:1()
+    74243    0.046    0.000    0.046    0.000 {method 'endswith' of 'str' objects}
+        1    0.000    0.000    0.046    0.046 anthropic_response.py:1()
+        2    0.000    0.000    0.045    0.023 langsmith.py:1()
+        4    0.000    0.000    0.045    0.011 compat.py:1()
+        1    0.000    0.000    0.045    0.045 restdoc.py:1()
+        1    0.000    0.000    0.045    0.045 headerregistry.py:1()
+        1    0.000    0.000    0.045    0.045 mcp.py:1()
+        1    0.000    0.000    0.045    0.045 realtime.py:1()
+     8277    0.015    0.000    0.044    0.000 _typing_extra.py:545(is_dataclass)
+     3687    0.008    0.000    0.044    0.000 typing.py:818(__init__)
+        1    0.000    0.000    0.043    0.043 anthropic.py:1()
+60843/60839    0.039    0.000    0.042    0.000 {built-in method builtins.setattr}
+25052/15076    0.022    0.000    0.042    0.000 {built-in method builtins.hash}
+     2639    0.015    0.000    0.042    0.000 typing.py:301(_remove_dups_flatten)
+     2046    0.004    0.000    0.041    0.000 _IntegerGMP.py:625(get_bit)
+        1    0.000    0.000    0.041    0.041 run_create_params.py:1()
+        6    0.000    0.000    0.040    0.007 __init__.py:299(loads)
+        1    0.000    0.000    0.040    0.040 agents.py:1()
+        1    0.000    0.000    0.040    0.040 slack_alerting.py:1()
+       40    0.000    0.000    0.040    0.001 argparse.py:1189(add_parser)
+        6    0.000    0.000    0.040    0.007 decoder.py:332(decode)
+        6    0.040    0.007    0.040    0.007 decoder.py:343(raw_decode)
+     2292    0.005    0.000    0.040    0.000 _generics.py:237(get_model_typevars_map)
+     1845    0.004    0.000    0.040    0.000 :105(__new__)
+        1    0.000    0.000    0.039    0.039 interactive.py:1()
+       13    0.000    0.000    0.039    0.003 _raw_api.py:184(load_lib)
+    14764    0.025    0.000    0.039    0.000 _typing_extra.py:566(is_self_type)
+        1    0.039    0.039    0.039    0.039 headerregistry.py:260(UnstructuredHeader)
+        1    0.000    0.000    0.039    0.039 flow.py:1()
+      626    0.003    0.000    0.039    0.000 fields.py:418(merge_field_infos)
+    32208    0.033    0.000    0.039    0.000 _typing_extra.py:158(_check_finalvar)
+     2841    0.008    0.000    0.038    0.000 _fields.py:227(_warn_on_nested_alias_in_annotation)
+        2    0.000    0.000    0.038    0.019 _synchronization.py:1()
+        1    0.000    0.000    0.038    0.038 init_prompts.py:1()
+        4    0.000    0.000    0.038    0.009 __init__.py:274(load)
+     1853    0.012    0.000    0.038    0.000 enum.py:356(__setitem__)
+     2062    0.005    0.000    0.037    0.000 _IntegerGMP.py:344(__lt__)
+     1400    0.025    0.000    0.037    0.000 _compiler.py:241(_optimize_charset)
+        1    0.000    0.000    0.037    0.037 vector_stores.py:1()
+     6199    0.013    0.000    0.037    0.000 _typing_extra.py:87(is_literal_type)
+      449    0.003    0.000    0.037    0.000 dataclasses.py:413(_create_fn)
+    38506    0.037    0.000    0.037    0.000 _config.py:148(__getattr__)
+     4459    0.016    0.000    0.036    0.000 :179(_get_module_lock)
+      140    0.000    0.000    0.036    0.000 gettext.py:619(gettext)
+      140    0.000    0.000    0.036    0.000 gettext.py:581(dgettext)
+2397/2343    0.008    0.000    0.035    0.000 _generics.py:187(iter_contained_typevars)
+      140    0.000    0.000    0.035    0.000 gettext.py:522(translation)
+      292    0.002    0.000    0.035    0.000 typing.py:1615(__getitem__)
+        7    0.000    0.000    0.035    0.005 _version.py:1()
+      140    0.003    0.000    0.035    0.000 gettext.py:467(find)
+        2    0.000    0.000    0.035    0.017 sessions.py:1()
+    20545    0.023    0.000    0.035    0.000 typing.py:868(__eq__)
+     7545    0.014    0.000    0.034    0.000 {built-in method builtins.max}
+     3252    0.008    0.000    0.034    0.000 :1599(_get_spec)
+    25447    0.034    0.000    0.034    0.000 core_schema.py:4036()
+        1    0.000    0.000    0.034    0.034 rerank.py:1()
+    14612    0.024    0.000    0.034    0.000 py3compat.py:157(is_native_int)
+        1    0.000    0.000    0.034    0.034 response_input_param.py:1()
+    41519    0.034    0.000    0.034    0.000 {method 'rpartition' of 'str' objects}
+     5990    0.008    0.000    0.034    0.000 fields.py:497(_extract_metadata)
+    60865    0.034    0.000    0.034    0.000 {method 'rstrip' of 'str' objects}
+        2    0.000    0.000    0.033    0.017 fields.py:1()
+        1    0.000    0.000    0.033    0.033 sync.py:186(connect_tcp)
+        1    0.000    0.000    0.033    0.033 socket.py:809(create_connection)
+        2    0.000    0.000    0.033    0.016 node_service.py:13(list_nodes)
+    52077    0.033    0.000    0.033    0.000 {method 'get' of 'mappingproxy' objects}
+        2    0.000    0.000    0.033    0.016 arize.py:1()
+     1358    0.008    0.000    0.033    0.000 {built-in method builtins.eval}
+    15762    0.022    0.000    0.033    0.000 _typing_extra.py:557(is_generic_alias)
+     1311    0.016    0.000    0.032    0.000 enum.py:237(__set_name__)
+        1    0.000    0.000    0.032    0.032 converse_handler.py:1()
+     1143    0.010    0.000    0.032    0.000 _config.py:99(for_model)
+    14015    0.017    0.000    0.032    0.000 :1028(__enter__)
+     6138    0.015    0.000    0.032    0.000 _IntegerGMP.py:529(__imul__)
+        1    0.000    0.000    0.032    0.032 serving.py:1()
+     2192    0.005    0.000    0.031    0.000 _IntegerGMP.py:329(_apply_and_return)
+     3484    0.008    0.000    0.031    0.000 _generate_schema.py:2410(wrap_default)
+        1    0.000    0.000    0.031    0.031 invoke_handler.py:1()
+        1    0.000    0.000    0.031    0.031 __init__.py:1079(version)
+     9651    0.019    0.000    0.031    0.000 :84(_unpack_uint32)
+        4    0.000    0.000    0.031    0.008 http_handler.py:1204(get_async_httpx_client)
+3381/3033    0.007    0.000    0.031    0.000 _decorators.py:303(mro)
+        1    0.000    0.000    0.031    0.031 dual_cache.py:1()
+        1    0.000    0.000    0.030    0.030 base_ingestion.py:1()
+        1    0.000    0.000    0.030    0.030 core_schema.py:1()
+7997/6694    0.015    0.000    0.030    0.000 typing.py:1637(__hash__)
+        4    0.000    0.000    0.030    0.007 http_handler.py:346(__init__)
+        4    0.000    0.000    0.030    0.007 http_handler.py:365(create_client)
+        1    0.000    0.000    0.030    0.030 ssl.py:591(load_default_certs)
+        1    0.000    0.000    0.029    0.029 adapters.py:1()
+        7    0.000    0.000    0.029    0.004 util.py:1()
+     5378    0.018    0.000    0.029    0.000 fields.py:205()
+        1    0.000    0.000    0.029    0.029 handler.py:31(__init__)
+     5662    0.019    0.000    0.029    0.000 typing_extensions.py:2954(_has_generic_or_protocol_as_origin)
+        1    0.000    0.000    0.029    0.029 configfile.py:1()
+     5097    0.008    0.000    0.029    0.000 core_schema.py:3781(definition_reference_schema)
+     4798    0.011    0.000    0.029    0.000 _typing_extra.py:83(is_callable_type)
+     8611    0.017    0.000    0.029    0.000 typing_extensions.py:1132(is_typeddict)
+    38075    0.028    0.000    0.029    0.000 {method 'update' of 'dict' objects}
+     1143    0.006    0.000    0.029    0.000 _model_construction.py:275(_collect_bases_data)
+    15660    0.019    0.000    0.029    0.000 typing.py:1668(__eq__)
+        4    0.000    0.000    0.028    0.007 http_handler.py:211(get_ssl_configuration)
+    14015    0.019    0.000    0.028    0.000 :1032(__exit__)
+        1    0.000    0.000    0.028    0.028 _raw_api.py:1()
+        1    0.000    0.000    0.028    0.028 http_handler.py:124(_create_ssl_context)
+        2    0.000    0.000    0.028    0.014 http11.py:1()
+        1    0.000    0.000    0.028    0.028 _model_construction.py:1()
+       12    0.000    0.000    0.028    0.002 cost_calculator.py:1()
+        1    0.000    0.000    0.028    0.028 rag.py:1()
+     6079    0.018    0.000    0.028    0.000 _core_metadata.py:70(build_metadata_dict)
+      156    0.001    0.000    0.027    0.000 _doc_utils.py:140(get_doc)
+        2    0.000    0.000    0.027    0.014 message.py:1()
+        7    0.000    0.000    0.027    0.004 context_service.py:81(filter_node_list)
+     5063    0.008    0.000    0.027    0.000 typing_extensions.py:894(_get_typeddict_qualifiers)
+     3217    0.007    0.000    0.027    0.000 :675(_validate_timestamp_pyc)
+        1    0.000    0.000    0.027    0.027 urls.py:1()
+        2    0.000    0.000    0.027    0.013 cookiejar.py:1()
+        1    0.000    0.000    0.027    0.027 redis_cache.py:1()
+     3217    0.027    0.000    0.027    0.000 {built-in method io.open_code}
+9006/6630    0.012    0.000    0.027    0.000 typing.py:1351(__hash__)
+    32896    0.027    0.000    0.027    0.000 typing.py:431(__getattr__)
+     4818    0.008    0.000    0.027    0.000 core_schema.py:2923(model_field)
+        1    0.000    0.000    0.026    0.026 response_output_item.py:1()
+        1    0.000    0.000    0.026    0.026 _generate_schema.py:1()
+        7    0.002    0.000    0.026    0.004 context_service.py:83()
+     5538    0.007    0.000    0.026    0.000 typing_extensions.py:2976(_is_unpacked_typevartuple)
+        1    0.000    0.000    0.026    0.026 _loader.py:1()
+        1    0.000    0.000    0.026    0.026 _figure.py:1()
+        1    0.000    0.000    0.026    0.026 socket.py:945(getaddrinfo)
+     3217    0.013    0.000    0.026    0.000 :642(_classify_pyc)
+     2744    0.003    0.000    0.026    0.000 typing.py:1536()
+        1    0.025    0.025    0.026    0.026 {built-in method _socket.getaddrinfo}
+        1    0.000    0.000    0.026    0.026 aws.py:1972(__init__)
+        4    0.000    0.000    0.025    0.006 request.py:1()
+        1    0.000    0.000    0.025    0.025 parser_block.py:1()
+        2    0.000    0.000    0.025    0.013 __init__.py:7(default_backend)
+        1    0.000    0.000    0.025    0.025 extensions.py:1()
+     2891    0.005    0.000    0.025    0.000 context_service.py:77(_match_any)
+      414    0.004    0.000    0.025    0.000 _compiler.py:509(_compile_info)
+        1    0.000    0.000    0.024    0.024 _connection.py:1()
+    21985    0.024    0.000    0.024    0.000 {built-in method _imp.acquire_lock}
+        1    0.000    0.000    0.024    0.024 _client.py:628(__init__)
+      113    0.000    0.000    0.024    0.000 dataclasses.py:1192(dataclass)
+        2    0.000    0.000    0.024    0.012 common.py:1()
+        7    0.000    0.000    0.024    0.003 parser.py:1()
+        1    0.000    0.000    0.024    0.024 example.py:1()
+     4459    0.019    0.000    0.024    0.000 :100(acquire)
+        2    0.000    0.000    0.024    0.012 factory.py:1()
+        1    0.000    0.000    0.024    0.024 backend.py:1()
+     3484    0.006    0.000    0.024    0.000 core_schema.py:2364(with_default_schema)
+        1    0.000    0.000    0.024    0.024 parse_link_label.py:1()
+        3    0.000    0.000    0.024    0.008 embedding.py:1()
+     3255    0.012    0.000    0.024    0.000 :778(spec_from_file_location)
+        1    0.000    0.000    0.023    0.023 gcs_cache.py:1()
+        1    0.000    0.000    0.023    0.023 amazon_titan_v2_transformation.py:1()
+      488    0.002    0.000    0.023    0.000 _generate_schema.py:1418(_literal_schema)
+      220    0.000    0.000    0.023    0.000 __init__.py:634(entry_points)
+    32903    0.023    0.000    0.023    0.000 _parser.py:231(__next)
+     1529    0.012    0.000    0.023    0.000 inspect.py:2969(__init__)
+        1    0.000    0.000    0.023    0.023 services.py:1()
+    10406    0.015    0.000    0.023    0.000 _generate_schema.py:2567(push)
+        1    0.000    0.000    0.023    0.023 shape.py:1()
+        1    0.000    0.000    0.023    0.023 common.py:8(pyparsing_common)
+        1    0.000    0.000    0.022    0.022 galileo.py:1()
+        1    0.000    0.000    0.022    0.022 __init__.py:1053(distribution)
+        1    0.000    0.000    0.022    0.022 __init__.py:449(from_name)
+        3    0.000    0.000    0.022    0.007 _itertools.py:133(_get_values)
+    10830    0.016    0.000    0.022    0.000 _model_construction.py:63(__setitem__)
+       37    0.000    0.000    0.022    0.001 _make.py:1415(wrap)
+        1    0.000    0.000    0.022    0.022 _client.py:726(_init_transport)
+        1    0.000    0.000    0.022    0.022 default.py:125(__init__)
+        1    0.000    0.000    0.022    0.022 _config.py:49(create_ssl_context)
+        1    0.000    0.000    0.022    0.022 _config.py:67(__init__)
+        1    0.000    0.000    0.022    0.022 _config.py:81(load_ssl_context)
+        1    0.000    0.000    0.022    0.022 _config.py:104(load_ssl_context_verify)
+        1    0.000    0.000    0.022    0.022 bedrock.py:1()
+     3489    0.009    0.000    0.022    0.000 typing.py:287(_deduplicate)
+     2407    0.006    0.000    0.022    0.000 _generate_schema.py:424(str_schema)
+     3567    0.005    0.000    0.021    0.000 :173(__exit__)
+        1    0.000    0.000    0.021    0.021 tool_permission.py:1()
+        1    0.000    0.000    0.021    0.021 terminal.py:124(__init__)
+     4332    0.004    0.000    0.021    0.000 :1421(_path_importer_cache)
+        1    0.000    0.000    0.021    0.021 litellm_content_filter.py:1()
+        1    0.000    0.000    0.021    0.021 response_item.py:1()
+     2288    0.009    0.000    0.021    0.000 _IntegerGMP.py:161(__init__)
+        1    0.000    0.000    0.021    0.021 gcs_bucket_base.py:1()
+     7783    0.012    0.000    0.020    0.000 enum.py:691(__call__)
+        1    0.000    0.000    0.020    0.020 platform.py:646(architecture)
+        1    0.000    0.000    0.020    0.020 platform.py:602(_syscmd_file)
+        1    0.000    0.000    0.020    0.020 parsed_response.py:1()
+     3318    0.006    0.000    0.020    0.000 core_schema.py:2426(nullable_schema)
+    12874    0.014    0.000    0.020    0.000 :134()
+        1    0.000    0.000    0.020    0.020 response_computer_tool_call.py:1()
+        1    0.000    0.000    0.020    0.020 pretty.py:1()
+        1    0.000    0.000    0.020    0.020 scope.py:1()
+        3    0.000    0.000    0.020    0.007 configfile.py:475(_getallnodes)
+        3    0.000    0.000    0.020    0.007 text.py:1()
+        1    0.000    0.000    0.020    0.020 grayswan.py:1()
+  336/230    0.002    0.000    0.020    0.000 _decorators.py:352(get_attribute_from_bases)
+      156    0.001    0.000    0.020    0.000 _doc_utils.py:89(get_doc)
+ 1048/482    0.003    0.000    0.020    0.000 _decorators.py:321(mro_for_bases)
+        1    0.000    0.000    0.020    0.020 loader.py:1()
+        1    0.000    0.000    0.020    0.020 terminal.py:270(__init__capabilities)
+     4459    0.014    0.000    0.020    0.000 :125(release)
+     8184    0.014    0.000    0.020    0.000 _IntegerGMP.py:695(set)
+     5464    0.006    0.000    0.020    0.000 _known_annotated_metadata.py:121(expand_grouped_metadata)
+        1    0.000    0.000    0.020    0.020 openai.py:2131(OpenAIAssistantsAPI)
+     2121    0.007    0.000    0.020    0.000 _utility.py:381(colorize)
+        1    0.000    0.000    0.019    0.019 subprocess.py:417(check_output)
+        1    0.000    0.000    0.019    0.019 subprocess.py:506(run)
+        3    0.000    0.000    0.019    0.006 lexer.py:1()
+        1    0.000    0.000    0.019    0.019 _figure.py:16(_figure_class)
+    31774    0.019    0.000    0.019    0.000 {method 'add' of 'set' objects}
+      677    0.004    0.000    0.019    0.000 pathlib.py:485(_parse_args)
+        4    0.000    0.000    0.019    0.005 abc.py:1()
+    37/34    0.000    0.000    0.019    0.001 :1231(create_module)
+        1    0.000    0.000    0.019    0.019 enkryptai.py:1()
+      172    0.002    0.000    0.019    0.000 argparse.py:1424(add_argument)
+    37/34    0.015    0.000    0.019    0.001 {built-in method _imp.create_dynamic}
+     3511    0.010    0.000    0.019    0.000 :198(cb)
+        1    0.000    0.000    0.018    0.018 _sync.py:1()
+    27/25    0.000    0.000    0.018    0.001 functional_validators.py:123(__get_pydantic_core_schema__)
+       25    0.000    0.000    0.018    0.001 __init__.py:848(search)
+       21    0.000    0.000    0.018    0.001 __init__.py:989()
+      156    0.000    0.000    0.018    0.000 _doc_utils.py:156(get_parameters)
+        1    0.000    0.000    0.018    0.018 run_step.py:1()
+    26217    0.018    0.000    0.018    0.000 :244(_verbose_message)
+        8    0.000    0.000    0.018    0.002 __init__.py:914()
+        1    0.000    0.000    0.018    0.018 _fileio.py:1()
+       17    0.000    0.000    0.018    0.001 _functools.py:75(wrapper)
+        7    0.000    0.000    0.018    0.003 __init__.py:812(search)
+ 3965/968    0.013    0.000    0.018    0.000 _parser.py:172(getwidth)
+     6138    0.014    0.000    0.018    0.000 _IntegerGMP.py:548(__imod__)
+        1    0.000    0.000    0.018    0.018 html_block.py:1()
+      449    0.001    0.000    0.018    0.000 pathlib.py:869(__new__)
+        1    0.000    0.000    0.018    0.018 oauth2_auth.py:1()
+        1    0.000    0.000    0.018    0.018 ibm_detector.py:1()
+        7    0.000    0.000    0.018    0.003 __init__.py:821(lookup)
+        7    0.002    0.000    0.018    0.003 __init__.py:827(__init__)
+        2    0.000    0.000    0.018    0.009 completion_create_params.py:1()
+       17    0.000    0.000    0.018    0.001 _functools.py:76(wrapper)
+      156    0.003    0.000    0.018    0.000 inspect.py:1336(getfullargspec)
+        3    0.000    0.000    0.018    0.006 _adapters.py:1()
+      156    0.000    0.000    0.018    0.000 _doc_utils.py:90()
+        9    0.000    0.000    0.018    0.002 __init__.py:857(lookup)
+        1    0.000    0.000    0.018    0.018 function_shell_tool.py:1()
+        9    0.002    0.000    0.018    0.002 __init__.py:867(__init__)
+        1    0.000    0.000    0.018    0.018 subprocess.py:1163(communicate)
+        1    0.000    0.000    0.018    0.018 assistant_stream_event.py:1()
+      449    0.001    0.000    0.018    0.000 pathlib.py:505(_from_parts)
+     3069    0.009    0.000    0.018    0.000 _IntegerGMP.py:673(multiply_accumulate)
+      963    0.009    0.000    0.018    0.000 functools.py:35(update_wrapper)
+        1    0.000    0.000    0.017    0.017 http_writer.py:1()
+        1    0.000    0.000    0.017    0.017 vertex_ai.py:1()
+     1202    0.006    0.000    0.017    0.000 _generate_schema.py:609(_add_js_function)
+        3    0.000    0.000    0.017    0.006 __init__.py:514(metadata)
+      492    0.002    0.000    0.017    0.000 _doc_utils.py:59(get_doc)
+    26712    0.017    0.000    0.017    0.000 {built-in method builtins.id}
+        1    0.000    0.000    0.017    0.017 pagination.py:1()
+        3    0.000    0.000    0.017    0.006 _functools.py:100(wrapper)
+        3    0.000    0.000    0.017    0.006 __init__.py:536(_assemble_message)
+      410    0.002    0.000    0.017    0.000 :1408(_path_hooks)
+     1714    0.006    0.000    0.017    0.000 _generate_schema.py:337(push)
+       13    0.000    0.000    0.017    0.001 enum.py:896(_convert_)
+        1    0.000    0.000    0.017    0.017 to_thread.py:1()
+        1    0.000    0.000    0.016    0.016 _log_render.py:1()
+        1    0.000    0.000    0.016    0.016 chat_completion.py:1()
+     2006    0.003    0.000    0.016    0.000 _config.py:93(__init__)
+    23564    0.016    0.000    0.016    0.000 _config.py:211(tail)
+     3217    0.005    0.000    0.016    0.000 :1146(path_stats)
+ 1403/488    0.003    0.000    0.016    0.000 _typing_extra.py:99(all_literal_values)
+     2408    0.005    0.000    0.016    0.000 core_schema.py:813(str_schema)
+      294    0.001    0.000    0.016    0.000 typing.py:1586(__getitem__)
+        7    0.000    0.000    0.016    0.002 http11.py:216(_receive_event)
+      107    0.001    0.000    0.016    0.000 dataclasses.py:528(_init_fn)
+       67    0.011    0.000    0.016    0.000 {method 'read' of '_io.TextIOWrapper' objects}
+        1    0.000    0.000    0.016    0.016 _content.py:1()
+     1265    0.008    0.000    0.016    0.000 :71(join)
+        1    0.000    0.000    0.016    0.016 _decorators.py:1()
+        1    0.000    0.000    0.015    0.015 terminal.py:1()
+        3    0.000    0.000    0.015    0.005 __init__.py:32(message_from_string)
+        1    0.000    0.000    0.015    0.015 pty_spawn.py:1()
+        3    0.000    0.000    0.015    0.005 parser.py:59(parsestr)
+    24210    0.015    0.000    0.015    0.000 {method 'values' of 'dict' objects}
+        1    0.000    0.000    0.015    0.015 _multipart.py:1()
+        1    0.000    0.000    0.015    0.015 qualifire.py:1()
+        3    0.000    0.000    0.015    0.005 parser.py:41(parse)
+     5378    0.012    0.000    0.015    0.000 fields.py:514(_collect_metadata)
+     2379    0.004    0.000    0.015    0.000 _utils.py:85(is_model_class)
+    13076    0.013    0.000    0.015    0.000 _typing_extra.py:142(_check_classvar)
+    12938    0.012    0.000    0.015    0.000 _parser.py:247(match)
+     3778    0.005    0.000    0.015    0.000 :117(__instancecheck__)
+        1    0.000    0.000    0.015    0.015 sync.py:142(start_tls)
+        1    0.000    0.000    0.015    0.015 ssl.py:511(wrap_socket)
+     7786    0.009    0.000    0.015    0.000 _parser.py:158(__len__)
+        1    0.000    0.000    0.015    0.015 ssl.py:1018(_create)
+        1    0.000    0.000    0.015    0.015 fine_tuning_job.py:1()
+     5553    0.010    0.000    0.015    0.000 _generate_schema.py:1239(_apply_field_title_generator_to_field_info)
+        1    0.000    0.000    0.015    0.015 map.py:1()
+        1    0.000    0.000    0.015    0.015 _urls.py:1()
+     2515    0.006    0.000    0.015    0.000 :674(__getitem__)
+        1    0.000    0.000    0.015    0.015 ssl.py:1372(do_handshake)
+        1    0.015    0.015    0.015    0.015 {method 'do_handshake' of '_ssl._SSLSocket' objects}
+        6    0.000    0.000    0.014    0.002 sync.py:122(read)
+        2    0.000    0.000    0.014    0.007 langfuse.py:1()
+        6    0.000    0.000    0.014    0.002 ssl.py:1289(recv)
+        2    0.000    0.000    0.014    0.007 subprocess.py:1()
+        6    0.000    0.000    0.014    0.002 ssl.py:1158(read)
+        2    0.000    0.000    0.014    0.007 _logging.py:1()
+        6    0.014    0.002    0.014    0.002 {method 'read' of '_ssl._SSLSocket' objects}
+     6711    0.010    0.000    0.014    0.000 _parser.py:170(append)
+       17    0.000    0.000    0.014    0.001 main.py:513(model_rebuild)
+        1    0.001    0.001    0.014    0.014 llm_http_handler.py:153(BaseLLMHTTPHandler)
+        9    0.000    0.000    0.014    0.002 feedparser.py:173(feed)
+       12    0.000    0.000    0.014    0.001 feedparser.py:178(_call_parse)
+       12    0.006    0.000    0.014    0.001 feedparser.py:218(_parsegen)
+        2    0.000    0.000    0.014    0.007 datadog_llm_obs.py:1()
+     9494    0.010    0.000    0.014    0.000 context_service.py:78()
+     7918    0.009    0.000    0.014    0.000 _fields.py:332(is_valid_privateattr_name)
+     4213    0.009    0.000    0.014    0.000 _generate_schema.py:886()
+        1    0.000    0.000    0.014    0.014 _base_client.py:1()
+    21985    0.014    0.000    0.014    0.000 {built-in method _imp.release_lock}
+        2    0.000    0.000    0.014    0.007 run.py:1()
+        1    0.000    0.000    0.014    0.014 response_output_message.py:1()
+      892    0.003    0.000    0.014    0.000 :216(_lock_unlock_module)
+        1    0.000    0.000    0.014    0.014 custom_batch_logger.py:1()
+        1    0.000    0.000    0.013    0.013 platform.py:1()
+     2329    0.005    0.000    0.013    0.000 _config.py:278(prepare_config)
+        1    0.000    0.000    0.013    0.013 docstringparser.py:1()
+      677    0.006    0.000    0.013    0.000 pathlib.py:55(parse_parts)
+       52    0.002    0.000    0.013    0.000 typing.py:2815(__new__)
+        2    0.000    0.000    0.013    0.007 nodes.py:1()
+    21418    0.013    0.000    0.013    0.000 fields.py:222()
+     7149    0.009    0.000    0.013    0.000 _fields.py:328(is_valid_field_name)
+    15162    0.013    0.000    0.013    0.000 typing.py:206(_should_unflatten_callable_args)
+        1    0.000    0.000    0.013    0.013 test.py:1()
+      150    0.000    0.000    0.013    0.000 typing.py:3027(Required)
+     1343    0.007    0.000    0.013    0.000 typing.py:1674(__hash__)
+        1    0.000    0.000    0.013    0.013 progress.py:1()
+        1    0.000    0.000    0.013    0.013 parse_link_destination.py:1()
+        1    0.000    0.000    0.013    0.013 block_code_execution.py:1()
+        1    0.000    0.000    0.013    0.013 openai_ingestion.py:1()
+     1143    0.008    0.000    0.013    0.000 _model_construction.py:615(set_deprecated_descriptors)
+     4100    0.008    0.000    0.013    0.000 _signature.py:16(_field_name_for_signature)
+      8/5    0.000    0.000    0.013    0.003 _generate_schema.py:1609(_tuple_schema)
+       11    0.000    0.000    0.013    0.001 core.py:5705(__init__)
+       37    0.000    0.000    0.013    0.000 _make.py:778(build_class)
+      149    0.001    0.000    0.013    0.000 typing.py:1952(__instancecheck__)
+        1    0.000    0.000    0.013    0.013 general_name.py:1()
+      220    0.002    0.000    0.013    0.000 __init__.py:930(read_text)
+     3474    0.006    0.000    0.013    0.000 :922(find_spec)
+      8/5    0.000    0.000    0.013    0.003 _generate_schema.py:1637()
+        1    0.000    0.000    0.013    0.013 root_model.py:1()
+       20    0.004    0.000    0.013    0.001 enum.py:1646(convert_class)
+    32/10    0.000    0.000    0.013    0.001 core.py:4587(leave_whitespace)
+    20327    0.013    0.000    0.013    0.000 {method 'discard' of 'set' objects}
+      147    0.001    0.000    0.013    0.000 typing.py:1600(__getitem_inner__)
+     6363    0.008    0.000    0.013    0.000 _utility.py:397(apply_ansi)
+     4039    0.008    0.000    0.012    0.000 _utils.py:94(is_valid_identifier)
+        1    0.000    0.000    0.012    0.012 _doc.py:1()
+      410    0.002    0.000    0.012    0.000 :1655(_fill_cache)
+        1    0.000    0.000    0.012    0.012 container_auto.py:1()
+ 1048/482    0.001    0.000    0.012    0.000 _decorators.py:345()
+       55    0.000    0.000    0.012    0.000 typing.py:2795(_make_nmtuple)
+        1    0.000    0.000    0.012    0.012 run_step_delta.py:1()
+        1    0.000    0.000    0.012    0.012 name.py:1()
+        1    0.000    0.000    0.012    0.012 tool_calls_step_details.py:1()
+        4    0.000    0.000    0.012    0.003 urls.py:29(_make_unquote_part)
+     3511    0.007    0.000    0.012    0.000 :71(__init__)
+        1    0.000    0.000    0.012    0.012 matcher.py:1()
+     1400    0.007    0.000    0.012    0.000 _compiler.py:214(_compile_charset)
+      410    0.001    0.000    0.012    0.000 :1696(path_hook_for_FileFinder)
+      149    0.001    0.000    0.012    0.000 typing.py:1773(__class_getitem__)
+      466    0.001    0.000    0.012    0.000 core.py:521(copy)
+      166    0.001    0.000    0.012    0.000 utils.py:1421(client)
+     3041    0.005    0.000    0.012    0.000 _IntegerGMP.py:493(__iadd__)
+      104    0.001    0.000    0.012    0.000 typing.py:2169(__class_getitem__)
+      386    0.003    0.000    0.012    0.000 dataclasses.py:723(_get_field)
+       89    0.004    0.000    0.012    0.000 __init__.py:348(namedtuple)
+        1    0.000    0.000    0.012    0.012 args.py:1()
+        1    0.000    0.000    0.011    0.011 client_middlewares.py:1()
+      126    0.000    0.000    0.011    0.000 argparse.py:2592(_get_formatter)
+        2    0.000    0.000    0.011    0.006 resolver.py:1()
+        1    0.000    0.000    0.011    0.011 typing.py:1()
+        1    0.000    0.000    0.011    0.011 defaults.py:1()
+      919    0.001    0.000    0.011    0.000 typing.py:1624()
+    15593    0.011    0.000    0.011    0.000 _generate_schema.py:208()
+        1    0.000    0.000    0.011    0.011 response_metadata.py:1()
+        1    0.000    0.000    0.011    0.011 base_events.py:1()
+        1    0.000    0.000    0.011    0.011 _events.py:1()
+        1    0.000    0.000    0.011    0.011 accept.py:1()
+        7    0.000    0.000    0.011    0.002 version.py:1()
+        1    0.000    0.000    0.011    0.011 _models.py:810(read)
+        5    0.001    0.000    0.011    0.002 {method 'join' of 'bytes' objects}
+     1149    0.006    0.000    0.011    0.000 _generate_schema.py:369(__init__)
+        1    0.000    0.000    0.011    0.011 tool_call.py:1()
+        2    0.000    0.000    0.011    0.005 __init__.py:554(version)
+        1    0.000    0.000    0.011    0.011 functional_validators.py:1()
+        1    0.000    0.000    0.011    0.011 responses_client_event.py:1()
+        1    0.000    0.000    0.011    0.011 ssl.py:1()
+    18130    0.011    0.000    0.011    0.000 typing.py:1338()
+      428    0.011    0.000    0.011    0.000 {built-in method posix.listdir}
+      144    0.000    0.000    0.011    0.000 _core_utils.py:269(handle_generator_schema)
+    13900    0.011    0.000    0.011    0.000 _typing_extra.py:51(origin_is_union)
+        2    0.000    0.000    0.011    0.005 handlers.py:1()
+        1    0.000    0.000    0.010    0.010 client_reqrep.py:1()
+        1    0.000    0.000    0.010    0.010 get_api_base.py:1()
+        1    0.000    0.000    0.010    0.010 tracing.py:1()
+       29    0.003    0.000    0.010    0.000 util.py:186(_collapse_string_to_ranges)
+        1    0.000    0.000    0.010    0.010 chat_completion_message.py:1()
+      113    0.000    0.000    0.010    0.000 dataclasses.py:588(_repr_fn)
+     4765    0.008    0.000    0.010    0.000 _parser.py:284(tell)
+        2    0.000    0.000    0.010    0.005 structures.py:1()
+     3288    0.010    0.000    0.010    0.000 {method '__exit__' of '_io._IOBase' objects}
+      857    0.003    0.000    0.010    0.000 _generate_schema.py:409(_current_generate_schema)
+   132/63    0.000    0.000    0.010    0.000 core.py:3904(copy)
+    63/10    0.000    0.000    0.010    0.001 core.py:3812(leave_whitespace)
+     1480    0.003    0.000    0.010    0.000 _compiler.py:396(_simple)
+     3778    0.003    0.000    0.010    0.000 {built-in method _abc._abc_instancecheck}
+        1    0.000    0.000    0.010    0.010 assistant.py:1()
+        1    0.000    0.000    0.010    0.010 http11.py:72(handle_request)
+        3    0.000    0.000    0.010    0.003 gpt_transformation.py:1()
+        2    0.000    0.000    0.010    0.005 filters.py:1()
+     1149    0.003    0.000    0.010    0.000 _typing_extra.py:222(merge_cls_and_parent_ns)
+        1    0.000    0.000    0.010    0.010 compat.py:18(_resolve_char_detection)
+      220    0.001    0.000    0.010    0.000 __init__.py:400(_from_text_for)
+      103    0.000    0.000    0.010    0.000 dataclasses.py:624(_cmp_fn)
+        2    0.000    0.000    0.010    0.005 table.py:1()
+        1    0.000    0.000    0.010    0.010 default_styles.py:1()
+        1    0.000    0.000    0.010    0.010 transcription_stream_event.py:1()
+        1    0.000    0.000    0.010    0.010 parser_core.py:1()
+        6    0.000    0.000    0.010    0.002 _models.py:818(iter_bytes)
+      224    0.001    0.000    0.010    0.000 pathlib.py:1054(read_text)
+        1    0.000    0.000    0.010    0.010 name.py:362(_RFC4514NameParser)
+       10    0.000    0.000    0.010    0.001 core.py:2787(__init__)
+      548    0.001    0.000    0.010    0.000 _parser.py:94(closegroup)
+        1    0.000    0.000    0.010    0.010 get_model_cost_map.py:46(_get_backup_model_count)
+        1    0.000    0.000    0.010    0.010 get_model_cost_map.py:36(load_local_model_cost_map)
+        1    0.000    0.000    0.010    0.010 moderation.py:1()
+        1    0.000    0.000    0.010    0.010 pathlib.py:1()
+        1    0.000    0.000    0.009    0.009 tool_call_delta_object.py:1()
+        1    0.000    0.000    0.009    0.009 _generate_schema.py:1698(_sequence_schema)
+        1    0.000    0.000    0.009    0.009 _readers.py:1()
+     1432    0.002    0.000    0.009    0.000 :771(get)
+        1    0.000    0.000    0.009    0.009 get_llm_provider_logic.py:1()
+      280    0.002    0.000    0.009    0.000 gettext.py:216(_expand_lang)
+        1    0.000    0.000    0.009    0.009 ssh.py:1()
+        4    0.000    0.000    0.009    0.002 _config.py:1()
+     1592    0.003    0.000    0.009    0.000 _generate_schema.py:2363(apply_model_validators)
+        1    0.000    0.000    0.009    0.009 computer_action_list.py:1()
+      220    0.000    0.000    0.009    0.000 __init__.py:795(joinpath)
+        3    0.000    0.000    0.009    0.003 style.py:1()
+        1    0.000    0.000    0.009    0.009 stream.py:1()
+        3    0.000    0.000    0.009    0.003 multipart.py:1()
+     3496    0.006    0.000    0.009    0.000 __init__.py:101(find_spec)
+        1    0.000    0.000    0.009    0.009 http11.py:179(_receive_response_headers)
+        1    0.000    0.000    0.009    0.009 version.py:161(Version)
+  755/526    0.002    0.000    0.009    0.000 :1311(__iter__)
+     3139    0.004    0.000    0.009    0.000 fields.py:552(get_default)
+        1    0.000    0.000    0.009    0.009 _logging.py:25(_build_secret_patterns)
+3223/3220    0.005    0.000    0.009    0.000 :599(_check_name_wrapper)
+      147    0.000    0.000    0.009    0.000 typing.py:1581(copy_with)
+      220    0.000    0.000    0.009    0.000 __init__.py:828(joinpath)
+        1    0.000    0.000    0.009    0.009 console.py:593(Console)
+        2    0.000    0.000    0.009    0.005 arize_phoenix.py:1()
+        1    0.000    0.000    0.009    0.009 response_output_text.py:1()
+        1    0.000    0.000    0.009    0.009 _cookie_helpers.py:1()
+      158    0.002    0.000    0.009    0.000 enum.py:473(__prepare__)
+        1    0.000    0.000    0.009    0.009 computer_action.py:1()
+       54    0.000    0.000    0.009    0.000 _argparse.py:81(__init__)
+        1    0.000    0.000    0.009    0.009 ws_client.py:1()
+      473    0.001    0.000    0.009    0.000 __init__.py:402()
+    11847    0.009    0.000    0.009    0.000 {method 'isidentifier' of 'str' objects}
+        1    0.005    0.005    0.009    0.009 packages.py:1()
+       64    0.000    0.000    0.009    0.000 util.py:240(replaced_by_pep8)
+   132/63    0.000    0.000    0.009    0.000 core.py:3907()
+        8    0.000    0.000    0.009    0.001 _compat.py:1()
+    78/72    0.000    0.000    0.009    0.000 _generate_schema.py:2113(_apply_single_annotation)
+        2    0.000    0.000    0.009    0.004 _sockets.py:1()
+        1    0.000    0.000    0.009    0.009 agentops.py:1()
+        3    0.000    0.000    0.008    0.003 _streams.py:1()
+        1    0.000    0.000    0.008    0.008 normalize_url.py:1()
+        1    0.000    0.000    0.008    0.008 eval_list_response.py:1()
+        1    0.000    0.000    0.008    0.008 tool_call_delta.py:1()
+     4202    0.006    0.000    0.008    0.000 _typing_extra.py:131(is_new_type)
+      308    0.005    0.000    0.008    0.000 typing.py:1873(_get_protocol_attrs)
+       17    0.000    0.000    0.008    0.000 fields.py:599(apply_typevars_map)
+       73    0.000    0.000    0.008    0.000 _decorators.py:514(inspect_validator)
+      265    0.002    0.000    0.008    0.000 typing.py:1820(__init_subclass__)
+        2    0.000    0.000    0.008    0.004 rules.py:1()
+      410    0.002    0.000    0.008    0.000 :1559(__init__)
+      488    0.001    0.000    0.008    0.000 _typing_extra.py:108()
+     7782    0.007    0.000    0.008    0.000 enum.py:1096(__new__)
+      6/5    0.000    0.000    0.008    0.002 _std_types_schema.py:321(__get_pydantic_core_schema__)
+  391/375    0.000    0.000    0.008    0.000 _generics.py:252(replace_types)
+     2519    0.005    0.000    0.008    0.000 :756(encode)
+     1873    0.005    0.000    0.008    0.000 _decorators.py:322(merge_seqs)
+       63    0.000    0.000    0.008    0.000 core.py:3820()
+ 1064/598    0.002    0.000    0.008    0.000 :1297(_recalculate)
+    12/10    0.000    0.000    0.008    0.001 _schema_generation_shared.py:96(generate_schema)
+      886    0.005    0.000    0.008    0.000 inspect.py:167(get_annotations)
+        1    0.000    0.000    0.008    0.008 _models.py:765(json)
+     1845    0.008    0.000    0.008    0.000 {built-in method _abc._abc_init}
+       72    0.001    0.000    0.008    0.000 _known_annotated_metadata.py:183(apply_known_metadata)
+        1    0.000    0.000    0.008    0.008 response_computer_tool_call_param.py:1()
+      511    0.001    0.000    0.008    0.000 _generate_schema.py:891(_get_first_arg_or_any)
+        1    0.000    0.000    0.008    0.008 ptyprocess.py:1()
+        1    0.000    0.000    0.008    0.008 html_inline.py:1()
+     4251    0.005    0.000    0.008    0.000 inspect.py:292(isclass)
+      104    0.001    0.000    0.008    0.000 typing.py:2084(__init__)
+       13    0.002    0.000    0.008    0.001 enum.py:913()
+        1    0.000    0.000    0.008    0.008 message_delta.py:1()
+    12513    0.008    0.000    0.008    0.000 {built-in method posix.fspath}
+        1    0.000    0.000    0.008    0.008 chat_completion_chunk.py:1()
+     2518    0.005    0.000    0.008    0.000 copyreg.py:104(__newobj__)
+        1    0.000    0.000    0.008    0.008 oauth1_auth.py:1()
+        2    0.000    0.000    0.008    0.004 validators.py:1()
+        1    0.000    0.000    0.008    0.008 score_model_grader.py:1()
+        1    0.000    0.000    0.008    0.008 binding.py:1()
+        1    0.000    0.000    0.008    0.008 syntax.py:1()
+        1    0.001    0.001    0.008    0.008 router.py:211(Router)
+        1    0.000    0.000    0.008    0.008 connectionpool.py:1()
+    10994    0.008    0.000    0.008    0.000 {method 'pop' of 'list' objects}
+     3665    0.005    0.000    0.008    0.000 :180(_path_isabs)
+        1    0.000    0.000    0.008    0.008 parsed_chat_completion.py:1()
+        1    0.000    0.000    0.008    0.008 eval_retrieve_response.py:1()
+       83    0.001    0.000    0.008    0.000 _known_annotated_metadata.py:336(collect_known_metadata)
+       27    0.005    0.000    0.007    0.000 configfile.py:487()
+        1    0.000    0.000    0.007    0.007 azure_storage.py:1()
+     2007    0.006    0.000    0.007    0.000 _typing_extra.py:206(get_module_ns_of)
+      828    0.003    0.000    0.007    0.000 enum.py:1504(__and__)
+     1143    0.005    0.000    0.007    0.000 _config.py:328(check_deprecated)
+        1    0.000    0.000    0.007    0.007 socket.py:1()
+        1    0.000    0.000    0.007    0.007 image_handler.py:1()
+        1    0.000    0.000    0.007    0.007 html_re.py:1()
+        1    0.000    0.000    0.007    0.007 core.py:393(ParserElement)
+      156    0.002    0.000    0.007    0.000 _utility.py:389(uncolorize)
+3103/3088    0.005    0.000    0.007    0.000 {method 'extend' of 'list' objects}
+      473    0.001    0.000    0.007    0.000 __init__.py:406()
+        1    0.007    0.007    0.007    0.007 {method 'connect' of '_socket.socket' objects}
+        1    0.000    0.000    0.007    0.007 chat_completion_message_param.py:1()
+     9577    0.007    0.000    0.007    0.000 fields.py:572(is_required)
+       36    0.002    0.000    0.007    0.000 _make.py:838(_create_slots_class)
+      546    0.003    0.000    0.007    0.000 _generate_schema.py:598(collect_definitions)
+        6    0.000    0.000    0.007    0.001 _models.py:869(iter_raw)
+       26    0.000    0.000    0.007    0.000 _generics.py:289()
+     9673    0.007    0.000    0.007    0.000 {built-in method from_bytes}
+      626    0.005    0.000    0.007    0.000 dataclasses.py:664(_is_type)
+        2    0.000    0.000    0.007    0.003 file_search_tool.py:1()
+    11187    0.007    0.000    0.007    0.000 _generate_schema.py:290(_add_custom_serialization_from_json_encoders)
+        1    0.000    0.000    0.007    0.007 http_websocket.py:1()
+        1    0.000    0.000    0.007    0.007 eval_update_response.py:1()
+        1    0.000    0.000    0.007    0.007 _request_methods.py:1()
+     2165    0.004    0.000    0.007    0.000 enum.py:78(_is_private)
+      657    0.001    0.000    0.007    0.000 inspect.py:2752(replace)
+        1    0.000    0.000    0.007    0.007 text_delta.py:1()
+        2    0.000    0.000    0.007    0.003 s3_v2.py:1()
+        6    0.000    0.000    0.007    0.001 _client.py:126(__iter__)
+        6    0.000    0.000    0.007    0.001 default.py:114(__iter__)
+        6    0.000    0.000    0.007    0.001 connection_pool.py:361(__iter__)
+      144    0.002    0.000    0.007    0.000 argparse.py:1342(__init__)
+        6    0.000    0.000    0.007    0.001 http11.py:337(__iter__)
+        6    0.000    0.000    0.007    0.001 http11.py:205(_receive_response_body)
+        1    0.000    0.000    0.007    0.007 cd.py:1()
+     8803    0.007    0.000    0.007    0.000 typing.py:440(__repr__)
+     6814    0.007    0.000    0.007    0.000 {method 'rfind' of 'str' objects}
+     1094    0.002    0.000    0.007    0.000 __init__.py:173(search)
+    96/42    0.000    0.000    0.007    0.000 _core_utils.py:275(handle_tuple_schema)
+    96/42    0.000    0.000    0.007    0.000 _core_utils.py:276()
+     10/3    0.000    0.000    0.007    0.002 unicode.py:14(__get__)
+        1    0.000    0.000    0.007    0.007 eval_create_response.py:1()
+        2    0.000    0.000    0.007    0.003 azure.py:1()
+        1    0.000    0.000    0.007    0.007 theme.py:1()
+     2518    0.006    0.000    0.007    0.000 {method '__reduce_ex__' of 'object' objects}
+     1047    0.003    0.000    0.007    0.000 {built-in method builtins.all}
+    11354    0.007    0.000    0.007    0.000 {method '__contains__' of 'frozenset' objects}
+        1    0.005    0.005    0.007    0.007 get_model_cost_map.py:189(_expand_model_aliases)
+        1    0.000    0.000    0.006    0.006 message_content_delta.py:1()
+      603    0.004    0.000    0.006    0.000 _mock_val_ser.py:111(set_model_mocks)
+      818    0.001    0.000    0.006    0.000 :773(getenv)
+     4826    0.005    0.000    0.006    0.000 {built-in method builtins.delattr}
+        1    0.000    0.000    0.006    0.006 __init__.py:494()
+     2976    0.005    0.000    0.006    0.000 util.py:189(is_consecutive)
+        1    0.000    0.000    0.006    0.006 amazon_openai_transformation.py:1()
+        6    0.000    0.000    0.006    0.001 _utils.py:1()
+       44    0.000    0.000    0.006    0.000 dataclasses.py:599(_frozen_get_del_attr)
+        1    0.000    0.000    0.006    0.006 opentelemetry.py:1()
+        1    0.000    0.000    0.006    0.006 compacted_response.py:1()
+     1639    0.004    0.000    0.006    0.000 enum.py:37(_is_descriptor)
+        1    0.000    0.000    0.006    0.006 sqs.py:1()
+        1    0.000    0.000    0.006    0.006 message_content.py:1()
+      156    0.002    0.000    0.006    0.000 _doc_utils.py:107(get_doc)
+    11942    0.006    0.000    0.006    0.000 {built-in method builtins.ord}
+        1    0.000    0.000    0.006    0.006 convert_dict_to_response.py:1()
+        1    0.000    0.000    0.006    0.006 _types.py:2134(ConfigGeneralSettings)
+      284    0.001    0.000    0.006    0.000 locale.py:396(normalize)
+        2    0.000    0.000    0.006    0.003 color.py:1()
+        3    0.000    0.000    0.006    0.002 config.py:1()
+     1212    0.004    0.000    0.006    0.000 _core_metadata.py:57(metadata)
+     6079    0.006    0.000    0.006    0.000 _core_metadata.py:84()
+      850    0.004    0.000    0.006    0.000 typing.py:316(_flatten_literal_params)
+      317    0.001    0.000    0.006    0.000 enum.py:945(_get_mixins_)
+        2    0.002    0.001    0.006    0.003 unicode.py:55(_chars_for_ranges)
+     7058    0.006    0.000    0.006    0.000 _schema_generation_shared.py:72(__init__)
+        1    0.000    0.000    0.006    0.006 response_compact_params.py:1()
+      912    0.003    0.000    0.006    0.000 _parser.py:307(_class_escape)
+        1    0.000    0.000    0.006    0.006 align.py:1()
+        1    0.000    0.000    0.006    0.006 emphasis.py:1()
+     9548    0.006    0.000    0.006    0.000 typing.py:1663()
+     5195    0.006    0.000    0.006    0.000 {built-in method pydantic_core._pydantic_core.to_jsonable_python}
+        1    0.000    0.000    0.006    0.006 image_edit_stream_event.py:1()
+     1136    0.003    0.000    0.006    0.000 _core_utils.py:212(_handle_ser_schemas)
+       61    0.000    0.000    0.006    0.000 core.py:1416(__add__)
+        2    0.000    0.000    0.006    0.003 Primality.py:45(miller_rabin_test)
+        3    0.000    0.000    0.006    0.002 events.py:1()
+        1    0.000    0.000    0.006    0.006 _global.py:1()
+        1    0.000    0.000    0.006    0.006 _headers.py:1()
+        1    0.000    0.000    0.006    0.006 _urlparse.py:1()
+      2/1    0.000    0.000    0.006    0.006 _figure.py:18(__init__)
+        1    0.000    0.000    0.006    0.006 simple_server.py:1()
+      159    0.001    0.000    0.006    0.000 typing.py:1890(_is_callable_members_only)
+        1    0.000    0.000    0.006    0.006 custom_logger.py:67(CustomLogger)
+        1    0.000    0.000    0.006    0.006 unicode.py:80(alphanums)
+        1    0.000    0.000    0.006    0.006 transcription.py:1()
+     2208    0.005    0.000    0.006    0.000 inspect.py:378(isfunction)
+        1    0.000    0.000    0.006    0.006 response_create_params.py:1()
+     5378    0.006    0.000    0.006    0.000 fields.py:204()
+     3126    0.003    0.000    0.006    0.000 _utils.py:303(smart_deepcopy)
+        1    0.000    0.000    0.006    0.006 state_inline.py:1()
+      473    0.001    0.000    0.006    0.000 __init__.py:101()
+        1    0.000    0.000    0.006    0.006 unicode.py:70(alphas)
+        1    0.000    0.000    0.006    0.006 tools.py:251(__init__)
+      560    0.001    0.000    0.006    0.000 :778(__contains__)
+        1    0.000    0.000    0.006    0.006 _ratio.py:1()
+        1    0.000    0.000    0.006    0.006 core.py:160(Context)
+     1226    0.003    0.000    0.006    0.000 :1293(_get_parent_path)
+     8189    0.006    0.000    0.006    0.000 {method 'match' of 're.Pattern' objects}
+  219/163    0.000    0.000    0.006    0.000 core.py:1914(name)
+        1    0.000    0.000    0.006    0.006 transcription_text_done_event.py:1()
+        1    0.000    0.000    0.006    0.006 configparser.py:1()
+        1    0.000    0.000    0.006    0.006 parse.py:1()
+     8923    0.006    0.000    0.006    0.000 {built-in method _thread.get_ident}
+        1    0.004    0.004    0.006    0.006 uuid.py:1()
+        3    0.000    0.000    0.006    0.002 _url.py:1()
+        1    0.001    0.001    0.006    0.006 configfile.py:491()
+      757    0.003    0.000    0.006    0.000 inspect.py:735(unwrap)
+     2404    0.004    0.000    0.006    0.000 _IntegerGMP.py:138(new_mpz)
+     8929    0.005    0.000    0.005    0.000 {method '__exit__' of '_thread.lock' objects}
+   149/98    0.000    0.000    0.005    0.000 core.py:1877(default_name)
+   679/32    0.002    0.000    0.005    0.000 copy.py:128(deepcopy)
+        1    0.000    0.000    0.005    0.005 multi_grader_param.py:1()
+       37    0.000    0.000    0.005    0.000 _make.py:650(__init__)
+        1    0.000    0.000    0.005    0.005 _mtls_helper.py:1()
+        1    0.000    0.000    0.005    0.005 response_text_delta_event.py:1()
+        1    0.000    0.000    0.005    0.005 _core_utils.py:1()
+        1    0.000    0.000    0.005    0.005 response_prompt.py:1()
+        1    0.000    0.000    0.005    0.005 _monitor.py:1()
+        1    0.000    0.000    0.005    0.005 response_input_item_param.py:1()
+     2860    0.004    0.000    0.005    0.000 enum.py:47(_is_dunder)
+       37    0.000    0.000    0.005    0.000 _make.py:760(_eval_snippets)
+        1    0.000    0.000    0.005    0.005 images_response.py:1()
+        2    0.000    0.000    0.005    0.003 cookies.py:1()
+     8106    0.005    0.000    0.005    0.000 {built-in method builtins.vars}
+       62    0.000    0.000    0.005    0.000 core.py:3970(__init__)
+        1    0.000    0.000    0.005    0.005 transcription_diarized.py:1()
+        1    0.000    0.000    0.005    0.005 constrain.py:1()
+        1    0.000    0.000    0.005    0.005 redis_semantic_cache.py:1()
+        1    0.000    0.000    0.005    0.005 PEM.py:1()
+       55    0.000    0.000    0.005    0.000 typing.py:2797()
+     3085    0.004    0.000    0.005    0.000 inspect.py:3018()
+        1    0.000    0.000    0.005    0.005 base_aws_llm.py:1()
+     8361    0.005    0.000    0.005    0.000 {built-in method builtins.min}
+        1    0.000    0.000    0.005    0.005 _app.py:1()
+     8265    0.005    0.000    0.005    0.000 _fields.py:155()
+       98    0.002    0.000    0.005    0.000 {built-in method builtins.sorted}
+        1    0.000    0.000    0.005    0.005 image_gen_stream_event.py:1()
+      225    0.000    0.000    0.005    0.000 pathlib.py:1037(open)
+      924    0.002    0.000    0.005    0.000 __init__.py:178(sub)
+      100    0.000    0.000    0.005    0.000 argparse.py:1652(__init__)
+        1    0.000    0.000    0.005    0.005 response_function_shell_tool_call.py:1()
+        1    0.000    0.000    0.005    0.005 binding.py:186(init_static_locks)
+        2    0.000    0.000    0.005    0.003 binding.py:160(_ensure_ffi_initialized)
+      244    0.002    0.000    0.005    0.000 {built-in method io.open}
+       93    0.000    0.000    0.005    0.000 argparse.py:1475(add_argument_group)
+        1    0.000    0.000    0.005    0.005 replacements.py:1()
+        2    0.000    0.000    0.005    0.003 converters.py:1()
+        1    0.000    0.000    0.005    0.005 opik.py:1()
+     7901    0.005    0.000    0.005    0.000 {method 'update' of 'set' objects}
+        1    0.000    0.000    0.005    0.005 challenges.py:1()
+        1    0.000    0.000    0.005    0.005 compiler.py:1()
+       97    0.000    0.000    0.005    0.000 :319(decode)
+        2    0.000    0.000    0.005    0.002 __init__.py:1001(version)
+     7837    0.005    0.000    0.005    0.000 {method 'keys' of 'dict' objects}
+        1    0.000    0.000    0.005    0.005 shutil.py:1()
+     4097    0.005    0.000    0.005    0.000 _IntegerGMP.py:595(__irshift__)
+        1    0.000    0.000    0.005    0.005 fractions.py:1()
+      743    0.002    0.000    0.005    0.000 core_schema.py:3050(model_schema)
+        1    0.000    0.000    0.005    0.005 memory.py:1()
+     7060    0.005    0.000    0.005    0.000 {built-in method _thread.allocate_lock}
+        2    0.000    0.000    0.005    0.002 thread.py:1()
+        1    0.000    0.000    0.005    0.005 function_shell_tool_param.py:1()
+       97    0.005    0.000    0.005    0.000 {built-in method _codecs.utf_8_decode}
+      126    0.001    0.000    0.005    0.000 argparse.py:173(__init__)
+     8034    0.005    0.000    0.005    0.000 inspect.py:2736(name)
+      221    0.001    0.000    0.005    0.000 typing.py:992(__init__)
+        1    0.000    0.000    0.005    0.005 response_function_call_output_item_list.py:1()
+        1    0.000    0.000    0.005    0.005 cookiejar.py:51(CookieJar)
+        1    0.002    0.002    0.005    0.005 binding.py:102(build_conditional_library)
+     2681    0.004    0.000    0.005    0.000 _core_utils.py:469(can_be_inlined)
+     5195    0.005    0.000    0.005    0.000 _generate_schema.py:1343()
+        1    0.000    0.000    0.005    0.005 video.py:1()
+        1    0.000    0.000    0.005    0.005 file_chunking_strategy.py:1()
+        1    0.000    0.000    0.005    0.005 file_search_tool_call.py:1()
+        1    0.000    0.000    0.005    0.005 webauthn_handler_factory.py:1()
+        1    0.000    0.000    0.005    0.005 assistant_tool.py:1()
+     3496    0.004    0.000    0.005    0.000 :748(find_spec)
+       37    0.001    0.000    0.005    0.000 _make.py:375(_transform_attrs)
+        1    0.000    0.000    0.005    0.005 annotation_delta.py:1()
+       48    0.000    0.000    0.005    0.000 _make.py:212(_compile_and_eval)
+        1    0.000    0.000    0.005    0.005 code_interpreter_tool_call_delta.py:1()
+       11    0.000    0.000    0.005    0.000 core.py:2905(_generateDefaultName)
+        1    0.000    0.000    0.005    0.005 chat_completion_store_message.py:1()
+     1853    0.002    0.000    0.005    0.000 enum.py:69(_is_internal_class)
+        1    0.000    0.000    0.005    0.005 cli.py:1()
+        1    0.000    0.000    0.005    0.005 core.py:6134()
+       14    0.000    0.000    0.005    0.000 core.py:2906(charsAsStr)
+        1    0.000    0.000    0.005    0.005 keyboard.py:1()
+      857    0.003    0.000    0.005    0.000 _generate_schema.py:769(_get_model_title_from_config)
+        1    0.000    0.000    0.005    0.005 response_function_web_search.py:1()
+        1    0.000    0.000    0.005    0.005 environment.py:144(Environment)
+      853    0.001    0.000    0.005    0.000 core_schema.py:470(any_schema)
+        1    0.000    0.000    0.005    0.005 stability_transformation.py:1()
+      724    0.001    0.000    0.004    0.000 core_schema.py:2976(model_fields_schema)
+     7115    0.004    0.000    0.004    0.000 {built-in method sys._getframe}
+       17    0.000    0.000    0.004    0.000 main.py:202(__init__)
+        1    0.000    0.000    0.004    0.004 _identifier.py:1()
+        3    0.000    0.000    0.004    0.001 models.py:1()
+     1212    0.003    0.000    0.004    0.000 _core_metadata.py:48(__init__)
+        1    0.000    0.000    0.004    0.004 response_function_call_output_item.py:1()
+       37    0.000    0.000    0.004    0.000 _make.py:226(_linecache_and_compile)
+        1    0.000    0.000    0.004    0.004 common_utils.py:24(DatabricksBase)
+      462    0.001    0.000    0.004    0.000 _doc_utils.py:35(correct_doc)
+        1    0.000    0.000    0.004    0.004 mcp.py:144(MCPPreCallRequestObject)
+      896    0.001    0.000    0.004    0.000 _decorators.py:286(get_bases)
+        1    0.000    0.000    0.004    0.004 databricks.py:1()
+        3    0.000    0.000    0.004    0.001 _mock_val_ser.py:90(__getattr__)
+        1    0.000    0.000    0.004    0.004 _mock_val_ser.py:125(handler)
+        1    0.000    0.000    0.004    0.004 tz.py:1()
+     2076    0.003    0.000    0.004    0.000 enum.py:831(__setattr__)
+        1    0.000    0.000    0.004    0.004 cohere.py:1()
+        2    0.000    0.000    0.004    0.002 dall_e_2_transformation.py:1()
+     5195    0.004    0.000    0.004    0.000 _generate_schema.py:2494(_common_field)
+     1714    0.003    0.000    0.004    0.000 _config.py:215(push)
+       15    0.000    0.000    0.004    0.000 parser.py:14(make_regex)
+        3    0.000    0.000    0.004    0.001 metadata.py:1()
+        1    0.000    0.000    0.004    0.004 computer_action_list_param.py:1()
+        1    0.000    0.000    0.004    0.004 streaming_handler.py:1()
+     6363    0.004    0.000    0.004    0.000 _utility.py:319(__call__)
+        1    0.000    0.000    0.004    0.004 _repr.py:1()
+        1    0.000    0.000    0.004    0.004 webauthn_handler.py:1()
+      136    0.000    0.000    0.004    0.000 __init__.py:2081(getLogger)
+        1    0.000    0.000    0.004    0.004 transformation.py:79(LiteLLMCompletionResponsesConfig)
+       82    0.002    0.000    0.004    0.000 core.py:3778(__init__)
+        2    0.000    0.000    0.004    0.002 reader.py:1()
+        1    0.000    0.000    0.004    0.004 vector_store.py:1()
+        5    0.000    0.000    0.004    0.001 model.py:1()
+        2    0.000    0.000    0.004    0.002 custom_llm.py:1()
+        1    0.000    0.000    0.004    0.004 response_text_done_event.py:1()
+        1    0.000    0.000    0.004    0.004 transformation.py:84(AnthropicConfig)
+        1    0.000    0.000    0.004    0.004 json_schema.py:1()
+      120    0.000    0.000    0.004    0.000 functools.py:518(decorating_function)
+      226    0.000    0.000    0.004    0.000 pathlib.py:758(joinpath)
+    60/27    0.000    0.000    0.004    0.000 copy.py:227(_deepcopy_dict)
+     5919    0.004    0.000    0.004    0.000 _generate_schema.py:2322(apply_validators)
+     1317    0.002    0.000    0.004    0.000 feedparser.py:128(__next__)
+        1    0.000    0.000    0.004    0.004 container_retrieve_response.py:1()
+        1    0.000    0.000    0.004    0.004 _make.py:1()
+       32    0.000    0.000    0.004    0.000 _generics.py:387(generic_recursion_self_type)
+        1    0.000    0.000    0.004    0.004 converse_transformation.py:1()
+        1    0.000    0.000    0.004    0.004 configparser.py:570(RawConfigParser)
+      599    0.002    0.000    0.004    0.000 core_schema.py:568(int_schema)
+        1    0.000    0.000    0.004    0.004 kube_config.py:1()
+        6    0.000    0.000    0.004    0.001 _core_utils.py:320(handle_json_or_python_schema)
+      885    0.002    0.000    0.004    0.000 _parser.py:367(_escape)
+       23    0.001    0.000    0.004    0.000 typing.py:2891(__new__)
+        1    0.000    0.000    0.004    0.004 converse_transformation.py:123(AmazonConverseConfig)
+       27    0.002    0.000    0.004    0.000 configfile.py:483()
+        1    0.000    0.000    0.004    0.004 distro.py:1()
+        1    0.000    0.000    0.004    0.004 _status_codes.py:1()
+      140    0.001    0.000    0.004    0.000 locale.py:362(_replace_encoding)
+     4092    0.004    0.000    0.004    0.000 _IntegerGMP.py:639(is_odd)
+      228    0.001    0.000    0.004    0.000 pathlib.py:531(_make_child)
+      443    0.002    0.000    0.004    0.000 _compiler.py:384(_mk_bitmap)
+        1    0.000    0.000    0.004    0.004 container_list_response.py:1()
+        1    0.000    0.000    0.004    0.004 response_output_message_param.py:1()
+     6434    0.004    0.000    0.004    0.000 fields.py:543(deprecation_message)
+        1    0.000    0.000    0.004    0.004 response_apply_patch_tool_call.py:1()
+     5195    0.004    0.000    0.004    0.000 _generate_schema.py:2463(get_json_schema_update_func)
+        1    0.000    0.000    0.004    0.004 jupyter.py:1()
+        1    0.000    0.000    0.004    0.004 _typing_extra.py:1()
+        1    0.000    0.000    0.004    0.004 ipaddress.py:1()
+        2    0.000    0.000    0.004    0.002 anthropic_cache_control_hook.py:1()
+     4024    0.003    0.000    0.004    0.000 fields.py:580(rebuild_annotation)
+        2    0.000    0.000    0.004    0.002 core.py:5997(srange)
+     2165    0.003    0.000    0.004    0.000 enum.py:58(_is_sunder)
+        1    0.001    0.001    0.004    0.004 colorspace.py:1()
+        1    0.000    0.000    0.004    0.004 annotation.py:1()
+      548    0.002    0.000    0.004    0.000 _parser.py:82(opengroup)
+        1    0.000    0.000    0.004    0.004 constructor.py:1()
+        1    0.000    0.000    0.004    0.004 web_search_preview_tool.py:1()
+     1714    0.003    0.000    0.004    0.000 _generate_schema.py:2586(push)
+      166    0.001    0.000    0.004    0.000 coroutine_checker.py:21(is_async_callable)
+        1    0.000    0.000    0.004    0.004 upload.py:1()
+       47    0.001    0.000    0.004    0.000 _generate_schema.py:442(_enum_schema)
+        1    0.000    0.000    0.004    0.004 regions.py:1()
+        1    0.000    0.000    0.004    0.004 asn1.py:1()
+      290    0.001    0.000    0.004    0.000 _doc_utils.py:190(_get_method)
+     5195    0.003    0.000    0.004    0.000 _generate_schema.py:2200(_apply_field_serializers)
+        1    0.000    0.000    0.004    0.004 _header_value_parser.py:1()
+        1    0.000    0.000    0.004    0.004 webauthn_types.py:1()
+      573    0.001    0.000    0.004    0.000 :164(_path_isdir)
+      135    0.001    0.000    0.004    0.000 __init__.py:1327(getLogger)
+        2    0.000    0.000    0.004    0.002 _parse.py:1()
+        1    0.000    0.000    0.004    0.004 reader.py:45(Reader)
+     1136    0.002    0.000    0.004    0.000 :16(exists)
+        1    0.000    0.000    0.004    0.004 handler.py:27(__init__)
+     5195    0.004    0.000    0.004    0.000 _generate_schema.py:2347(_validators_require_validate_default)
+        1    0.000    0.000    0.004    0.004 pool.py:1()
+        1    0.000    0.000    0.004    0.004 namespace_tool.py:1()
+        4    0.000    0.000    0.004    0.001 resource.py:1()
+      602    0.001    0.000    0.004    0.000 core_schema.py:1465(list_schema)
+        2    0.000    0.000    0.004    0.002 _date.py:6(__init__)
+        1    0.000    0.000    0.004    0.004 stability.py:1()
+      857    0.002    0.000    0.004    0.000 _generate_schema.py:383(__from_parent)
+        2    0.000    0.000    0.004    0.002 core.py:1134(parse_string)
+        1    0.000    0.000    0.003    0.003 termui.py:1()
+        1    0.000    0.000    0.003    0.003 files.py:1()
+        2    0.000    0.000    0.003    0.002 _date.py:17(set_time0)
+    22/21    0.000    0.000    0.003    0.000 :772(create_module)
+        2    0.000    0.000    0.003    0.002 _date.py:44(string_to_time)
+        1    0.000    0.000    0.003    0.003 chat_completion_message_tool_call.py:1()
+        1    0.000    0.000    0.003    0.003 image_edit_completed_event.py:1()
+        1    0.000    0.000    0.003    0.003 PKCS1_OAEP.py:1()
+        1    0.000    0.000    0.003    0.003 response_function_shell_tool_call_output.py:1()
+     5195    0.003    0.000    0.003    0.000 _generate_schema.py:1321()
+        1    0.000    0.000    0.003    0.003 completion_choice.py:1()
+        2    0.000    0.000    0.003    0.002 {built-in method strptime}
+       67    0.000    0.000    0.003    0.000 core.py:4547(__init__)
+     2410    0.003    0.000    0.003    0.000 typing_extensions.py:929()
+    22/21    0.003    0.000    0.003    0.000 {built-in method _imp.create_builtin}
+        3    0.000    0.000    0.003    0.001 argparse.py:1822(add_subparsers)
+        1    0.000    0.000    0.003    0.003 code_interpreter_tool_call.py:1()
+        1    0.000    0.000    0.003    0.003 budget_limiter.py:1()
+        1    0.000    0.000    0.003    0.003 vector_store_files.py:1()
+     6038    0.003    0.000    0.003    0.000 inspect.py:2748(kind)
+        1    0.000    0.000    0.003    0.003 translation_verbose.py:1()
+        1    0.000    0.000    0.003    0.003 inline_skill.py:1()
+     1772    0.002    0.000    0.003    0.000 argparse.py:1395(register)
+        1    0.000    0.000    0.003    0.003 _module_client.py:1()
+     5195    0.003    0.000    0.003    0.000 _generate_schema.py:1320()
+        1    0.000    0.000    0.003    0.003 hdrs.py:1()
+        1    0.000    0.000    0.003    0.003 vertex_and_google_ai_studio_gemini.py:169(VertexGeminiConfig)
+     1933    0.002    0.000    0.003    0.000 _parser.py:79(groups)
+     5201    0.003    0.000    0.003    0.000 _generate_schema.py:2070()
+      410    0.001    0.000    0.003    0.000 :64(__init__)
+     5195    0.003    0.000    0.003    0.000 _generate_schema.py:211(apply_each_item_validators)
+     1533    0.002    0.000    0.003    0.000 enum.py:192(__get__)
+        1    0.000    0.000    0.003    0.003 _decoders.py:1()
+        1    0.000    0.000    0.003    0.003 segment.py:1()
+        5    0.000    0.000    0.003    0.001 _exceptions.py:1()
+        1    0.000    0.000    0.003    0.003 thread_create_and_run_params.py:1()
+        1    0.000    0.000    0.003    0.003 _datetime_parse.py:1()
+     4146    0.003    0.000    0.003    0.000 _typing_extra.py:574(is_zoneinfo_type)
+        1    0.000    0.000    0.003    0.003 container_auto_param.py:1()
+      153    0.000    0.000    0.003    0.000 _doc_utils.py:184(_add_parameter)
+        2    0.000    0.000    0.003    0.002 action.py:1()
+        1    0.000    0.000    0.003    0.003 runtime.py:1()
+        2    0.000    0.000    0.003    0.002 datadog_metrics.py:1()
+        1    0.000    0.000    0.003    0.003 _emoji_replace.py:1()
+        1    0.000    0.000    0.003    0.003 constructor.py:171(SafeConstructor)
+       36    0.003    0.000    0.003    0.000 _make.py:890()
+        1    0.000    0.000    0.003    0.003 utils.py:3101(LlmProviders)
+        1    0.000    0.000    0.003    0.003 response_code_interpreter_tool_call.py:1()
+        1    0.000    0.000    0.003    0.003 image_gen_completed_event.py:1()
+       67    0.000    0.000    0.003    0.000 decorators.py:372(decorator)
+       95    0.000    0.000    0.003    0.000 _doc_utils.py:173(_add_method)
+        1    0.000    0.000    0.003    0.003 live.py:1()
+     1143    0.002    0.000    0.003    0.000 _fields.py:64(_update_fields_from_docstrings)
+        1    0.000    0.000    0.003    0.003 http_exceptions.py:1()
+        2    0.000    0.000    0.003    0.002 compound_filter.py:1()
+      810    0.001    0.000    0.003    0.000 enum.py:775(__getattr__)
+        1    0.000    0.000    0.003    0.003 response_text_config.py:1()
+        1    0.000    0.000    0.003    0.003 response_reasoning_item.py:1()
+       46    0.000    0.000    0.003    0.000 _model_construction.py:323(get_model_post_init)
+        1    0.000    0.000    0.003    0.003 static_file_chunking_strategy_object.py:1()
+        9    0.000    0.000    0.003    0.000 __init__.py:831(children)
+     3019    0.003    0.000    0.003    0.000 {method 'setter' of 'property' objects}
+        2    0.000    0.000    0.003    0.002 entities.py:1()
+        1    0.000    0.000    0.003    0.003 tool.py:112(Mcp)
+        1    0.000    0.000    0.003    0.003 proxy_cli.py:1()
+     3664    0.003    0.000    0.003    0.000 :357(__init__)
+        1    0.000    0.000    0.003    0.003 signal.py:1()
+        1    0.000    0.000    0.003    0.003 util.py:338(find_library)
+      235    0.000    0.000    0.003    0.000 pathlib.py:547(__fspath__)
+     1854    0.003    0.000    0.003    0.000 {method 'index' of 'str' objects}
+        1    0.000    0.000    0.003    0.003 util.py:270(_findSoname_ldconfig)
+     4785    0.003    0.000    0.003    0.000 {method 'find' of 'bytearray' objects}
+        1    0.000    0.000    0.003    0.003 asgi.py:1()
+        1    0.000    0.000    0.003    0.003 container_create_response.py:1()
+       31    0.000    0.000    0.003    0.000 core.py:5681(__init__)
+     4982    0.003    0.000    0.003    0.000 {method 'setdefault' of 'dict' objects}
+     3379    0.003    0.000    0.003    0.000 :48(_new_module)
+        1    0.000    0.000    0.003    0.003 web_search_tool.py:1()
+        1    0.000    0.000    0.003    0.003 modeline.py:1()
+        6    0.000    0.000    0.003    0.000 core.py:1485(__mul__)
+        1    0.000    0.000    0.003    0.003 gcs_bucket_mock_client.py:1()
+        1    0.000    0.000    0.003    0.003 scheduler.py:1()
+        1    0.000    0.000    0.003    0.003 staggered.py:1()
+        1    0.000    0.000    0.003    0.003 reinforcement_method.py:1()
+      488    0.001    0.000    0.003    0.000 _typing_extra.py:95(literal_values)
+        1    0.000    0.000    0.003    0.003 context.py:1()
+      317    0.002    0.000    0.003    0.000 enum.py:981(_find_data_type_)
+       17    0.000    0.000    0.003    0.000 {built-in method builtins.pow}
+        1    0.000    0.000    0.003    0.003 endpoint_factory.py:1()
+        2    0.000    0.000    0.003    0.001 constants.py:1()
+       17    0.000    0.000    0.003    0.000 _IntegerGMP.py:466(__pow__)
+        1    0.000    0.000    0.003    0.003 job_create_params.py:1()
+      153    0.000    0.000    0.003    0.000 _doc_utils.py:134(add_parameter)
+     1694    0.002    0.000    0.003    0.000 unicode.py:63()
+        1    0.000    0.000    0.003    0.003 constant.py:1()
+     1133    0.002    0.000    0.003    0.000 _typing_extra.py:170(parent_frame_namespace)
+        2    0.001    0.000    0.003    0.001 six.py:1()
+        1    0.000    0.000    0.003    0.003 adaptive.py:1()
+        1    0.000    0.000    0.003    0.003 custom_guardrail.py:1()
+        2    0.000    0.000    0.003    0.001 __init__.py:975(distribution)
+      456    0.001    0.000    0.003    0.000 core_schema.py:630(float_schema)
+       71    0.000    0.000    0.003    0.000 core.py:2512(__init__)
+        2    0.000    0.000    0.003    0.001 __init__.py:549(from_name)
+        1    0.000    0.000    0.003    0.003 pickle.py:1()
+        1    0.000    0.000    0.003    0.003 _editor.py:1()
+      141    0.002    0.000    0.003    0.000 __init__.py:43(normalize_encoding)
+        1    0.000    0.000    0.003    0.003 generated.py:1076(CreateAgentInteractionParams)
+      488    0.001    0.000    0.003    0.000 core_schema.py:1206(literal_schema)
+       27    0.001    0.000    0.003    0.000 configfile.py:485()
+        2    0.000    0.000    0.003    0.001 duration.py:1()
+      228    0.000    0.000    0.003    0.000 typing.py:918(__init__)
+     1403    0.003    0.000    0.003    0.000 _config.py:198()
+        1    0.000    0.000    0.003    0.003 typing_extensions.py:1()
+     12/2    0.000    0.000    0.003    0.001 core.py:1545(makeOptionalList)
+     3857    0.003    0.000    0.003    0.000 _parser.py:109(__init__)
+        1    0.000    0.000    0.003    0.003 response_file_search_tool_call.py:1()
+      237    0.002    0.000    0.003    0.000 pathlib.py:537(__str__)
+        2    0.000    0.000    0.003    0.001 get_azure_ad_token_provider.py:1()
+       13    0.000    0.000    0.003    0.000 core.py:5898(__init__)
+      290    0.003    0.000    0.003    0.000 _doc_utils.py:191()
+        1    0.000    0.000    0.003    0.003 watch.py:1()
+        1    0.000    0.000    0.003    0.003 impl.py:1()
+       95    0.000    0.000    0.003    0.000 _doc_utils.py:116(__init__)
+        1    0.000    0.000    0.003    0.003 guardrails.py:589(BaseLitellmParams)
+        1    0.000    0.000    0.003    0.003 common_utils.py:406(BaseAzureLLM)
+        1    0.000    0.000    0.003    0.003 _fields.py:1()
+        1    0.000    0.000    0.003    0.003 litellm_logging.py:288(Logging)
+        2    0.000    0.000    0.003    0.001 blueprints.py:1()
+       17    0.003    0.000    0.003    0.000 _IntegerGMP.py:427(inplace_pow)
+      153    0.000    0.000    0.003    0.000 _doc_utils.py:81(add)
+      171    0.000    0.000    0.003    0.000 _generate_schema.py:897(_get_first_two_args_or_any)
+        1    0.000    0.000    0.003    0.003 completion_usage.py:1()
+        1    0.000    0.000    0.003    0.003 redis_cache.py:92(RedisCache)
+        1    0.000    0.000    0.003    0.003 _handshake.py:1()
+     1203    0.002    0.000    0.003    0.000 _generate_schema.py:2552(resolve_original_schema)
+        1    0.000    0.000    0.003    0.003 decorators.py:1()
+        1    0.000    0.000    0.003    0.003 responses_client_event.py:66(ResponsesClientEvent)
+      461    0.001    0.000    0.003    0.000 core_schema.py:1871(dict_schema)
+      524    0.001    0.000    0.003    0.000 dataclasses.py:827(_set_new_attribute)
+        1    0.000    0.000    0.003    0.003 pathlib.py:111(_WindowsFlavour)
+  309/268    0.001    0.000    0.003    0.000 :1320(__len__)
+        1    0.000    0.000    0.003    0.003 ElementTree.py:1()
+     3652    0.002    0.000    0.003    0.000 _decorators.py:445()
+        1    0.000    0.000    0.003    0.003 container_network_policy_allowlist.py:1()
+     1258    0.002    0.000    0.003    0.000 typing_extensions.py:2916(_check_generic)
+        1    0.000    0.000    0.003    0.003 chat_completion_tool_union_param.py:1()
+        1    0.000    0.000    0.003    0.003 aiohttp_handler.py:1()
+       37    0.000    0.000    0.003    0.000 :1239(exec_module)
+        1    0.000    0.000    0.003    0.003 easy_input_message_param.py:1()
+      133    0.002    0.000    0.003    0.000 core_schema.py:1076(datetime_schema)
+     3652    0.002    0.000    0.003    0.000 _decorators.py:449()
+        1    0.000    0.000    0.003    0.003 dotprompt_manager.py:1()
+        1    0.000    0.000    0.003    0.003 easy_input_message.py:1()
+     3474    0.003    0.000    0.003    0.000 {built-in method _imp.find_frozen}
+     1390    0.002    0.000    0.003    0.000 :41(_get_sep)
+        1    0.001    0.001    0.003    0.003 entities.py:4()
+        2    0.000    0.000    0.003    0.001 function_tool.py:1()
+      473    0.001    0.000    0.003    0.000 __init__.py:107(read)
+      162    0.000    0.000    0.003    0.000 :1276(__init__)
+        3    0.000    0.000    0.003    0.001 __init__.py:838(zip_children)
+        2    0.000    0.000    0.003    0.001 subprocess.py:807(__init__)
+        1    0.000    0.000    0.003    0.003 httpsession.py:1()
+        3    0.000    0.000    0.003    0.001 warnings.py:130(filterwarnings)
+        1    0.000    0.000    0.003    0.003 slack_alerting.py:19(BaseOutageModel)
+        2    0.000    0.000    0.003    0.001 loaders.py:1()
+        1    0.000    0.000    0.003    0.003 helpers.py:603(make_html_tags)
+      475    0.002    0.000    0.003    0.000 enum.py:935(_check_for_existing_members_)
+        1    0.000    0.000    0.003    0.003 helpers.py:545(_makeTags)
+        1    0.000    0.000    0.003    0.003 caching_handler.py:87(LLMCachingHandler)
+      992    0.002    0.000    0.003    0.000 _parser.py:444(_uniq)
+        2    0.000    0.000    0.003    0.001 node_service.py:64(list_folders)
+        1    0.000    0.000    0.003    0.003 lowest_latency.py:1()
+        3    0.000    0.000    0.003    0.001 _common.py:17(files)
+      166    0.000    0.000    0.003    0.000 core.py:2399(__new__)
+        1    0.000    0.000    0.003    0.003 _python_package_support.py:202(check_dependency_versions)
+     4129    0.003    0.000    0.003    0.000 typing.py:2214(cast)
+        1    0.000    0.000    0.003    0.003 _python_package_support.py:104(warn_deprecation_for_versions_less_than)
+        1    0.000    0.000    0.003    0.003 :977(exec_module)
+        1    0.000    0.000    0.003    0.003 _python_package_support.py:76(get_dependency_version)
+        1    0.000    0.000    0.003    0.003 :1()
+        1    0.000    0.000    0.003    0.003 base_tokenizer.py:1()
+        1    0.001    0.001    0.003    0.003 helpers.py:647()
+     3217    0.003    0.000    0.003    0.000 {built-in method _imp._fix_co_filename}
+        1    0.000    0.000    0.003    0.003 typedefs.py:1()
+       16    0.000    0.000    0.002    0.000 _discriminated_union.py:61(apply_discriminator)
+    102/2    0.000    0.000    0.002    0.001 core.py:810(_parseNoCache)
+        1    0.000    0.000    0.002    0.002 response_content_part_done_event.py:1()
+        1    0.000    0.000    0.002    0.002 safe_json_dumps.py:1()
+      285    0.001    0.000    0.002    0.000 _compiler.py:465(_get_charset_prefix)
+      113    0.000    0.000    0.002    0.000 dataclasses.py:228(_recursive_repr)
+     10/2    0.000    0.000    0.002    0.001 core.py:4055(parseImpl)
+       37    0.002    0.000    0.002    0.000 {built-in method _imp.exec_dynamic}
+     3766    0.002    0.000    0.002    0.000 {built-in method sys.intern}
+        1    0.000    0.000    0.002    0.002 response_content_part_added_event.py:1()
+        1    0.002    0.002    0.002    0.002 backend.py:135(Backend)
+        1    0.000    0.000    0.002    0.002 sequences.py:1()
+     4303    0.002    0.000    0.002    0.000 {method 'lower' of 'str' objects}
+        5    0.000    0.000    0.002    0.000 _decoders.py:77(decode)
+        1    0.000    0.000    0.002    0.002 core.py:455(DebugActions)
+        2    0.000    0.000    0.002    0.001 dsa.py:1()
+     2144    0.002    0.000    0.002    0.000 {method 'replace' of 'str' objects}
+     2280    0.002    0.000    0.002    0.000 _IntegerGMP.py:790(__del__)
+        5    0.002    0.000    0.002    0.000 {method 'decompress' of 'zlib.Decompress' objects}
+        1    0.000    0.000    0.002    0.002 configfile.py:159(_loadconfig)
+        1    0.000    0.000    0.002    0.002 ai_handler.py:1()
+        1    0.000    0.000    0.002    0.002 utils.py:282(CallTypes)
+        1    0.000    0.000    0.002    0.002 payload_builders.py:1()
+        1    0.000    0.000    0.002    0.002 assistant_create_params.py:1()
+        2    0.000    0.000    0.002    0.001 subprocess.py:1740(_execute_child)
+     3567    0.002    0.000    0.002    0.000 :165(__init__)
+     3218    0.002    0.000    0.002    0.000 :1097(__init__)
+        1    0.000    0.000    0.002    0.002 gpt_transformation.py:69(OpenAIGPTConfig)
+     1317    0.002    0.000    0.002    0.000 feedparser.py:78(readline)
+        1    0.000    0.000    0.002    0.002 custom_guardrail.py:83(CustomGuardrail)
+     1226    0.002    0.000    0.002    0.000 :1283(_find_parent_path_names)
+        1    0.000    0.000    0.002    0.002 open_inference.py:1()
+        1    0.000    0.000    0.002    0.002 backend_application.py:1()
+        1    0.000    0.000    0.002    0.002 core.py:1781(Group)
+        1    0.000    0.000    0.002    0.002 _std_types_schema.py:1()
+      201    0.000    0.000    0.002    0.000 :859(__iter__)
+        2    0.000    0.000    0.002    0.001 authorization.py:1()
+        3    0.000    0.000    0.002    0.001 token.py:1()
+        1    0.000    0.000    0.002    0.002 v1_match_condition.py:1()
+     4109    0.002    0.000    0.002    0.000 :71(_relax_case)
+        1    0.000    0.000    0.002    0.002 _python_package_support.py:1()
+        1    0.000    0.000    0.002    0.002 _figure.py:40(_set_master)
+        1    0.000    0.000    0.002    0.002 local_environment.py:1()
+        1    0.000    0.000    0.002    0.002 lowest_tpm_rpm_v2.py:1()
+       78    0.000    0.000    0.002    0.000 _decorators.py:233(build)
+        1    0.000    0.000    0.002    0.002 chat_completion_assistant_message_param.py:1()
+        1    0.000    0.000    0.002    0.002 endpoint.py:1()
+        1    0.000    0.000    0.002    0.002 __init__.py:454(StrFormatStyle)
+        1    0.000    0.000    0.002    0.002 message_content_part_param.py:1()
+        1    0.000    0.000    0.002    0.002 client_middleware_digest_auth.py:1()
+        1    0.000    0.000    0.002    0.002 generated.py:1006(CreateModelInteractionParams)
+      127    0.001    0.000    0.002    0.000 shutil.py:1387(get_terminal_size)
+        1    0.000    0.000    0.002    0.002 sync.py:1()
+     16/2    0.000    0.000    0.002    0.001 core.py:4573(parseImpl)
+        1    0.000    0.000    0.002    0.002 watsonx.py:1()
+        1    0.000    0.000    0.002    0.002 extensions.py:1414(GeneralNames)
+        2    0.000    0.000    0.002    0.001 core.py:4993(parseImpl)
+        1    0.000    0.000    0.002    0.002 response_output_text_param.py:1()
+        2    0.000    0.000    0.002    0.001 configfile.py:540(_getallfolders)
+        1    0.000    0.000    0.002    0.002 dateutil.py:1()
+        1    0.000    0.000    0.002    0.002 tempfile.py:1()
+      190    0.000    0.000    0.002    0.000 _doc_utils.py:125(set_doc)
+       25    0.000    0.000    0.002    0.000 inspect.py:3231(__str__)
+        1    0.000    0.000    0.002    0.002 custom_llm.py:47(CustomLLM)
+        7    0.000    0.000    0.002    0.000 errors.py:1()
+      153    0.000    0.000    0.002    0.000 _doc_utils.py:43(__init__)
+        1    0.000    0.000    0.002    0.002 dpo_method.py:1()
+        1    0.000    0.000    0.002    0.002 response_computer_tool_call_output_item.py:1()
+     1117    0.001    0.000    0.002    0.000 pathlib.py:240(splitroot)
+     3652    0.002    0.000    0.002    0.000 _decorators.py:444()
+  484/376    0.001    0.000    0.002    0.000 _compiler.py:434(_get_literal_prefix)
+        1    0.000    0.000    0.002    0.002 transcription_verbose.py:1()
+        1    0.000    0.000    0.002    0.002 from_thread.py:1()
+        1    0.000    0.000    0.002    0.002 _monitor.py:20(copy)
+     20/8    0.000    0.000    0.002    0.000 core.py:4303(parseImpl)
+        1    0.000    0.000    0.002    0.002 _types.py:4091(LiteLLM_JWTAuth)
+      312    0.002    0.000    0.002    0.000 enum.py:224(__set_name__)
+       16    0.000    0.000    0.002    0.000 _discriminated_union.py:167(apply)
+        2    0.000    0.000    0.002    0.001 readers.py:1()
+        1    0.000    0.000    0.002    0.002 ruler.py:1()
+     3441    0.002    0.000    0.002    0.000 :413(has_location)
+     3220    0.002    0.000    0.002    0.000 :1122(get_filename)
+        1    0.000    0.000    0.002    0.002 decoder.py:1()
+        1    0.000    0.000    0.002    0.002 response_function_shell_call_output_content.py:1()
+      158    0.001    0.000    0.002    0.000 enum.py:1009(_find_new_)
+      4/2    0.000    0.000    0.002    0.001 argparse.py:1880(parse_known_args)
+        1    0.000    0.000    0.002    0.002 pkcs12.py:1()
+        1    0.000    0.000    0.002    0.002 _import_utils.py:1()
+        1    0.000    0.000    0.002    0.002 _policybase.py:1()
+      111    0.000    0.000    0.002    0.000 __init__.py:163(match)
+     1604    0.001    0.000    0.002    0.000 _parser.py:166(__setitem__)
+        1    0.000    0.000    0.002    0.002 assistant_tool_choice_option.py:1()
+      751    0.002    0.000    0.002    0.000 _generate_schema.py:178(check_decorator_fields_exist)
+    24/16    0.000    0.000    0.002    0.000 _discriminated_union.py:197(_apply_to_root)
+       23    0.000    0.000    0.002    0.000 typing.py:2914()
+        1    0.000    0.000    0.002    0.002 hashlib.py:1()
+        1    0.000    0.000    0.002    0.002 anthropic_request.py:1()
+      220    0.001    0.000    0.002    0.000 __init__.py:877(normalize)
+        1    0.000    0.000    0.002    0.002 markup.py:1()
+       12    0.000    0.000    0.002    0.000 _raw_api.py:293(load_pycryptodome_raw_lib)
+        1    0.000    0.000    0.002    0.002 asn1.py:588(decode)
+        1    0.000    0.000    0.002    0.002 _serialization.py:1()
+     3652    0.002    0.000    0.002    0.000 _decorators.py:448()
+        1    0.000    0.000    0.002    0.002 file_citation_delta_annotation.py:1()
+        1    0.000    0.000    0.002    0.002 _config.py:60(SSLConfig)
+        1    0.000    0.000    0.002    0.002 mock_client_factory.py:1()
+     3652    0.002    0.000    0.002    0.000 _decorators.py:447()
+     10/1    0.000    0.000    0.002    0.002 asn1.py:213(decode)
+       18    0.001    0.000    0.002    0.000 configfile.py:546()
+      417    0.001    0.000    0.002    0.000 _parser.py:256(getwhile)
+        1    0.000    0.000    0.002    0.002 computer_action_param.py:1()
+        1    0.000    0.000    0.002    0.002 asn1.py:617(_decodeFromStream)
+        2    0.000    0.000    0.002    0.001 response_format_json_schema.py:1()
+        1    0.000    0.000    0.002    0.002 vector_store_search_response.py:1()
+        2    0.000    0.000    0.002    0.001 reasoning.py:1()
+     3339    0.002    0.000    0.002    0.000 _core_utils.py:467()
+      263    0.001    0.000    0.002    0.000 __init__.py:603(is_bedrock_pricing_only_model)
+        1    0.000    0.000    0.002    0.002 __init__.py:40(__getattr__)
+      134    0.000    0.000    0.002    0.000 _doc_utils.py:200(_add_past_parameter)
+        7    0.000    0.000    0.002    0.000 core.py:21(where)
+     3652    0.002    0.000    0.002    0.000 _decorators.py:450()
+        1    0.000    0.000    0.002    0.002 response_mcp_call_arguments_delta_event.py:1()
+        1    0.000    0.000    0.002    0.002 response_input_message_content_list_param.py:1()
+        1    0.000    0.000    0.002    0.002 payload.py:1()
+     3337    0.002    0.000    0.002    0.000 typing.py:715()
+     3652    0.002    0.000    0.002    0.000 _decorators.py:446()
+        3    0.001    0.000    0.002    0.001 feedparser.py:471(_parse_headers)
+        1    0.000    0.000    0.002    0.002 create_embedding_response.py:1()
+        5    0.000    0.000    0.002    0.000 _client.py:213(_get_proxy_map)
+        1    0.000    0.000    0.002    0.002 _types.py:4435(CostEstimateResponse)
+        1    0.000    0.000    0.002    0.002 transcription_text_delta_event.py:1()
+        1    0.000    0.000    0.002    0.002 langfuse_prompt_management.py:1()
+        1    0.000    0.000    0.002    0.002 _utils.py:195(get_environment_proxies)
+        1    0.000    0.000    0.002    0.002 utils.py:35(ResponsesAPIRequestUtils)
+     3216    0.002    0.000    0.002    0.000 :931(create_module)
+        3    0.000    0.000    0.002    0.001 _common.py:59(from_package)
+        1    0.000    0.000    0.002    0.002 _models.py:1035(extract_cookies)
+        1    0.000    0.000    0.002    0.002 request.py:2493(getproxies_environment)
+        1    0.000    0.000    0.002    0.002 response_format_text_config.py:1()
+        1    0.000    0.000    0.002    0.002 response.py:59(Response)
+        6    0.000    0.000    0.002    0.000 _core_utils.py:311(handle_chain_schema)
+        6    0.000    0.000    0.002    0.000 _core_utils.py:312()
+     3280    0.002    0.000    0.002    0.000 :1565()
+        1    0.000    0.000    0.002    0.002 response_item_list.py:1()
+        3    0.000    0.000    0.002    0.001 _adapters.py:28(get_resource_reader)
+        1    0.000    0.000    0.002    0.002 batch_usage.py:1()
+        2    0.000    0.000    0.002    0.001 _default.py:1()
+        2    0.000    0.000    0.002    0.001 _abnf.py:1()
+        1    0.000    0.000    0.002    0.002 tool.py:241(ImageGeneration)
+       38    0.000    0.000    0.002    0.000 dataclasses.py:845(_hash_add)
+        1    0.000    0.000    0.002    0.002 function_tool_call.py:1()
+        2    0.000    0.000    0.002    0.001 linkify.py:1()
+        2    0.000    0.000    0.002    0.001 parameters.py:1()
+        3    0.000    0.000    0.002    0.001 _adapters.py:151(_native)
+        5    0.000    0.000    0.002    0.000 ssl.py:492(__new__)
+        1    0.000    0.000    0.002    0.002 _tzpath.py:1()
+        1    0.000    0.000    0.002    0.002 all_models.py:1()
+      724    0.001    0.000    0.002    0.000 _generics.py:418(recursively_defined_type_refs)
+        1    0.000    0.000    0.002    0.002 external_account_authorized_user.py:1()
+       72    0.000    0.000    0.002    0.000 core.py:2088(__init__)
+        1    0.000    0.000    0.002    0.002 openai.py:1231(ResponsesAPIResponse)
+        1    0.000    0.000    0.002    0.002 image_url_content_block.py:1()
+        3    0.000    0.000    0.002    0.001 _adapters.py:146(_reader)
+        1    0.000    0.000    0.002    0.002 parsers.py:1()
+      123    0.000    0.000    0.002    0.000 utils.py:9417(__getattr__)
+        2    0.000    0.000    0.002    0.001 custom_tool_input_format.py:1()
+        1    0.000    0.000    0.002    0.002 text.py:118(Text)
+        1    0.000    0.000    0.002    0.002 _generics.py:1()
+     1943    0.002    0.000    0.002    0.000 enum.py:750(__delattr__)
+        1    0.000    0.000    0.002    0.002 response_input_message_item.py:1()
+     2193    0.002    0.000    0.002    0.000 typing.py:1662(_value_and_type_iter)
+        1    0.000    0.000    0.002    0.002 _types.py:190(Litellm_EntityType)
+        1    0.000    0.000    0.002    0.002 compression_utils.py:1()
+        1    0.000    0.000    0.002    0.002 response_input_audio.py:1()
+        1    0.000    0.000    0.002    0.002 response_usage.py:1()
+        1    0.000    0.000    0.002    0.002 file_proxy.py:1()
+        1    0.000    0.000    0.002    0.002 assistants.py:1()
+2766/2765    0.002    0.000    0.002    0.000 {method 'encode' of 'str' objects}
+        1    0.000    0.000    0.002    0.002 router.py:487(ModelGroupInfo)
+        3    0.000    0.000    0.002    0.001 :1136(get_resource_reader)
+        1    0.000    0.000    0.002    0.002 utils.py:2652(StandardLoggingGuardrailInformation)
+        9    0.000    0.000    0.002    0.000 _generate_schema.py:1924(_unsubstituted_typevar_schema)
+        1    0.000    0.000    0.002    0.002 _parser.py:1()
+    92/73    0.000    0.000    0.002    0.000 copy.py:201(_deepcopy_list)
+      849    0.001    0.000    0.002    0.000 _generate_schema.py:2256(_apply_model_serializers)
+        1    0.000    0.000    0.002    0.002 file_object.py:1()
+        1    0.000    0.000    0.002    0.002 reinforcement_hyperparameters.py:1()
+        1    0.000    0.000    0.002    0.002 function_tool_call_delta.py:1()
+        1    0.000    0.000    0.002    0.002 _mock_val_ser.py:1()
+        1    0.000    0.000    0.002    0.002 filepost.py:1()
+        1    0.000    0.000    0.002    0.002 string.py:1()
+        1    0.000    0.000    0.002    0.002 generated.py:933(Interaction)
+        1    0.000    0.000    0.002    0.002 assistants.py:24(AzureAssistantsAPI)
+        1    0.000    0.000    0.002    0.002 fine_tuning_job_wandb_integration_object.py:1()
+        1    0.000    0.000    0.002    0.002 sslproto.py:1()
+        1    0.000    0.000    0.002    0.002 connector.py:928(TCPConnector)
+        2    0.000    0.000    0.002    0.001 function_definition.py:1()
+        1    0.000    0.000    0.002    0.002 session_handler.py:1()
+        1    0.000    0.000    0.002    0.002 transformation.py:58(LiteLLMResponsesTransformationHandler)
+        1    0.000    0.000    0.002    0.002 functional_serializers.py:1()
+        1    0.000    0.000    0.002    0.002 formatters.py:1()
+      218    0.001    0.000    0.002    0.000 style.py:122(__init__)
+        1    0.000    0.000    0.002    0.002 chat_completion_token_logprob.py:1()
+        1    0.000    0.000    0.002    0.002 file_path_delta_annotation.py:1()
+        1    0.000    0.000    0.002    0.002 autolink.py:1()
+      358    0.001    0.000    0.002    0.000 core_schema.py:2796(typed_dict_field)
+       49    0.001    0.000    0.002    0.000 dataclasses.py:1142(_add_slots)
+     2970    0.002    0.000    0.002    0.000 {method 'popleft' of 'collections.deque' objects}
+     2404    0.002    0.000    0.002    0.000 {built-in method _ctypes.byref}
+      416    0.001    0.000    0.002    0.000 _parser.py:222(__init__)
+        1    0.000    0.000    0.002    0.002 image_file_delta_block.py:1()
+      4/2    0.000    0.000    0.002    0.001 argparse.py:1918(_parse_known_args)
+        1    0.000    0.000    0.002    0.002 fine_tuning_job_event.py:1()
+        1    0.000    0.000    0.002    0.002 vector_store_create_params.py:1()
+        1    0.000    0.000    0.002    0.002 __init__.py:29(Markup)
+        1    0.000    0.000    0.002    0.002 _status_codes.py:8(codes)
+        1    0.000    0.000    0.002    0.002 responses_client_event_param.py:1()
+        1    0.000    0.000    0.002    0.002 chat_completion_tool_choice_option_param.py:1()
+        1    0.000    0.000    0.002    0.002 KDF.py:1()
+        1    0.000    0.000    0.002    0.002 image_url_delta_block.py:1()
+        1    0.000    0.000    0.002    0.002 response_reasoning_summary_part_done_event.py:1()
+       97    0.001    0.000    0.002    0.000 inspect.py:2037(_signature_bound_method)
+        1    0.000    0.000    0.002    0.002 common_utils.py:91(AnthropicModelInfo)
+        1    0.000    0.000    0.002    0.002 guardrails.py:336(BedrockGuardrailConfigModel)
+        1    0.000    0.000    0.002    0.002 chat_completion_user_message_param.py:1()
+        1    0.001    0.001    0.002    0.002 formatters.py:19(_make_colors)
+     2883    0.002    0.000    0.002    0.000 {built-in method builtins.callable}
+        1    0.000    0.000    0.002    0.002 ipaddress.py:2314(_IPv6Constants)
+        1    0.000    0.000    0.002    0.002 tool_search_tool.py:1()
+        1    0.000    0.000    0.002    0.002 response_input_file_content.py:1()
+        1    0.000    0.000    0.002    0.002 client_reqrep.py:793(ClientRequest)
+       38    0.000    0.000    0.002    0.000 dataclasses.py:638(_hash_fn)
+      9/2    0.000    0.000    0.002    0.001 core.py:4005(streamline)
+        1    0.000    0.000    0.002    0.002 header.py:1()
+        1    0.000    0.000    0.002    0.002 response_output_text_annotation_added_event.py:1()
+        1    0.000    0.000    0.002    0.002 vector_store_registry.py:1()
+      223    0.001    0.000    0.002    0.000 __init__.py:943(normalize)
+        1    0.000    0.000    0.002    0.002 locks.py:1()
+     2726    0.002    0.000    0.002    0.000 {method 'items' of 'mappingproxy' objects}
+        1    0.000    0.000    0.002    0.002 supervised_method.py:1()
+        1    0.000    0.000    0.002    0.002 string.py:69(__init_subclass__)
+        1    0.000    0.000    0.002    0.002 client.py:233(ClientSession)
+        1    0.000    0.000    0.002    0.002 formatting.py:1()
+        1    0.000    0.000    0.002    0.002 response_mcp_call_arguments_done_event.py:1()
+        1    0.000    0.000    0.002    0.002 response_output_item_added_event.py:1()
+        1    0.000    0.000    0.002    0.002 pkcs7.py:1()
+        9    0.000    0.000    0.002    0.000 asn1.py:322(decode)
+       34    0.000    0.000    0.002    0.000 ipaddress.py:2238(__init__)
+        1    0.000    0.000    0.002    0.002 response_reasoning_summary_part_added_event.py:1()
+      940    0.001    0.000    0.002    0.000 typing.py:877(__hash__)
+        1    0.000    0.000    0.002    0.002 response_function_call_output_item_list_param.py:1()
+     2544    0.002    0.000    0.002    0.000 {built-in method builtins.chr}
+        1    0.000    0.000    0.002    0.002 base_aws_llm.py:59(BaseAWSLLM)
+  174/121    0.000    0.000    0.002    0.000 _generics.py:473(_union_orderings_key)
+        1    0.000    0.000    0.002    0.002 transformation.py:81(BaseConfig)
+        1    0.000    0.000    0.002    0.002 _strptime.py:1()
+        1    0.000    0.000    0.002    0.002 endpoint_provider.py:1()
+        5    0.000    0.000    0.002    0.000 types.py:799(__init__)
+      4/2    0.000    0.000    0.002    0.001 argparse.py:2067(consume_positionals)
+        1    0.000    0.000    0.002    0.002 _markupbase.py:1()
+      172    0.000    0.000    0.002    0.000 argparse.py:1853(_add_action)
+        1    0.000    0.000    0.002    0.002 stapled.py:1()
+        1    0.000    0.000    0.002    0.002 traceback.py:1()
+        1    0.000    0.000    0.002    0.002 panel.py:1()
+      181    0.000    0.000    0.002    0.000 inspect.py:409(iscoroutinefunction)
+        1    0.000    0.000    0.002    0.002 label_model_grader_param.py:1()
+        1    0.000    0.000    0.002    0.002 _strptime.py:173(__init__)
+       72    0.000    0.000    0.002    0.000 inspect.py:2770(__str__)
+        1    0.000    0.000    0.002    0.002 http_handler.py:345(AsyncHTTPHandler)
+        1    0.000    0.000    0.002    0.002 batch_embed_content_handler.py:1()
+       21    0.000    0.000    0.002    0.000 _generics.py:456(set_cached_generic_type)
+      144    0.001    0.000    0.002    0.000 _parser.py:265(getuntil)
+        1    0.000    0.000    0.002    0.002 response_error_event.py:1()
+        1    0.000    0.000    0.002    0.002 assistant_tool_choice.py:1()
+        1    0.000    0.000    0.002    0.002 chatkit_workflow.py:1()
+        1    0.000    0.000    0.002    0.002 skill.py:1()
+        1    0.000    0.000    0.002    0.002 messages_transformation.py:1()
+        9    0.001    0.000    0.002    0.000 asn1.py:335(_decodeFromStream)
+     16/3    0.000    0.000    0.002    0.001 core.py:3852(streamline)
+        1    0.000    0.000    0.002    0.002 chat_completion_content_part_image.py:1()
+        1    0.000    0.000    0.002    0.002 caching.py:55(Cache)
+      611    0.001    0.000    0.002    0.000 _generate_schema.py:405(_types_namespace)
+        1    0.000    0.000    0.002    0.002 image_file_content_block.py:1()
+        2    0.000    0.000    0.002    0.001 ec.py:1()
+        1    0.000    0.000    0.002    0.002 sts.py:1()
+      281    0.000    0.000    0.002    0.000 typing.py:2116(__getattr__)
+        1    0.000    0.000    0.002    0.002 file_path_annotation.py:1()
+        1    0.000    0.000    0.002    0.002 _http.py:1()
+        1    0.000    0.000    0.002    0.002 ansi.py:1()
+       16    0.000    0.000    0.002    0.000 core.py:617(set_parse_action)
+        1    0.000    0.000    0.002    0.002 bz2.py:1()
+        1    0.000    0.000    0.002    0.002 _doc_utils.py:1()
+        1    0.000    0.000    0.002    0.002 sandbox.py:1()
+        1    0.000    0.000    0.002    0.002 guardrails.py:305(PresidioConfigModel)
+      828    0.001    0.000    0.002    0.000 _compiler.py:568(isstring)
+        1    0.000    0.000    0.002    0.002 image_edit_partial_image_event.py:1()
+        2    0.000    0.000    0.002    0.001 file_search_tool_param.py:1()
+        1    0.000    0.000    0.002    0.002 client.py:172(_RequestOptions)
+        2    0.000    0.000    0.002    0.001 comparison_filter.py:1()
+        1    0.000    0.000    0.002    0.002 transcription_segment.py:1()
+        1    0.000    0.000    0.002    0.002 generated.py:891(GenerationConfig)
+        1    0.000    0.000    0.002    0.002 ElementPath.py:1()
+        1    0.000    0.000    0.002    0.002 http_handler.py:915(HTTPHandler)
+        1    0.000    0.000    0.001    0.001 feedparser.py:1()
+      443    0.001    0.000    0.001    0.000 _compiler.py:386()
+        1    0.000    0.000    0.001    0.001 utils.py:2111(S3ArnParamHandler)
+        2    0.000    0.000    0.001    0.001 batch_utils.py:1()
+        1    0.000    0.000    0.001    0.001 generated.py:771(Usage)
+      757    0.001    0.000    0.001    0.000 inspect.py:755(_is_wrapper)
+        1    0.000    0.000    0.001    0.001 client_options.py:1()
+        1    0.000    0.000    0.001    0.001 inline_skill_source.py:1()
+        1    0.000    0.000    0.001    0.001 _types.py:2032(PassThroughGenericEndpoint)
+        1    0.000    0.000    0.001    0.001 _state.py:1()
+        1    0.000    0.000    0.001    0.001 _abc.py:1()
+        1    0.000    0.000    0.001    0.001 required_action_function_tool_call.py:1()
+        1    0.000    0.000    0.001    0.001 charset.py:1()
+        1    0.000    0.000    0.001    0.001 core.py:2012(Parameter)
+      190    0.000    0.000    0.001    0.000 argparse.py:1674(_add_action)
+        1    0.000    0.000    0.001    0.001 parsed_function_tool_call.py:1()
+        1    0.000    0.000    0.001    0.001 score_model_grader_param.py:1()
+        1    0.000    0.000    0.001    0.001 invoke_handler.py:1285(AWSEventStreamDecoder)
+        1    0.000    0.000    0.001    0.001 json_loader.py:1()
+        1    0.000    0.000    0.001    0.001 standard.py:1()
+        1    0.000    0.000    0.001    0.001 _types.py:4252(DefaultInternalUserParams)
+       69    0.001    0.000    0.001    0.000 nodes.py:59(__new__)
+        3    0.000    0.000    0.001    0.000 _collections.py:1()
+        1    0.000    0.000    0.001    0.001 file_citation_annotation.py:1()
+        1    0.000    0.000    0.001    0.001 response_mcp_call_completed_event.py:1()
+        1    0.000    0.000    0.001    0.001 aliases.py:1()
+        1    0.000    0.000    0.001    0.001 dumper.py:1()
+        1    0.000    0.000    0.001    0.001 pydoc.py:1()
+        2    0.000    0.000    0.001    0.001 embedding_handler.py:1()
+        1    0.000    0.000    0.001    0.001 guardrails.py:558(ContentFilterConfigModel)
+        1    0.000    0.000    0.001    0.001 _argparse.py:261(format_help)
+        1    0.000    0.000    0.001    0.001 response_refusal_delta_event.py:1()
+        1    0.000    0.000    0.001    0.001 anthropic.py:354(AnthropicMessagesRequestOptionalParams)
+        2    0.000    0.000    0.001    0.001 signals.py:1()
+        1    0.000    0.000    0.001    0.001 response_custom_tool_call_input_delta_event.py:1()
+      119    0.000    0.000    0.001    0.000 _doc_utils.py:128(set_output)
+      281    0.000    0.000    0.001    0.000 core_schema.py:529(bool_schema)
+        1    0.000    0.000    0.001    0.001 transformation.py:228(LiteLLMAnthropicMessagesAdapter)
+        1    0.000    0.000    0.001    0.001 response_tool_search_output_item_param.py:1()
+        1    0.000    0.000    0.001    0.001 response_function_tool_call_output_item.py:1()
+     1809    0.001    0.000    0.001    0.000 _mock_val_ser.py:124(attempt_rebuild_fn)
+        1    0.000    0.000    0.001    0.001 segment.py:63(Segment)
+        1    0.000    0.000    0.001    0.001 capture.py:5(__init__)
+        1    0.000    0.000    0.001    0.001 utils.py:1096(Message)
+       21    0.000    0.000    0.001    0.000 core.py:266(_trim_arity)
+       64    0.000    0.000    0.001    0.000 _discriminated_union.py:253(_handle_choice)
+        1    0.000    0.000    0.001    0.001 lowest_tpm_rpm.py:1()
+        1    0.000    0.000    0.001    0.001 response_input_image.py:1()
+        1    0.000    0.000    0.001    0.001 vector_store_registry.py:108(VectorStoreRegistry)
+        1    0.000    0.000    0.001    0.001 response_refusal_done_event.py:1()
+        1    0.000    0.000    0.001    0.001 transcription_text_done_event.py:51(TranscriptionTextDoneEvent)
+      130    0.000    0.000    0.001    0.000 _doc_utils.py:84(get_title)
+        1    0.000    0.000    0.001    0.001 opentelemetry.py:139(OpenTelemetry)
+       16    0.000    0.000    0.001    0.000 core.py:698()
+        1    0.000    0.000    0.001    0.001 http_handler.py:44(InteractionsHTTPHandler)
+     1873    0.001    0.000    0.001    0.000 _decorators.py:324()
+        1    0.000    0.000    0.001    0.001 image_gen_partial_image_event.py:1()
+        1    0.000    0.000    0.001    0.001 unix_events.py:1()
+      181    0.001    0.000    0.001    0.000 inspect.py:391(_has_code_flag)
+        1    0.000    0.000    0.001    0.001 chat_completion_message_function_tool_call.py:1()
+        1    0.000    0.000    0.001    0.001 openai.py:1134(ResponsesAPIOptionalRequestParams)
+        1    0.000    0.000    0.001    0.001 message_delta_event.py:1()
+     1149    0.001    0.000    0.001    0.000 _generate_schema.py:330(__init__)
+        5    0.000    0.000    0.001    0.000 _client.py:163(__init__)
+        1    0.000    0.000    0.001    0.001 _query.py:1()
+        1    0.000    0.000    0.001    0.001 variables.py:1()
+        1    0.000    0.000    0.001    0.001 endpoint_factory.py:179(generate_container_endpoints)
+        1    0.000    0.000    0.001    0.001 response_image_gen_call_partial_image_event.py:1()
+        2    0.000    0.000    0.001    0.001 scanner.py:1()
+        1    0.000    0.000    0.001    0.001 chat_completion_function_tool_param.py:1()
+        1    0.000    0.000    0.001    0.001 _types.py:1225(LiteLLM_MCPServerTable)
+        3    0.000    0.000    0.001    0.000 rules.py:300(_prefix_names)
+     2006    0.001    0.000    0.001    0.000 _generate_schema.py:2564(__init__)
+        1    0.000    0.000    0.001    0.001 chat_completion_content_part_param.py:1()
+        1    0.000    0.000    0.001    0.001 response_tool_search_output_item.py:1()
+        1    0.000    0.000    0.001    0.001 dpo_hyperparameters.py:1()
+        8    0.000    0.000    0.001    0.000 _IntegerBase.py:345(random_range)
+        1    0.000    0.000    0.001    0.001 response_function_tool_call.py:1()
+      941    0.001    0.000    0.001    0.000 {method 'sub' of 're.Pattern' objects}
+       97    0.000    0.000    0.001    0.000 inspect.py:1441(formatannotation)
+       98    0.000    0.000    0.001    0.000 _IntegerGMP.py:334(__eq__)
+        1    0.000    0.000    0.001    0.001 transformation.py:38(BedrockRealtimeConfig)
+       95    0.000    0.000    0.001    0.000 _doc_utils.py:181(_set_doc)
+      410    0.001    0.000    0.001    0.000 socket.py:93()
+        1    0.000    0.000    0.001    0.001 budget_limiter.py:91(RouterBudgetLimiting)
+        2    0.000    0.000    0.001    0.001 _strptime.py:565(_strptime_datetime)
+        1    0.000    0.000    0.001    0.001 response_code_interpreter_call_in_progress_event.py:1()
+        1    0.000    0.000    0.001    0.001 response_format_text_json_schema_config.py:1()
+        1    0.000    0.000    0.001    0.001 _models.py:1183(__init__)
+        1    0.000    0.000    0.001    0.001 response_output_item_done_event.py:1()
+        1    0.000    0.000    0.001    0.001 syntax.py:227(Syntax)
+        1    0.000    0.000    0.001    0.001 variable.py:1()
+       71    0.000    0.000    0.001    0.000 core.py:2642(_parse_decls)
+        1    0.000    0.000    0.001    0.001 response_computer_tool_call_output_screenshot.py:1()
+        1    0.000    0.000    0.001    0.001 response_custom_tool_call_output.py:1()
+        1    0.000    0.000    0.001    0.001 tls.py:1()
+        1    0.000    0.000    0.001    0.001 client_reqrep.py:287(ClientResponse)
+        1    0.000    0.000    0.001    0.001 code_interpreter_output_image.py:1()
+        1    0.000    0.000    0.001    0.001 poolmanager.py:1()
+        1    0.000    0.000    0.001    0.001 console.py:1629(print)
+        1    0.000    0.000    0.001    0.001 functional_validators.py:72(__get_pydantic_core_schema__)
+        1    0.000    0.000    0.001    0.001 chat_completion_message_custom_tool_call.py:1()
+        1    0.000    0.000    0.001    0.001 computer_use_preview_tool.py:1()
+        1    0.000    0.000    0.001    0.001 response_function_web_search_param.py:1()
+        1    0.000    0.000    0.001    0.001 custom_tool.py:1()
+       10    0.000    0.000    0.001    0.000 _lazy_imports.py:332(_lazy_import_utils_module)
+        5    0.000    0.000    0.001    0.000 _common.py:1()
+        1    0.000    0.000    0.001    0.001 services.py:119(ServiceLoggerPayload)
+        1    0.000    0.000    0.001    0.001 transformation.py:67(GeminiRealtimeConfig)
+        2    0.000    0.000    0.001    0.001 _strptime.py:309(_strptime)
+        1    0.000    0.000    0.001    0.001 fine_tuning.py:1()
+        1    0.000    0.000    0.001    0.001 images_response.py:51(ImagesResponse)
+      208    0.000    0.000    0.001    0.000 core_schema.py:2472(union_schema)
+        1    0.000    0.000    0.001    0.001 qualifire.py:8(QualifireGuardrailConfigModel)
+       13    0.001    0.000    0.001    0.000 {method 'readlines' of '_io._IOBase' objects}
+        1    0.000    0.000    0.001    0.001 response_completed_event.py:1()
+       36    0.000    0.000    0.001    0.000 core.py:3086(parseImpl)
+        1    0.000    0.000    0.001    0.001 __init__.py:12(__getattr__)
+        1    0.000    0.000    0.001    0.001 style.py:30(Style)
+        1    0.000    0.000    0.001    0.001 _app.py:159(WebSocketApp)
+        1    0.000    0.000    0.001    0.001 moderation_create_params.py:1()
+        1    0.000    0.000    0.001    0.001 openai.py:709(OpenAIChatCompletionAssistantMessage)
+        1    0.000    0.000    0.001    0.001 authorization_code.py:1()
+        1    0.000    0.000    0.001    0.001 _wrap.py:1()
+        1    0.000    0.000    0.001    0.001 compiler.py:300(CodeGenerator)
+        1    0.000    0.000    0.001    0.001 text_similarity_grader.py:1()
+        4    0.000    0.000    0.001    0.000 argparse.py:2218(_match_arguments_partial)
+      119    0.000    0.000    0.001    0.000 _doc_utils.py:103(__init__)
+       89    0.000    0.000    0.001    0.000 _generics.py:497(_early_cache_key)
+        1    0.000    0.000    0.001    0.001 _connection.py:139(Connection)
+        1    0.000    0.000    0.001    0.001 _response.py:1()
+        1    0.000    0.000    0.001    0.001 dual_cache.py:51(DualCache)
+     12/3    0.000    0.000    0.001    0.000 core.py:4613(streamline)
+     1468    0.001    0.000    0.001    0.000 _generate_schema.py:333(tail)
+       15    0.000    0.000    0.001    0.000 main.py:801(__deepcopy__)
+        1    0.000    0.000    0.001    0.001 wcwidth.py:1()
+        1    0.000    0.000    0.001    0.001 _writers.py:1()
+        1    0.000    0.000    0.001    0.001 extensions.py:579(DistributionPoint)
+        1    0.000    0.000    0.001    0.001 string_check_grader.py:1()
+        1    0.000    0.000    0.001    0.001 _python_version_support.py:1()
+      682    0.001    0.000    0.001    0.000 :760(decode)
+        1    0.000    0.000    0.001    0.001 response_function_call_arguments_done_event.py:1()
+        1    0.000    0.000    0.001    0.001 environment.py:1133(Template)
+      236    0.001    0.000    0.001    0.000 core.py:460(__init__)
+        1    0.000    0.000    0.001    0.001 assistant_tool_choice_option_param.py:1()
+      144    0.000    0.000    0.001    0.000 _parser.py:295(checkgroupname)
+        1    0.000    0.000    0.001    0.001 lowlevel.py:1()
+      138    0.001    0.000    0.001    0.000 argparse.py:1565(_get_optional_kwargs)
+        1    0.000    0.000    0.001    0.001 run_step_delta_message_delta.py:1()
+        1    0.000    0.000    0.001    0.001 ipaddress.py:1569(_IPv4Constants)
+      126    0.001    0.000    0.001    0.000 __init__.py:1378(_fixupParents)
+        1    0.000    0.000    0.001    0.001 __init__.py:149(EntryPoint)
+        1    0.000    0.000    0.001    0.001 handler.py:35(BlackForestLabsImageEdit)
+        1    0.000    0.000    0.001    0.001 request.py:319(__init__)
+        1    0.000    0.000    0.001    0.001 _internal_utils.py:1()
+       52    0.000    0.000    0.001    0.000 typing.py:2011(__init_subclass__)
+        1    0.000    0.000    0.001    0.001 message_deleted.py:1()
+        1    0.000    0.000    0.001    0.001 response_output_refusal.py:1()
+        1    0.000    0.000    0.001    0.001 response_tool_search_call.py:1()
+        1    0.000    0.000    0.001    0.001 response_container_reference.py:1()
+     1707    0.001    0.000    0.001    0.000 {method 'split' of 'str' objects}
+        1    0.000    0.000    0.001    0.001 prompt_manager.py:1()
+       14    0.000    0.000    0.001    0.000 __init__.py:342(__init__)
+        4    0.000    0.000    0.001    0.000 theme.py:18(__init__)
+       16    0.000    0.000    0.001    0.000 main.py:480(model_parametrized_name)
+        1    0.000    0.000    0.001    0.001 _strptime.py:261(compile)
+        1    0.000    0.000    0.001    0.001 databricks.py:19(GenericStreamingChunk)
+        1    0.000    0.000    0.001    0.001 traceback.py:220(extract_stack)
+        1    0.000    0.000    0.001    0.001 litellm_content_filter.py:120(LitellmContentFilterGuardrailConfigModel)
+        1    0.000    0.000    0.001    0.001 types.py:46(TraceApi)
+        1    0.000    0.000    0.001    0.001 monitoring.py:1()
+        1    0.000    0.000    0.001    0.001 custom_http.py:1()
+        1    0.000    0.000    0.001    0.001 traceback.py:375(extract)
+        1    0.000    0.000    0.001    0.001 skill_reference.py:1()
+      558    0.001    0.000    0.001    0.000 dataclasses.py:820(_set_qualname)
+        1    0.001    0.001    0.001    0.001 utils.py:202()
+        1    0.000    0.000    0.001    0.001 parser.py:48(Parser)
+      5/4    0.000    0.000    0.001    0.000 _migration.py:249(getattr_migration)
+        1    0.000    0.000    0.001    0.001 traceback.py:397(_extract_from_extended_frame_gen)
+        1    0.000    0.000    0.001    0.001 message_creation_step_details.py:1()
+        1    0.000    0.000    0.001    0.001 response_custom_tool_call.py:1()
+       11    0.000    0.000    0.001    0.000 functional_validators.py:480(dec)
+       21    0.000    0.000    0.001    0.000 ipaddress.py:1502(__init__)
+        1    0.000    0.000    0.001    0.001 datetime.py:1()
+        1    0.000    0.000    0.001    0.001 response_function_tool_call_item.py:1()
+        1    0.000    0.000    0.001    0.001 response_reasoning_summary_text_done_event.py:1()
+        1    0.000    0.000    0.001    0.001 scaffold.py:1()
+        1    0.000    0.000    0.001    0.001 base.py:13(BaseLLM)
+        1    0.000    0.000    0.001    0.001 entity.py:1()
+      9/4    0.000    0.000    0.001    0.000 typing.py:1360(__getitem__)
+        4    0.000    0.000    0.001    0.000 theme.py:24()
+        1    0.000    0.000    0.001    0.001 file_chunking_strategy_param.py:1()
+        2    0.000    0.000    0.001    0.001 keyboard.py:71(get_curses_keycodes)
+       17    0.001    0.000    0.001    0.000 message.py:489(get)
+       13    0.000    0.000    0.001    0.000 _connection.py:426(next_event)
+        1    0.000    0.000    0.001    0.001 __init__.py:421(PercentStyle)
+        1    0.000    0.000    0.001    0.001 response_input_file.py:1()
+        1    0.000    0.000    0.001    0.001 multipart.py:812(MultipartWriter)
+     1506    0.001    0.000    0.001    0.000 enum.py:1248(value)
+        2    0.000    0.000    0.001    0.001 streams.py:1()
+        1    0.000    0.000    0.001    0.001 custom_prompt_management.py:1()
+        3    0.000    0.000    0.001    0.000 chat_model.py:1()
+        2    0.000    0.000    0.001    0.001 padding.py:1()
+        1    0.000    0.000    0.001    0.001 random.py:1()
+        1    0.000    0.000    0.001    0.001 response_input_image_content.py:1()
+        1    0.000    0.000    0.001    0.001 handler.py:21(AzureBatchesAPI)
+        4    0.000    0.000    0.001    0.000 _client.py:1375(__init__)
+        1    0.000    0.000    0.001    0.001 response_reasoning_summary_text_delta_event.py:1()
+        1    0.000    0.000    0.001    0.001 terminal.py:306(__init__keycodes)
+        1    0.000    0.000    0.001    0.001 skill_list.py:1()
+        1    0.000    0.000    0.001    0.001 decimal.py:1()
+        1    0.000    0.000    0.001    0.001 response_code_interpreter_call_code_delta_event.py:1()
+   114/56    0.000    0.000    0.001    0.000 _discriminated_union.py:317(_infer_discriminator_values_for_choice)
+        1    0.000    0.000    0.001    0.001 base_utils.py:1()
+        1    0.000    0.000    0.001    0.001 response_reasoning_text_delta_event.py:1()
+        1    0.000    0.000    0.001    0.001 response_reasoning_text_done_event.py:1()
+      386    0.001    0.000    0.001    0.000 dataclasses.py:368(field)
+        1    0.000    0.000    0.001    0.001 _tzpath.py:5(reset_tzpath)
+       84    0.001    0.000    0.001    0.000 inspect.py:867(cleandoc)
+        1    0.000    0.000    0.001    0.001 transcription_create_params.py:1()
+        1    0.000    0.000    0.001    0.001 response_apply_patch_tool_call_output.py:1()
+        1    0.000    0.000    0.001    0.001 __init__.py:71(search_function)
+        1    0.000    0.000    0.001    0.001 moderation.py:93(CategoryAppliedInputTypes)
+       37    0.000    0.000    0.001    0.000 _make.py:1058(add_init)
+       36    0.000    0.000    0.001    0.000 _decorators.py:269(bind_to_cls)
+       16    0.000    0.000    0.001    0.000 main.py:503()
+        1    0.000    0.000    0.001    0.001 response_incomplete_event.py:1()
+        1    0.000    0.000    0.001    0.001 chat_completion_message_tool_call_union_param.py:1()
+        1    0.000    0.000    0.001    0.001 streaming_chunk_builder_utils.py:1()
+        1    0.000    0.000    0.001    0.001 response_mcp_call_failed_event.py:1()
+        1    0.000    0.000    0.001    0.001 async_utils.py:1()
+        1    0.000    0.000    0.001    0.001 local.py:1()
+        1    0.000    0.000    0.001    0.001 monitoring.py:322(CSMSerializer)
+        1    0.000    0.000    0.001    0.001 registry.py:1()
+       48    0.000    0.000    0.001    0.000 contextlib.py:260(contextmanager)
+        1    0.000    0.000    0.001    0.001 handlers.py:94(BaseHandler)
+        1    0.000    0.000    0.001    0.001 transcription_diarized_segment.py:1()
+      185    0.000    0.000    0.001    0.000 typing.py:2113(__hash__)
+        1    0.000    0.000    0.001    0.001 handlers.py:34(read_environ)
+        1    0.000    0.000    0.001    0.001 response_code_interpreter_call_code_done_event.py:1()
+        1    0.000    0.000    0.001    0.001 pty.py:1()
+        3    0.000    0.000    0.001    0.000 core.py:5114(__init__)
+      253    0.001    0.000    0.001    0.000 _collections.py:28(parse)
+        1    0.000    0.000    0.001    0.001 types.py:23(BaseApiSpan)
+      2/1    0.000    0.000    0.001    0.001 sysconfig.py:751(get_config_var)
+        1    0.000    0.000    0.001    0.001 _version_info.py:1()
+      253    0.000    0.000    0.001    0.000 __init__.py:450(_replace)
+      4/2    0.000    0.000    0.001    0.001 sysconfig.py:665(get_config_vars)
+        1    0.000    0.000    0.001    0.001 tool_choice_allowed.py:1()
+        1    0.000    0.000    0.001    0.001 request.py:343(full_url)
+        1    0.000    0.000    0.001    0.001 prompt_manager.py:41(PromptManager)
+        1    0.000    0.000    0.001    0.001 tool_call_cost_tracking.py:1()
+        2    0.000    0.000    0.001    0.001 visitor.py:1()
+      6/3    0.000    0.000    0.001    0.000 functools.py:981(__get__)
+      113    0.001    0.000    0.001    0.000 dataclasses.py:392(_fields_in_init_order)
+        1    0.000    0.000    0.001    0.001 request.py:374(_parse)
+        1    0.000    0.000    0.001    0.001 request.py:939(AbstractBasicAuthHandler)
+        1    0.000    0.000    0.001    0.001 streaming_chunk_builder_utils.py:35(ChunkProcessor)
+        1    0.000    0.000    0.001    0.001 pattern_match_deployments.py:1()
+        1    0.000    0.000    0.001    0.001 pickle.py:197()
+        1    0.000    0.000    0.001    0.001 console.py:124(ConsoleOptions)
+        1    0.000    0.000    0.001    0.001 transcription_text_segment_event.py:1()
+      992    0.001    0.000    0.001    0.000 {built-in method fromkeys}
+       42    0.000    0.000    0.001    0.000 traceback.py:316(line)
+        3    0.000    0.000    0.001    0.000 hooks.py:1()
+        1    0.000    0.000    0.001    0.001 compat.py:98(filter_ssl_warnings)
+        3    0.000    0.000    0.001    0.000 feedparser.py:184(close)
+        1    0.000    0.000    0.001    0.001 base_tokenizer.py:14(BaseTokenizer)
+        1    0.000    0.000    0.001    0.001 repr.py:1()
+        1    0.000    0.000    0.001    0.001 batch_error.py:1()
+        1    0.000    0.000    0.001    0.001 assistant_tool_param.py:1()
+        3    0.000    0.000    0.001    0.000 core.py:3074(re_match)
+      868    0.001    0.000    0.001    0.000 {method 'format' of 'str' objects}
+        1    0.000    0.000    0.001    0.001 openai.py:338(OpenAIChatCompletion)
+        1    0.000    0.000    0.001    0.001 main.py:8(ImageEditOptionalRequestParams)
+        1    0.000    0.000    0.001    0.001 status_codes.py:1()
+        1    0.000    0.000    0.001    0.001 lzma.py:1()
+      190    0.001    0.000    0.001    0.000 argparse.py:1485(_add_action)
+        1    0.000    0.000    0.001    0.001 prompt.py:30(PromptBase)
+        1    0.000    0.000    0.001    0.001 eval_stored_completions_data_source_config.py:1()
+        1    0.000    0.000    0.001    0.001 handler.py:13(GenerateContentToCompletionHandler)
+        1    0.000    0.000    0.001    0.001 assistant_update_params.py:1()
+        1    0.000    0.000    0.001    0.001 search.py:1()
+        1    0.000    0.000    0.001    0.001 _types.py:1479(BudgetNewRequest)
+       16    0.000    0.000    0.001    0.000 main.py:754()
+        2    0.000    0.000    0.001    0.001 http_proxy.py:1()
+        1    0.000    0.000    0.001    0.001 nodes.py:105(Node)
+        1    0.000    0.000    0.001    0.001 status_codes.py:109(_init)
+        1    0.000    0.000    0.001    0.001 slack_alerting.py:51(SlackAlertingArgs)
+        3    0.000    0.000    0.001    0.000 core.py:3064(re)
+        1    0.000    0.000    0.001    0.001 chat_completion_audio.py:1()
+        1    0.000    0.000    0.001    0.001 response_function_call_arguments_delta_event.py:1()
+        1    0.000    0.000    0.001    0.001 modes.py:1()
+        1    0.000    0.000    0.001    0.001 response_file_search_call_in_progress_event.py:1()
+        1    0.000    0.000    0.001    0.001 control.py:1()
+        1    0.000    0.000    0.001    0.001 tool_call_cost_tracking.py:24(StandardBuiltInToolCostTracking)
+        1    0.000    0.000    0.001    0.001 cookiejar.py:1246(CookieJar)
+       37    0.000    0.000    0.001    0.000 _make.py:1937(_make_init_script)
+        1    0.000    0.000    0.001    0.001 openai_evals.py:324(Run)
+        1    0.000    0.000    0.001    0.001 logging_utils.py:1()
+        1    0.000    0.000    0.001    0.001 progress.py:1063(Progress)
+      114    0.000    0.000    0.001    0.000 _generics.py:220(get_standard_typevars_map)
+        1    0.000    0.000    0.001    0.001 response_custom_tool_call_input_done_event.py:1()
+        1    0.000    0.000    0.001    0.001 container_auto.py:22(ContainerAuto)
+        1    0.000    0.000    0.001    0.001 chat_completion_function_tool.py:1()
+        1    0.000    0.000    0.001    0.001 response_in_progress_event.py:1()
+        1    0.000    0.000    0.001    0.001 arize_phoenix_prompt_manager.py:195(ArizePhoenixPromptManager)
+        1    0.000    0.000    0.001    0.001 tools.py:1()
+     1102    0.001    0.000    0.001    0.000 {method 'search' of 're.Pattern' objects}
+        1    0.000    0.000    0.001    0.001 url_safe.py:1()
+        1    0.000    0.000    0.001    0.001 transformation.py:42(GroqChatConfig)
+      191    0.001    0.000    0.001    0.000 _policybase.py:301(header_source_parse)
+        1    0.000    0.000    0.001    0.001 response_audio_delta_event.py:1()
+        1    0.000    0.000    0.001    0.001 response_error.py:1()
+       24    0.000    0.000    0.001    0.000 typing_extensions.py:579(__new__)
+       12    0.000    0.000    0.001    0.000 message.py:591(get_content_type)
+        1    0.000    0.000    0.001    0.001 response_web_search_call_searching_event.py:1()
+       50    0.000    0.000    0.001    0.000 enum.py:1494(__or__)
+        2    0.000    0.000    0.001    0.000 linecache.py:26(getline)
+      922    0.001    0.000    0.001    0.000 {method 'decode' of 'bytes' objects}
+     1543    0.001    0.000    0.001    0.000 dataclasses.py:425()
+      836    0.001    0.000    0.001    0.000 _decorators.py:331()
+        2    0.000    0.000    0.001    0.000 argilla.py:1()
+        2    0.000    0.000    0.001    0.000 linecache.py:36(getlines)
+        1    0.000    0.000    0.001    0.001 utils.py:1742(ModelResponseStream)
+        1    0.000    0.000    0.001    0.001 response_queued_event.py:1()
+        1    0.000    0.000    0.001    0.001 python_grader.py:1()
+        1    0.000    0.000    0.001    0.001 linecache.py:80(updatecache)
+        1    0.000    0.000    0.001    0.001 namespace_tool_param.py:1()
+        1    0.000    0.000    0.001    0.001 fine_tuning_job_wandb_integration.py:1()
+        1    0.000    0.000    0.001    0.001 image_url.py:1()
+        1    0.000    0.000    0.001    0.001 chat_completion_tool_message_param.py:1()
+        1    0.000    0.000    0.001    0.001 PEM.py:106(decode)
+      144    0.001    0.000    0.001    0.000 argparse.py:1603(_get_handler)
+        1    0.000    0.000    0.001    0.001 guardrails.py:382(LakeraV2GuardrailConfigModel)
+        2    0.000    0.000    0.001    0.000 http2.py:1()
+        1    0.000    0.000    0.001    0.001 _types.py:1102(NewMCPServerRequest)
+        7    0.000    0.000    0.001    0.000 context_service.py:73(get_active_regexes)
+      409    0.001    0.000    0.001    0.000 socket.py:88()
+       97    0.000    0.000    0.001    0.000 inspect.py:3039(replace)
+     1133    0.001    0.000    0.001    0.000 _model_construction.py:704(build_lenient_weakvaluedict)
+        4    0.000    0.000    0.001    0.000 _strptime.py:238(pattern)
+        1    0.000    0.000    0.001    0.001 moderation.py:13(Categories)
+        1    0.000    0.000    0.001    0.001 _types.py:740(ProxyChatCompletionRequest)
+       24    0.000    0.000    0.001    0.000 _file_system.py:34(pycryptodome_filename)
+        1    0.000    0.000    0.001    0.001 response_text_config_param.py:1()
+        1    0.000    0.000    0.001    0.001 response_mcp_list_tools_in_progress_event.py:1()
+        1    0.000    0.000    0.001    0.001 file_deleted.py:1()
+      407    0.001    0.000    0.001    0.000 socket.py:78()
+        2    0.000    0.000    0.001    0.000 image.py:1()
+        1    0.000    0.000    0.001    0.001 response_failed_event.py:1()
+      408    0.001    0.000    0.001    0.000 socket.py:83()
+     1518    0.001    0.000    0.001    0.000 {built-in method _sre.unicode_iscased}
+        1    0.000    0.000    0.001    0.001 text_delta_block.py:1()
+      536    0.001    0.000    0.001    0.000 typing.py:2107(__eq__)
+      724    0.001    0.000    0.001    0.000 _core_utils.py:136(define_expected_missing_refs)
+        1    0.000    0.000    0.001    0.001 utils.py:2825(CustomStreamingDecoder)
+        1    0.000    0.000    0.001    0.001 apply_patch_tool.py:1()
+        1    0.000    0.000    0.001    0.001 response_mcp_call_in_progress_event.py:1()
+        1    0.000    0.000    0.001    0.001 results.py:1()
+        2    0.000    0.000    0.001    0.000 posthog.py:1()
+     1149    0.001    0.000    0.001    0.000 _generate_schema.py:2516(__init__)
+        1    0.000    0.000    0.001    0.001 response_image_gen_call_completed_event.py:1()
+      161    0.000    0.000    0.001    0.000 typing.py:1497(__mro_entries__)
+        1    0.000    0.000    0.001    0.001 responses_server_event.py:1()
+       11    0.000    0.000    0.001    0.000 _decorators.py:680(is_instance_method_from_sig)
+        1    0.000    0.000    0.001    0.001 text_content_block.py:1()
+        1    0.000    0.000    0.001    0.001 idtracking.py:1()
+      219    0.000    0.000    0.001    0.000 _collections.py:20(__missing__)
+        1    0.000    0.000    0.001    0.001 table.py:154(Table)
+        1    0.000    0.000    0.001    0.001 handler.py:33(__init__)
+        1    0.000    0.000    0.001    0.001 response_file_search_call_searching_event.py:1()
+        1    0.000    0.000    0.001    0.001 response_web_search_call_completed_event.py:1()
+        1    0.000    0.000    0.001    0.001 style.py:60(__new__)
+        2    0.000    0.000    0.001    0.000 pre_configured.py:1()
+        1    0.000    0.000    0.001    0.001 video_delete_response.py:1()
+      9/3    0.000    0.000    0.001    0.000 console.py:1281(render)
+        1    0.000    0.000    0.001    0.001 _palettes.py:1()
+     1617    0.001    0.000    0.001    0.000 enum.py:1147(__init__)
+        1    0.000    0.000    0.001    0.001 error_object.py:1()
+        1    0.000    0.000    0.001    0.001 _types.py:4421(CostEstimateRequest)
+        1    0.000    0.000    0.001    0.001 generated.py:13(Annotation)
+       74    0.000    0.000    0.001    0.000 _decorators.py:789(count_positional_required_params)
+       32    0.000    0.000    0.001    0.000 _IntegerGMP.py:376(__sub__)
+        1    0.000    0.000    0.001    0.001 rule.py:1()
+       13    0.000    0.000    0.001    0.000 typing.py:617(Final)
+        1    0.000    0.000    0.001    0.001 constant_time.py:1()
+        1    0.000    0.000    0.001    0.001 number.py:1()
+        1    0.000    0.000    0.001    0.001 response_compaction_item.py:1()
+        1    0.000    0.000    0.001    0.001 response_image_gen_call_generating_event.py:1()
+       37    0.000    0.000    0.001    0.000 _make.py:431()
+        1    0.000    0.000    0.001    0.001 response_mcp_list_tools_completed_event.py:1()
+        1    0.000    0.000    0.001    0.001 moderation_multi_modal_input_param.py:1()
+        1    0.000    0.000    0.001    0.001 handler.py:501(ModelResponseIterator)
+        1    0.000    0.000    0.001    0.001 tool_permission.py:9(ToolPermissionRule)
+        1    0.000    0.000    0.001    0.001 guardrails.py:535(ContentFilterPattern)
+        1    0.000    0.000    0.001    0.001 supervised_hyperparameters.py:1()
+        1    0.000    0.000    0.001    0.001 types.py:1873(ByteSize)
+        1    0.000    0.000    0.001    0.001 _config.py:159(_create_default_ssl_context)
+        1    0.000    0.000    0.001    0.001 reinforcement_method_param.py:1()
+        1    0.000    0.000    0.001    0.001 response_image_gen_call_in_progress_event.py:1()
+        1    0.000    0.000    0.001    0.001 extensions.py:835(PolicyInformation)
+        1    0.000    0.000    0.001    0.001 response_code_interpreter_call_interpreting_event.py:1()
+        1    0.000    0.000    0.001    0.001 local_skill.py:1()
+        2    0.000    0.000    0.001    0.000 glob.py:1()
+     1790    0.001    0.000    0.001    0.000 {method 'isupper' of 'str' objects}
+      368    0.001    0.000    0.001    0.000 dataclasses.py:449(_field_init)
+       34    0.000    0.000    0.001    0.000 ast.py:380(walk)
+        1    0.000    0.000    0.001    0.001 mcp_server_manager.py:20(MCPServer)
+        1    0.000    0.000    0.001    0.001 response_web_search_call_in_progress_event.py:1()
+        1    0.000    0.000    0.001    0.001 vector_store_deleted.py:1()
+        1    0.000    0.000    0.001    0.001 response_file_search_call_completed_event.py:1()
+        1    0.000    0.000    0.001    0.001 response_code_interpreter_call_completed_event.py:1()
+        3    0.000    0.000    0.001    0.000 _argparse.py:184(__rich_console__)
+        1    0.000    0.000    0.001    0.001 container_network_policy_domain_secret.py:1()
+        1    0.000    0.000    0.001    0.001 handler.py:33(LiteLLMMessagesToCompletionTransformationHandler)
+      244    0.001    0.000    0.001    0.000 dataclasses.py:401(_tuple_str)
+        1    0.000    0.000    0.001    0.001 file_search_tool_call_delta.py:1()
+       17    0.000    0.000    0.001    0.000 core.py:1568(__or__)
+        1    0.000    0.000    0.001    0.001 certificate_transparency.py:1()
+        1    0.000    0.000    0.001    0.001 anthropic_response.py:74(AnthropicMessagesResponse)
+        1    0.000    0.000    0.001    0.001 response_mcp_list_tools_failed_event.py:1()
+     1311    0.001    0.000    0.001    0.000 enum.py:234(__init__)
+        1    0.000    0.000    0.001    0.001 response_created_event.py:1()
+       26    0.000    0.000    0.001    0.000 style.py:496(parse)
+        1    0.000    0.000    0.001    0.001 _argparse.py:1()
+        1    0.000    0.000    0.001    0.001 server.py:1()
+        1    0.000    0.000    0.001    0.001 bedrock_token_counter.py:1()
+        1    0.000    0.000    0.001    0.001 thread_deleted.py:1()
+        1    0.000    0.000    0.001    0.001 http_parser.py:683(HttpResponseParser)
+     1208    0.001    0.000    0.001    0.000 _mock_val_ser.py:77(__init__)
+     1144    0.001    0.000    0.001    0.000 _model_construction.py:264(__prepare__)
+       37    0.001    0.000    0.001    0.000 _make.py:261(_make_attr_tuple_class)
+        1    0.000    0.000    0.001    0.001 openai.py:1355(ResponsesAPIStreamEvents)
+        1    0.000    0.000    0.001    0.001 dotprompt_manager.py:23(DotpromptManager)
+        1    0.000    0.000    0.001    0.001 guardrails.py:271(PresidioPresidioConfigModelUserInterface)
+        1    0.000    0.000    0.001    0.001 client_exceptions.py:1()
+        1    0.000    0.000    0.001    0.001 tag_based_routing.py:1()
+        1    0.000    0.000    0.001    0.001 router.py:167(GenericLiteLLMParams)
+      129    0.000    0.000    0.001    0.000 core.py:1983(__eq__)
+        1    0.000    0.000    0.001    0.001 special.py:1()
+        1    0.000    0.000    0.001    0.001 video_create_params.py:1()
+        1    0.000    0.000    0.001    0.001 common_utils.py:130(BaseOpenAILLM)
+      414    0.001    0.000    0.001    0.000 _parser.py:954(fix_flags)
+      123    0.000    0.000    0.001    0.000 argparse.py:606(_format_args)
+        1    0.000    0.000    0.001    0.001 image_edit_params.py:1()
+        1    0.000    0.000    0.001    0.001 router.py:41(RouterConfig)
+      252    0.001    0.000    0.001    0.000 typing.py:1924(_caller)
+        2    0.000    0.000    0.001    0.000 main.py:383(load_dotenv)
+        1    0.000    0.000    0.001    0.001 other_file_chunking_strategy_object.py:1()
+        1    0.000    0.000    0.001    0.001 httpchecksum.py:1()
+        1    0.000    0.000    0.001    0.001 input_token_count_response.py:1()
+        1    0.000    0.000    0.001    0.001 video_create_character_response.py:1()
+      127    0.000    0.000    0.001    0.000 __init__.py:1447(__init__)
+        1    0.000    0.000    0.001    0.001 files.py:12(FileType)
+        1    0.000    0.000    0.001    0.001 _types.py:3911(UserManagementEndpointParamDocStringEnums)
+        1    0.000    0.000    0.001    0.001 encoder.py:1()
+        1    0.000    0.000    0.001    0.001 response_audio_done_event.py:1()
+        1    0.000    0.000    0.001    0.001 text_delta.py:11(TextDelta)
+        1    0.000    0.000    0.001    0.001 response_compaction_item_param.py:1()
+        1    0.000    0.000    0.001    0.001 _uuid.py:1()
+      306    0.000    0.000    0.001    0.000 typing.py:1787()
+      104    0.000    0.000    0.001    0.000 _make.py:2430(__init__)
+        1    0.000    0.000    0.001    0.001 rule.py:12(Rule)
+        1    0.000    0.000    0.001    0.001 core_helpers.py:1()
+       14    0.001    0.000    0.001    0.000 {built-in method _ctypes.dlopen}
+        1    0.000    0.000    0.001    0.001 _internal.py:1()
+      310    0.001    0.000    0.001    0.000 typing.py:2530(overload)
+        1    0.000    0.000    0.001    0.001 tool_choice_types.py:1()
+        7    0.000    0.000    0.001    0.000 context_service.py:75()
+       47    0.000    0.000    0.001    0.000 _generics.py:426(get_cached_generic_type_early)
+        3    0.000    0.000    0.001    0.000 typing.py:2850(NamedTuple)
+        1    0.000    0.000    0.001    0.001 handlers.py:974(HeaderToHostHoister)
+        1    0.000    0.000    0.001    0.001 run_step_delta_event.py:1()
+        1    0.000    0.000    0.001    0.001 handler.py:10(OpenAIFineTuningAPI)
+        1    0.000    0.000    0.001    0.001 container_reference.py:1()
+        1    0.000    0.000    0.001    0.001 json_loader.py:33(load)
+     1149    0.001    0.000    0.001    0.000 _config.py:208(__init__)
+   137/81    0.000    0.000    0.001    0.000 core.py:1923(__str__)
+        1    0.000    0.000    0.001    0.001 response_output_message.py:16(ResponseOutputMessage)
+       23    0.000    0.000    0.001    0.000 enum.py:1379(_missing_)
+        1    0.000    0.000    0.001    0.001 _types.py:3289(SpanAttributes)
+        1    0.000    0.000    0.001    0.001 video_get_character_response.py:1()
+        1    0.000    0.000    0.001    0.001 containers.py:1()
+        1    0.000    0.000    0.001    0.001 assistant_deleted.py:1()
+        7    0.000    0.000    0.001    0.000 _urls.py:77(__init__)
+        1    0.000    0.000    0.001    0.001 caching.py:102(HealthCheckCacheParams)
+        1    0.000    0.000    0.001    0.001 response_reasoning_item_param.py:1()
+        2    0.000    0.000    0.001    0.000 socks_proxy.py:1()
+        1    0.000    0.000    0.001    0.001 chat_completion_deleted.py:1()
+        1    0.000    0.000    0.001    0.001 response_audio_transcript_delta_event.py:1()
+       30    0.000    0.000    0.001    0.000 functional_validators.py:698(dec)
+      114    0.000    0.000    0.001    0.000 :146(update_abstractmethods)
+        1    0.000    0.000    0.001    0.001 eval_custom_data_source_config.py:1()
+        1    0.000    0.000    0.001    0.001 azure.py:131(AzureChatCompletion)
+      319    0.000    0.000    0.001    0.000 typing.py:1609()
+        1    0.000    0.000    0.001    0.001 services.py:16(ServiceTypes)
+       15    0.000    0.000    0.001    0.000 logging_utils.py:286(decorator)
+        1    0.000    0.000    0.001    0.001 client_options.py:57(ClientOptions)
+        1    0.000    0.000    0.001    0.001 prompt_caching_deployment_check.py:1()
+        1    0.000    0.000    0.001    0.001 image_generate_params.py:1()
+        1    0.000    0.000    0.001    0.001 file_create_params.py:1()
+        9    0.000    0.000    0.001    0.000 message.py:615(get_content_maintype)
+        2    0.000    0.000    0.001    0.000 common_utils.py:38(_get_client_init_params)
+      743    0.001    0.000    0.001    0.000 _schema_generation_shared.py:103(resolve_ref_schema)
+        2    0.000    0.000    0.001    0.000 keyboard.py:80()
+        1    0.000    0.000    0.001    0.001 moderation_create_response.py:1()
+     1134    0.001    0.000    0.001    0.000 typing_extensions.py:1038()
+      266    0.000    0.000    0.001    0.000 :697(__iter__)
+        1    0.000    0.000    0.001    0.001 _types.py:3212(SpendLogsMetadata)
+     1003    0.001    0.000    0.001    0.000 {method 'values' of 'mappingproxy' objects}
+        1    0.000    0.000    0.001    0.001 tool_permission.py:83(ToolPermissionGuardrailConfigModel)
+       31    0.000    0.000    0.001    0.000 ipaddress.py:1286(__init__)
+        1    0.000    0.000    0.001    0.001 keyboard.py:85(get_keyboard_codes)
+        6    0.000    0.000    0.001    0.000 _urlparse.py:152(urlparse)
+        1    0.000    0.000    0.001    0.001 agents.py:136(AgentCard)
+        1    0.000    0.000    0.001    0.001 realtime_streaming.py:1()
+       50    0.000    0.000    0.001    0.000 ipaddress.py:1923(__init__)
+        1    0.000    0.000    0.001    0.001 _utility.py:1()
+      758    0.001    0.000    0.001    0.000 functools.py:65(wraps)
+      120    0.000    0.000    0.001    0.000 typing.py:894(_is_unpacked_typevartuple)
+        1    0.000    0.000    0.001    0.001 _quoters.py:1()
+        1    0.000    0.000    0.001    0.001 transformation.py:29(BaseResponsesAPIConfig)
+        1    0.000    0.000    0.001    0.001 deleted_skill.py:1()
+        1    0.000    0.000    0.001    0.001 access_token.py:1()
+        1    0.000    0.000    0.001    0.001 oobabooga.py:1()
+        1    0.000    0.000    0.001    0.001 vertex_llm_base.py:1()
+        1    0.000    0.000    0.001    0.001 speech_create_params.py:1()
+        1    0.000    0.000    0.001    0.001 easy_input_message.py:12(EasyInputMessage)
+       43    0.000    0.000    0.001    0.000 scaffold.py:42(setupmethod)
+        1    0.000    0.000    0.001    0.001 _client.py:320(build_request)
+        1    0.000    0.000    0.001    0.001 streaming_iterator.py:47(LiteLLMCompletionStreamingIterator)
+      175    0.000    0.000    0.001    0.000 argparse.py:1599(_pop_action_class)
+        1    0.000    0.000    0.001    0.001 utils.py:1320(Choices)
+        1    0.000    0.000    0.001    0.001 utils.py:2779(StandardLoggingPayload)
+        1    0.000    0.000    0.001    0.001 tool_choice_mcp.py:1()
+        1    0.000    0.000    0.001    0.001 chat_completion_content_part_text.py:1()
+        1    0.000    0.000    0.001    0.001 guardrails.py:154(PiiEntityType)
+        1    0.000    0.000    0.001    0.001 response_code_interpreter_tool_call_param.py:1()
+        1    0.000    0.000    0.001    0.001 run.py:107(Run)
+        1    0.000    0.000    0.001    0.001 refusal_delta_block.py:1()
+      405    0.000    0.000    0.001    0.000 {built-in method builtins.sum}
+        3    0.000    0.000    0.001    0.000 typing_extensions.py:1038(TypedDict)
+        2    0.001    0.000    0.001    0.000 {built-in method _posixsubprocess.fork_exec}
+        1    0.000    0.000    0.001    0.001 _types.py:1401(NewUserRequest)
+       19    0.000    0.000    0.001    0.000 __init__.py:19(_simple_escaping_wrapper)
+       32    0.000    0.000    0.001    0.000 _generics.py:509(_late_cache_key)
+        1    0.000    0.000    0.001    0.001 code_interpreter_logs.py:1()
+      253    0.000    0.000    0.001    0.000 __init__.py:440(_make)
+      253    0.000    0.000    0.001    0.000 _collections.py:21(__missing__)
+     1130    0.001    0.000    0.001    0.000 inspect.py:2744(annotation)
+        1    0.000    0.000    0.001    0.001 openai.py:1079(ComputerToolParam)
+      253    0.000    0.000    0.001    0.000 __init__.py:221(_for)
+        1    0.000    0.000    0.001    0.001 http_parser.py:248(HttpParser)
+        1    0.000    0.000    0.001    0.001 _punycode.py:1()
+        1    0.000    0.000    0.001    0.001 bert_wordpiece.py:1()
+        1    0.000    0.000    0.001    0.001 moderation.py:138(CategoryScores)
+       35    0.000    0.000    0.001    0.000 hooks.py:11(__init__)
+       17    0.000    0.000    0.001    0.000 core.py:4279(__init__)
+        1    0.000    0.000    0.001    0.001 utils.py:1472(Usage)
+        1    0.000    0.000    0.001    0.001 streaming_handler.py:82(CustomStreamWrapper)
+       49    0.000    0.000    0.001    0.000 :110(register)
+        1    0.000    0.000    0.001    0.001 completion_choice.py:11(Logprobs)
+        1    0.000    0.000    0.001    0.001 transformation.py:41(BaseInteractionsAPIConfig)
+       12    0.000    0.000    0.001    0.000 payload.py:133(register)
+        1    0.000    0.000    0.001    0.001 idna.py:1()
+      253    0.000    0.000    0.001    0.000 __init__.py:193(__init__)
+        2    0.000    0.000    0.001    0.000 serializer.py:1()
+     1143    0.001    0.000    0.001    0.000 _model_construction.py:235()
+       13    0.000    0.000    0.001    0.000 _connection.py:398(_extract_next_receive_event)
+       72    0.000    0.000    0.001    0.000 _make.py:2488(from_counting_attr)
+        4    0.000    0.000    0.001    0.000 __init__.py:188(_wrap)
+      618    0.001    0.000    0.001    0.000 core_schema.py:3750(definitions_schema)
+        1    0.000    0.000    0.001    0.001 prompt_management_base.py:1()
+       37    0.000    0.000    0.001    0.000 _make.py:2094(_attrs_to_init_script)
+       20    0.000    0.000    0.001    0.000 _models.py:64(__init__)
+        1    0.000    0.000    0.001    0.001 eventstream.py:1()
+        1    0.000    0.000    0.001    0.001 mimetypes.py:1()
+        1    0.000    0.000    0.001    0.001 setters.py:1()
+        1    0.000    0.000    0.001    0.001 _qs.py:1()
+        1    0.000    0.000    0.001    0.001 _types.py:1646(NewTeamRequest)
+      4/2    0.000    0.000    0.001    0.000 argparse.py:1965(take_action)
+        1    0.000    0.000    0.001    0.001 completion_choice.py:21(CompletionChoice)
+        1    0.000    0.000    0.001    0.001 container_handler.py:1()
+        1    0.000    0.000    0.001    0.001 chat_completion_custom_tool_param.py:1()
+        1    0.000    0.000    0.001    0.001 container_network_policy_disabled.py:1()
+        1    0.000    0.000    0.001    0.001 vertex_llm_base.py:37(VertexBase)
+        1    0.000    0.000    0.001    0.001 humanloop.py:1()
+        1    0.000    0.000    0.001    0.001 batch_request_counts.py:1()
+     1274    0.001    0.000    0.001    0.000 {method 'group' of 're.Match' objects}
+       46    0.000    0.000    0.001    0.000 _migration.py:262(wrapper)
+        1    0.000    0.000    0.001    0.001 batch_embed_content_transformation.py:1()
+        1    0.000    0.000    0.001    0.001 _types.py:2292(ConfigYAML)
+        1    0.000    0.000    0.001    0.001 sentencepiece_unigram.py:1()
+        1    0.000    0.000    0.001    0.001 image_file_delta.py:1()
+        1    0.000    0.000    0.001    0.001 guardrails.py:44(SupportedGuardrailIntegrations)
+        1    0.000    0.000    0.001    0.001 cyaml.py:1()
+        2    0.000    0.000    0.001    0.000 main.py:332(find_dotenv)
+        1    0.000    0.000    0.001    0.001 serialize.py:1()
+        1    0.000    0.000    0.001    0.001 _types.py:3431(ProxyErrorTypes)
+       53    0.000    0.000    0.001    0.000 :397(abspath)
+        1    0.000    0.000    0.001    0.001 transcription_word.py:1()
+       43    0.000    0.000    0.001    0.000 {method 'extend' of 'collections.deque' objects}
+        1    0.000    0.000    0.001    0.001 batch.py:22(Batch)
+      414    0.001    0.000    0.001    0.000 {built-in method _sre.compile}
+        1    0.000    0.000    0.001    0.001 response_file_search_tool_call_param.py:1()
+        1    0.000    0.000    0.001    0.001 message_create_params.py:1()
+        4    0.000    0.000    0.001    0.000 segment.py:249(split_lines)
+        2    0.000    0.000    0.001    0.000 _meta.py:1()
+        1    0.000    0.000    0.001    0.001 utils.py:9(BasePassthroughUtils)
+        1    0.000    0.000    0.001    0.001 anthropic_cache_control_hook.py:8(CacheControlMessageInjectionPoint)
+        1    0.000    0.000    0.001    0.001 model_deleted.py:1()
+        1    0.000    0.000    0.001    0.001 eval_delete_response.py:1()
+     1128    0.001    0.000    0.001    0.000 {built-in method _sre.unicode_tolower}
+        1    0.000    0.000    0.001    0.001 base.py:310(CertificateRevocationList)
+        1    0.000    0.000    0.001    0.001 generator.py:1()
+        5    0.000    0.000    0.001    0.000 endpoint_factory.py:43(create_sync_endpoint_function)
+        1    0.000    0.000    0.001    0.001 chat_completion_message.py:57(ChatCompletionMessage)
+        1    0.000    0.000    0.001    0.001 bert_wordpiece.py:12(BertWordPieceTokenizer)
+        1    0.000    0.000    0.001    0.001 cooldown_handlers.py:1()
+        1    0.000    0.000    0.001    0.001 realtime_streaming.py:37(RealTimeStreaming)
+        4    0.000    0.000    0.001    0.000 cost_calculation.py:1()
+       49    0.000    0.000    0.001    0.000 {built-in method _abc._abc_register}
+       55    0.000    0.000    0.001    0.000 ipaddress.py:533(_split_addr_prefix)
+        1    0.000    0.000    0.001    0.001 aiohttp_handler.py:35(BaseLLMAIOHTTPHandler)
+        1    0.000    0.000    0.001    0.001 _lazy_imports.py:1()
+        1    0.000    0.000    0.001    0.001 transformation.py:31(BaseVectorStoreFilesConfig)
+        1    0.000    0.000    0.001    0.001 refusal_content_block.py:1()
+     1149    0.001    0.000    0.001    0.000 _generate_schema.py:2583(__init__)
+        1    0.000    0.000    0.001    0.001 grayswan.py:10(GraySwanGuardrailConfigModelOptionalParams)
+        1    0.000    0.000    0.001    0.001 message.py:43(Message)
+     1143    0.001    0.000    0.001    0.000 main.py:699(__pydantic_init_subclass__)
+        1    0.000    0.000    0.001    0.001 _logs.py:1()
+        1    0.000    0.000    0.001    0.001 _staggered.py:1()
+        1    0.000    0.000    0.001    0.001 image_url_delta.py:1()
+       10    0.000    0.000    0.001    0.000 typing.py:597(ClassVar)
+     1005    0.001    0.000    0.001    0.000 _utility.py:390()
+        1    0.000    0.000    0.001    0.001 measure.py:1()
+        1    0.000    0.000    0.001    0.001 response_input_text.py:1()
+        1    0.000    0.000    0.001    0.001 response_audio_transcript_done_event.py:1()
+        3    0.000    0.000    0.001    0.000 core.py:1594(__xor__)
+        1    0.000    0.000    0.001    0.001 loaders.py:431(FunctionLoader)
+        1    0.000    0.000    0.001    0.001 utils.py:2016(Logprobs)
+     1210    0.001    0.000    0.001    0.000 inspect.py:2740(default)
+        1    0.000    0.000    0.001    0.001 configfile.py:377(getitems)
+        1    0.000    0.000    0.001    0.001 generated.py:36(FunctionCallContent)
+        1    0.000    0.000    0.001    0.001 cohere.py:66(CohereV2ChatResponseMessage)
+        1    0.000    0.000    0.001    0.001 _types.py:788(ModelInfo)
+        1    0.000    0.000    0.001    0.001 litellm_content_filter.py:91(ContentFilterCategoryConfig)
+        1    0.000    0.000    0.001    0.001 sentencepiece_unigram.py:11(SentencePieceUnigramTokenizer)
+       36    0.000    0.000    0.001    0.000 _make.py:1043(add_hash)
+      9/4    0.000    0.000    0.001    0.000 typing.py:1392(_determine_new_args)
+        3    0.000    0.000    0.001    0.000 _argparse.py:176(__rich_console__)
+      164    0.000    0.000    0.001    0.000 :806(fsencode)
+       36    0.000    0.000    0.001    0.000 _make.py:1135(add_order)
+      740    0.001    0.000    0.001    0.000 {method 'get' of '_contextvars.ContextVar' objects}
+        1    0.000    0.000    0.001    0.001 handler.py:13(AzureOpenAIFilesAPI)
+        1    0.000    0.000    0.001    0.001 cookiejar.py:1680(extract_cookies)
+        2    0.000    0.000    0.001    0.000 response_format_text.py:1()
+        1    0.000    0.000    0.001    0.001 sysconfig.py:563(_init_posix)
+       39    0.000    0.000    0.001    0.000 core.py:2415(__init__)
+        1    0.000    0.000    0.001    0.001 datadog_llm_obs.py:47(DataDogLLMObsLogger)
+        2    0.000    0.000    0.001    0.000 response_format_json_object.py:1()
+        1    0.000    0.000    0.001    0.001 multipart.py:606(MultipartReader)
+1182/1181    0.001    0.000    0.001    0.000 {built-in method builtins.iter}
+        1    0.000    0.000    0.001    0.001 connapp.py:159(_apply_app_theme)
+        3    0.000    0.000    0.001    0.000 _argparse.py:137(_render_items)
+        1    0.000    0.000    0.001    0.001 static_file_chunking_strategy.py:1()
+        1    0.000    0.000    0.001    0.001 image_file.py:1()
+        1    0.000    0.000    0.001    0.001 palette.py:1()
+        1    0.000    0.000    0.001    0.001 aiohttp_transport.py:1()
+      176    0.000    0.000    0.001    0.000 _make.py:1235(_determine_attrib_eq_order)
+        1    0.000    0.000    0.001    0.001 tool_choice_custom.py:1()
+       55    0.000    0.000    0.001    0.000 typing.py:2019(_proto_hook)
+        1    0.000    0.000    0.001    0.001 web_search_tool_param.py:1()
+      363    0.000    0.000    0.001    0.000 argparse.py:1399(_registry_get)
+        1    0.000    0.000    0.001    0.001 pss.py:1()
+        1    0.000    0.000    0.001    0.001 assistant_tool_choice_param.py:1()
+       11    0.000    0.000    0.001    0.000 _std_types_schema.py:371(mapping_like_prepare_pydantic_annotations)
+      816    0.001    0.000    0.001    0.000 _generate_schema.py:157(check_validator_fields_against_field_name)
+        1    0.000    0.000    0.001    0.001 litellm_logging.py:4520(StandardLoggingPayloadSetup)
+        1    0.000    0.000    0.001    0.001 pattern_match_deployments.py:14(PatternUtils)
+        2    0.000    0.000    0.001    0.000 sysconfig.py:657(get_path)
+       22    0.000    0.000    0.001    0.000 ipaddress.py:1187(_ip_int_from_string)
+        1    0.000    0.000    0.001    0.001 printer.py:61(apply_theme)
+       39    0.000    0.000    0.001    0.000 _make.py:1556(_make_hash_script)
+        2    0.000    0.000    0.001    0.000 _tasks.py:1()
+        1    0.000    0.000    0.001    0.001 input_token_count_params.py:1()
+        1    0.000    0.000    0.001    0.001 video_create_error.py:1()
+        2    0.000    0.000    0.001    0.000 hashes.py:1()
+        1    0.000    0.000    0.001    0.001 response_input_message_content_list.py:1()
+      107    0.000    0.000    0.001    0.000 dataclasses.py:573()
+       84    0.000    0.000    0.001    0.000 {method 'sort' of 'list' objects}
+        1    0.000    0.000    0.001    0.001 router.py:93(ModelInfo)
+        1    0.000    0.000    0.001    0.001 utils.py:164(ModelInfoBase)
+        2    0.000    0.000    0.001    0.000 sysconfig.py:645(get_paths)
+        1    0.000    0.000    0.001    0.001 configfile.py:291(getitem)
+        1    0.000    0.000    0.001    0.001 _abc.py:46(MutableMultiMapping)
+        1    0.000    0.000    0.001    0.001 resolver.py:206(_DNSResolverManager)
+        1    0.000    0.000    0.001    0.001 skill_reference_param.py:1()
+        1    0.000    0.000    0.001    0.001 run_submit_tool_outputs_params.py:1()
+        1    0.000    0.000    0.001    0.001 _types.py:913(KeyRequestBase)
+        1    0.000    0.000    0.001    0.001 stability_transformation.py:46(BedrockStabilityImageEditConfig)
+       30    0.000    0.000    0.001    0.000 core.py:3018(__init__)
+      822    0.001    0.000    0.001    0.000 typing.py:479(__repr__)
+        1    0.000    0.000    0.001    0.001 anthropic.py:243(AnthropicMessagesImageParam)
+  344/336    0.000    0.000    0.001    0.000 {built-in method builtins.repr}
+        1    0.000    0.000    0.001    0.001 fine_tuning_job.py:76(FineTuningJob)
+       56    0.000    0.000    0.001    0.000 _discriminated_union.py:402(_infer_discriminator_values_for_model_choice)
+     1042    0.001    0.000    0.001    0.000 {method 'find' of 'str' objects}
+        1    0.000    0.000    0.001    0.001 azure_ai.py:1()
+        1    0.000    0.000    0.001    0.001 handler.py:24(AnthropicBatchesHandler)
+        1    0.000    0.000    0.001    0.001 response_local_environment.py:1()
+        1    0.000    0.000    0.001    0.001 main.py:42(DotEnv)
+      318    0.000    0.000    0.001    0.000 typing.py:1892()
+        3    0.000    0.000    0.001    0.000 tokens.py:1()
+      9/3    0.000    0.000    0.001    0.000 core.py:4287(streamline)
+        1    0.000    0.000    0.001    0.001 response_input_text_content.py:1()
+       22    0.000    0.000    0.001    0.000 typing.py:1640(__repr__)
+      599    0.001    0.000    0.001    0.000 _generate_schema.py:789(_unpack_refs_defs)
+        1    0.000    0.000    0.001    0.001 cells.py:1()
+        1    0.000    0.000    0.001    0.001 guardrails.py:452(NomaGuardrailConfigModel)
+        1    0.000    0.000    0.001    0.001 functions.py:1()
+        1    0.000    0.000    0.001    0.001 _types.py:2318(LiteLLM_VerificationToken)
+        1    0.000    0.000    0.001    0.001 chat_completion_audio_param.py:1()
+        1    0.000    0.000    0.001    0.001 code_interpreter_tool.py:1()
+        1    0.000    0.000    0.001    0.001 configparser.py:523(LegacyInterpolation)
+        2    0.000    0.000    0.001    0.000 sysconfig.py:285(_expand_vars)
+        1    0.000    0.000    0.001    0.001 thread_update_params.py:1()
+        1    0.000    0.000    0.001    0.001 generated.py:62(McpServerToolCallContent)
+        1    0.000    0.000    0.001    0.001 bedrock.py:332(CommonRequestObject)
+      134    0.000    0.000    0.001    0.000 _doc_utils.py:149(get_parameter)
+        1    0.000    0.000    0.001    0.001 response_format_text_grammar.py:1()
+        1    0.000    0.000    0.001    0.001 transformation.py:21(AnthropicBatchesConfig)
+        1    0.000    0.000    0.001    0.001 cli.py:770(__init__)
+        2    0.000    0.000    0.001    0.000 cohere_transformation.py:1()
+        2    0.000    0.000    0.001    0.000 argparse.py:1222(__call__)
+      724    0.001    0.000    0.001    0.000 _generate_schema.py:740()
+        1    0.000    0.000    0.001    0.001 client_ws.py:1()
+        1    0.000    0.000    0.001    0.001 guardrails.py:495(JavelinGuardrailConfigModel)
+        1    0.000    0.000    0.001    0.001 _parseaddr.py:1()
+        1    0.000    0.000    0.001    0.001 ssl_.py:223(create_urllib3_context)
+      122    0.000    0.000    0.001    0.000 enum.py:1226(__format__)
+        1    0.000    0.000    0.001    0.001 enkryptai.py:115(EnkryptAIGuardrailConfigs)
+        1    0.000    0.000    0.001    0.001 guardrails.py:719(Mode)
+       16    0.000    0.000    0.001    0.000 _generics.py:446(get_cached_generic_type_late)
+        1    0.000    0.000    0.001    0.001 json_loader.py:27(JSONProviderRegistry)
+      727    0.001    0.000    0.001    0.000 _compiler.py:31(_combine_flags)
+       59    0.000    0.000    0.001    0.000 ast.py:267(iter_child_nodes)
+      713    0.001    0.000    0.001    0.000 _core_utils.py:65(is_function_with_inner_schema)
+      106    0.000    0.000    0.001    0.000 core_schema.py:2850(typed_dict_schema)
+        3    0.000    0.000    0.001    0.000 text.py:689(__rich_console__)
+        1    0.000    0.000    0.001    0.001 tool_choice_function.py:1()
+        1    0.000    0.000    0.001    0.001 chat_completion_chunk.py:64(ChoiceDelta)
+        1    0.000    0.000    0.001    0.001 tty.py:1()
+        1    0.000    0.000    0.001    0.001 response_format_text_config_param.py:1()
+        1    0.000    0.000    0.001    0.001 slack_alerting.py:125(AlertType)
+        1    0.000    0.000    0.001    0.001 base.py:651(CertificateBuilder)
+        1    0.000    0.000    0.001    0.001 helpers.py:871(ChainMapProxy)
+        1    0.000    0.000    0.001    0.001 anthropic.py:334(AnthropicMessagesUserMessageParam)
+        1    0.000    0.000    0.001    0.001 unicode.py:1()
+        1    0.000    0.000    0.001    0.001 runtime.py:392(LoopContext)
+        1    0.000    0.000    0.001    0.001 transformation.py:38(HuggingFaceEmbeddingConfig)
+        1    0.000    0.000    0.001    0.001 sandbox.py:188(SandboxedEnvironment)
+        1    0.000    0.000    0.001    0.001 _checkbox.py:1()
+     1038    0.001    0.000    0.001    0.000 {method 'reverse' of 'list' objects}
+        1    0.000    0.000    0.001    0.001 container_network_policy_allowlist_param.py:1()
+        1    0.000    0.000    0.001    0.001 inline_skill_param.py:1()
+        1    0.000    0.000    0.001    0.001 openai.py:110(OpenAIConfig)
+        3    0.000    0.000    0.001    0.000 _adapters.py:83(__init__)
+        2    0.000    0.000    0.001    0.000 interfaces.py:1()
+        1    0.000    0.000    0.001    0.001 helpers.py:1035()
+      438    0.001    0.000    0.001    0.000 {function FreezableDefaultDict.__missing__ at 0xff4ed160c900}
+        4    0.000    0.000    0.001    0.000 typing.py:1629(copy_with)
+        2    0.000    0.000    0.001    0.000 _models.py:1204(info)
+        1    0.000    0.000    0.001    0.001 langfuse.py:93(LangFuseLogger)
+        3    0.000    0.000    0.001    0.000 _adapters.py:105(_repair_headers)
+        1    0.000    0.000    0.001    0.001 stability.py:12(StabilityImageGenerationRequest)
+      363    0.000    0.000    0.001    0.000 __init__.py:118(valid)
+     1231    0.001    0.000    0.001    0.000 py3compat.py:130(bord)
+        1    0.000    0.000    0.001    0.001 _types.py:249(LiteLLMRoutes)
+      312    0.000    0.000    0.001    0.000 types.py:164(__init__)
+        1    0.000    0.000    0.001    0.001 cooldown_cache.py:1()
+        1    0.000    0.000    0.001    0.001 spinner.py:1()
+      546    0.001    0.000    0.001    0.000 _core_utils.py:510()
+        1    0.000    0.000    0.001    0.001 vector_store_update_params.py:1()
+        1    0.000    0.000    0.001    0.001 transformation.py:184(GoogleGenAIAdapter)
+        1    0.000    0.000    0.001    0.001 response_format_text_python.py:1()
+       87    0.000    0.000    0.001    0.000 core.py:2361(__init__)
+        1    0.000    0.000    0.001    0.001 utils.py:1941(EmbeddingResponse)
+      414    0.001    0.000    0.001    0.000 _parser.py:73(__init__)
+      176    0.000    0.000    0.001    0.000 six.py:146(__init__)
+        1    0.000    0.000    0.001    0.001 types.py:52(VertexEmbeddingRequest)
+        1    0.000    0.000    0.001    0.001 rest.py:1()
+        1    0.000    0.000    0.001    0.001 dpo_method_param.py:1()
+        3    0.000    0.000    0.001    0.000 _common.py:47(get_package)
+      998    0.001    0.000    0.001    0.000 {method 'lstrip' of 'str' objects}
+        1    0.000    0.000    0.001    0.001 generated.py:80(CodeExecutionResultContent)
+        1    0.000    0.000    0.001    0.001 computer_tool.py:1()
+       49    0.000    0.000    0.001    0.000 argparse.py:1699(_add_action)
+       44    0.000    0.000    0.001    0.000 _make.py:290(_is_class_var)
+        1    0.000    0.000    0.001    0.001 realtime.py:15(RealtimeResponseTransformInput)
+      984    0.001    0.000    0.001    0.000 inspect.py:3031(parameters)
+        9    0.000    0.000    0.001    0.000 feedparser.py:101(push)
+        1    0.000    0.000    0.001    0.001 service_account.py:1()
+        1    0.000    0.000    0.001    0.001 connapp.py:49(connapp)
+        1    0.000    0.000    0.001    0.001 transformation.py:37(BaseEvalsAPIConfig)
+        2    0.000    0.000    0.001    0.000 hmac.py:1()
+       31    0.000    0.000    0.001    0.000 _IntegerGMP.py:112(__getattr__)
+      352    0.001    0.000    0.001    0.000 enum.py:1189(__repr__)
+        1    0.000    0.000    0.001    0.001 _types.py:1176(UpdateMCPServerRequest)
+        2    0.000    0.000    0.001    0.000 _readers.py:94(maybe_read_from_SEND_RESPONSE_server)
+        1    0.000    0.000    0.001    0.001 translation.py:1()
+        1    0.000    0.000    0.001    0.001 containers.py:66(Lines)
+        1    0.000    0.000    0.001    0.001 core.py:134(ParameterSource)
+        3    0.000    0.000    0.001    0.000 error.py:1()
+        1    0.000    0.000    0.001    0.001 video_remix_params.py:1()
+        1    0.000    0.000    0.001    0.001 HMAC.py:1()
+       23    0.000    0.000    0.001    0.000 enum.py:1441()
+        1    0.000    0.000    0.001    0.001 gcs_bucket_base.py:29(__init__)
+       93    0.000    0.000    0.001    0.000 _signature.py:130()
+        1    0.000    0.000    0.001    0.001 dall_e_2_transformation.py:16(DallE2ImageGenerationConfig)
+        1    0.000    0.000    0.001    0.001 response_custom_tool_call_param.py:1()
+        1    0.000    0.000    0.001    0.001 tool_choice_shell.py:1()
+        1    0.000    0.000    0.001    0.001 _meta.py:7(PackageMetadata)
+        1    0.000    0.000    0.001    0.001 AES.py:1()
+        1    0.000    0.000    0.001    0.001 _transform.py:1()
+       24    0.000    0.000    0.001    0.000 typing_extensions.py:595(__init__)
+        1    0.000    0.000    0.001    0.001 block_code_execution.py:42(BlockCodeExecutionGuardrailConfigModel)
+      166    0.000    0.000    0.001    0.000 style.py:146(_make_color)
+        1    0.000    0.000    0.001    0.001 generated.py:620(McpServer)
+        1    0.000    0.000    0.001    0.001 router.py:297(LiteLLMParamsTypedDict)
+        1    0.000    0.000    0.001    0.001 tool_choice_apply_patch.py:1()
+       41    0.000    0.000    0.001    0.000 _decorators.py:699(ensure_classmethod_based_on_signature)
+        1    0.000    0.000    0.001    0.001 app.py:59(App)
+      203    0.000    0.000    0.001    0.000 __init__.py:623(is_openai_finetune_model)
+        1    0.000    0.000    0.001    0.001 runtime.py:589(AsyncLoopContext)
+        1    0.000    0.000    0.001    0.001 live.py:35(Live)
+        1    0.000    0.000    0.001    0.001 transformation.py:28(BaseImageEditConfig)
+        1    0.000    0.000    0.001    0.001 vector_store.py:42(VectorStore)
+        1    0.000    0.000    0.001    0.001 vector_store_files.py:30(VectorStoreFileObject)
+        1    0.000    0.000    0.001    0.001 loaders.py:152(FileSystemLoader)
+        1    0.000    0.000    0.001    0.001 transformation.py:45(BaseSearchConfig)
+        1    0.000    0.000    0.001    0.001 _loop.py:1()
+        1    0.000    0.000    0.001    0.001 chat_completion_allowed_tool_choice_param.py:1()
+        1    0.000    0.000    0.001    0.001 local_environment_param.py:1()
+        1    0.000    0.000    0.001    0.001 response_code_interpreter_tool_call.py:35(ResponseCodeInterpreterToolCall)
+        1    0.000    0.000    0.001    0.001 ollama.py:1()
+        1    0.000    0.000    0.001    0.001 fine_tuning_job_event.py:12(FineTuningJobEvent)
+        1    0.000    0.000    0.001    0.001 parse.py:1074(_splittype)
+        2    0.000    0.000    0.001    0.000 certs.py:1()
+        1    0.000    0.000    0.001    0.001 transformation.py:19(BaseRerankConfig)
+        4    0.000    0.000    0.001    0.000 typing.py:3048(NotRequired)
+       10    0.000    0.000    0.001    0.000 _connection.py:260(_process_event)
+        1    0.000    0.000    0.001    0.001 vector_store_files.py:52(VectorStoreFileListQueryParams)
+       72    0.000    0.000    0.001    0.000 _make.py:105(attrib)
+        1    0.000    0.000    0.001    0.001 base.py:6(IBMGuardrailsBaseConfigModel)
+        1    0.000    0.000    0.000    0.000 logfire_logger.py:1()
+        5    0.000    0.000    0.000    0.000 _client.py:285(headers)
+        1    0.000    0.000    0.000    0.000 _core_metadata.py:1()
+        1    0.000    0.000    0.000    0.000 functions.py:46(__init__)
+        1    0.000    0.000    0.000    0.000 langfuse_prompt_management.py:111(LangfusePromptManagement)
+        2    0.000    0.000    0.000    0.000 connection_pool.py:1()
+        1    0.000    0.000    0.000    0.000 supervised_method_param.py:1()
+        1    0.000    0.000    0.000    0.000 tool_search_tool.py:11(ToolSearchTool)
+        3    0.000    0.000    0.000    0.000 _common.py:42(resolve)
+        1    0.000    0.000    0.000    0.000 runtime.py:144(Context)
+        1    0.000    0.000    0.000    0.000 functions.py:50(_populate_function_table)
+        1    0.000    0.000    0.000    0.000 image_gen_completed_event.py:38(ImageGenCompletedEvent)
+       27    0.000    0.000    0.000    0.000 inspect.py:2063(_signature_is_builtin)
+      757    0.000    0.000    0.000    0.000 {built-in method sys.getrecursionlimit}
+        1    0.000    0.000    0.000    0.000 openai.py:1618(OpenAIFilesAPI)
+        1    0.000    0.000    0.000    0.000 run_step.py:49(RunStep)
+        1    0.000    0.000    0.000    0.000 response_reasoning_item.py:31(ResponseReasoningItem)
+        1    0.000    0.000    0.000    0.000 timeout.py:1()
+        1    0.000    0.000    0.000    0.000 _receivebuffer.py:1()
+        1    0.000    0.000    0.000    0.000 watsonx.py:19(WatsonXAudioTranscriptionRequestBody)
+        1    0.000    0.000    0.000    0.000 grader_inputs_param.py:1()
+        1    0.000    0.000    0.000    0.000 _util.py:1()
+        1    0.000    0.000    0.000    0.000 response_conversation_param.py:1()
+        2    0.000    0.000    0.000    0.000 socks.py:1()
+      220    0.000    0.000    0.000    0.000 __init__.py:404(_from_text)
+        1    0.000    0.000    0.000    0.000 transformation.py:193(OCIChatConfig)
+        1    0.000    0.000    0.000    0.000 assistant_tool_choice_function.py:1()
+        9    0.000    0.000    0.000    0.000 core.py:4098(_generateDefaultName)
+        1    0.000    0.000    0.000    0.000 name.py:267(Name)
+      164    0.000    0.000    0.000    0.000 http.py:1216()
+        1    0.000    0.000    0.000    0.000 type_adapter.py:1()
+        1    0.000    0.000    0.000    0.000 static_file_chunking_strategy_object_param.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:1957(CommandCollection)
+        1    0.000    0.000    0.000    0.000 win.py:1()
+        1    0.000    0.000    0.000    0.000 guardrails.py:477(ZscalerAIGuardConfigModel)
+        1    0.000    0.000    0.000    0.000 _forward_ref.py:1()
+        1    0.000    0.000    0.000    0.000 openai.py:244(MessageData)
+        1    0.000    0.000    0.000    0.000 isoparser.py:1()
+        1    0.000    0.000    0.000    0.000 container_handler.py:119(GenericContainerHandler)
+        1    0.000    0.000    0.000    0.000 agents.py:227(ListAgentsResponse)
+        1    0.000    0.000    0.000    0.000 blockquote.py:1()
+      128    0.000    0.000    0.000    0.000 ssl.py:150()
+       79    0.000    0.000    0.000    0.000 token.py:34(__getattr__)
+      546    0.000    0.000    0.000    0.000 _utils.py:290(__init__)
+        1    0.000    0.000    0.000    0.000 common_utils.py:47(OpenAIError)
+        1    0.000    0.000    0.000    0.000 reasoning.py:12(Reasoning)
+        1    0.000    0.000    0.000    0.000 generated.py:881(Turn)
+      166    0.000    0.000    0.000    0.000 weakref.py:451(get)
+      178    0.000    0.000    0.000    0.000 __init__.py:228(_acquireLock)
+        1    0.000    0.000    0.000    0.000 generated.py:573(McpServerToolResultContent)
+        1    0.000    0.000    0.000    0.000 transformation.py:37(BaseTextToSpeechConfig)
+        1    0.000    0.000    0.000    0.000 openai.py:294(OpenAIFileObject)
+        1    0.000    0.000    0.000    0.000 generated.py:519(FunctionResultContent)
+        1    0.000    0.000    0.000    0.000 relativedelta.py:1()
+        1    0.000    0.000    0.000    0.000 assistant.py:44(Assistant)
+      769    0.000    0.000    0.000    0.000 _compiler.py:426(_get_iscased)
+        1    0.000    0.000    0.000    0.000 http11.py:147(_send_request_headers)
+        1    0.000    0.000    0.000    0.000 guardrails.py:427(PillarGuardrailConfigModel)
+      158    0.000    0.000    0.000    0.000 enum.py:967(_find_data_repr_)
+        1    0.000    0.000    0.000    0.000 execution_service.py:1()
+        1    0.000    0.000    0.000    0.000 generated.py:555(GoogleSearchResultContent)
+        1    0.000    0.000    0.000    0.000 normalize.py:1()
+        1    0.000    0.000    0.000    0.000 utils.py:3237()
+        1    0.000    0.000    0.000    0.000 file_search_tool.py:27(RankingOptions)
+        1    0.000    0.000    0.000    0.000 core.py:1472(MultiCommand)
+        1    0.000    0.000    0.000    0.000 byte_level_bpe.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:2918(LiteLLM_SpendLogs)
+      791    0.000    0.000    0.000    0.000 {method 'isalnum' of 'str' objects}
+        1    0.000    0.000    0.000    0.000 _strptime.py:49(__init__)
+        1    0.000    0.000    0.000    0.000 models.py:225(CharsetMatches)
+        1    0.000    0.000    0.000    0.000 openai.py:756(OpenAIChatCompletionDeveloperMessage)
+        1    0.000    0.000    0.000    0.000 score_model_grader.py:112(ScoreModelGrader)
+        2    0.000    0.000    0.000    0.000 function_tool_param.py:1()
+        1    0.000    0.000    0.000    0.000 transformation.py:11(VertexAITextEmbeddingConfig)
+        8    0.000    0.000    0.000    0.000 _generate_schema.py:1293(set_discriminator)
+        1    0.000    0.000    0.000    0.000 web_search_preview_tool.py:36(WebSearchPreviewTool)
+       10    0.000    0.000    0.000    0.000 types.py:2471(__get_pydantic_core_schema__)
+        1    0.000    0.000    0.000    0.000 response_function_shell_call_output_content_param.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:3643(OrgMemberAddRequest)
+        1    0.000    0.000    0.000    0.000 init_prompts.py:8(SupportedPromptIntegrations)
+        1    0.000    0.000    0.000    0.000 openai_evals.py:114(ListEvalsParams)
+       34    0.000    0.000    0.000    0.000 ipaddress.py:1651(_ip_int_from_string)
+        1    0.000    0.000    0.000    0.000 process.py:1()
+        1    0.000    0.000    0.000    0.000 selectors.py:1()
+        1    0.000    0.000    0.000    0.000 transformation.py:38(BlackForestLabsImageEditConfig)
+      166    0.000    0.000    0.000    0.000 weakref.py:417(__len__)
+        1    0.000    0.000    0.000    0.000 openai.py:525(ChatCompletionThinkingBlock)
+        1    0.000    0.000    0.000    0.000 isoparser.py:42(isoparser)
+        1    0.000    0.000    0.000    0.000 _types.py:4026(JWTAuthBuilderResult)
+       88    0.000    0.000    0.000    0.000 ipaddress.py:1213(_parse_octet)
+        1    0.000    0.000    0.000    0.000 file_search_tool.py:47(FileSearchTool)
+        1    0.000    0.000    0.000    0.000 azure_blob_cache.py:1()
+        1    0.000    0.000    0.000    0.000 vector_stores.py:24(LiteLLM_ManagedVectorStore)
+      309    0.000    0.000    0.000    0.000 {built-in method builtins.locals}
+        1    0.000    0.000    0.000    0.000 video_extend_params.py:1()
+        1    0.000    0.000    0.000    0.000 _tools.py:1()
+        1    0.000    0.000    0.000    0.000 generated.py:537(UrlContextResultContent)
+        1    0.000    0.000    0.000    0.000 threading.py:1()
+        1    0.000    0.000    0.000    0.000 router.py:72(UpdateRouterConfig)
+        4    0.000    0.000    0.000    0.000 _make.py:1821(_add_repr)
+      386    0.000    0.000    0.000    0.000 dataclasses.py:287(__init__)
+        1    0.000    0.000    0.000    0.000 comparison_filter.py:11(ComparisonFilter)
+        1    0.000    0.000    0.000    0.000 handler.py:26(ResponsesToCompletionBridgeHandler)
+        1    0.000    0.000    0.000    0.000 anthropic.py:206(AnthopicMessagesAssistantMessageParam)
+        1    0.000    0.000    0.000    0.000 datadog_metrics.py:30(DatadogMetricsLogger)
+        7    0.000    0.000    0.000    0.000 __init__.py:798(children)
+        3    0.000    0.000    0.000    0.000 _itertools.py:1()
+        1    0.000    0.000    0.000    0.000 container_list_response.py:35(ContainerListResponse)
+        1    0.000    0.000    0.000    0.000 anthropic.py:45(AnthropicMessagesTool)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call.py:211(ResponseComputerToolCall)
+        1    0.000    0.000    0.000    0.000 prompt_caching_cache.py:1()
+       28    0.000    0.000    0.000    0.000 _make.py:1764(_make_repr_script)
+        1    0.000    0.000    0.000    0.000 common.py:432()
+        1    0.000    0.000    0.000    0.000 extensions.py:180(AuthorityKeyIdentifier)
+        3    0.000    0.000    0.000    0.000 __init__.py:1006(read_text)
+        1    0.000    0.000    0.000    0.000 pyopenssl.py:1()
+        1    0.000    0.000    0.000    0.000 __init__.py:204(Interval)
+       58    0.000    0.000    0.000    0.000 weakref.py:164(__setitem__)
+        1    0.000    0.000    0.000    0.000 anthropic.py:312(AnthropicMessagesToolResultParam)
+        1    0.000    0.000    0.000    0.000 transformation.py:35(BaseFilesConfig)
+        1    0.000    0.000    0.000    0.000 timeouts.py:1()
+        8    0.000    0.000    0.000    0.000 _generate_schema.py:568(_apply_discriminator_to_union)
+        2    0.000    0.000    0.000    0.000 method.py:1()
+       12    0.000    0.000    0.000    0.000 datetime.py:592(__new__)
+        1    0.000    0.000    0.000    0.000 openai.py:970(Hyperparameters)
+        1    0.000    0.000    0.000    0.000 message_delta.py:12(MessageDelta)
+        1    0.000    0.000    0.000    0.000 additional_logging_utils.py:1()
+       22    0.000    0.000    0.000    0.000 :780(exec_module)
+        1    0.000    0.000    0.000    0.000 generated.py:752(ThoughtContent)
+        1    0.000    0.000    0.000    0.000 response_function_tool_call_param.py:1()
+        1    0.000    0.000    0.000    0.000 video_edit_params.py:1()
+        1    0.000    0.000    0.000    0.000 guardrails.py:728(LitellmParams)
+       22    0.000    0.000    0.000    0.000 typing_extensions.py:518(_get_protocol_attrs)
+       20    0.000    0.000    0.000    0.000 _text.py:79(__hash__)
+      175    0.000    0.000    0.000    0.000 copy.py:243(_keep_alive)
+      296    0.000    0.000    0.000    0.000 typing.py:1968()
+        1    0.000    0.000    0.000    0.000 difflib.py:1()
+        1    0.000    0.000    0.000    0.000 _log_render.py:14(LogRender)
+        1    0.000    0.000    0.000    0.000 in_memory_cache.py:1()
+        1    0.000    0.000    0.000    0.000 caching.py:114(CachedEmbedding)
+        1    0.000    0.000    0.000    0.000 ssh.py:172(_FragList)
+      150    0.000    0.000    0.000    0.000 __init__.py:253(escape)
+        1    0.000    0.000    0.000    0.000 _types.py:1053(LiteLLM_ModelTable)
+        1    0.000    0.000    0.000    0.000 open_inference.py:394(OpenInferenceLLMProviderValues)
+        1    0.000    0.000    0.000    0.000 _quoting.py:1()
+        1    0.000    0.000    0.000    0.000 vector_store_search_params.py:1()
+      101    0.000    0.000    0.000    0.000 functools.py:479(lru_cache)
+        1    0.000    0.000    0.000    0.000 anthropic.py:579(AnthropicResponse)
+        1    0.000    0.000    0.000    0.000 _cloud_sdk.py:1()
+        1    0.000    0.000    0.000    0.000 openai_evals.py:63(GroundTruthGraderConfig)
+      287    0.000    0.000    0.000    0.000 _doc_utils.py:78(append)
+        3    0.000    0.000    0.000    0.000 printer.py:251(__getattr__)
+        1    0.000    0.000    0.000    0.000 lowest_cost.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:3006(LiteLLM_SpendLogs_ResponseObject)
+        1    0.000    0.000    0.000    0.000 image_file_content_block_param.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:4375(LiteLLM_ManagedObjectTable)
+        1    0.000    0.000    0.000    0.000 utils.py:2642(GuardrailMode)
+      134    0.000    0.000    0.000    0.000 _doc_utils.py:93(get_parameter)
+        3    0.000    0.000    0.000    0.000 _models.py:61(enforce_headers)
+        1    0.000    0.000    0.000    0.000 video.py:15(Video)
+       50    0.000    0.000    0.000    0.000 typing.py:1621()
+        1    0.000    0.000    0.000    0.000 _types.py:942(GenerateKeyRequest)
+      232    0.000    0.000    0.000    0.000 pathlib.py:524(_format_parsed_parts)
+        1    0.000    0.000    0.000    0.000 realtime.py:67(RealtimeSessionConfig)
+        1    0.000    0.000    0.000    0.000 transformation.py:15(OpenAITextCompletionConfig)
+      251    0.000    0.000    0.000    0.000 core.py:3791()
+        2    0.000    0.000    0.000    0.000 mock.py:1()
+      604    0.000    0.000    0.000    0.000 _mock_val_ser.py:27(__init__)
+        1    0.000    0.000    0.000    0.000 http_parser.py:133(HeadersParser)
+        1    0.000    0.000    0.000    0.000 transformation.py:29(BaseVectorStoreConfig)
+        1    0.000    0.000    0.000    0.000 control.py:54(Control)
+        1    0.000    0.000    0.000    0.000 enkryptai.py:78(EnkryptAIResponseDetails)
+        1    0.000    0.000    0.000    0.000 web_search_preview_tool_param.py:1()
+        3    0.000    0.000    0.000    0.000 printer.py:25(_get_console)
+        1    0.000    0.000    0.000    0.000 computer_action.py:43(DoubleClick)
+        1    0.000    0.000    0.000    0.000 _types.py:864(GenerateRequestBase)
+        1    0.000    0.000    0.000    0.000 _oid.py:1()
+        1    0.000    0.000    0.000    0.000 unicode.py:85(identchars)
+       24    0.000    0.000    0.000    0.000 _make.py:977(add_repr)
+        1    0.000    0.000    0.000    0.000 _IntegerGMP.py:728(inverse)
+        1    0.000    0.000    0.000    0.000 utils.py:2256(ImageResponse)
+      781    0.000    0.000    0.000    0.000 {method 'isascii' of 'str' objects}
+        1    0.000    0.000    0.000    0.000 execution_service.py:8(ExecutionService)
+       69    0.000    0.000    0.000    0.000 status_codes.py:122()
+      233    0.000    0.000    0.000    0.000 pathlib.py:516(_from_parsed_parts)
+        1    0.000    0.000    0.000    0.000 get_retry_from_policy.py:1()
+        1    0.000    0.000    0.000    0.000 budget_manager.py:1()
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:88(Schema)
+        1    0.000    0.000    0.000    0.000 openai.py:1871(OpenAIRealtimeStreamResponseOutputItem)
+        1    0.000    0.000    0.000    0.000 byte_level_bpe.py:10(ByteLevelBPETokenizer)
+        1    0.000    0.000    0.000    0.000 algorithms.py:1()
+        1    0.000    0.000    0.000    0.000 useragent.py:1()
+        1    0.000    0.000    0.000    0.000 cached_imports.py:1()
+        1    0.000    0.000    0.000    0.000 transformation.py:123(AnthropicAdapter)
+       35    0.000    0.000    0.000    0.000 compat.py:17(get_methods)
+        1    0.000    0.000    0.000    0.000 response_retrieve_params.py:1()
+        1    0.000    0.000    0.000    0.000 runners.py:1()
+        3    0.000    0.000    0.000    0.000 _helpers.py:1()
+       34    0.000    0.000    0.000    0.000 core.py:4099()
+        1    0.000    0.000    0.000    0.000 _types.py:3027(CallInfo)
+        1    0.000    0.000    0.000    0.000 anthropic.py:380(AnthropicMessagesRequest)
+        1    0.000    0.000    0.000    0.000 completion.py:165(CompletionRequest)
+        1    0.000    0.000    0.000    0.000 openai.py:1092(ShellToolParam)
+        1    0.000    0.000    0.000    0.000 trio.py:1()
+       19    0.000    0.000    0.000    0.000 asn1.py:236(_decodeFromStream)
+        1    0.000    0.000    0.000    0.000 openai.py:1900(OpenAIBatchesAPI)
+        1    0.000    0.000    0.000    0.000 transformation.py:20(BaseAnthropicMessagesConfig)
+        1    0.000    0.000    0.000    0.000 _client.py:371(_merge_url)
+        1    0.000    0.000    0.000    0.000 container_create_params.py:1()
+        1    0.000    0.000    0.000    0.000 _headers.py:75(Headers)
+      150    0.000    0.000    0.000    0.000 _decorators.py:800()
+        1    0.000    0.000    0.000    0.000 ibm_detector.py:55(IBMDetectorOptionalParams)
+      156    0.000    0.000    0.000    0.000 _doc_utils.py:146(get_parameters)
+        1    0.000    0.000    0.000    0.000 main.py:69(VideoCreateOptionalRequestParams)
+        1    0.000    0.000    0.000    0.000 s3_v2.py:30(S3Logger)
+        1    0.000    0.000    0.000    0.000 upload_create_params.py:1()
+        1    0.000    0.000    0.000    0.000 actions.py:1()
+        2    0.000    0.000    0.000    0.000 wsgi.py:1()
+      147    0.000    0.000    0.000    0.000 __init__.py:202(_checkLevel)
+        1    0.000    0.000    0.000    0.000 pydoc.py:469(Doc)
+        1    0.000    0.000    0.000    0.000 parse.py:1095(_splithost)
+        1    0.000    0.000    0.000    0.000 vector_store_search_response.py:19(VectorStoreSearchResponse)
+        1    0.000    0.000    0.000    0.000 padding.py:32(PSS)
+        1    0.000    0.000    0.000    0.000 inline_skill_source.py:10(InlineSkillSource)
+        1    0.000    0.000    0.000    0.000 response_file_search_tool_call.py:34(ResponseFileSearchToolCall)
+        1    0.000    0.000    0.000    0.000 common_utils.py:25(AWSEventStreamDecoder)
+        2    0.000    0.000    0.000    0.000 _models.py:373(__init__)
+        1    0.000    0.000    0.000    0.000 completion.py:54(ChatCompletionUserMessageParam)
+        1    0.000    0.000    0.000    0.000 generated.py:701(McpServerToolResultDelta)
+        1    0.000    0.000    0.000    0.000 lexer.py:471(Lexer)
+        1    0.000    0.000    0.000    0.000 _types.py:1606(Member)
+        1    0.000    0.000    0.000    0.000 stability.py:139(StabilityRemoveBackgroundRequest)
+        1    0.000    0.000    0.000    0.000 additional_logging_utils.py:15(AdditionalLoggingUtils)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:47(AsyncLock)
+        1    0.000    0.000    0.000    0.000 datadog_llm_obs.py:31(Meta)
+        1    0.000    0.000    0.000    0.000 response_text_delta_event.py:19(Logprob)
+        1    0.000    0.000    0.000    0.000 payload_streamer.py:1()
+        1    0.000    0.000    0.000    0.000 batch_embed_content_handler.py:34(GoogleBatchEmbeddings)
+        1    0.000    0.000    0.000    0.000 node_service.py:1()
+        5    0.000    0.000    0.000    0.000 endpoint_factory.py:127(create_async_endpoint_function)
+       68    0.000    0.000    0.000    0.000 core_schema.py:1952(no_info_before_validator_function)
+        1    0.000    0.000    0.000    0.000 base_utils.py:18(BaseTokenCounter)
+        1    0.000    0.000    0.000    0.000 inspect.py:592(getmembers)
+        1    0.000    0.000    0.000    0.000 router.py:597(CustomRoutingStrategyBase)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:461(ResponseTuningJob)
+        1    0.000    0.000    0.000    0.000 lowest_cost.py:13(LowestCostLoggingHandler)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:237(VectorStoreIndexEndpoints)
+        8    0.000    0.000    0.000    0.000 typing.py:1471(copy_with)
+        1    0.000    0.000    0.000    0.000 constants.py:31(_SendfileMode)
+        1    0.000    0.000    0.000    0.000 _socket.py:1()
+        1    0.000    0.000    0.000    0.000 helicone.py:1()
+        1    0.000    0.000    0.000    0.000 events_v1_event_series.py:1()
+       36    0.000    0.000    0.000    0.000 _make.py:1121(add_eq)
+        1    0.000    0.000    0.000    0.000 asyncify.py:1()
+        1    0.000    0.000    0.000    0.000 inspect.py:550(_getmembers)
+        1    0.000    0.000    0.000    0.000 generated.py:127(SpeechConfig)
+        1    0.000    0.000    0.000    0.000 _types.py:3773(OrganizationMemberUpdateRequest)
+        1    0.000    0.000    0.000    0.000 budget_manager.py:26(BudgetManager)
+        1    0.000    0.000    0.000    0.000 utils.py:2565(StandardLoggingMetadata)
+      585    0.000    0.000    0.000    0.000 dataclasses.py:646(_is_classvar)
+        1    0.000    0.000    0.000    0.000 file_object.py:11(FileObject)
+       80    0.000    0.000    0.000    0.000 token.py:15(split)
+        1    0.000    0.000    0.000    0.000 prompt_caching_cache.py:31(PromptCachingCache)
+        1    0.000    0.000    0.000    0.000 handler.py:26(__init__)
+       21    0.000    0.000    0.000    0.000 _helpers.py:110(positional_decorator)
+        1    0.000    0.000    0.000    0.000 o_series_transformation.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:21(node)
+        1    0.000    0.000    0.000    0.000 _types.py:3722(TeamMemberUpdateRequest)
+        1    0.000    0.000    0.000    0.000 _types.py:4333(DBSpendUpdateTransactions)
+        1    0.000    0.000    0.000    0.000 response_input_item.py:492(McpCall)
+        1    0.000    0.000    0.000    0.000 exceptions.py:27(ParseBaseException)
+        1    0.000    0.000    0.000    0.000 threading.py:938(start)
+       35    0.000    0.000    0.000    0.000 __init__.py:386(__getattr__)
+       49    0.000    0.000    0.000    0.000 dataclasses.py:1223(fields)
+        1    0.000    0.000    0.000    0.000 reinforcement_hyperparameters.py:11(ReinforcementHyperparameters)
+        1    0.000    0.000    0.000    0.000 fallback_event_handlers.py:1()
+       22    0.000    0.000    0.000    0.000 {built-in method _imp.exec_builtin}
+       56    0.000    0.000    0.000    0.000 _discriminated_union.py:426(_infer_discriminator_values_for_field)
+        1    0.000    0.000    0.000    0.000 container_network_policy_allowlist.py:12(ContainerNetworkPolicyAllowlist)
+        1    0.000    0.000    0.000    0.000 transformation.py:40(VertexAIFilesConfig)
+        1    0.000    0.000    0.000    0.000 queue.py:1()
+        2    0.000    0.000    0.000    0.000 {built-in method cryptography.hazmat.bindings._openssl.OSSL_PROVIDER_load}
+        1    0.000    0.000    0.000    0.000 tool_permission.py:60(ToolResult)
+        1    0.000    0.000    0.000    0.000 box.py:1()
+      612    0.000    0.000    0.000    0.000 fields.py:373()
+   105/93    0.000    0.000    0.000    0.000 types.py:999(convert_type)
+        2    0.000    0.000    0.000    0.000 params.py:1()
+        1    0.000    0.000    0.000    0.000 response_output_text.py:119(ResponseOutputText)
+      443    0.000    0.000    0.000    0.000 {method 'translate' of 'bytearray' objects}
+        1    0.000    0.000    0.000    0.000 generated.py:143(Function)
+       77    0.000    0.000    0.000    0.000 signal.py:9()
+        1    0.000    0.000    0.000    0.000 guardrails.py:92(GuardrailItemSpec)
+        1    0.000    0.000    0.000    0.000 transcription.py:65(Transcription)
+        1    0.000    0.000    0.000    0.000 message_list_params.py:1()
+        1    0.000    0.000    0.000    0.000 multipart.py:221(MultipartResponseWrapper)
+        1    0.000    0.000    0.000    0.000 response_input_file_param.py:1()
+        1    0.000    0.000    0.000    0.000 fine_tuning_job.py:60(Method)
+      559    0.000    0.000    0.000    0.000 :7(abstractmethod)
+       31    0.000    0.000    0.000    0.000 color.py:431(parse)
+       11    0.000    0.000    0.000    0.000 async_utils.py:13(decorator)
+        1    0.000    0.000    0.000    0.000 transformation.py:25(BaseGoogleGenAIGenerateContentConfig)
+        1    0.000    0.000    0.000    0.000 char_level_bpe.py:1()
+        1    0.000    0.000    0.000    0.000 cold_storage_handler.py:1()
+        1    0.000    0.000    0.000    0.000 generated.py:503(GoogleSearchCallContent)
+      677    0.000    0.000    0.000    0.000 {method 'strip' of 'str' objects}
+        7    0.000    0.000    0.000    0.000 argparse.py:1480(add_mutually_exclusive_group)
+        2    0.000    0.000    0.000    0.000 reasoning_effort.py:1()
+        1    0.000    0.000    0.000    0.000 in_memory_cache.py:27(InMemoryCache)
+      570    0.000    0.000    0.000    0.000 dataclasses.py:654(_is_initvar)
+        1    0.000    0.000    0.000    0.000 response_file_search_tool_call.py:11(Result)
+        2    0.000    0.000    0.000    0.000 util.py:260(_inner)
+        1    0.000    0.000    0.000    0.000 transformation.py:50(BaseLLMException)
+        1    0.000    0.000    0.000    0.000 completion_transformation.py:1()
+        1    0.000    0.000    0.000    0.000 batch_create_params.py:1()
+        1    0.000    0.000    0.000    0.000 terminal_theme.py:1()
+        1    0.000    0.000    0.000    0.000 static_file_chunking_strategy_object.py:11(StaticFileChunkingStrategyObject)
+        1    0.000    0.000    0.000    0.000 _streaming.py:1()
+       22    0.000    0.000    0.000    0.000 core.py:5228(__init__)
+        1    0.000    0.000    0.000    0.000 utils.py:76(_PassArg)
+        1    0.000    0.000    0.000    0.000 v1_topology_selector_label_requirement.py:1()
+       19    0.000    0.000    0.000    0.000 main.py:314(_walk_to_root)
+        1    0.000    0.000    0.000    0.000 realtime.py:92(RealtimeClientSecretRequest)
+        1    0.000    0.000    0.000    0.000 base_translation.py:1()
+        3    0.000    0.000    0.000    0.000 _models.py:79()
+        1    0.000    0.000    0.000    0.000 core.py:1160(Command)
+        5    0.000    0.000    0.000    0.000 core.py:1452(__radd__)
+      271    0.000    0.000    0.000    0.000 contextlib.py:434(__exit__)
+        1    0.000    0.000    0.000    0.000 bedrock.py:501(TwelveLabsMarengoEmbeddingRequest)
+       91    0.000    0.000    0.000    0.000 _compiler.py:405(_generate_overlap_table)
+        1    0.000    0.000    0.000    0.000 themes.py:85(__init__)
+        1    0.000    0.000    0.000    0.000 _types.py:3866(SpecialHeaders)
+        1    0.000    0.000    0.000    0.000 _types.py:2652(LiteLLM_UserTable)
+        1    0.000    0.000    0.000    0.000 custom_http.py:6(httpxSpecialProvider)
+        1    0.000    0.000    0.000    0.000 configprovider.py:1()
+        1    0.000    0.000    0.000    0.000 invoke_handler.py:373(BedrockLLM)
+        1    0.000    0.000    0.000    0.000 common_utils.py:12(HuggingFaceError)
+        1    0.000    0.000    0.000    0.000 helpers.py:643(TimerNoop)
+        1    0.000    0.000    0.000    0.000 retry.py:1()
+        1    0.000    0.000    0.000    0.000 _url.py:287(URL)
+        1    0.000    0.000    0.000    0.000 dpo_hyperparameters.py:11(DpoHyperparameters)
+       40    0.000    0.000    0.000    0.000 _make.py:1654(_make_eq_script)
+        1    0.000    0.000    0.000    0.000 local_environment.py:12(LocalEnvironment)
+        1    0.000    0.000    0.000    0.000 emoji.py:1()
+      136    0.000    0.000    0.000    0.000 _decorators.py:723(unwrap_wrapped_function)
+        1    0.000    0.000    0.000    0.000 bedrock.py:680(AmazonStability3TextToImageRequest)
+      584    0.000    0.000    0.000    0.000 dataclasses.py:660(_is_kw_only)
+       68    0.000    0.000    0.000    0.000 status_codes.py:116(doc)
+      208    0.000    0.000    0.000    0.000 _make.py:1244(decide_callable_or_boolean)
+        3    0.000    0.000    0.000    0.000 textwrap.py:419(dedent)
+      492    0.000    0.000    0.000    0.000 _doc_utils.py:63()
+        1    0.000    0.000    0.000    0.000 files.py:293(TwoStepFileUploadRequest)
+        2    0.000    0.000    0.000    0.000 :73(find_spec)
+        1    0.000    0.000    0.000    0.000 template.py:1()
+        1    0.000    0.000    0.000    0.000 utils.py:2895(CustomPricingLiteLLMParams)
+        1    0.000    0.000    0.000    0.000 forms.py:1()
+        1    0.000    0.000    0.000    0.000 main.py:19(KeyManagementSettings)
+        1    0.000    0.000    0.000    0.000 extensions.py:1923(IssuingDistributionPoint)
+       26    0.000    0.000    0.000    0.000 :422(spec_from_loader)
+        1    0.000    0.000    0.000    0.000 openai.py:1520(ContentPartDonePartOutputText)
+      597    0.000    0.000    0.000    0.000 {method 'upper' of 'str' objects}
+       23    0.000    0.000    0.000    0.000 typing_extensions.py:703(__init_subclass__)
+        1    0.000    0.000    0.000    0.000 _IntegerGMP.py:704(inplace_inverse)
+        2    0.000    0.000    0.000    0.000 provider.py:1()
+        1    0.000    0.000    0.000    0.000 unicode.py:99(identbodychars)
+        1    0.000    0.000    0.000    0.000 v1_topology_selector_label_requirement.py:21(V1TopologySelectorLabelRequirement)
+        1    0.000    0.000    0.000    0.000 completion_transformation.py:16(CompletionTransformationBridge)
+        1    0.000    0.000    0.000    0.000 parsed_chat_completion.py:22(ParsedChatCompletionMessage)
+        6    0.000    0.000    0.000    0.000 core.py:5903(__add__)
+        2    0.000    0.000    0.000    0.000 _eventloop.py:1()
+        1    0.000    0.000    0.000    0.000 agents.py:105(AgentSkill)
+       28    0.000    0.000    0.000    0.000 subprocess.py:1829()
+        1    0.000    0.000    0.000    0.000 transformation.py:459(VertexAIJsonlFilesTransformation)
+       15    0.000    0.000    0.000    0.000 __init__.py:882(__init__)
+        1    0.000    0.000    0.000    0.000 generated.py:687(FunctionResultDelta)
+       61    0.000    0.000    0.000    0.000 :60(isabs)
+        1    0.000    0.000    0.000    0.000 core.py:3773(ParseExpression)
+        1    0.000    0.000    0.000    0.000 vertex_gemini_transformation.py:1()
+        7    0.000    0.000    0.000    0.000 argparse.py:1694(__init__)
+        1    0.000    0.000    0.000    0.000 block.py:1()
+        1    0.000    0.000    0.000    0.000 segment.py:35(ControlType)
+        1    0.000    0.000    0.000    0.000 encoding.py:1()
+      178    0.000    0.000    0.000    0.000 __init__.py:237(_releaseLock)
+        1    0.000    0.000    0.000    0.000 handler.py:77(HuggingFaceEmbedding)
+        1    0.000    0.000    0.000    0.000 models.py:26(WSMsgType)
+      134    0.000    0.000    0.000    0.000 _doc_utils.py:131(append_parameter)
+        1    0.000    0.000    0.000    0.000 legacy.py:1()
+        1    0.000    0.000    0.000    0.000 response_custom_tool_call_output_param.py:1()
+        1    0.000    0.000    0.000    0.000 lexer.py:465(_Rule)
+        1    0.000    0.000    0.000    0.000 base_translation.py:10(BaseTranslation)
+        1    0.000    0.000    0.000    0.000 tool.py:191(CodeInterpreterContainerCodeInterpreterToolAuto)
+        3    0.000    0.000    0.000    0.000 http11.py:170(_send_event)
+        1    0.000    0.000    0.000    0.000 text.py:1202(wrap)
+        1    0.000    0.000    0.000    0.000 openai_evals.py:228(DataSourceInlineConfig)
+        1    0.000    0.000    0.000    0.000 node_service.py:85(generate_cache)
+        1    0.000    0.000    0.000    0.000 gemini.py:341(GeminiLongRunningOperationResponse)
+        1    0.000    0.000    0.000    0.000 anthropic_skills.py:12(CreateSkillRequest)
+        1    0.000    0.000    0.000    0.000 openai.py:750(OpenAIChatCompletionSystemMessage)
+        1    0.000    0.000    0.000    0.000 payload.py:151(Payload)
+       24    0.000    0.000    0.000    0.000 _doc_utils.py:187(_set_output)
+      103    0.000    0.000    0.000    0.000 enum.py:1359(_iter_member_by_value_)
+        1    0.000    0.000    0.000    0.000 langsmith.py:9(LangsmithInputs)
+       20    0.000    0.000    0.000    0.000 compiler.py:45(optimizeconst)
+        1    0.000    0.000    0.000    0.000 _types.py:1586(MemberBase)
+        1    0.000    0.000    0.000    0.000 bedrock.py:423(CohereEmbeddingRequest)
+        1    0.000    0.000    0.000    0.000 main.py:81(BaseModel)
+        1    0.000    0.000    0.000    0.000 transformation.py:965(OpenAiResponsesToChatCompletionStreamIterator)
+        1    0.000    0.000    0.000    0.000 configfile.py:242(_generate_nodes_cache)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:1599(make_cookies)
+        1    0.000    0.000    0.000    0.000 rag.py:146(S3VectorsVectorStoreOptions)
+        1    0.000    0.000    0.000    0.000 handler.py:23(LiteLLMCompletionTransformationHandler)
+        1    0.000    0.000    0.000    0.000 multipart.py:268(BodyPartReader)
+       47    0.000    0.000    0.000    0.000 core_schema.py:1245(enum_schema)
+      156    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 cold_storage_handler.py:13(ColdStorageHandler)
+        1    0.000    0.000    0.000    0.000 base.py:45(HiddenParams)
+        1    0.000    0.000    0.000    0.000 local.py:388(LocalProxy)
+        1    0.000    0.000    0.000    0.000 _migration.py:1()
+        1    0.000    0.000    0.000    0.000 handler.py:26(VertexFineTuningAPI)
+        1    0.000    0.000    0.000    0.000 pretty.py:493(_Line)
+       34    0.000    0.000    0.000    0.000 typing_extensions.py:2793(__call__)
+        1    0.000    0.000    0.000    0.000 python_grader_param.py:1()
+        1    0.000    0.000    0.000    0.000 arize.py:30(ArizeLogger)
+        1    0.000    0.000    0.000    0.000 o_series_transformation.py:30(OpenAIOSeriesConfig)
+       75    0.000    0.000    0.000    0.000 :389(normpath)
+        1    0.000    0.000    0.000    0.000 function_shell_tool.py:19(FunctionShellTool)
+        1    0.000    0.000    0.000    0.000 _legacy_response.py:1()
+        1    0.000    0.000    0.000    0.000 scaffold.py:52(Scaffold)
+       42    0.000    0.000    0.000    0.000 _compiler.py:389(_bytes_to_codes)
+        1    0.000    0.000    0.000    0.000 response_error.py:10(ResponseError)
+        1    0.000    0.000    0.000    0.000 utils.py:267(GenericStreamingChunk)
+        1    0.000    0.000    0.000    0.000 _types.py:66(SupportedDBObjectType)
+        1    0.000    0.000    0.000    0.000 galileo.py:16(LLMResponse)
+        1    0.000    0.000    0.000    0.000 assistant_list_params.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:1766(AddTeamCallback)
+        1    0.000    0.000    0.000    0.000 reinforcement_hyperparameters_param.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:220(KeyManagementRoutes)
+        1    0.000    0.000    0.000    0.000 _encoded_words.py:1()
+        2    0.000    0.000    0.000    0.000 keyboard.py:82()
+        1    0.000    0.000    0.000    0.000 openai.py:374(CreateFileRequest)
+        1    0.000    0.000    0.000    0.000 openai.py:904(ChatCompletionRequest)
+        3    0.000    0.000    0.000    0.000 _text.py:1()
+        1    0.000    0.000    0.000    0.000 utils.py:3538(PriorityReservationSettings)
+        1    0.000    0.000    0.000    0.000 message.py:135(Message)
+        1    0.000    0.000    0.000    0.000 response_input_item.py:97(ComputerCallOutput)
+      424    0.000    0.000    0.000    0.000 {method 'index' of 'list' objects}
+        1    0.000    0.000    0.000    0.000 rerank.py:60(RerankResponse)
+        1    0.000    0.000    0.000    0.000 SHA1.py:1()
+        1    0.000    0.000    0.000    0.000 _receivebuffer.py:47(ReceiveBuffer)
+        3    0.000    0.000    0.000    0.000 readers.py:16(__init__)
+        1    0.000    0.000    0.000    0.000 generated.py:645(ImageDelta)
+        1    0.000    0.000    0.000    0.000 websocket_connection_options.py:1()
+        1    0.000    0.000    0.000    0.000 shlex.py:1()
+        1    0.000    0.000    0.000    0.000 generated.py:51(CodeExecutionCallArguments)
+        1    0.000    0.000    0.000    0.000 bedrock.py:443(AmazonTitanV2EmbeddingRequest)
+        1    0.000    0.000    0.000    0.000 types.py:23(ParamType)
+        1    0.000    0.000    0.000    0.000 transformation.py:27(BaseVideoConfig)
+        1    0.000    0.000    0.000    0.000 response_mcp_call_completed_event.py:10(ResponseMcpCallCompletedEvent)
+        1    0.000    0.000    0.000    0.000 connection.py:36(HTTPConnection)
+        1    0.000    0.000    0.000    0.000 slack_alerting.py:206(AlertTypeConfig)
+        1    0.000    0.000    0.000    0.000 interfaces.py:18(AsyncRequestInterface)
+      352    0.000    0.000    0.000    0.000 dataclasses.py:509(_init_param)
+        1    0.000    0.000    0.000    0.000 client_proto.py:1()
+      191    0.000    0.000    0.000    0.000 message.py:506(set_raw)
+        1    0.000    0.000    0.000    0.000 terminal_theme.py:9(TerminalTheme)
+        1    0.000    0.000    0.000    0.000 color.py:302(Color)
+        1    0.000    0.000    0.000    0.000 themes.py:73(__init__)
+        1    0.000    0.000    0.000    0.000 transformation.py:26(BaseBatchesConfig)
+        1    0.000    0.000    0.000    0.000 _types.py:2102(ConfigList)
+        1    0.000    0.000    0.000    0.000 pkcs12.py:78(PKCS12KeyAndCertificates)
+        1    0.000    0.000    0.000    0.000 _types.py:2011(PassThroughGuardrailSettings)
+       66    0.000    0.000    0.000    0.000 handlers.py:30(_needs_transcode)
+        1    0.000    0.000    0.000    0.000 orderedset.py:1()
+        1    0.000    0.000    0.000    0.000 response_function_web_search.py:29(ActionSearch)
+        1    0.000    0.000    0.000    0.000 transformation.py:41(OCRPage)
+        1    0.000    0.000    0.000    0.000 transcription_verbose.py:23(TranscriptionVerbose)
+       77    0.000    0.000    0.000    0.000 _generate_schema.py:2178(_get_wrapped_inner_schema)
+      481    0.000    0.000    0.000    0.000 dataclasses.py:396()
+       16    0.000    0.000    0.000    0.000 json_loader.py:15(__init__)
+      449    0.000    0.000    0.000    0.000 {built-in method io.text_encoding}
+      114    0.000    0.000    0.000    0.000 _models.py:27(enforce_bytes)
+        1    0.000    0.000    0.000    0.000 transcription_diarized.py:55(TranscriptionDiarized)
+        1    0.000    0.000    0.000    0.000 response_custom_tool_call_output.py:19(ResponseCustomToolCallOutput)
+      181    0.000    0.000    0.000    0.000 inspect.py:300(ismethod)
+        1    0.000    0.000    0.000    0.000 openai.py:1852(OpenAIRealtimeStreamSessionEvents)
+        1    0.000    0.000    0.000    0.000 openai.py:730(ChatCompletionAssistantMessage)
+        1    0.000    0.000    0.000    0.000 generated.py:181(FileSearch)
+        1    0.000    0.000    0.000    0.000 openai.py:1192(ResponseAPIUsage)
+        8    0.000    0.000    0.000    0.000 __init__.py:315(_subx)
+       97    0.000    0.000    0.000    0.000 enum.py:819(__repr__)
+        1    0.000    0.000    0.000    0.000 _types.py:1520(CustomerBase)
+        1    0.000    0.000    0.000    0.000 openai.py:1957(OpenAIRealtimeResponseDelta)
+        1    0.000    0.000    0.000    0.000 anthropic.py:189(AnthropicMessagesToolUseParam)
+        1    0.000    0.000    0.000    0.000 _models.py:311(__init__)
+        1    0.000    0.000    0.000    0.000 pydoc.py:1810(Helper)
+        1    0.000    0.000    0.000    0.000 _types.py:1849(LiteLLM_TeamTable)
+        1    0.000    0.000    0.000    0.000 DES3.py:1()
+        1    0.000    0.000    0.000    0.000 image_create_variation_params.py:1()
+        1    0.000    0.000    0.000    0.000 response_tool_search_output_item_param_param.py:1()
+        1    0.000    0.000    0.000    0.000 _legacy.py:1()
+        1    0.000    0.000    0.000    0.000 base_routing_strategy.py:1()
+        1    0.000    0.000    0.000    0.000 upload.py:12(Upload)
+        1    0.000    0.000    0.000    0.000 response_output_refusal_param.py:1()
+        1    0.000    0.000    0.000    0.000 compiler.py:165(Frame)
+        1    0.000    0.000    0.000    0.000 response_compaction_item_param_param.py:1()
+        1    0.000    0.000    0.000    0.000 exceptions.py:16(_Reasons)
+        1    0.000    0.000    0.000    0.000 guardrails.py:413(LassoGuardrailConfigModel)
+        1    0.000    0.000    0.000    0.000 base.py:34(NetworkBackend)
+        1    0.000    0.000    0.000    0.000 guardrails.py:522(BlockedWord)
+        1    0.000    0.000    0.000    0.000 response_prompt_param.py:1()
+      181    0.000    0.000    0.000    0.000 functools.py:421(_unwrap_partial)
+        1    0.000    0.000    0.000    0.000 text_similarity_grader.py:10(TextSimilarityGrader)
+        1    0.000    0.000    0.000    0.000 web_search_tool.py:49(WebSearchTool)
+        1    0.000    0.000    0.000    0.000 databricks.py:65(DatabricksMessage)
+        1    0.000    0.000    0.000    0.000 file_search_tool_call.py:63(FileSearch)
+       19    0.000    0.000    0.000    0.000 _IntegerGMP.py:353(__ge__)
+        1    0.000    0.000    0.000    0.000 pkcs7.py:57(PKCS7SignatureBuilder)
+        1    0.000    0.000    0.000    0.000 generated.py:610(DeepResearchAgentConfig)
+      415    0.000    0.000    0.000    0.000 enum.py:801()
+        1    0.000    0.000    0.000    0.000 strxor.py:1()
+        1    0.000    0.000    0.000    0.000 v1_env_from_source.py:1()
+        1    0.000    0.000    0.000    0.000 handler.py:81(CodestralTextCompletion)
+        1    0.000    0.000    0.000    0.000 generated.py:491(UrlContextCallContent)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:429(FineTuneHyperparameters)
+      226    0.000    0.000    0.000    0.000 enum.py:433()
+        3    0.000    0.000    0.000    0.000 :412(realpath)
+        5    0.000    0.000    0.000    0.000 _decorators.py:715(_is_classmethod_from_sig)
+        1    0.000    0.000    0.000    0.000 session_handler.py:31(ResponsesSessionHandler)
+        1    0.000    0.000    0.000    0.000 response_input_item.py:210(LocalShellCall)
+        1    0.000    0.000    0.000    0.000 mcp.py:61(MCPPublicServer)
+        1    0.000    0.000    0.000    0.000 environment.py:1579(TemplateStream)
+        1    0.000    0.000    0.000    0.000 _password.py:1()
+        1    0.000    0.000    0.000    0.000 tool_permission.py:73(PermissionError)
+        2    0.000    0.000    0.000    0.000 _typing.py:1()
+        1    0.000    0.000    0.000    0.000 chat_completion_content_part_input_audio_param.py:1()
+        2    0.000    0.000    0.000    0.000 http11.py:43(HTTPConnectionState)
+        1    0.000    0.000    0.000    0.000 generated.py:110(GoogleSearchResult)
+        1    0.000    0.000    0.000    0.000 configparser.py:1326(ConverterMapping)
+        1    0.000    0.000    0.000    0.000 v1_queuing_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 configfile.py:20(configfile)
+        1    0.000    0.000    0.000    0.000 utils.py:2603(S3ControlEndpointSetter)
+        1    0.000    0.000    0.000    0.000 webauthn_types.py:47(GetRequest)
+        1    0.000    0.000    0.000    0.000 _models.py:321(Request)
+        1    0.000    0.000    0.000    0.000 generated.py:479(CodeExecutionCallContent)
+        1    0.000    0.000    0.000    0.000 response_input_image_param.py:1()
+        1    0.000    0.000    0.000    0.000 _abc.py:28(MultiMapping)
+        3    0.000    0.000    0.000    0.000 _adapters.py:113()
+        1    0.000    0.000    0.000    0.000 generated.py:119(FileSearchResult)
+        1    0.000    0.000    0.000    0.000 open_inference.py:368(OpenInferenceSpanKindValues)
+        1    0.000    0.000    0.000    0.000 eval_list_params.py:1()
+        1    0.000    0.000    0.000    0.000 image_url.py:11(ImageURL)
+        1    0.000    0.000    0.000    0.000 configparser.py:377(BasicInterpolation)
+        1    0.000    0.000    0.000    0.000 transcription_text_delta_event.py:22(TranscriptionTextDeltaEvent)
+      358    0.000    0.000    0.000    0.000 dataclasses.py:437(_field_assign)
+        1    0.000    0.000    0.000    0.000 utils.py:640(ResponseAPILoggingUtils)
+        1    0.000    0.000    0.000    0.000 anthropic.py:93(AnthropicCodeExecutionTool)
+        1    0.000    0.000    0.000    0.000 socketserver.py:1()
+        1    0.000    0.000    0.000    0.000 extensions.py:691(ReasonFlags)
+       34    0.000    0.000    0.000    0.000 ipaddress.py:1631(_make_netmask)
+        1    0.000    0.000    0.000    0.000 caching.py:8(LiteLLMCacheType)
+        1    0.000    0.000    0.000    0.000 mock_client_factory.py:19(MockClientConfig)
+        1    0.000    0.000    0.000    0.000 o_series_handler.py:1()
+        1    0.000    0.000    0.000    0.000 generated.py:428(TextContent)
+        1    0.000    0.000    0.000    0.000 blueprints.py:119(Blueprint)
+        1    0.000    0.000    0.000    0.000 connector.py:269(BaseConnector)
+        1    0.000    0.000    0.000    0.000 response_text_done_event.py:19(Logprob)
+        1    0.000    0.000    0.000    0.000 anthropic.py:73(AnthropicWebSearchTool)
+        1    0.000    0.000    0.000    0.000 guardrails.py:849(PresidioPerRequestConfig)
+      180    0.000    0.000    0.000    0.000 _make.py:1138()
+       23    0.000    0.000    0.000    0.000 :229(expanduser)
+        1    0.000    0.000    0.000    0.000 utils.py:3252(SearchProviders)
+        1    0.000    0.000    0.000    0.000 http11.py:50(HTTP11Connection)
+        1    0.000    0.000    0.000    0.000 generated.py:806(ContentDelta)
+        1    0.000    0.000    0.000    0.000 contextvars.py:1()
+        1    0.000    0.000    0.000    0.000 legacy_application.py:1()
+        1    0.000    0.000    0.000    0.000 step_list_params.py:1()
+        1    0.000    0.000    0.000    0.000 tool_choice_allowed.py:11(ToolChoiceAllowed)
+        2    0.000    0.000    0.000    0.000 headers.py:1()
+        1    0.000    0.000    0.000    0.000 transformation.py:36(BytezChatConfig)
+        1    0.000    0.000    0.000    0.000 _types.py:4004(ProviderBudgetResponse)
+        1    0.000    0.000    0.000    0.000 response_item_list.py:12(ResponseItemList)
+        1    0.000    0.000    0.000    0.000 openai_evals.py:88(CreateEvalRequest)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:90(VectorStoreSearchResponse)
+        1    0.000    0.000    0.000    0.000 utils.py:932(Function)
+      158    0.000    0.000    0.000    0.000 enum.py:349(__init__)
+        1    0.000    0.000    0.000    0.000 cohere.py:32(ChatHistorySystem)
+        1    0.000    0.000    0.000    0.000 ssh.py:294(_SSHFormatDSA)
+      155    0.000    0.000    0.000    0.000 _doc_utils.py:49(set_default)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:74(HttpxContentType)
+        2    0.000    0.000    0.000    0.000 dh.py:1()
+        8    0.000    0.000    0.000    0.000 _IntegerBase.py:297(random)
+        1    0.000    0.000    0.000    0.000 models.py:10(WSCloseCode)
+        1    0.000    0.000    0.000    0.000 abc.py:64(AbstractMatchInfo)
+        1    0.000    0.000    0.000    0.000 openai.py:1021(LiteLLMFineTuningJobCreate)
+        1    0.000    0.000    0.000    0.000 code_interpreter_tool_call_delta.py:18(CodeInterpreter)
+        2    0.000    0.000    0.000    0.000 _models.py:159(multi_items)
+        8    0.000    0.000    0.000    0.000 core.py:584(_setResultsName)
+        1    0.000    0.000    0.000    0.000 deployment_affinity_check.py:1()
+        1    0.000    0.000    0.000    0.000 base_routing_strategy.py:15(BaseRoutingStrategy)
+        1    0.000    0.000    0.000    0.000 exceptions.py:18(TemplateNotFound)
+       81    0.000    0.000    0.000    0.000 inspect.py:1945(_signature_get_user_defined_method)
+        1    0.000    0.000    0.000    0.000 sysconfig.py:479(get_makefile_filename)
+        1    0.000    0.000    0.000    0.000 namespace_tool.py:28(NamespaceTool)
+        1    0.000    0.000    0.000    0.000 embedding.py:6(EmbeddingRequest)
+      481    0.000    0.000    0.000    0.000 dataclasses.py:1101()
+        3    0.000    0.000    0.000    0.000 _connection.py:491(send)
+        1    0.000    0.000    0.000    0.000 __init__.py:22()
+        1    0.000    0.000    0.000    0.000 slack_alerting.py:40(SlackAlertingArgsEnum)
+      493    0.000    0.000    0.000    0.000 {method 'partition' of 'str' objects}
+        2    0.000    0.000    0.000    0.000 _models.py:165()
+        1    0.000    0.000    0.000    0.000 chat_completion_content_part_image.py:11(ImageURL)
+        1    0.000    0.000    0.000    0.000 hashes.py:67(Hash)
+        1    0.000    0.000    0.000    0.000 theme.py:8(Theme)
+        1    0.000    0.000    0.000    0.000 _types.py:2449(UserAPIKeyAuth)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:392(Candidates)
+        1    0.000    0.000    0.000    0.000 main.py:42(GenerateContentSetupResult)
+        1    0.000    0.000    0.000    0.000 zipfile.py:1()
+        1    0.000    0.000    0.000    0.000 http_writer.py:52(StreamWriter)
+        1    0.000    0.000    0.000    0.000 main.py:94(ContainerCreateOptionalRequestParams)
+        1    0.000    0.000    0.000    0.000 _parser.py:58(_timelex)
+        1    0.000    0.000    0.000    0.000 generated.py:636(ModalityTokens)
+        1    0.000    0.000    0.000    0.000 panel.py:17(Panel)
+        1    0.000    0.000    0.000    0.000 regions.py:424(EndpointResolverBuiltins)
+        1    0.000    0.000    0.000    0.000 text.py:47(Span)
+        1    0.000    0.000    0.000    0.000 realtime.py:29(RealtimeResponseTypedDict)
+        1    0.000    0.000    0.000    0.000 eval_create_response.py:94(EvalCreateResponse)
+       65    0.000    0.000    0.000    0.000 :835(__iter__)
+        1    0.000    0.000    0.000    0.000 computer_use_preview_tool.py:10(ComputerUsePreviewTool)
+       10    0.000    0.000    0.000    0.000 types.py:2383(__get_pydantic_core_schema__)
+        1    0.000    0.000    0.000    0.000 connector.py:144(Connection)
+      435    0.000    0.000    0.000    0.000 __init__.py:422()
+      248    0.000    0.000    0.000    0.000 {built-in method _imp.is_builtin}
+        1    0.000    0.000    0.000    0.000 request.py:31(Request)
+        1    0.000    0.000    0.000    0.000 transformation.py:79(OCRRequestData)
+       11    0.000    0.000    0.000    0.000 core.py:1704(__call__)
+        1    0.000    0.000    0.000    0.000 transformation.py:213(BaseFileEndpoints)
+        1    0.000    0.000    0.000    0.000 response_input_item.py:266(ShellCall)
+        6    0.000    0.000    0.000    0.000 _models.py:202(update)
+        1    0.000    0.000    0.000    0.000 response_input_image_content_param.py:1()
+        1    0.000    0.000    0.000    0.000 endpoint_factory.py:36(_load_endpoints_config)
+        1    0.000    0.000    0.000    0.000 chat_completion_message_custom_tool_call_param.py:1()
+        1    0.000    0.000    0.000    0.000 translation_create_params.py:1()
+        1    0.000    0.000    0.000    0.000 response.py:30(IncompleteDetails)
+        1    0.000    0.000    0.000    0.000 core.py:4542(ParseElementEnhance)
+        1    0.000    0.000    0.000    0.000 common_utils.py:17(OpenAILikeBase)
+        1    0.000    0.000    0.000    0.000 tool_call_delta_object.py:12(ToolCallDeltaObject)
+        1    0.000    0.000    0.000    0.000 chat_completion_chunk.py:96(Choice)
+        1    0.000    0.000    0.000    0.000 parser.py:253(OptionParser)
+        1    0.000    0.000    0.000    0.000 video_model.py:1()
+        1    0.000    0.000    0.000    0.000 handler.py:26(OpenAIAudioTranscription)
+        1    0.000    0.000    0.000    0.000 embedding_create_params.py:1()
+        1    0.000    0.000    0.000    0.000 chat_completion_chunk.py:52(ChoiceDeltaToolCall)
+       44    0.000    0.000    0.000    0.000 core_schema.py:275(plain_serializer_function_ser_schema)
+        1    0.000    0.000    0.000    0.000 generated.py:300(CodeExecutionResultDelta)
+        1    0.000    0.000    0.000    0.000 types.py:333(DateTime)
+        3    0.000    0.000    0.000    0.000 core.py:4124(__init__)
+        1    0.000    0.000    0.000    0.000 custom_tool.py:12(CustomTool)
+        3    0.000    0.000    0.000    0.000 _connection.py:518(send_with_data_passthrough)
+        1    0.000    0.000    0.000    0.000 _types.py:94(LitellmUserRoles)
+       97    0.000    0.000    0.000    0.000 _urlparse.py:162()
+        1    0.000    0.000    0.000    0.000 o_series_handler.py:20(AzureOpenAIO1ChatCompletion)
+        1    0.000    0.000    0.000    0.000 provider.py:19(JSONProvider)
+        1    0.000    0.000    0.000    0.000 v1_deployment_status.py:1()
+        1    0.000    0.000    0.000    0.000 generated.py:218(TextDelta)
+        1    0.000    0.000    0.000    0.000 _types.py:2559(UserInfoResponse)
+        1    0.000    0.000    0.000    0.000 enkryptai.py:97(EnkryptAIProcessedResult)
+        1    0.000    0.000    0.000    0.000 audio_transcriptions.py:1()
+       10    0.000    0.000    0.000    0.000 _IntegerGMP.py:364(__add__)
+        1    0.000    0.000    0.000    0.000 parsed_response.py:55(ParsedResponseOutputMessage)
+        1    0.000    0.000    0.000    0.000 aiohttp_transport.py:144(LiteLLMAiohttpTransport)
+        1    0.000    0.000    0.000    0.000 _types.py:3050(WebhookEvent)
+      105    0.000    0.000    0.000    0.000 typing.py:1794()
+      235    0.000    0.000    0.000    0.000 typing.py:1001()
+        1    0.000    0.000    0.000    0.000 chat_completion_message_function_tool_call_param.py:1()
+        1    0.000    0.000    0.000    0.000 gcs_bucket.py:26(GCSBucketLogger)
+        1    0.000    0.000    0.000    0.000 loaders.py:407(DictLoader)
+        1    0.000    0.000    0.000    0.000 color_triplet.py:1()
+        1    0.000    0.000    0.000    0.000 http_proxy.py:56(HTTPProxy)
+        1    0.000    0.000    0.000    0.000 core.py:2449(Option)
+        1    0.000    0.000    0.000    0.000 run.py:25(IncompleteDetails)
+        1    0.000    0.000    0.000    0.000 response_prompt.py:16(ResponsePrompt)
+        1    0.000    0.000    0.000    0.000 file_search_tool.py:11(FileSearchRankingOptions)
+        1    0.000    0.000    0.000    0.000 response_function_tool_call_output_item.py:19(ResponseFunctionToolCallOutputItem)
+        1    0.000    0.000    0.000    0.000 watsonx.py:52(WatsonXAIEndpoint)
+        1    0.000    0.000    0.000    0.000 name.py:18(_ASN1Type)
+        1    0.000    0.000    0.000    0.000 anthropic.py:14(AnthropicMessagesToolChoice)
+        1    0.000    0.000    0.000    0.000 _types.py:2379(LiteLLM_VerificationTokenView)
+        1    0.000    0.000    0.000    0.000 _types.py:1990(DynamoDBArgs)
+        1    0.000    0.000    0.000    0.000 configparser.py:449(ExtendedInterpolation)
+       12    0.000    0.000    0.000    0.000 _IntegerGMP.py:645(size_in_bits)
+        1    0.000    0.000    0.000    0.000 _types.py:3812(KeyListResponseObject)
+        1    0.000    0.000    0.000    0.000 v1_namespace_list.py:1()
+      276    0.000    0.000    0.000    0.000 {method 'splitlines' of 'str' objects}
+       92    0.000    0.000    0.000    0.000 six.py:110(__init__)
+        3    0.000    0.000    0.000    0.000 message.py:243(get_payload)
+       68    0.000    0.000    0.000    0.000 decorators.py:313(_param_memo)
+        1    0.000    0.000    0.000    0.000 init_prompts.py:18(PromptInfo)
+       32    0.000    0.000    0.000    0.000 enum.py:1369(_iter_member_by_def_)
+        5    0.000    0.000    0.000    0.000 decorators.py:171(command)
+        1    0.000    0.000    0.000    0.000 __init__.py:58(Sectioned)
+        1    0.000    0.000    0.000    0.000 _types.py:4364(LiteLLM_ManagedFileTable)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call_output_screenshot_param.py:1()
+        1    0.000    0.000    0.000    0.000 anthropic.py:291(AnthropicMessagesDocumentParam)
+        1    0.000    0.000    0.000    0.000 message.py:28(Attachment)
+        1    0.000    0.000    0.000    0.000 helpers.py:824(AppKey)
+        1    0.000    0.000    0.000    0.000 v1_deployment_status.py:21(V1DeploymentStatus)
+      128    0.000    0.000    0.000    0.000 ssl.py:140()
+        1    0.000    0.000    0.000    0.000 web_search_tool.py:24(UserLocation)
+        1    0.000    0.000    0.000    0.000 tool.py:94(McpRequireApprovalMcpToolApprovalFilter)
+        1    0.000    0.000    0.000    0.000 utils.py:2355(TranscriptionResponse)
+        1    0.000    0.000    0.000    0.000 _compat_pickle.py:1()
+        1    0.000    0.000    0.000    0.000 rag.py:205(RAGIngestOptions)
+        2    0.000    0.000    0.000    0.000 subprocess.py:1280(_close_pipe_fds)
+        1    0.000    0.000    0.000    0.000 main.py:7(KeyManagementSystem)
+        1    0.000    0.000    0.000    0.000 bedrock.py:215(ToolInputSchemaBlock)
+        1    0.000    0.000    0.000    0.000 idtracking.py:30(Symbols)
+        8    0.000    0.000    0.000    0.000 core.py:6029()
+        1    0.000    0.000    0.000    0.000 common_utils.py:15(WatsonXAIError)
+        1    0.000    0.000    0.000    0.000 sysconfig.py:1()
+        1    0.000    0.000    0.000    0.000 chat_completion_store_message.py:15(ChatCompletionStoreMessage)
+        1    0.000    0.000    0.000    0.000 bedrock.py:240(ToolBlock)
+        1    0.000    0.000    0.000    0.000 abc.py:174(AbstractCookieJar)
+      108    0.000    0.000    0.000    0.000 _utils.py:31(normalize_header_key)
+        1    0.000    0.000    0.000    0.000 _types.py:2688(LiteLLM_OrganizationTable)
+        2    0.000    0.000    0.000    0.000 RSA.py:82(__init__)
+        1    0.000    0.000    0.000    0.000 container_list_response.py:11(ExpiresAfter)
+        1    0.000    0.000    0.000    0.000 completion_list_params.py:1()
+        1    0.000    0.000    0.000    0.000 chat_completion.py:45(ChatCompletion)
+        1    0.000    0.000    0.000    0.000 router.py:364(Deployment)
+      4/3    0.000    0.000    0.000    0.000 :421(_joinrealpath)
+      130    0.000    0.000    0.000    0.000 unicode.py:105()
+       10    0.000    0.000    0.000    0.000 {built-in method builtins.dir}
+        1    0.000    0.000    0.000    0.000 get_azure_ad_token_provider.py:4(AzureCredentialType)
+        1    0.000    0.000    0.000    0.000 response_input_file_content_param.py:1()
+        1    0.000    0.000    0.000    0.000 openai_evals.py:208(DataSourceDatasetConfig)
+        1    0.000    0.000    0.000    0.000 common_utils.py:20(VertexAIError)
+        1    0.000    0.000    0.000    0.000 chat_completion_content_part_image_param.py:1()
+        1    0.000    0.000    0.000    0.000 wrappers.py:1()
+      489    0.000    0.000    0.000    0.000 copy.py:182(_deepcopy_atomic)
+       82    0.000    0.000    0.000    0.000 results.py:150(__new__)
+        5    0.000    0.000    0.000    0.000 ssl.py:618(options)
+        1    0.000    0.000    0.000    0.000 dpo_hyperparameters_param.py:1()
+        1    0.000    0.000    0.000    0.000 streaming_iterator.py:38(BaseResponsesAPIStreamingIterator)
+       55    0.000    0.000    0.000    0.000 ipaddress.py:156(_split_optional_netmask)
+        1    0.000    0.000    0.000    0.000 pretty.py:408(Node)
+        1    0.000    0.000    0.000    0.000 vector_store_registry.py:23(VectorStoreIndexRegistry)
+        1    0.000    0.000    0.000    0.000 api.py:36(Endpoints)
+        1    0.000    0.000    0.000    0.000 guardrails.py:140(PiiEntityCategory)
+        1    0.000    0.000    0.000    0.000 container_list_response.py:25(NetworkPolicy)
+        1    0.000    0.000    0.000    0.000 response_includable.py:1()
+        4    0.000    0.000    0.000    0.000 http_handler.py:734(_create_async_transport)
+        1    0.000    0.000    0.000    0.000 openai.py:2004(OpenAIRealtimeResponseDoneObject)
+        1    0.000    0.000    0.000    0.000 argparse.py:1()
+        1    0.000    0.000    0.000    0.000 base_utils.py:43(BaseLLMModelInfo)
+        1    0.000    0.000    0.000    0.000 pub_sub.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:3963(PassThroughEndpointLoggingTypedDict)
+        1    0.000    0.000    0.000    0.000 custom_tool_param.py:1()
+        1    0.000    0.000    0.000    0.000 anthropic.py:56(AnthropicComputerTool)
+        1    0.000    0.000    0.000    0.000 assistant_response_format_option.py:1()
+        4    0.000    0.000    0.000    0.000 _IntegerGMP.py:203(__int__)
+        6    0.000    0.000    0.000    0.000 core.py:6023()
+        1    0.000    0.000    0.000    0.000 core.py:2993(Regex)
+        1    0.000    0.000    0.000    0.000 generated.py:27(DocumentContent)
+        2    0.000    0.000    0.000    0.000 _models.py:83()
+        1    0.000    0.000    0.000    0.000 _adapters.py:8(Message)
+        1    0.000    0.000    0.000    0.000 text_similarity_grader_param.py:1()
+        1    0.000    0.000    0.000    0.000 string_check_grader.py:10(StringCheckGrader)
+        1    0.000    0.000    0.000    0.000 type_adapter.py:142(TypeAdapter)
+        1    0.000    0.000    0.000    0.000 backticks.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:3619(MemberAddRequest)
+        1    0.000    0.000    0.000    0.000 containers.py:30(Renderables)
+        1    0.000    0.000    0.000    0.000 v1_json_schema_props.py:1()
+        1    0.000    0.000    0.000    0.000 main.py:32(PartnerModelPrefixes)
+       39    0.000    0.000    0.000    0.000 _make.py:1583(append_hash_computation_lines)
+        1    0.000    0.000    0.000    0.000 input_token_count_response.py:10(InputTokenCountResponse)
+      141    0.000    0.000    0.000    0.000 _models.py:94(encoding)
+        1    0.000    0.000    0.000    0.000 payload.py:971(AsyncIterablePayload)
+        1    0.000    0.000    0.000    0.000 common_utils.py:221(CohereV2ModelResponseIterator)
+        1    0.000    0.000    0.000    0.000 _adapters.py:20(Message)
+        1    0.000    0.000    0.000    0.000 response_format_text_json_schema_config_param.py:1()
+        7    0.000    0.000    0.000    0.000 base.py:91(catch_errors_and_unavailability)
+        1    0.000    0.000    0.000    0.000 chat_completion_content_part_text_param.py:1()
+        1    0.000    0.000    0.000    0.000 response_input_audio_param.py:1()
+        1    0.000    0.000    0.000    0.000 name.py:111(NameAttribute)
+        1    0.000    0.000    0.000    0.000 invoke_handler.py:84(AmazonCohereChatConfig)
+        1    0.000    0.000    0.000    0.000 openai.py:737(ChatCompletionToolMessage)
+      406    0.000    0.000    0.000    0.000 _doc_utils.py:178(_last)
+      156    0.000    0.000    0.000    0.000 urls.py:34()
+        1    0.000    0.000    0.000    0.000 functools.py:904(wrapper)
+        1    0.000    0.000    0.000    0.000 response_input_item.py:530(ItemReference)
+        3    0.000    0.000    0.000    0.000 payload.py:87(__call__)
+        1    0.000    0.000    0.000    0.000 tool_choice_mcp_param.py:1()
+       16    0.000    0.000    0.000    0.000 sysconfig.py:268(_subst_vars)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call_output_item.py:25(ResponseComputerToolCallOutputItem)
+        1    0.000    0.000    0.000    0.000 text.py:1063(split)
+        1    0.000    0.000    0.000    0.000 compiler.py:157(MacroRef)
+        4    0.000    0.000    0.000    0.000 _make.py:1747(_add_eq)
+        1    0.000    0.000    0.000    0.000 files.py:309(TwoStepFileUploadConfig)
+        1    0.000    0.000    0.000    0.000 prompt_management_base.py:22(PromptManagementBase)
+        8    0.000    0.000    0.000    0.000 _generate_schema.py:855(_resolve_forward_ref)
+        1    0.000    0.000    0.000    0.000 datadog.py:70(DataDogLogger)
+        1    0.000    0.000    0.000    0.000 loaders.py:42(BaseLoader)
+        1    0.000    0.000    0.000    0.000 litellm_content_filter.py:49(PatternDetection)
+        1    0.000    0.000    0.000    0.000 completion.py:13(Completion)
+        1    0.000    0.000    0.000    0.000 assistant_tool_choice.py:12(AssistantToolChoice)
+        1    0.000    0.000    0.000    0.000 score_model_grader.py:79(SamplingParams)
+        1    0.000    0.000    0.000    0.000 assistant_response_format_option_param.py:1()
+        1    0.000    0.000    0.000    0.000 tool_choice_types.py:10(ToolChoiceTypes)
+        1    0.000    0.000    0.000    0.000 smartquotes.py:1()
+        1    0.000    0.000    0.000    0.000 string_check_grader_param.py:1()
+        1    0.000    0.000    0.000    0.000 enum.py:844(_create_)
+        1    0.000    0.000    0.000    0.000 custom_batch_logger.py:16(CustomBatchLogger)
+        1    0.000    0.000    0.000    0.000 transformation.py:31(BedrockRerankConfig)
+      233    0.000    0.000    0.000    0.000 dataclasses.py:410()
+        1    0.000    0.000    0.000    0.000 transformation.py:18(BaseTextCompletionConfig)
+        1    0.000    0.000    0.000    0.000 generated.py:103(UrlContextResult)
+        1    0.000    0.000    0.000    0.000 bedrock.py:59(ToolResultBlock)
+        1    0.000    0.000    0.000    0.000 generated.py:728(Tool)
+        1    0.000    0.000    0.000    0.000 _types.py:3358(ProxyException)
+        1    0.000    0.000    0.000    0.000 rag_query.py:1()
+        1    0.000    0.000    0.000    0.000 _emoji_codes.py:1()
+        1    0.000    0.000    0.000    0.000 cohere.py:16(ChatHistoryToolResult)
+        1    0.000    0.000    0.000    0.000 openai.py:1477(ReasoningSummaryPartDoneEvent)
+        1    0.000    0.000    0.000    0.000 emoji.py:27(Emoji)
+        1    0.000    0.000    0.000    0.000 formdata.py:1()
+        3    0.000    0.000    0.000    0.000 payload.py:76(register_payload)
+       50    0.000    0.000    0.000    0.000 message.py:420(__setitem__)
+        1    0.000    0.000    0.000    0.000 parser_inline.py:1()
+        1    0.000    0.000    0.000    0.000 chat_completion.py:24(Choice)
+        1    0.000    0.000    0.000    0.000 _IntegerBase.py:1()
+        1    0.000    0.000    0.000    0.000 generated.py:678(ThoughtSummaryDelta)
+       36    0.000    0.000    0.000    0.000 _make.py:998(_make_getstate_setstate)
+        1    0.000    0.000    0.000    0.000 eval_update_params.py:1()
+      187    0.000    0.000    0.000    0.000 {method 'index' of 'tuple' objects}
+        1    0.000    0.000    0.000    0.000 transformation.py:28(VertexAIMultimodalEmbeddingConfig)
+        1    0.000    0.000    0.000    0.000 openai.py:2071(OpenAIModerationResponse)
+        1    0.000    0.000    0.000    0.000 generated.py:837(Content)
+        1    0.000    0.000    0.000    0.000 apply_patch_tool_param.py:1()
+        1    0.000    0.000    0.000    0.000 extensions.py:112(Extensions)
+       36    0.000    0.000    0.000    0.000 _make.py:1691(_make_order)
+        1    0.000    0.000    0.000    0.000 types.py:642(File)
+        1    0.000    0.000    0.000    0.000 generated.py:288(McpServerToolCallDelta)
+        1    0.000    0.000    0.000    0.000 openai.py:943(ChatCompletionResponseMessage)
+      179    0.000    0.000    0.000    0.000 {method 'acquire' of '_thread.RLock' objects}
+        1    0.000    0.000    0.000    0.000 file_search_tool_call.py:41(FileSearchResult)
+        1    0.000    0.000    0.000    0.000 response_input_item.py:126(FunctionCallOutput)
+      123    0.000    0.000    0.000    0.000 argparse.py:599(format)
+        1    0.000    0.000    0.000    0.000 databricks.py:40(DatabricksReasoningContent)
+        1    0.000    0.000    0.000    0.000 functools.py:818(dispatch)
+        1    0.000    0.000    0.000    0.000 multipart.py:54(State)
+        1    0.000    0.000    0.000    0.000 __init__.py:263(Len)
+        1    0.000    0.000    0.000    0.000 transcription.py:33(UsageTokens)
+        1    0.000    0.000    0.000    0.000 base.py:9(GuardrailConfigModel)
+        1    0.000    0.000    0.000    0.000 regexopt.py:1()
+        2    0.000    0.000    0.000    0.000 responses_model.py:1()
+       28    0.000    0.000    0.000    0.000 typing.py:245(_collect_parameters)
+        1    0.000    0.000    0.000    0.000 response_input_content.py:1()
+        1    0.000    0.000    0.000    0.000 cohere.py:26(ChatHistoryUser)
+        1    0.000    0.000    0.000    0.000 response_tool_search_output_item_param.py:12(ResponseToolSearchOutputItemParam)
+      277    0.000    0.000    0.000    0.000 _make.py:1177(_add_method_dunders_unsafe)
+        1    0.000    0.000    0.000    0.000 align.py:23(Align)
+        1    0.000    0.000    0.000    0.000 loaders.py:476(PrefixLoader)
+        1    0.000    0.000    0.000    0.000 lexer.py:319(TokenStream)
+        1    0.000    0.000    0.000    0.000 common_utils.py:20(GeminiModelInfo)
+        1    0.000    0.000    0.000    0.000 ctx.py:1()
+        1    0.000    0.000    0.000    0.000 openai.py:360(FileExpiresAfter)
+        1    0.000    0.000    0.000    0.000 router.py:289(updateDeployment)
+        1    0.000    0.000    0.000    0.000 _types.py:2595(LiteLLM_OrganizationMembershipTable)
+        4    0.000    0.000    0.000    0.000 __init__.py:64(xmod)
+        6    0.000    0.000    0.000    0.000 _strptime.py:219(__seqToRE)
+        1    0.000    0.000    0.000    0.000 _models.py:450(__init__)
+        1    0.000    0.000    0.000    0.000 sandbox.py:410(SandboxedFormatter)
+        1    0.000    0.000    0.000    0.000 generated.py:666(VideoDelta)
+        1    0.000    0.000    0.000    0.000 core.py:834(BaseCommand)
+        1    0.000    0.000    0.000    0.000 core.py:4971(_MultipleMatch)
+        1    0.000    0.000    0.000    0.000 utils.py:910(ChoiceLogprobs)
+        2    0.000    0.000    0.000    0.000 _headers.py:150(normalize_and_validate)
+        1    0.000    0.000    0.000    0.000 bedrock.py:256(ToolConfigBlock)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:80(VectorStoreSearchResult)
+        1    0.000    0.000    0.000    0.000 interfaces.py:18(RequestInterface)
+        1    0.000    0.000    0.000    0.000 batch.py:15(Errors)
+        1    0.000    0.000    0.000    0.000 audio_transcriptions.py:19(AzureAudioTranscription)
+        1    0.000    0.000    0.000    0.000 common_utils.py:81(AnthropicError)
+        1    0.000    0.000    0.000    0.000 main.py:23(OutputText)
+        5    0.000    0.000    0.000    0.000 _IntegerGMP.py:758(jacobi_symbol)
+       93    0.000    0.000    0.000    0.000 local.py:307(__set_name__)
+        1    0.000    0.000    0.000    0.000 chat_completion.py:14(ChoiceLogprobs)
+        1    0.000    0.000    0.000    0.000 bedrock.py:436(CohereEmbeddingResponse)
+        1    0.000    0.000    0.000    0.000 numbers.py:1()
+       61    0.000    0.000    0.000    0.000 core.py:1889(set_name)
+        1    0.000    0.000    0.000    0.000 computer_action.py:24(Click)
+        1    0.000    0.000    0.000    0.000 text.py:779(join)
+        1    0.000    0.000    0.000    0.000 completion.py:42(ChatCompletionContentPartImageParam)
+        1    0.000    0.000    0.000    0.000 openai.py:558(WebSearchOptionsUserLocation)
+        1    0.000    0.000    0.000    0.000 run_status.py:1()
+      146    0.000    0.000    0.000    0.000 enum.py:1229(__hash__)
+        1    0.000    0.000    0.000    0.000 argparse.py:1873(parse_args)
+        3    0.000    0.000    0.000    0.000 argparse.py:1509(_add_container_actions)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:601(GcsBucketResponse)
+        1    0.000    0.000    0.000    0.000 openai.py:743(ChatCompletionFunctionMessage)
+        1    0.000    0.000    0.000    0.000 container_list_params.py:1()
+        1    0.000    0.000    0.000    0.000 _base.py:1()
+        1    0.000    0.000    0.000    0.000 reduction.py:1()
+        1    0.000    0.000    0.000    0.000 main.py:312(LiteLLM)
+        1    0.000    0.000    0.000    0.000 translation_verbose.py:11(TranslationVerbose)
+        1    0.000    0.000    0.000    0.000 struct.py:1()
+        1    0.000    0.000    0.000    0.000 pkgutil.py:1()
+        1    0.000    0.000    0.000    0.000 image_generation_handler.py:1()
+        1    0.000    0.000    0.000    0.000 prompt_management_base.py:14(PromptManagementClient)
+        1    0.000    0.000    0.000    0.000 thread.py:31(ToolResources)
+        1    0.000    0.000    0.000    0.000 moderation_image_url_input_param.py:1()
+        9    0.000    0.000    0.000    0.000 _models.py:74()
+       14    0.000    0.000    0.000    0.000 __init__.py:218(finditer)
+       42    0.000    0.000    0.000    0.000 six.py:194(find_spec)
+        1    0.000    0.000    0.000    0.000 duration_parser.py:1()
+        1    0.000    0.000    0.000    0.000 openai_evals.py:218(DataSourceSampleSetConfig)
+        1    0.000    0.000    0.000    0.000 _models.py:375(_prepare)
+        1    0.000    0.000    0.000    0.000 container_create_response.py:35(ContainerCreateResponse)
+       78    0.000    0.000    0.000    0.000 ast.py:255(iter_fields)
+        1    0.000    0.000    0.000    0.000 generated.py:324(GoogleSearchResultDelta)
+        1    0.000    0.000    0.000    0.000 mcp.py:115(MCPServerCostInfo)
+        1    0.000    0.000    0.000    0.000 aiohttp_transport.py:125(AiohttpTransport)
+        1    0.000    0.000    0.000    0.000 base.py:167(_CipherContext)
+        1    0.000    0.000    0.000    0.000 input_item_list_params.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:3694(TeamMemberAddRequest)
+       19    0.000    0.000    0.000    0.000 box.py:33(__init__)
+        1    0.000    0.000    0.000    0.000 _serialization.py:20(Encoding)
+        1    0.000    0.000    0.000    0.000 generated.py:278(GoogleSearchCallDelta)
+        1    0.000    0.000    0.000    0.000 grayswan.py:45(GraySwanGuardrailConfigModel)
+        1    0.000    0.000    0.000    0.000 selector_events.py:1()
+        1    0.000    0.000    0.000    0.000 container_retrieve_response.py:35(ContainerRetrieveResponse)
+        1    0.000    0.000    0.000    0.000 timed.py:1()
+        1    0.000    0.000    0.000    0.000 rag_query.py:11(RAGQuery)
+        1    0.000    0.000    0.000    0.000 base_health_check.py:1()
+       19    0.000    0.000    0.000    0.000 asn1.py:198(_decodeLen)
+        1    0.000    0.000    0.000    0.000 nodes.py:425(FromImport)
+        1    0.000    0.000    0.000    0.000 functools.py:774(_find_impl)
+       13    0.000    0.000    0.000    0.000 _model_construction.py:724(unpack_lenient_weakvaluedict)
+        1    0.000    0.000    0.000    0.000 generated.py:312(UrlContextResultDelta)
+        1    0.000    0.000    0.000    0.000 bedrock.py:778(AmazonNovaCanvasColorGuidedRequest)
+      130    0.000    0.000    0.000    0.000 {built-in method posix.get_terminal_size}
+        1    0.000    0.000    0.000    0.000 openai.py:2101(OpenAIChatCompletionResponse)
+        1    0.000    0.000    0.000    0.000 generated.py:765(ToolChoice)
+        1    0.000    0.000    0.000    0.000 generated.py:247(FunctionCallDelta)
+        1    0.000    0.000    0.000    0.000 generated.py:459(VideoContent)
+       14    0.000    0.000    0.000    0.000 hashlib.py:126(__get_openssl_constructor)
+        1    0.000    0.000    0.000    0.000 types.py:949(Tuple)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_template_spec.py:1()
+       13    0.000    0.000    0.000    0.000 dual_cache.py:58(__init__)
+        1    0.000    0.000    0.000    0.000 eval_list_response.py:94(EvalListResponse)
+       46    0.000    0.000    0.000    0.000 :27(isfile)
+        1    0.000    0.000    0.000    0.000 agents.py:48(APIKeySecurityScheme)
+        1    0.000    0.000    0.000    0.000 skill_list_params.py:1()
+        1    0.000    0.000    0.000    0.000 response_input_image.py:11(ResponseInputImage)
+        1    0.000    0.000    0.000    0.000 generated.py:438(ImageContent)
+        1    0.000    0.000    0.000    0.000 router.py:647(RouterGeneralSettings)
+        1    0.000    0.000    0.000    0.000 threading.py:604(wait)
+        1    0.000    0.000    0.000    0.000 run_list_params.py:1()
+        1    0.000    0.000    0.000    0.000 utils.py:106(LazyFile)
+        1    0.000    0.000    0.000    0.000 core.py:5415(Forward)
+        1    0.000    0.000    0.000    0.000 handler.py:25(TextCompletionCodestralError)
+        1    0.000    0.000    0.000    0.000 quoprimime.py:1()
+        1    0.000    0.000    0.000    0.000 response_function_shell_tool_call.py:31(ResponseFunctionShellToolCall)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:143(Diagnostics)
+        1    0.000    0.000    0.000    0.000 response_file_search_call_in_progress_event.py:10(ResponseFileSearchCallInProgressEvent)
+        1    0.000    0.000    0.000    0.000 generated.py:258(CodeExecutionCallDelta)
+        1    0.000    0.000    0.000    0.000 parsed_response.py:96(ParsedResponse)
+        1    0.000    0.000    0.000    0.000 variable.py:31(URIVariable)
+        1    0.000    0.000    0.000    0.000 main.py:43(OutputImageGenerationCall)
+        1    0.000    0.000    0.000    0.000 tracing.py:39(TraceConfig)
+        1    0.000    0.000    0.000    0.000 extractors.py:1()
+        1    0.000    0.000    0.000    0.000 v1_json_schema_props.py:21(V1JSONSchemaProps)
+        1    0.000    0.000    0.000    0.000 rerank.py:13(RerankRequest)
+      137    0.000    0.000    0.000    0.000 dataclasses.py:603()
+        1    0.000    0.000    0.000    0.000 response_input_item.py:172(ImageGenerationCall)
+        1    0.000    0.000    0.000    0.000 generated.py:268(UrlContextCallDelta)
+        1    0.000    0.000    0.000    0.000 generated.py:592(FileSearchResultContent)
+       93    0.000    0.000    0.000    0.000 local.py:273(__init__)
+        1    0.000    0.000    0.000    0.000 openai.py:1779(OpenAIRealtimeStreamSession)
+        1    0.000    0.000    0.000    0.000 main.py:14(ContainerObject)
+        1    0.000    0.000    0.000    0.000 agents.py:32(AgentCapabilities)
+        1    0.000    0.000    0.000    0.000 _client.py:1306(__exit__)
+       63    0.000    0.000    0.000    0.000 weakref.py:194(get)
+        1    0.000    0.000    0.000    0.000 response.py:64(Response)
+        1    0.000    0.000    0.000    0.000 _types.py:908(AllowedVectorStoreIndexItem)
+        1    0.000    0.000    0.000    0.000 chat_completion_named_tool_choice_param.py:1()
+      128    0.000    0.000    0.000    0.000 ssl.py:130()
+        1    0.000    0.000    0.000    0.000 generated.py:166(ComputerUse)
+        1    0.000    0.000    0.000    0.000 anthropic_cache_control_hook.py:30(AnthropicCacheControlHook)
+        1    0.000    0.000    0.000    0.000 generated.py:352(Error)
+        1    0.000    0.000    0.000    0.000 bccache.py:1()
+        1    0.000    0.000    0.000    0.000 response_text_config.py:12(ResponseTextConfig)
+        1    0.000    0.000    0.000    0.000 anthropic.py:635(ANTHROPIC_HOSTED_TOOLS)
+        1    0.000    0.000    0.000    0.000 MD5.py:1()
+        1    0.000    0.000    0.000    0.000 generated.py:237(ThoughtSignatureDelta)
+        1    0.000    0.000    0.000    0.000 supervised_hyperparameters_param.py:1()
+        1    0.000    0.000    0.000    0.000 _pkcs1_oaep_decode.py:1()
+        1    0.000    0.000    0.000    0.000 text.py:1107(divide)
+        1    0.000    0.000    0.000    0.000 utils.py:854(ChatCompletionTokenLogprob)
+        1    0.000    0.000    0.000    0.000 generated.py:601(AllowedTools)
+        1    0.000    0.000    0.000    0.000 v1_service_account_subject.py:1()
+        1    0.000    0.000    0.000    0.000 response_format_text_json_schema_config.py:13(ResponseFormatTextJSONSchemaConfig)
+       25    0.000    0.000    0.000    0.000 _generate_schema.py:545(_arbitrary_type_schema)
+      215    0.000    0.000    0.000    0.000 argparse.py:846(__init__)
+        1    0.000    0.000    0.000    0.000 cooldown_cache.py:31(CooldownCache)
+        1    0.000    0.000    0.000    0.000 assistant.py:33(ToolResources)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_template_spec.py:21(V1alpha3ResourceClaimTemplateSpec)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:201(GenerationConfig)
+        1    0.000    0.000    0.000    0.000 char_level_bpe.py:9(CharBPETokenizer)
+        1    0.000    0.000    0.000    0.000 model_param_helper.py:1()
+        1    0.000    0.000    0.000    0.000 bisect.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cluster_role.py:1()
+        1    0.000    0.000    0.000    0.000 file_list_params.py:1()
+       18    0.000    0.000    0.000    0.000 __init__.py:896(search)
+      308    0.000    0.000    0.000    0.000 {method 'keys' of 'mappingproxy' objects}
+        1    0.000    0.000    0.000    0.000 vector_stores.py:183(VectorStoreCreateResponse)
+        1    0.000    0.000    0.000    0.000 functools.py:732(_compose_mro)
+        1    0.000    0.000    0.000    0.000 v1_csi_node_driver.py:1()
+      128    0.000    0.000    0.000    0.000 ssl.py:135()
+        1    0.000    0.000    0.000    0.000 csv.py:1()
+        1    0.000    0.000    0.000    0.000 _make.py:2567()
+        1    0.000    0.000    0.000    0.000 computer_use_preview_tool_param.py:1()
+        1    0.000    0.000    0.000    0.000 client.py:1486(_BaseRequestContextManager)
+        1    0.000    0.000    0.000    0.000 response_function_web_search.py:71(ResponseFunctionWebSearch)
+        1    0.000    0.000    0.000    0.000 response_input_image_content.py:11(ResponseInputImageContent)
+       24    0.000    0.000    0.000    0.000 _IntegerGMP.py:347(__le__)
+        1    0.000    0.000    0.000    0.000 results.py:19(_ParseResultsWithOffset)
+        1    0.000    0.000    0.000    0.000 compacted_response.py:13(CompactedResponse)
+       26    0.000    0.000    0.000    0.000 _readers.py:64(_decode_header_lines)
+        1    0.000    0.000    0.000    0.000 extensions.py:896(UserNotice)
+        1    0.000    0.000    0.000    0.000 container_network_policy_domain_secret_param.py:1()
+        2    0.000    0.000    0.000    0.000 sysconfig.py:277(_extend_dict)
+        1    0.000    0.000    0.000    0.000 image_edit_partial_image_event.py:10(ImageEditPartialImageEvent)
+        1    0.000    0.000    0.000    0.000 name.py:214(RelativeDistinguishedName)
+        1    0.000    0.000    0.000    0.000 parsed_response.py:45(ParsedResponseOutputText)
+       16    0.000    0.000    0.000    0.000 _discriminated_union.py:223()
+        1    0.000    0.000    0.000    0.000 tool_search_tool_param.py:1()
+        3    0.000    0.000    0.000    0.000 six.py:882(wrapper)
+        1    0.000    0.000    0.000    0.000 request.py:39(Request)
+        1    0.000    0.000    0.000    0.000 handler.py:19(OpenAIImageVariationsHandler)
+        1    0.000    0.000    0.000    0.000 __init__.py:24(Signal)
+        1    0.000    0.000    0.000    0.000 eval_stored_completions_data_source_config.py:14(EvalStoredCompletionsDataSourceConfig)
+        1    0.000    0.000    0.000    0.000 vector_store_list_params.py:1()
+      128    0.000    0.000    0.000    0.000 ssl.py:125()
+        1    0.000    0.000    0.000    0.000 completion_usage.py:44(CompletionUsage)
+        1    0.000    0.000    0.000    0.000 webauthn_handler_factory.py:6(WebauthnHandlerFactory)
+        1    0.000    0.000    0.000    0.000 _events.py:315(EndOfMessage)
+        1    0.000    0.000    0.000    0.000 tasks.py:1()
+        1    0.000    0.000    0.000    0.000 chat_completion_named_tool_choice_custom_param.py:1()
+       23    0.000    0.000    0.000    0.000 copyreg.py:113(_slotnames)
+        1    0.000    0.000    0.000    0.000 streams.py:40(AsyncStreamIterator)
+        1    0.000    0.000    0.000    0.000 types.py:11(TaskType)
+        1    0.000    0.000    0.000    0.000 response_input_item.py:394(ApplyPatchCallOutput)
+        1    0.000    0.000    0.000    0.000 openai.py:419(CreateBatchRequest)
+        1    0.000    0.000    0.000    0.000 console.py:978(options)
+        1    0.000    0.000    0.000    0.000 default.py:208(__exit__)
+       27    0.000    0.000    0.000    0.000 lexer.py:146()
+        1    0.000    0.000    0.000    0.000 caching_handler.py:72(CachingHandlerResponse)
+       34    0.000    0.000    0.000    0.000 copy.py:264()
+        1    0.000    0.000    0.000    0.000 _serialization.py:74(KeySerializationEncryptionBuilder)
+        1    0.000    0.000    0.000    0.000 highlighter.py:1()
+        1    0.000    0.000    0.000    0.000 eval_list_response.py:30(DataSourceConfigLogs)
+        4    0.000    0.000    0.000    0.000 _IntegerGMP.py:412(__mod__)
+        1    0.000    0.000    0.000    0.000 extensions.py:939(NoticeReference)
+        1    0.000    0.000    0.000    0.000 threading.py:288(wait)
+        1    0.000    0.000    0.000    0.000 job_list_params.py:1()
+        1    0.000    0.000    0.000    0.000 intranges.py:1()
+        1    0.000    0.000    0.000    0.000 common_utils.py:30(VertexAIModelRoute)
+        1    0.000    0.000    0.000    0.000 compound_filter.py:14(CompoundFilter)
+        1    0.000    0.000    0.000    0.000 streams.py:101(StreamReader)
+        1    0.000    0.000    0.000    0.000 client_reqrep.py:248(ConnectionKey)
+        1    0.000    0.000    0.000    0.000 _types.py:1623(TeamBase)
+       38    0.000    0.000    0.000    0.000 __init__.py:23()
+        1    0.000    0.000    0.000    0.000 openai_evals.py:12(DataSourceConfigCustom)
+      128    0.000    0.000    0.000    0.000 ssl.py:145()
+        1    0.000    0.000    0.000    0.000 gcs_bucket_base.py:28(GCSBucketBase)
+        1    0.000    0.000    0.000    0.000 context_service.py:1()
+        1    0.000    0.000    0.000    0.000 chatkit_workflow.py:17(ChatKitWorkflow)
+        1    0.000    0.000    0.000    0.000 sensitive_data_masker.py:1()
+       20    0.000    0.000    0.000    0.000 core_schema.py:2088(with_info_after_validator_function)
+        1    0.000    0.000    0.000    0.000 syntax.py:136(PygmentsSyntaxTheme)
+    39/33    0.000    0.000    0.000    0.000 typing.py:224(_type_repr)
+        1    0.000    0.000    0.000    0.000 pub_sub.py:31(GcsPubSubLogger)
+        1    0.000    0.000    0.000    0.000 utils.py:3490(DynamicPromptManagementParamLiteral)
+        1    0.000    0.000    0.000    0.000 openai.py:1486(OutputItemAddedEvent)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:256(PromptTokensDetails)
+        1    0.000    0.000    0.000    0.000 transformation.py:21(BaseRealtimeConfig)
+       98    0.000    0.000    0.000    0.000 _make.py:2354(_default_init_alias_for)
+        1    0.000    0.000    0.000    0.000 redis_semantic_cache.py:28(RedisSemanticCache)
+        1    0.000    0.000    0.000    0.000 utils.py:2397(ResponseFormatChunk)
+        1    0.000    0.000    0.000    0.000 openai.py:566(WebSearchOptions)
+      271    0.000    0.000    0.000    0.000 contextlib.py:431(__enter__)
+       24    0.000    0.000    0.000    0.000 :100(split)
+        1    0.000    0.000    0.000    0.000 openai_evals.py:379(ListRunsResponse)
+        1    0.000    0.000    0.000    0.000 _stack.py:1()
+        1    0.000    0.000    0.000    0.000 label_model_grader.py:71(LabelModelGrader)
+        1    0.000    0.000    0.000    0.000 transformation.py:22(AudioTranscriptionRequestData)
+        1    0.000    0.000    0.000    0.000 file_search_tool.py:59(FileSearchTool)
+        1    0.000    0.000    0.000    0.000 handler.py:18(BedrockRealtime)
+        1    0.000    0.000    0.000    0.000 anthropic.py:102(AnthropicMemoryTool)
+        5    0.000    0.000    0.000    0.000 core.py:5764(__init__)
+        1    0.000    0.000    0.000    0.000 _IntegerBase.py:38(IntegerBase)
+        1    0.000    0.000    0.000    0.000 _types.py:3010(TokenCountRequest)
+        1    0.000    0.000    0.000    0.000 response_text_delta_event.py:36(ResponseTextDeltaEvent)
+        1    0.000    0.000    0.000    0.000 exceptions.py:942(MidStreamFallbackError)
+        1    0.000    0.000    0.000    0.000 init_prompts.py:24(PromptLiteLLMParams)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:527(TaskTypeEnum)
+        1    0.000    0.000    0.000    0.000 anthropic_skills.py:129(ListSkillVersionsResponse)
+        1    0.000    0.000    0.000    0.000 anthropic.py:118(AnthropicToolSearchToolBM25)
+        1    0.000    0.000    0.000    0.000 response_text_done_event.py:36(ResponseTextDoneEvent)
+        1    0.000    0.000    0.000    0.000 tool_calls_step_details.py:12(ToolCallsStepDetails)
+        1    0.000    0.000    0.000    0.000 thread.py:41(Thread)
+        1    0.000    0.000    0.000    0.000 image_generation_handler.py:18(VertexImageGeneration)
+        1    0.000    0.000    0.000    0.000 utils.py:3564(GenericGuardrailAPIInputs)
+        2    0.000    0.000    0.000    0.000 log.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:3409(CommonProxyErrors)
+        1    0.000    0.000    0.000    0.000 throttling.py:1()
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:2734(deprecated)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:163(VectorStoreCreateOptionalRequestParams)
+        1    0.000    0.000    0.000    0.000 openai.py:2026(OpenAIRealtimeEventTypes)
+        1    0.000    0.000    0.000    0.000 run_update_params.py:1()
+        1    0.000    0.000    0.000    0.000 nodes.py:458(AssignBlock)
+        1    0.000    0.000    0.000    0.000 _state.py:249(ConnectionState)
+        1    0.000    0.000    0.000    0.000 mcp.py:31(MCPAuth)
+        1    0.000    0.000    0.000    0.000 _types.py:2772(UpdateProjectRequest)
+        1    0.000    0.000    0.000    0.000 rerank.py:44(RerankResponseMeta)
+       11    0.000    0.000    0.000    0.000 type_adapter.py:131(wrapper)
+        1    0.000    0.000    0.000    0.000 completion.py:7(ChatCompletionSystemMessageParam)
+        1    0.000    0.000    0.000    0.000 transformation.py:61(OCRResponse)
+        1    0.000    0.000    0.000    0.000 completion.py:95(ChatCompletionToolMessageParam)
+        1    0.000    0.000    0.000    0.000 anthropic.py:428(ContentBlockDelta)
+        1    0.000    0.000    0.000    0.000 _types.py:2709(LiteLLM_OrganizationTableWithMembers)
+        1    0.000    0.000    0.000    0.000 compression_utils.py:57(ZLibBackendProtocol)
+        1    0.000    0.000    0.000    0.000 base_otel_llm_obs_attributes.py:1()
+        1    0.000    0.000    0.000    0.000 _events.py:40(Request)
+        1    0.000    0.000    0.000    0.000 completion.py:106(ChatCompletionFunctionMessageParam)
+        1    0.000    0.000    0.000    0.000 utils.py:2839(StandardPassThroughResponseObject)
+        1    0.000    0.000    0.000    0.000 __init__.py:198(split)
+       36    0.000    0.000    0.000    0.000 _make.py:842()
+        1    0.000    0.000    0.000    0.000 services.py:10(ServiceMetrics)
+        1    0.000    0.000    0.000    0.000 utils.py:3449(SpecialEnums)
+      273    0.000    0.000    0.000    0.000 {method 'bit_length' of 'int' objects}
+        1    0.000    0.000    0.000    0.000 v1_cluster_role.py:21(V1ClusterRole)
+        1    0.000    0.000    0.000    0.000 _types.py:4403(LiteLLM_ManagedVectorStoresTable)
+        1    0.000    0.000    0.000    0.000 _matrix.py:1()
+        1    0.000    0.000    0.000    0.000 ssh.py:366(_SSHFormatECDSA)
+        1    0.000    0.000    0.000    0.000 BLAKE2s.py:1()
+        1    0.000    0.000    0.000    0.000 _models.py:895(close)
+        1    0.000    0.000    0.000    0.000 generated.py:58(UrlContextCallArguments)
+       72    0.000    0.000    0.000    0.000 _generate_schema.py:2155(_apply_single_annotation_json_schema)
+        1    0.000    0.000    0.000    0.000 generated.py:388(Status3)
+        1    0.000    0.000    0.000    0.000 response_input_text_param.py:1()
+        1    0.000    0.000    0.000    0.000 run_step_delta.py:18(RunStepDelta)
+        1    0.000    0.000    0.000    0.000 json_validation_rule.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:2739(NewProjectRequest)
+        1    0.000    0.000    0.000    0.000 dd_tracing.py:1()
+        1    0.000    0.000    0.000    0.000 _capabilities.py:1()
+        2    0.000    0.000    0.000    0.000 __init__.py:305(_compile_repl)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:145(VectorStoreChunkingStrategy)
+        1    0.000    0.000    0.000    0.000 utils.py:1923(Embedding)
+       18    0.000    0.000    0.000    0.000 __init__.py:851(mtime)
+       87    0.000    0.000    0.000    0.000 _make.py:1546(_generate_unique_filename)
+        1    0.000    0.000    0.000    0.000 console.py:258(RichCast)
+        1    0.000    0.000    0.000    0.000 v1_service_account_subject.py:21(V1ServiceAccountSubject)
+        1    0.000    0.000    0.000    0.000 convert_dict_to_response.py:308(LiteLLMResponseObjectHandler)
+        1    0.000    0.000    0.000    0.000 representer.py:1()
+        1    0.000    0.000    0.000    0.000 _known_annotated_metadata.py:1()
+        1    0.000    0.000    0.000    0.000 chat_completion_system_message_param.py:1()
+        1    0.000    0.000    0.000    0.000 color.py:21(ColorSystem)
+        1    0.000    0.000    0.000    0.000 file_search_tool_call.py:33(FileSearchResultContent)
+        1    0.000    0.000    0.000    0.000 chat_completion_allowed_tools_param.py:1()
+        1    0.000    0.000    0.000    0.000 _cipheralgorithm.py:1()
+       16    0.000    0.000    0.000    0.000 types.py:98(prepare_class)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:223(VertexToolName)
+        1    0.000    0.000    0.000    0.000 namespace_tool.py:13(ToolFunction)
+        1    0.000    0.000    0.000    0.000 utils.py:1216(Delta)
+        1    0.000    0.000    0.000    0.000 sensitive_data_masker.py:7(SensitiveDataMasker)
+        1    0.000    0.000    0.000    0.000 response_input_item.py:367(ApplyPatchCall)
+        1    0.000    0.000    0.000    0.000 main.py:131(ContainerFileObject)
+        6    0.000    0.000    0.000    0.000 mock_client_factory.py:110(create_mock_client_factory)
+        3    0.000    0.000    0.000    0.000 _make.py:1628(_add_hash)
+      268    0.000    0.000    0.000    0.000 six.py:93(__init__)
+        1    0.000    0.000    0.000    0.000 custom_tool_input_format.py:19(Grammar)
+        1    0.000    0.000    0.000    0.000 response_web_search_call_searching_event.py:10(ResponseWebSearchCallSearchingEvent)
+        1    0.000    0.000    0.000    0.000 _proxy.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint_selector.py:1()
+      191    0.000    0.000    0.000    0.000 _adapters.py:106(redent)
+        1    0.000    0.000    0.000    0.000 cohere.py:38(ChatHistoryChatBot)
+        1    0.000    0.000    0.000    0.000 generated.py:923(ContentStart)
+        1    0.000    0.000    0.000    0.000 utils.py:2546(StandardBuiltInToolsParams)
+        1    0.000    0.000    0.000    0.000 agents.py:171(AgentObjectPermission)
+        1    0.000    0.000    0.000    0.000 _decorators.py:551(inspect_field_serializer)
+        1    0.000    0.000    0.000    0.000 openai_evals.py:25(DataSourceConfigLogs)
+        2    0.000    0.000    0.000    0.000 _policybase.py:99(_extend_docstrings)
+        1    0.000    0.000    0.000    0.000 get_formatted_prompt.py:1()
+        1    0.000    0.000    0.000    0.000 anthropic.py:645(ANTHROPIC_BETA_HEADER_VALUES)
+       74    0.000    0.000    0.000    0.000 _parser.py:160(__delitem__)
+        1    0.000    0.000    0.000    0.000 transcription.py:12(Logprob)
+       10    0.000    0.000    0.000    0.000 __init__.py:120(method)
+        1    0.000    0.000    0.000    0.000 label_model_grader.py:45(Input)
+      220    0.000    0.000    0.000    0.000 __init__.py:99(section_pairs)
+        1    0.000    0.000    0.000    0.000 {built-in method _thread.start_new_thread}
+        1    0.000    0.000    0.000    0.000 main.py:46(DeleteContainerResult)
+        1    0.000    0.000    0.000    0.000 ssltransport.py:1()
+        1    0.000    0.000    0.000    0.000 gemini.py:296(GeminiVideoGenerationRequest)
+        1    0.000    0.000    0.000    0.000 loaders.py:241(PackageLoader)
+        1    0.000    0.000    0.000    0.000 step_retrieve_params.py:1()
+        1    0.000    0.000    0.000    0.000 tool_choice_allowed_param.py:1()
+        1    0.000    0.000    0.000    0.000 openai.py:532(ChatCompletionRedactedThinkingBlock)
+        1    0.000    0.000    0.000    0.000 chat_completion_chunk.py:117(ChatCompletionChunk)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:353(CitationMetadata)
+        1    0.000    0.000    0.000    0.000 typing.py:1354(__or__)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:65(ClientResponseError)
+        1    0.000    0.000    0.000    0.000 nodes.py:655(Dict)
+        1    0.000    0.000    0.000    0.000 transcription_text_done_event.py:11(Logprob)
+        1    0.000    0.000    0.000    0.000 openai_evals.py:35(DataSourceConfigStoredCompletions)
+       87    0.000    0.000    0.000    0.000 parser.py:109(split_opt)
+        1    0.000    0.000    0.000    0.000 message_update_params.py:1()
+        1    0.000    0.000    0.000    0.000 response_input_item.py:294(ShellCallOutput)
+        1    0.000    0.000    0.000    0.000 connection_pool.py:318(__exit__)
+        1    0.000    0.000    0.000    0.000 _events.py:82(__init__)
+        1    0.000    0.000    0.000    0.000 openai.py:1926(OpenAIRealtimeConversationItemCreated)
+        1    0.000    0.000    0.000    0.000 exceptions.py:656(APIError)
+        1    0.000    0.000    0.000    0.000 anthropic.py:237(AnthropicMessagesContainerUploadParam)
+        1    0.000    0.000    0.000    0.000 computer_action.py:69(Drag)
+        1    0.000    0.000    0.000    0.000 anthropic.py:111(AnthropicToolSearchToolRegex)
+        1    0.000    0.000    0.000    0.000 spinner.py:13(Spinner)
+        1    0.000    0.000    0.000    0.000 ssh.py:437(_SSHFormatEd25519)
+        1    0.000    0.000    0.000    0.000 response_error_event.py:11(ResponseErrorEvent)
+        1    0.000    0.000    0.000    0.000 common_utils.py:20(CohereModelInfo)
+        1    0.000    0.000    0.000    0.000 ssh.py:224(_SSHFormatRSA)
+        1    0.000    0.000    0.000    0.000 anthropic.py:129(ToolReference)
+        1    0.000    0.000    0.000    0.000 anthropic.py:175(AnthropicMcpServerTool)
+       35    0.000    0.000    0.000    0.000 __init__.py:393(__getitem__)
+       13    0.000    0.000    0.000    0.000 _urlparse.py:452(quote)
+       49    0.000    0.000    0.000    0.000 _strptime.py:234()
+        1    0.000    0.000    0.000    0.000 amazon_nova_transformation.py:1()
+        1    0.000    0.000    0.000    0.000 chat_completion_developer_message_param.py:1()
+        1    0.000    0.000    0.000    0.000 _endian.py:1()
+        9    0.000    0.000    0.000    0.000 compiler.py:61(_make_binop)
+        1    0.000    0.000    0.000    0.000 utils.py:1421(PromptTokensDetailsWrapper)
+        1    0.000    0.000    0.000    0.000 openai.py:2168(OpenAIMcpServerTool)
+        1    0.000    0.000    0.000    0.000 base.py:559(CertificateSigningRequestBuilder)
+        1    0.000    0.000    0.000    0.000 thread_deleted.py:10(ThreadDeleted)
+        1    0.000    0.000    0.000    0.000 orderedset.py:15(OrderedSet)
+       18    0.000    0.000    0.000    0.000 root_model.py:54(__init_subclass__)
+        2    0.000    0.000    0.000    0.000 sysconfig.py:209(_safe_realpath)
+        1    0.000    0.000    0.000    0.000 guardrails.py:803(GuardrailEventHooks)
+        1    0.000    0.000    0.000    0.000 anthropic.py:142(CodeExecutionToolCaller)
+       76    0.000    0.000    0.000    0.000 _decorators.py:811(can_be_positional)
+        1    0.000    0.000    0.000    0.000 openai.py:1915(OpenAIRealtimeConversationObject)
+        1    0.000    0.000    0.000    0.000 openai.py:1920(OpenAIRealtimeConversationCreated)
+        1    0.000    0.000    0.000    0.000 handler.py:28(BedrockRerankHandler)
+        4    0.000    0.000    0.000    0.000 argparse.py:2470(_get_values)
+      271    0.000    0.000    0.000    0.000 contextlib.py:428(__init__)
+        1    0.000    0.000    0.000    0.000 backend.py:185(__init__)
+        1    0.000    0.000    0.000    0.000 _types.py:177(LitellmTableNames)
+        1    0.000    0.000    0.000    0.000 pattern_match_deployments.py:52(PatternMatchRouter)
+        1    0.000    0.000    0.000    0.000 openai_evals.py:50(LLMAsJudgeGraderConfig)
+        1    0.000    0.000    0.000    0.000 helpers.py:124(BasicAuth)
+        1    0.000    0.000    0.000    0.000 _schema_validator.py:1()
+        1    0.000    0.000    0.000    0.000 anthropic.py:136(DirectToolCaller)
+        1    0.000    0.000    0.000    0.000 connection_pool.py:307(close)
+        1    0.000    0.000    0.000    0.000 utils.py:420(LRUCache)
+        1    0.000    0.000    0.000    0.000 unicode.py:123(pyparsing_unicode)
+        1    0.000    0.000    0.000    0.000 distro.py:645(LinuxDistribution)
+        1    0.000    0.000    0.000    0.000 _types.py:1615(OrgMember)
+       66    0.000    0.000    0.000    0.000 core.py:2676()
+        1    0.000    0.000    0.000    0.000 transformation.py:27(BaseImageVariationConfig)
+        1    0.000    0.000    0.000    0.000 datadog_llm_obs.py:49(LLMObsPayload)
+        1    0.000    0.000    0.000    0.000 models.py:10(CharsetMatch)
+        1    0.000    0.000    0.000    0.000 utils.py:833(TopLogprob)
+        1    0.000    0.000    0.000    0.000 openai.py:653(ChatCompletionDocumentObject)
+        1    0.000    0.000    0.000    0.000 databricks.py:28(DatabricksTextContent)
+        1    0.000    0.000    0.000    0.000 _client.py:130(close)
+        1    0.000    0.000    0.000    0.000 _types.py:701(LiteLLMPromptInjectionParams)
+        1    0.000    0.000    0.000    0.000 _parser.py:569(__init__)
+      107    0.000    0.000    0.000    0.000 constant.py:397()
+        1    0.000    0.000    0.000    0.000 utils.py:2454(StandardLoggingUserAPIKeyMetadata)
+        1    0.000    0.000    0.000    0.000 extensions.py:804(CertificatePolicies)
+        1    0.000    0.000    0.000    0.000 function_definition.py:11(FunctionDefinition)
+       46    0.000    0.000    0.000    0.000 ipaddress.py:1755(_parse_hextet)
+        1    0.000    0.000    0.000    0.000 threading.py:1402(__init__)
+       37    0.000    0.000    0.000    0.000 _make.py:1089(add_match_args)
+      275    0.000    0.000    0.000    0.000 {method '__init_subclass__' of 'object' objects}
+        1    0.000    0.000    0.000    0.000 inline_skill_source_param.py:1()
+       33    0.000    0.000    0.000    0.000 core.py:3082(_generateDefaultName)
+        1    0.000    0.000    0.000    0.000 generated.py:715(ErrorEvent)
+       31    0.000    0.000    0.000    0.000 _types.py:132(__str__)
+        3    0.000    0.000    0.000    0.000 connection_pool.py:301(_close_connections)
+        1    0.000    0.000    0.000    0.000 progress_bar.py:1()
+        1    0.000    0.000    0.000    0.000 _parser.py:294(__init__)
+        1    0.000    0.000    0.000    0.000 chat_completion_function_message_param.py:1()
+        1    0.000    0.000    0.000    0.000 bedrock.py:219(ToolSpecBlock)
+        1    0.000    0.000    0.000    0.000 skill_reference.py:11(SkillReference)
+        1    0.000    0.000    0.000    0.000 anthropic.py:34(AnthropicOutputSchema)
+        1    0.000    0.000    0.000    0.000 video_list_params.py:1()
+        1    0.000    0.000    0.000    0.000 argilla.py:13(ArgillaPayload)
+        1    0.000    0.000    0.000    0.000 response_input_item.py:57(Message)
+       37    0.000    0.000    0.000    0.000 _make.py:1074(_attach_init)
+      156    0.000    0.000    0.000    0.000 _doc_utils.py:147()
+        1    0.000    0.000    0.000    0.000 response_completed_event.py:11(ResponseCompletedEvent)
+        1    0.000    0.000    0.000    0.000 chat_completion_token_logprob.py:10(TopLogprob)
+      163    0.000    0.000    0.000    0.000 {method 'to_bytes' of 'int' objects}
+        1    0.000    0.000    0.000    0.000 embedding_handler.py:21(VertexEmbedding)
+        1    0.000    0.000    0.000    0.000 local_skill_param.py:1()
+        4    0.000    0.000    0.000    0.000 llm_caching_handler.py:34(set_cache)
+       44    0.000    0.000    0.000    0.000 inspect.py:1443(repl)
+        1    0.000    0.000    0.000    0.000 utils.py:2817(S3ControlArnParamHandler)
+      248    0.000    0.000    0.000    0.000 __init__.py:108()
+        1    0.000    0.000    0.000    0.000 _abnf.py:295(frame_buffer)
+        1    0.000    0.000    0.000    0.000 exceptions.py:31(UnsupportedAlgorithm)
+       97    0.000    0.000    0.000    0.000 core.py:6026()
+       27    0.000    0.000    0.000    0.000 core_schema.py:885(bytes_schema)
+       68    0.000    0.000    0.000    0.000 :309(__init__)
+        1    0.000    0.000    0.000    0.000 _types.py:2957(LiteLLM_AuditLogs)
+        1    0.000    0.000    0.000    0.000 agents.py:208(AgentResponse)
+        1    0.000    0.000    0.000    0.000 other_file_chunking_strategy_object.py:10(OtherFileChunkingStrategyObject)
+        1    0.000    0.000    0.000    0.000 mock_functions.py:1()
+       38    0.000    0.000    0.000    0.000 {method 'remove' of 'set' objects}
+        1    0.000    0.000    0.000    0.000 openai.py:2094(OpenAIChatCompletionChoices)
+        1    0.000    0.000    0.000    0.000 audio_response_format.py:1()
+        1    0.000    0.000    0.000    0.000 openai.py:634(ChatCompletionVideoObject)
+       42    0.000    0.000    0.000    0.000 _decorators.py:177(__post_init__)
+        1    0.000    0.000    0.000    0.000 amazon_nova_transformation.py:25(AmazonNovaEmbeddingConfig)
+        1    0.000    0.000    0.000    0.000 completion.py:128(ChatCompletionAssistantMessageParam)
+      107    0.000    0.000    0.000    0.000 dataclasses.py:548()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint_selector.py:21(V1alpha3DeviceTaintSelector)
+        1    0.000    0.000    0.000    0.000 chat_completion_role.py:1()
+        1    0.000    0.000    0.000    0.000 skill_list.py:12(SkillList)
+        1    0.000    0.000    0.000    0.000 cells.py:21()
+        1    0.000    0.000    0.000    0.000 pretty.py:253(Pretty)
+        2    0.000    0.000    0.000    0.000 _receivebuffer.py:104(maybe_extract_lines)
+        1    0.000    0.000    0.000    0.000 file_purpose.py:1()
+      7/1    0.000    0.000    0.000    0.000 functools.py:687(_c3_mro)
+        1    0.000    0.000    0.000    0.000 extensions.py:1047(TLSFeature)
+        1    0.000    0.000    0.000    0.000 response_status.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:1341(NewSkillRequest)
+        1    0.000    0.000    0.000    0.000 image_url_content_block_param.py:1()
+        1    0.000    0.000    0.000    0.000 cache_control.py:1()
+        1    0.000    0.000    0.000    0.000 batch_list_params.py:1()
+        1    0.000    0.000    0.000    0.000 open_inference.py:386(OpenInferenceLLMSystemValues)
+        6    0.000    0.000    0.000    0.000 __init__.py:581()
+       12    0.000    0.000    0.000    0.000 {method 'count' of 'str' objects}
+       21    0.000    0.000    0.000    0.000 enum.py:1150(_generate_next_value_)
+        1    0.000    0.000    0.000    0.000 embedding.py:40(BedrockEmbedding)
+        1    0.000    0.000    0.000    0.000 _cpu_features.py:1()
+        5    0.000    0.000    0.000    0.000 _urls.py:425(__init__)
+        1    0.000    0.000    0.000    0.000 transformation.py:21(IBMWatsonXChatConfig)
+        1    0.000    0.000    0.000    0.000 openai.py:897(ChatCompletionNamedToolChoiceParam)
+        1    0.000    0.000    0.000    0.000 services.py:47(ServiceConfig)
+      190    0.000    0.000    0.000    0.000 argparse.py:1612(_check_conflict)
+        7    0.000    0.000    0.000    0.000 typing_extensions.py:1616(__new__)
+       38    0.000    0.000    0.000    0.000 asn1.py:77(read_byte)
+        1    0.000    0.000    0.000    0.000 main.py:9(VideoObject)
+        1    0.000    0.000    0.000    0.000 region.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:1687(UpdateTeamRequest)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:79(ContentType)
+        1    0.000    0.000    0.000    0.000 ibm_detector.py:40(IBMDetectorResponseDetectorServer)
+        6    0.000    0.000    0.000    0.000 abc.py:32(_register)
+        1    0.000    0.000    0.000    0.000 response_input_item.py:435(McpListTools)
+        1    0.000    0.000    0.000    0.000 _logging.py:277(_suppress_loggers)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:304(RequestBody)
+        1    0.000    0.000    0.000    0.000 _types.py:3118(AllCallbacks)
+        1    0.000    0.000    0.000    0.000 types.py:764(Path)
+       19    0.000    0.000    0.000    0.000 typing.py:1255(__mro_entries__)
+        1    0.000    0.000    0.000    0.000 main.py:69(ContainerListResponse)
+        1    0.000    0.000    0.000    0.000 types.py:1752(PaymentCardBrand)
+        1    0.000    0.000    0.000    0.000 s3_cache.py:1()
+        1    0.000    0.000    0.000    0.000 gpt_5_transformation.py:1()
+        1    0.000    0.000    0.000    0.000 function_tool_call_delta.py:29(FunctionToolCallDelta)
+        1    0.000    0.000    0.000    0.000 chat_completion_content_part_text.py:10(ChatCompletionContentPartText)
+        1    0.000    0.000    0.000    0.000 eval_create_response.py:30(DataSourceConfigLogs)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:45(ThreadCreated)
+        1    0.000    0.000    0.000    0.000 bedrock.py:347(RequestObject)
+       27    0.000    0.000    0.000    0.000 inspect.py:2075(_signature_is_functionlike)
+        1    0.000    0.000    0.000    0.000 message.py:36(IncompleteDetails)
+        2    0.000    0.000    0.000    0.000 _parser.py:997(parse_template)
+        1    0.000    0.000    0.000    0.000 router.py:698(RoutingStrategy)
+        1    0.000    0.000    0.000    0.000 openai.py:495(ChatCompletionToolCallFunctionChunk)
+        1    0.000    0.000    0.000    0.000 exceptions.py:86(BadParameter)
+       17    0.000    0.000    0.000    0.000 {method 'validate_python' of 'pydantic_core._pydantic_core.SchemaValidator' objects}
+       37    0.000    0.000    0.000    0.000 _make.py:1304(attrs)
+       54    0.000    0.000    0.000    0.000 typing.py:899(_is_typevar_like)
+        1    0.000    0.000    0.000    0.000 azure_ai.py:14(ImageEmbeddingRequest)
+        3    0.000    0.000    0.000    0.000 _functools.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:3254(SpendLogsPayload)
+        1    0.000    0.000    0.000    0.000 vertex_gemini_transformation.py:29(VertexAIGeminiImageGenerationConfig)
+        1    0.000    0.000    0.000    0.000 _serialization.py:45(PublicFormat)
+        1    0.000    0.000    0.000    0.000 _types.py:1330(MCPSubmissionsSummary)
+        1    0.000    0.000    0.000    0.000 parser.py:213(Argument)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:687(VertexVideoGenerationRequest)
+        1    0.000    0.000    0.000    0.000 embedding.py:11(Embedding)
+        1    0.000    0.000    0.000    0.000 _abnf.py:106(ABNF)
+        3    0.000    0.000    0.000    0.000 __init__.py:313(__init__)
+        1    0.000    0.000    0.000    0.000 segment.py:696(SegmentLines)
+        1    0.000    0.000    0.000    0.000 argilla.py:41(ArgillaLogger)
+        1    0.000    0.000    0.000    0.000 live_render.py:1()
+        1    0.000    0.000    0.000    0.000 pkcs7.py:48(PKCS7Options)
+        1    0.000    0.000    0.000    0.000 DES.py:1()
+        1    0.000    0.000    0.000    0.000 _events.py:137(__init__)
+        1    0.000    0.000    0.000    0.000 _types.py:2115(UserHeaderMapping)
+        1    0.000    0.000    0.000    0.000 _strptime.py:88(__calc_month)
+        1    0.000    0.000    0.000    0.000 SHA256.py:1()
+       58    0.000    0.000    0.000    0.000 weakref.py:347(__new__)
+        1    0.000    0.000    0.000    0.000 context_service.py:7(ContextService)
+        1    0.000    0.000    0.000    0.000 openai.py:192(FileSearchToolParam)
+       72    0.000    0.000    0.000    0.000 _make.py:2671(__init__)
+        1    0.000    0.000    0.000    0.000 exceptions.py:197(NoSuchOption)
+      228    0.000    0.000    0.000    0.000 pathlib.py:93(join_parsed_parts)
+        1    0.000    0.000    0.000    0.000 color.py:36(ColorType)
+       40    0.000    0.000    0.000    0.000 argparse.py:1158(__init__)
+        1    0.000    0.000    0.000    0.000 runtime.py:344(BlockReference)
+       59    0.000    0.000    0.000    0.000 argparse.py:931(__init__)
+        7    0.000    0.000    0.000    0.000 core.py:4341(_generateDefaultName)
+        1    0.000    0.000    0.000    0.000 chat_completion_content_part_refusal_param.py:1()
+        1    0.000    0.000    0.000    0.000 transformation.py:39(SagemakerChatConfig)
+        1    0.000    0.000    0.000    0.000 loaders.py:225(Loader)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:1()
+        2    0.000    0.000    0.000    0.000 contextlib.py:546(__exit__)
+        1    0.000    0.000    0.000    0.000 openai.py:2055(ImageGenerationRequestQuality)
+        1    0.000    0.000    0.000    0.000 humanloop.py:30(HumanLoopPromptManager)
+        3    0.000    0.000    0.000    0.000 plugins.py:103()
+        1    0.000    0.000    0.000    0.000 humanloop.py:151(HumanloopLogger)
+        1    0.000    0.000    0.000    0.000 _python_version_support.py:30(PythonVersionStatus)
+        1    0.000    0.000    0.000    0.000 _http_client.py:1()
+        1    0.000    0.000    0.000    0.000 bedrock.py:36(VideoBlock)
+        1    0.000    0.000    0.000    0.000 bedrock.py:649(NovaEmbeddingItem)
+        5    0.000    0.000    0.000    0.000 text.py:1092(flatten_spans)
+        1    0.000    0.000    0.000    0.000 transformation.py:38(BaseAudioTranscriptionConfig)
+        1    0.000    0.000    0.000    0.000 slack_alerting.py:219(DigestEntry)
+        1    0.000    0.000    0.000    0.000 connection.py:168(close)
+       39    0.000    0.000    0.000    0.000 _util.py:84(validate)
+        1    0.000    0.000    0.000    0.000 bedrock.py:46(DocumentBlock)
+        1    0.000    0.000    0.000    0.000 openai_evals.py:194(CancelEvalResponse)
+        2    0.000    0.000    0.000    0.000 core.py:550(set_results_name)
+        8    0.000    0.000    0.000    0.000 _IntegerGMP.py:296(from_bytes)
+        1    0.000    0.000    0.000    0.000 openai_evals.py:162(ListEvalsResponse)
+        1    0.000    0.000    0.000    0.000 slack_alerting.py:95(DeploymentMetrics)
+        1    0.000    0.000    0.000    0.000 amazon_titan_transformation.py:1()
+        2    0.000    0.000    0.000    0.000 function_tool.py:11(FunctionTool)
+      106    0.000    0.000    0.000    0.000 six.py:182(_add_module)
+        1    0.000    0.000    0.000    0.000 box.py:16(Box)
+       34    0.000    0.000    0.000    0.000 argparse.py:1549(_get_positional_kwargs)
+        1    0.000    0.000    0.000    0.000 response_input_audio.py:10(InputAudio)
+        1    0.000    0.000    0.000    0.000 arize_phoenix_prompt_manager.py:51(ArizePhoenixTemplateManager)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:62(ThreadRunCreated)
+        1    0.000    0.000    0.000    0.000 image_url_param.py:1()
+        1    0.000    0.000    0.000    0.000 _cipheralgorithm.py:13(CipherAlgorithm)
+        1    0.000    0.000    0.000    0.000 text_content_block_param.py:1()
+        1    0.000    0.000    0.000    0.000 base.py:77(Cipher)
+        1    0.000    0.000    0.000    0.000 backend.py:383(_register_default_ciphers)
+        3    0.000    0.000    0.000    0.000 console.py:991(size)
+        1    0.000    0.000    0.000    0.000 base_model_iterator.py:1()
+        3    0.000    0.000    0.000    0.000 __init__.py:147(make)
+        1    0.000    0.000    0.000    0.000 audio_model.py:1()
+        1    0.000    0.000    0.000    0.000 _serialization.py:29(PrivateFormat)
+       14    0.000    0.000    0.000    0.000 :150(dirname)
+        1    0.000    0.000    0.000    0.000 generated.py:136(DynamicAgentConfig)
+        5    0.000    0.000    0.000    0.000 _IntegerGMP.py:339(__ne__)
+      161    0.000    0.000    0.000    0.000 {method 'translate' of 'str' objects}
+        1    0.000    0.000    0.000    0.000 _validators.py:1()
+        1    0.000    0.000    0.000    0.000 default.py:119(close)
+        1    0.000    0.000    0.000    0.000 idnadata.py:1()
+        1    0.000    0.000    0.000    0.000 usage_object_transformation.py:1()
+        1    0.000    0.000    0.000    0.000 handler.py:99(LiteLLMMessagesToResponsesAPIHandler)
+       26    0.000    0.000    0.000    0.000 core_schema.py:1309(is_instance_schema)
+        1    0.000    0.000    0.000    0.000 transformation.py:21(BaseImageGenerationConfig)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:177(ClientConnectorError)
+        1    0.000    0.000    0.000    0.000 upload_complete_params.py:1()
+        1    0.000    0.000    0.000    0.000 ibm_detector.py:79(IBMDetectorGuardrailConfigModel)
+        7    0.000    0.000    0.000    0.000 _parser.py:309(_convert)
+        1    0.000    0.000    0.000    0.000 console.py:1487(_collect_renderables)
+        1    0.000    0.000    0.000    0.000 connection.py:36(AsyncHTTPConnection)
+        1    0.000    0.000    0.000    0.000 transformation.py:21(HerokuChatConfig)
+        1    0.000    0.000    0.000    0.000 generated.py:96(Status)
+      220    0.000    0.000    0.000    0.000 __init__.py:923(__init__)
+        1    0.000    0.000    0.000    0.000 guardrails.py:822(GuardrailInfoResponse)
+        1    0.000    0.000    0.000    0.000 tool_choice_types_param.py:1()
+        1    0.000    0.000    0.000    0.000 openai.py:1858(OpenAIRealtimeStreamResponseOutputItemContent)
+      123    0.000    0.000    0.000    0.000 _lazy_imports.py:158(_get_lazy_import_registry)
+        1    0.000    0.000    0.000    0.000 rag.py:63(BedrockVectorStoreOptions)
+        1    0.000    0.000    0.000    0.000 openai.py:982(FineTuningJobCreate)
+        1    0.000    0.000    0.000    0.000 image_file_param.py:1()
+        1    0.000    0.000    0.000    0.000 guardrails.py:841(GuardrailUIAddGuardrailSettings)
+        1    0.000    0.000    0.000    0.000 assistant_tool_choice_function_param.py:1()
+        1    0.000    0.000    0.000    0.000 bedrock.py:26(ImageBlock)
+        1    0.000    0.000    0.000    0.000 nodes.py:696(CondExpr)
+        1    0.000    0.000    0.000    0.000 image_model.py:1()
+        1    0.000    0.000    0.000    0.000 exceptions.py:59(InternalError)
+        1    0.000    0.000    0.000    0.000 console.py:556(RenderHook)
+        2    0.000    0.000    0.000    0.000 socket.py:499(close)
+        1    0.000    0.000    0.000    0.000 core_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 _trace.py:1()
+        1    0.000    0.000    0.000    0.000 message_delta_event.py:11(MessageDeltaEvent)
+        1    0.000    0.000    0.000    0.000 _resources_proxy.py:1()
+      167    0.000    0.000    0.000    0.000 weakref.py:427(__setitem__)
+        4    0.000    0.000    0.000    0.000 hooks.py:62(__init__)
+        1    0.000    0.000    0.000    0.000 openai.py:2207(OpenAIVideoObject)
+        1    0.000    0.000    0.000    0.000 __init__.py:282(Timezone)
+       42    0.000    0.000    0.000    0.000 core.py:2425(_generateDefaultName)
+       54    0.000    0.000    0.000    0.000 _argparse.py:125(__init__)
+      113    0.000    0.000    0.000    0.000 dataclasses.py:1017()
+        1    0.000    0.000    0.000    0.000 cli.py:543(__init__)
+      116    0.000    0.000    0.000    0.000 {method 'isdigit' of 'str' objects}
+      8/4    0.000    0.000    0.000    0.000 typing.py:1475(__repr__)
+        6    0.000    0.000    0.000    0.000 functools.py:188(total_ordering)
+        1    0.000    0.000    0.000    0.000 extensions.py:324(AuthorityInformationAccess)
+      257    0.000    0.000    0.000    0.000 hmac.py:20()
+        1    0.000    0.000    0.000    0.000 nodes.py:1094(MarkSafeIfAutoescape)
+        1    0.000    0.000    0.000    0.000 handler.py:185(AnthropicChatCompletion)
+        1    0.000    0.000    0.000    0.000 datadog_llm_obs.py:63(DDSpanAttributes)
+        4    0.000    0.000    0.000    0.000 __init__.py:1076(__init__)
+        4    0.000    0.000    0.000    0.000 http_handler.py:825(_create_aiohttp_transport)
+        7    0.000    0.000    0.000    0.000 _legacy.py:15(deprecated)
+        1    0.000    0.000    0.000    0.000 generated.py:1154(InteractionSseEvent)
+        2    0.000    0.000    0.000    0.000 typing.py:1687(Unpack)
+      113    0.000    0.000    0.000    0.000 dataclasses.py:1043()
+        1    0.000    0.000    0.000    0.000 deployment_affinity_check.py:32(DeploymentAffinityCheck)
+        1    0.000    0.000    0.000    0.000 locks.py:439(_BarrierState)
+      156    0.000    0.000    0.000    0.000 _doc_utils.py:159()
+      211    0.000    0.000    0.000    0.000 {built-in method builtins.abs}
+        4    0.000    0.000    0.000    0.000 typing_extensions.py:432(__init__)
+        4    0.000    0.000    0.000    0.000 isoparser.py:22(_takes_ascii)
+        1    0.000    0.000    0.000    0.000 watsonx.py:69(WatsonXModelPattern)
+        1    0.000    0.000    0.000    0.000 chat_completion_prediction_content_param.py:1()
+        1    0.000    0.000    0.000    0.000 connection_pool.py:369(close)
+        1    0.000    0.000    0.000    0.000 _strptime.py:80(__calc_weekday)
+        1    0.000    0.000    0.000    0.000 v1_pod_spec.py:1()
+        1    0.000    0.000    0.000    0.000 mobile_application.py:1()
+       15    0.000    0.000    0.000    0.000 __init__.py:863(_addHandlerRef)
+        1    0.000    0.000    0.000    0.000 anthropic_skills.py:61(ListSkillsResponse)
+      113    0.000    0.000    0.000    0.000 dataclasses.py:592()
+        1    0.000    0.000    0.000    0.000 common_utils.py:157(GoogleAIStudioTokenCounter)
+       21    0.000    0.000    0.000    0.000 ipaddress.py:1161(_make_netmask)
+       18    0.000    0.000    0.000    0.000 core.py:4007()
+      257    0.000    0.000    0.000    0.000 hmac.py:19()
+       80    0.000    0.000    0.000    0.000 token.py:24(__init__)
+        1    0.000    0.000    0.000    0.000 response_input_text_content_param.py:1()
+        1    0.000    0.000    0.000    0.000 helpers.py:91()
+        1    0.000    0.000    0.000    0.000 main.py:31(OutputFunctionToolCall)
+        8    0.000    0.000    0.000    0.000 console.py:930(is_terminal)
+        1    0.000    0.000    0.000    0.000 response_format_json_schema.py:13(JSONSchema)
+        1    0.000    0.000    0.000    0.000 v1_transformation.py:1()
+        1    0.000    0.000    0.000    0.000 http_parser.py:125(ChunkState)
+        1    0.000    0.000    0.000    0.000 langfuse_handler.py:1()
+       62    0.000    0.000    0.000    0.000 _status_codes.py:28(__new__)
+        1    0.000    0.000    0.000    0.000 gzip.py:1()
+        1    0.000    0.000    0.000    0.000 s3_vectors_ingestion.py:1()
+        3    0.000    0.000    0.000    0.000 typing.py:330(_tp_cache)
+        1    0.000    0.000    0.000    0.000 credentials.py:512(TokenState)
+        1    0.000    0.000    0.000    0.000 parsed_chat_completion.py:35(ParsedChatCompletion)
+        1    0.000    0.000    0.000    0.000 video_create_character_params.py:1()
+       10    0.000    0.000    0.000    0.000 _utility.py:410(ansi)
+      156    0.000    0.000    0.000    0.000 _doc_utils.py:144()
+        1    0.000    0.000    0.000    0.000 main.py:47(VideoResponse)
+        1    0.000    0.000    0.000    0.000 _completions.py:1()
+        1    0.000    0.000    0.000    0.000 v1_service_spec.py:1()
+        1    0.000    0.000    0.000    0.000 openai.py:1449(ResponseIncompleteEvent)
+      207    0.000    0.000    0.000    0.000 inspect.py:3035(return_annotation)
+        1    0.000    0.000    0.000    0.000 test.py:773(Client)
+        1    0.000    0.000    0.000    0.000 _make.py:2593(_CountingAttr)
+       41    0.000    0.000    0.000    0.000 argparse.py:1111(__init__)
+        1    0.000    0.000    0.000    0.000 openai.py:883(OpenAIChatCompletionToolParam)
+        1    0.000    0.000    0.000    0.000 speech_model.py:1()
+        1    0.000    0.000    0.000    0.000 chat_completion_function_call_option_param.py:1()
+        1    0.000    0.000    0.000    0.000 generated.py:200(Status1)
+        1    0.000    0.000    0.000    0.000 utils.py:1004(ChatCompletionMessageToolCall)
+        1    0.000    0.000    0.000    0.000 moderation_text_input_param.py:1()
+        1    0.000    0.000    0.000    0.000 static_file_chunking_strategy_param.py:1()
+        8    0.000    0.000    0.000    0.000 _trace.py:10(__init__)
+        1    0.000    0.000    0.000    0.000 streaming_iterator.py:17(AnthropicStreamWrapper)
+        1    0.000    0.000    0.000    0.000 calendar.py:1()
+        1    0.000    0.000    0.000    0.000 _python_version_support.py:59(VersionInfo)
+        1    0.000    0.000    0.000    0.000 eval_custom_data_source_config.py:13(EvalCustomDataSourceConfig)
+        1    0.000    0.000    0.000    0.000 timeouts.py:18(_State)
+        1    0.000    0.000    0.000    0.000 palette.py:11(Palette)
+        1    0.000    0.000    0.000    0.000 _core_utils.py:185(__init__)
+       40    0.000    0.000    0.000    0.000 traceback.py:297(__getitem__)
+        1    0.000    0.000    0.000    0.000 generated.py:74(GoogleSearchCallArguments)
+        1    0.000    0.000    0.000    0.000 generated.py:657(AudioDelta)
+        1    0.000    0.000    0.000    0.000 authorization.py:18(AuthorizationEndpoint)
+        1    0.000    0.000    0.000    0.000 tool_choice_custom_param.py:1()
+        1    0.000    0.000    0.000    0.000 eval_retrieve_response.py:30(DataSourceConfigLogs)
+      133    0.000    0.000    0.000    0.000 core.py:1752(set_whitespace_chars)
+        1    0.000    0.000    0.000    0.000 openai.py:1169(ResponsesAPIRequestParams)
+        1    0.000    0.000    0.000    0.000 bedrock.py:209(ToolJsonSchemaBlock)
+        1    0.000    0.000    0.000    0.000 video_size.py:1()
+        1    0.000    0.000    0.000    0.000 job_list_events_params.py:1()
+        1    0.000    0.000    0.000    0.000 _util.py:107(Sentinel)
+        1    0.000    0.000    0.000    0.000 extensions.py:505(CRLDistributionPoints)
+       14    0.000    0.000    0.000    0.000 _config.py:210(__init__)
+        1    0.000    0.000    0.000    0.000 formparser.py:1()
+        1    0.000    0.000    0.000    0.000 connector.py:252(_TransportPlaceholder)
+       62    0.000    0.000    0.000    0.000 __init__.py:26(__new__)
+        1    0.000    0.000    0.000    0.000 __init__.py:152(GroupedMetadata)
+      149    0.000    0.000    0.000    0.000 functools.py:966(__init__)
+        1    0.000    0.000    0.000    0.000 table.py:38(Column)
+        1    0.000    0.000    0.000    0.000 sslproto.py:19(SSLProtocolState)
+        1    0.000    0.000    0.000    0.000 _core_utils.py:188(_build_schema_type_to_method)
+        1    0.000    0.000    0.000    0.000 _types.py:999(UpdateKeyRequest)
+        1    0.000    0.000    0.000    0.000 slack_alerting.py:115(SlackAlertingCacheKeys)
+        1    0.000    0.000    0.000    0.000 apply_patch_tool.py:10(ApplyPatchTool)
+        1    0.000    0.000    0.000    0.000 bedrock.py:198(ConverseResponseBlock)
+        1    0.000    0.000    0.000    0.000 tool_choice_function_param.py:1()
+        1    0.000    0.000    0.000    0.000 openai.py:2153(OpenAIWebSearchOptions)
+       25    0.000    0.000    0.000    0.000 _generate_schema.py:420(_arbitrary_types)
+        1    0.000    0.000    0.000    0.000 progress_bar.py:18(ProgressBar)
+        1    0.000    0.000    0.000    0.000 moderation_model.py:1()
+        1    0.000    0.000    0.000    0.000 router.py:423(RouterErrors)
+        1    0.000    0.000    0.000    0.000 pagination.py:69(SyncCursorPage)
+        3    0.000    0.000    0.000    0.000 typing.py:334(decorator)
+        1    0.000    0.000    0.000    0.000 eval_update_response.py:30(DataSourceConfigLogs)
+        1    0.000    0.000    0.000    0.000 terminal.py:75(Terminal)
+        1    0.000    0.000    0.000    0.000 opentelemetry.py:61(OpenTelemetryConfig)
+        1    0.000    0.000    0.000    0.000 types.py:7(SpanApiType)
+        3    0.000    0.000    0.000    0.000 _functools.py:13(wrapper)
+       24    0.000    0.000    0.000    0.000 types.py:2500(__hash__)
+        1    0.000    0.000    0.000    0.000 __init__.py:70(SplitDelimiterBehavior)
+        1    0.000    0.000    0.000    0.000 transformation.py:30(AnthropicMessagesConfig)
+        1    0.000    0.000    0.000    0.000 v1_watch_event.py:1()
+      129    0.000    0.000    0.000    0.000 typing_extensions.py:669(__hash__)
+        1    0.000    0.000    0.000    0.000 image_input_reference_param.py:1()
+        1    0.000    0.000    0.000    0.000 file_path_delta_annotation.py:16(FilePathDeltaAnnotation)
+        1    0.000    0.000    0.000    0.000 openai_evals.py:243(CompletionConfig)
+        1    0.000    0.000    0.000    0.000 _argparse.py:215(add_usage)
+       19    0.000    0.000    0.000    0.000 :140(basename)
+        1    0.000    0.000    0.000    0.000 loaders.py:539(ChoiceLoader)
+       72    0.000    0.000    0.000    0.000 asn1.py:68(read)
+        8    0.000    0.000    0.000    0.000 resolver.py:25(add_implicit_resolver)
+        1    0.000    0.000    0.000    0.000 streaming_iterator.py:29(BaseInteractionsAPIStreamingIterator)
+        1    0.000    0.000    0.000    0.000 common_utils.py:10(BytezError)
+        5    0.000    0.000    0.000    0.000 parse.py:703(parse_qs)
+        1    0.000    0.000    0.000    0.000 heapq.py:1()
+        1    0.000    0.000    0.000    0.000 response_input_item.py:152(ToolSearchCall)
+        2    0.000    0.000    0.000    0.000 docstring.py:1()
+        1    0.000    0.000    0.000    0.000 vector_stores.py:109(VectorStoreSearchRequest)
+        1    0.000    0.000    0.000    0.000 http11.py:261(close)
+        1    0.000    0.000    0.000    0.000 file_citation_delta_annotation.py:19(FileCitationDeltaAnnotation)
+        1    0.000    0.000    0.000    0.000 amazon_openai_transformation.py:28(AmazonBedrockOpenAIConfig)
+        1    0.000    0.000    0.000    0.000 schema.py:1()
+        1    0.000    0.000    0.000    0.000 __init__.py:243(MinLen)
+       10    0.000    0.000    0.000    0.000 _models.py:212(__getitem__)
+        1    0.000    0.000    0.000    0.000 _types.py:931(LiteLLMKeyType)
+        1    0.000    0.000    0.000    0.000 chat_completion_stream_options_param.py:1()
+        1    0.000    0.000    0.000    0.000 images_response.py:32(Usage)
+        1    0.000    0.000    0.000    0.000 ollama.py:33(OllamaChatCompletionMessage)
+        1    0.000    0.000    0.000    0.000 connector.py:1718(UnixConnector)
+        1    0.000    0.000    0.000    0.000 oauth2_session.py:1()
+        1    0.000    0.000    0.000    0.000 _trace.py:9(Trace)
+        1    0.000    0.000    0.000    0.000 common_utils.py:23(AzureOpenAIError)
+       37    0.000    0.000    0.000    0.000 fields.py:956(PrivateAttr)
+        1    0.000    0.000    0.000    0.000 generated.py:208(InteractionStatusUpdate)
+        1    0.000    0.000    0.000    0.000 generated.py:450(AudioContent)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:169(GeminiThinkingConfig)
+        1    0.000    0.000    0.000    0.000 caching.py:49(CacheMode)
+       24    0.000    0.000    0.000    0.000 __init__.py:1734(isEnabledFor)
+      166    0.000    0.000    0.000    0.000 cached_imports.py:32(get_coroutine_checker)
+      196    0.000    0.000    0.000    0.000 :409(__subclasshook__)
+        1    0.000    0.000    0.000    0.000 usage_object_transformation.py:11(TranscriptionUsageObjectTransformation)
+        9    0.000    0.000    0.000    0.000 base_aws_llm.py:60(__init__)
+        1    0.000    0.000    0.000    0.000 client.py:1526(_SessionRequestContextManager)
+        1    0.000    0.000    0.000    0.000 container_reference_param.py:1()
+      7/1    0.000    0.000    0.000    0.000 functools.py:725()
+        1    0.000    0.000    0.000    0.000 response_input_audio.py:18(ResponseInputAudio)
+        1    0.000    0.000    0.000    0.000 sync.py:139(close)
+        1    0.000    0.000    0.000    0.000 v1_storage_class.py:1()
+        1    0.000    0.000    0.000    0.000 google_auth_httplib2.py:1()
+        6    0.000    0.000    0.000    0.000 warnings.py:165(simplefilter)
+        1    0.000    0.000    0.000    0.000 extensions.py:1584(IssuerAlternativeName)
+        1    0.000    0.000    0.000    0.000 cohere_transformation.py:20(AzureAICohereConfig)
+        1    0.000    0.000    0.000    0.000 init_prompts.py:44(PromptSpec)
+        1    0.000    0.000    0.000    0.000 eval_update_response.py:94(EvalUpdateResponse)
+        1    0.000    0.000    0.000    0.000 webauthn_types.py:105(GetResponse)
+        1    0.000    0.000    0.000    0.000 generated.py:228(DocumentDelta)
+        1    0.000    0.000    0.000    0.000 aleph_alpha.py:1()
+        8    0.000    0.000    0.000    0.000 six.py:96(__get__)
+        1    0.000    0.000    0.000    0.000 implicit.py:1()
+        1    0.000    0.000    0.000    0.000 run.py:39(LastError)
+        1    0.000    0.000    0.000    0.000 bedrock.py:893(BedrockRerankRequest)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:288(CachedContent)
+        1    0.000    0.000    0.000    0.000 databricks.py:71(DatabricksChoice)
+        1    0.000    0.000    0.000    0.000 cooldown_callbacks.py:1()
+        1    0.000    0.000    0.000    0.000 agentops.py:30(AgentOps)
+        1    0.000    0.000    0.000    0.000 model_param_helper.py:40(_get_relevant_args_to_use_for_logging)
+      185    0.000    0.000    0.000    0.000 _make.py:1278(_determine_whether_to_implement)
+        1    0.000    0.000    0.000    0.000 common_utils.py:965(VertexAIModelInfo)
+        1    0.000    0.000    0.000    0.000 response_function_tool_call.py:11(ResponseFunctionToolCall)
+        1    0.000    0.000    0.000    0.000 guardrails.py:837(ListGuardrailsResponse)
+        1    0.000    0.000    0.000    0.000 request.py:301(request_host)
+       11    0.000    0.000    0.000    0.000 _readers.py:127(__call__)
+        1    0.000    0.000    0.000    0.000 response_failed_event.py:11(ResponseFailedEvent)
+      179    0.000    0.000    0.000    0.000 {method 'release' of '_thread.RLock' objects}
+        1    0.000    0.000    0.000    0.000 eval_retrieve_response.py:94(EvalRetrieveResponse)
+        1    0.000    0.000    0.000    0.000 _types.py:1395(NewUserRequestTeam)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:422(GenerateContentResponseBody)
+        2    0.000    0.000    0.000    0.000 hashlib.py:82(__get_builtin_constructor)
+        1    0.000    0.000    0.000    0.000 generated.py:1145(InteractionEvent)
+        1    0.000    0.000    0.000    0.000 anthropic.py:65(AnthropicWebSearchUserLocation)
+        1    0.000    0.000    0.000    0.000 openai.py:1428(ResponseCreatedEvent)
+        1    0.000    0.000    0.000    0.000 generated.py:343(ContentStop)
+        1    0.000    0.000    0.000    0.000 code_interpreter_tool_call.py:49(CodeInterpreter)
+        1    0.000    0.000    0.000    0.000 payload.py:466(IOBasePayload)
+        1    0.000    0.000    0.000    0.000 exceptions.py:814(_find_exceptions)
+        1    0.000    0.000    0.000    0.000 rag.py:280(RAGQueryRequest)
+       45    0.000    0.000    0.000    0.000 argparse.py:966(__init__)
+        4    0.000    0.000    0.000    0.000 zipfile.py:1245(__init__)
+        1    0.000    0.000    0.000    0.000 main.py:186(DeleteContainerFileResponse)
+        1    0.000    0.000    0.000    0.000 sentencepiece_bpe.py:1()
+        1    0.000    0.000    0.000    0.000 video_delete_response.py:10(VideoDeleteResponse)
+        1    0.000    0.000    0.000    0.000 utils.py:1649(StreamingChoices)
+        1    0.000    0.000    0.000    0.000 text.py:11(Text)
+        1    0.000    0.000    0.000    0.000 v1_watch_event.py:21(V1WatchEvent)
+        1    0.000    0.000    0.000    0.000 generated.py:336(FileSearchResultDelta)
+      113    0.000    0.000    0.000    0.000 dataclasses.py:1046()
+        1    0.000    0.000    0.000    0.000 extensions.py:1503(SubjectAlternativeName)
+        1    0.000    0.000    0.000    0.000 oci.py:11(OCIVendors)
+        1    0.000    0.000    0.000    0.000 certificate_transparency.py:23(SignatureAlgorithm)
+        1    0.000    0.000    0.000    0.000 skill_create_params.py:1()
+        1    0.000    0.000    0.000    0.000 handler.py:19(AzureAIEmbedding)
+        1    0.000    0.000    0.000    0.000 reinforcement_method.py:19(ReinforcementMethod)
+        1    0.000    0.000    0.000    0.000 _types.py:2940(LiteLLM_ErrorLogs)
+        1    0.000    0.000    0.000    0.000 response_audio_done_event.py:10(ResponseAudioDoneEvent)
+       10    0.000    0.000    0.000    0.000 _make.py:2621()
+        1    0.000    0.000    0.000    0.000 _core.py:39(WebSocket)
+        1    0.000    0.000    0.000    0.000 transformation.py:30(GoogleGenAIStreamWrapper)
+        1    0.000    0.000    0.000    0.000 openai.py:1438(ResponseCompletedEvent)
+       27    0.000    0.000    0.000    0.000 core.py:4342()
+        1    0.000    0.000    0.000    0.000 utils.py:3337(SelectTokenizerResponse)
+        3    0.000    0.000    0.000    0.000 subprocess.py:1257(wait)
+        1    0.000    0.000    0.000    0.000 generated.py:475(ThoughtSummary)
+        1    0.000    0.000    0.000    0.000 utils.py:3519(PriorityReservationDict)
+        1    0.000    0.000    0.000    0.000 inline_skill.py:11(InlineSkill)
+        4    0.000    0.000    0.000    0.000 typing.py:1521(__init__)
+        1    0.000    0.000    0.000    0.000 response_refusal_delta_event.py:10(ResponseRefusalDeltaEvent)
+        1    0.000    0.000    0.000    0.000 dsa.py:32(DSAPrivateKey)
+        1    0.000    0.000    0.000    0.000 response_mcp_call_failed_event.py:10(ResponseMcpCallFailedEvent)
+        1    0.000    0.000    0.000    0.000 ssl.py:1368(_real_close)
+       86    0.000    0.000    0.000    0.000 {method 'expandtabs' of 'str' objects}
+        1    0.000    0.000    0.000    0.000 response_output_item_added_event.py:11(ResponseOutputItemAddedEvent)
+        1    0.000    0.000    0.000    0.000 runtime.py:794(Undefined)
+        1    0.000    0.000    0.000    0.000 code_interpreter_tool_call_delta.py:32(CodeInterpreterToolCallDelta)
+       11    0.000    0.000    0.000    0.000 functional_validators.py:389(field_validator)
+      176    0.000    0.000    0.000    0.000 dataclasses.py:1238()
+        1    0.000    0.000    0.000    0.000 common_utils.py:12(XAIModelInfo)
+        1    0.000    0.000    0.000    0.000 response_incomplete_event.py:11(ResponseIncompleteEvent)
+        1    0.000    0.000    0.000    0.000 response_audio_delta_event.py:10(ResponseAudioDeltaEvent)
+        1    0.000    0.000    0.000    0.000 v1_pod_spec.py:21(V1PodSpec)
+        1    0.000    0.000    0.000    0.000 transcription_diarized.py:23(UsageTokens)
+        1    0.000    0.000    0.000    0.000 file_search_tool.py:32(FileSearch)
+        1    0.000    0.000    0.000    0.000 text_delta_block.py:12(TextDeltaBlock)
+        1    0.000    0.000    0.000    0.000 response_refusal_done_event.py:10(ResponseRefusalDoneEvent)
+       13    0.000    0.000    0.000    0.000 typing_extensions.py:722(runtime_checkable)
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_binding.py:1()
+        1    0.000    0.000    0.000    0.000 generated.py:398(ModelOption)
+        1    0.000    0.000    0.000    0.000 transcription_text_done_event.py:32(Usage)
+        1    0.000    0.000    0.000    0.000 response_output_item_done_event.py:11(ResponseOutputItemDoneEvent)
+        1    0.000    0.000    0.000    0.000 generated.py:471(ThoughtSummary1)
+        1    0.000    0.000    0.000    0.000 _types.py:2811(LiteLLM_ProjectTable)
+        1    0.000    0.000    0.000    0.000 extensions.py:1665(CertificateIssuer)
+       17    0.000    0.000    0.000    0.000 main.py:468(_is_file_or_fifo)
+        1    0.000    0.000    0.000    0.000 response_in_progress_event.py:11(ResponseInProgressEvent)
+        1    0.000    0.000    0.000    0.000 response_input_item.py:188(LocalShellCallAction)
+        1    0.000    0.000    0.000    0.000 core.py:708(__init__)
+        1    0.000    0.000    0.000    0.000 amazon_titan_transformation.py:19(AmazonTitanImageGenerationConfig)
+        2    0.000    0.000    0.000    0.000 request_validator.py:1()
+        2    0.000    0.000    0.000    0.000 console.py:819(_exit_buffer)
+        7    0.000    0.000    0.000    0.000 __init__.py:912(createLock)
+        1    0.000    0.000    0.000    0.000 container_network_policy_disabled.py:10(ContainerNetworkPolicyDisabled)
+        1    0.000    0.000    0.000    0.000 _utils.py:27()
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:30(PartType)
+        1    0.000    0.000    0.000    0.000 paginate.py:1()
+        1    0.000    0.000    0.000    0.000 oauth1_session.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:1422(NewUserResponse)
+        1    0.000    0.000    0.000    0.000 image_url_delta_block.py:12(ImageURLDeltaBlock)
+        1    0.000    0.000    0.000    0.000 code_interpreter_output_image.py:19(CodeInterpreterOutputImage)
+      113    0.000    0.000    0.000    0.000 dataclasses.py:346(__init__)
+        1    0.000    0.000    0.000    0.000 progress.py:937(Task)
+      123    0.000    0.000    0.000    0.000 argparse.py:590(_metavar_formatter)
+        1    0.000    0.000    0.000    0.000 rag.py:242(RAGIngestResponse)
+        1    0.000    0.000    0.000    0.000 _types.py:2843(LiteLLM_ProjectTableCachedObj)
+        1    0.000    0.000    0.000    0.000 _dict.py:1()
+        1    0.000    0.000    0.000    0.000 ibm_detector.py:19(IBMDetectorRequestBodyOrchestrator)
+        1    0.000    0.000    0.000    0.000 __init__.py:229(MultipleOf)
+        1    0.000    0.000    0.000    0.000 __init__.py:155(_ModuleClient)
+      134    0.000    0.000    0.000    0.000 _doc_utils.py:94()
+        1    0.000    0.000    0.000    0.000 image_file_delta_block.py:12(ImageFileDeltaBlock)
+        1    0.000    0.000    0.000    0.000 init_prompts.py:70(PromptInfoResponse)
+        1    0.000    0.000    0.000    0.000 generated.py:406(AgentOption)
+        1    0.000    0.000    0.000    0.000 response_created_event.py:11(ResponseCreatedEvent)
+        1    0.000    0.000    0.000    0.000 embedding_model.py:1()
+        1    0.000    0.000    0.000    0.000 generated.py:422(VideoMimeTypeOption)
+        1    0.000    0.000    0.000    0.000 tests.py:1()
+        2    0.000    0.000    0.000    0.000 connection_pool.py:230(_assign_requests_to_connections)
+        1    0.000    0.000    0.000    0.000 twelvelabs_marengo_transformation.py:1()
+        1    0.000    0.000    0.000    0.000 openai.py:1108(PromptObject)
+        1    0.000    0.000    0.000    0.000 response_content_part_done_event.py:29(ResponseContentPartDoneEvent)
+        1    0.000    0.000    0.000    0.000 completion.py:30(ImageURL)
+       16    0.000    0.000    0.000    0.000 argparse.py:2526(_get_value)
+        1    0.000    0.000    0.000    0.000 progress.py:184(_Reader)
+        1    0.000    0.000    0.000    0.000 response_content_part_added_event.py:29(ResponseContentPartAddedEvent)
+        1    0.000    0.000    0.000    0.000 connection_pool.py:15(PoolRequest)
+        1    0.000    0.000    0.000    0.000 abc.py:56(Traversable)
+        1    0.000    0.000    0.000    0.000 run_step_delta_message_delta.py:16(RunStepDeltaMessageDelta)
+        1    0.000    0.000    0.000    0.000 container_reference.py:10(ContainerReference)
+        1    0.000    0.000    0.000    0.000 _types.py:1828(LiteLLM_ObjectPermissionTable)
+        1    0.000    0.000    0.000    0.000 tool_choice_options.py:1()
+        1    0.000    0.000    0.000    0.000 generated.py:410(ImageMimeTypeOption)
+        1    0.000    0.000    0.000    0.000 console.py:338(__exit__)
+        1    0.000    0.000    0.000    0.000 console.py:631(__init__)
+        1    0.000    0.000    0.000    0.000 image_gen_partial_image_event.py:10(ImageGenPartialImageEvent)
+       14    0.000    0.000    0.000    0.000 __init__.py:144(_check_size)
+        1    0.000    0.000    0.000    0.000 connection_pool.py:43(AsyncConnectionPool)
+        6    0.000    0.000    0.000    0.000 core.py:4972(__init__)
+        1    0.000    0.000    0.000    0.000 connection_pool.py:43(ConnectionPool)
+        1    0.000    0.000    0.000    0.000 gemini.py:15(GeminiFilesState)
+        1    0.000    0.000    0.000    0.000 tool.py:213(CodeInterpreter)
+      142    0.000    0.000    0.000    0.000 __init__.py:795(__init__)
+        9    0.000    0.000    0.000    0.000 warnings.py:181(_add_filter)
+        1    0.000    0.000    0.000    0.000 http_parser.py:117(ParseState)
+        1    0.000    0.000    0.000    0.000 generated.py:416(AudioMimeTypeOption)
+        1    0.000    0.000    0.000    0.000 api.py:29(HttpMethods)
+        1    0.000    0.000    0.000    0.000 renderer.py:1()
+        1    0.000    0.000    0.000    0.000 types.py:404(_NumberParamTypeBase)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:128(FunctionCallingConfig)
+        1    0.000    0.000    0.000    0.000 _old_api.py:1()
+       40    0.000    0.000    0.000    0.000 {method 'throw' of 'generator' objects}
+        1    0.000    0.000    0.000    0.000 get_provider_specific_headers.py:1()
+        1    0.000    0.000    0.000    0.000 {method '_wrap_socket' of '_ssl._SSLContext' objects}
+        1    0.000    0.000    0.000    0.000 openai.py:1454(ResponsePartAddedEvent)
+        1    0.000    0.000    0.000    0.000 video_seconds.py:1()
+      194    0.000    0.000    0.000    0.000 status_codes.py:117()
+        1    0.000    0.000    0.000    0.000 bedrock.py:470(AmazonTitanMultimodalEmbeddingConfig)
+        1    0.000    0.000    0.000    0.000 router.py:527(AssistantsTypedDict)
+        1    0.000    0.000    0.000    0.000 transformation.py:33(CohereEmbeddingConfig)
+        1    0.000    0.000    0.000    0.000 networking_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 dpo_method.py:11(DpoMethod)
+        1    0.000    0.000    0.000    0.000 image_edit_completed_event.py:38(ImageEditCompletedEvent)
+      169    0.000    0.000    0.000    0.000 enum.py:919()
+        1    0.000    0.000    0.000    0.000 bedrock.py:194(ServiceTierBlock)
+        5    0.000    0.000    0.000    0.000 parse.py:745(parse_qsl)
+       27    0.000    0.000    0.000    0.000 functional_validators.py:145(_from_decorator)
+        1    0.000    0.000    0.000    0.000 console.py:870(end_capture)
+        1    0.000    0.000    0.000    0.000 _IntegerGMP.py:155(IntegerGMP)
+        1    0.000    0.000    0.000    0.000 vector_store_files.py:8(VectorStoreFileStatus)
+        1    0.000    0.000    0.000    0.000 run.py:69(TruncationStrategy)
+        1    0.000    0.000    0.000    0.000 transcription_create_response.py:1()
+        1    0.000    0.000    0.000    0.000 model_param_helper.py:52(_get_all_llm_api_params)
+        1    0.000    0.000    0.000    0.000 supervised_method.py:11(SupervisedMethod)
+        4    0.000    0.000    0.000    0.000 ssl.py:566(set_alpn_protocols)
+        1    0.000    0.000    0.000    0.000 _factories.py:1()
+        1    0.000    0.000    0.000    0.000 helpers.py:738(HeadersMixin)
+        1    0.000    0.000    0.000    0.000 extensions.py:1806(PrecertificateSignedCertificateTimestamps)
+       32    0.000    0.000    0.000    0.000 terminal.py:299()
+        1    0.000    0.000    0.000    0.000 openai.py:1552(OutputTextDeltaEvent)
+        1    0.000    0.000    0.000    0.000 variables.py:18(Atom)
+        2    0.000    0.000    0.000    0.000 _json.py:1()
+        1    0.000    0.000    0.000    0.000 bedrock.py:827(AmazonTitanImageGenerationRequestBody)
+        1    0.000    0.000    0.000    0.000 ansi.py:120(AnsiDecoder)
+        2    0.000    0.000    0.000    0.000 threading.py:849(__init__)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:715(VertexPartnerProvider)
+        1    0.000    0.000    0.000    0.000 _types.py:1369(LiteLLM_SkillsTable)
+        1    0.000    0.000    0.000    0.000 response_input_item.py:229(LocalShellCallOutput)
+        1    0.000    0.000    0.000    0.000 core_v1_endpoint_port.py:1()
+        1    0.000    0.000    0.000    0.000 v1_service_port.py:1()
+        1    0.000    0.000    0.000    0.000 bedrock.py:261(GuardrailConfigBlock)
+        1    0.000    0.000    0.000    0.000 rsa.py:68(RSAPublicKey)
+        1    0.000    0.000    0.000    0.000 core_v1_api.py:27(CoreV1Api)
+        1    0.000    0.000    0.000    0.000 _matrix.py:3(matrix_class)
+        1    0.000    0.000    0.000    0.000 plugins.py:1()
+        1    0.000    0.000    0.000    0.000 guardrails.py:264(GuardrailParamUITypes)
+      176    0.000    0.000    0.000    0.000 dataclasses.py:1152()
+        4    0.000    0.000    0.000    0.000 _strptime.py:26(_getlang)
+        1    0.000    0.000    0.000    0.000 response_output_refusal.py:10(ResponseOutputRefusal)
+        1    0.000    0.000    0.000    0.000 utils.py:259(ModelInfo)
+        1    0.000    0.000    0.000    0.000 openai.py:1644(MCPListToolsInProgressEvent)
+        4    0.000    0.000    0.000    0.000 :907(pop)
+        1    0.000    0.000    0.000    0.000 sslproto.py:27(AppProtocolState)
+        1    0.000    0.000    0.000    0.000 generated.py:365(ToolChoiceType)
+        1    0.000    0.000    0.000    0.000 anthropic.py:566(AnthropicResponseContentBlockRedactedThinking)
+        2    0.000    0.000    0.000    0.000 _subprocesses.py:1()
+        1    0.000    0.000    0.000    0.000 anthropic.py:183(AnthropicMessagesTextParam)
+        1    0.000    0.000    0.000    0.000 response_audio_transcript_delta_event.py:10(ResponseAudioTranscriptDeltaEvent)
+        1    0.000    0.000    0.000    0.000 computer_tool_param.py:1()
+        1    0.000    0.000    0.000    0.000 v1_storage_class.py:21(V1StorageClass)
+        1    0.000    0.000    0.000    0.000 bedrock.py:624(NovaSingleEmbeddingParams)
+        3    0.000    0.000    0.000    0.000 __init__.py:970(find_distributions)
+        1    0.000    0.000    0.000    0.000 platform.py:590(_follow_symlinks)
+        1    0.000    0.000    0.000    0.000 run_step.py:15(LastError)
+        1    0.000    0.000    0.000    0.000 _readers.py:122(ContentLengthReader)
+        1    0.000    0.000    0.000    0.000 parsed_chat_completion.py:30(ParsedChoice)
+        1    0.000    0.000    0.000    0.000 response_input_file.py:11(ResponseInputFile)
+        1    0.000    0.000    0.000    0.000 response_image_gen_call_completed_event.py:10(ResponseImageGenCallCompletedEvent)
+        1    0.000    0.000    0.000    0.000 openai.py:1600(FunctionCallArgumentsDoneEvent)
+        2    0.000    0.000    0.000    0.000 _typedattr.py:25(__init_subclass__)
+        1    0.000    0.000    0.000    0.000 completion.py:22(ChatCompletionContentPartTextParam)
+        1    0.000    0.000    0.000    0.000 vector_store.py:29(ExpiresAfter)
+        3    0.000    0.000    0.000    0.000 socket.py:220(__init__)
+        1    0.000    0.000    0.000    0.000 questions.py:1()
+        1    0.000    0.000    0.000    0.000 futures.py:1()
+      162    0.000    0.000    0.000    0.000 :1363(exec_module)
+        1    0.000    0.000    0.000    0.000 openai.py:1625(WebSearchCallInProgressEvent)
+        1    0.000    0.000    0.000    0.000 handler.py:18(OpenAIRealtime)
+        1    0.000    0.000    0.000    0.000 response_function_call_arguments_done_event.py:10(ResponseFunctionCallArgumentsDoneEvent)
+        1    0.000    0.000    0.000    0.000 litellm_content_filter.py:56(BlockedWordDetection)
+        1    0.000    0.000    0.000    0.000 message_creation_step_details.py:15(MessageCreationStepDetails)
+        1    0.000    0.000    0.000    0.000 model.py:279(StaticContextParameter)
+        1    0.000    0.000    0.000    0.000 exceptions.py:53(TemplatesNotFound)
+      103    0.000    0.000    0.000    0.000 enum.py:116(_iter_bits_lsb)
+        1    0.000    0.000    0.000    0.000 payload_streamer.py:35(_stream_wrapper)
+        1    0.000    0.000    0.000    0.000 utils.py:2598(StandardLoggingHiddenParams)
+      185    0.000    0.000    0.000    0.000 util.py:200(escape_re_range_char)
+        4    0.000    0.000    0.000    0.000 http_handler.py:769(_should_use_aiohttp_transport)
+        1    0.000    0.000    0.000    0.000 code_interpreter_tool_call.py:37(CodeInterpreterOutputImage)
+        1    0.000    0.000    0.000    0.000 openai.py:1433(ResponseInProgressEvent)
+        1    0.000    0.000    0.000    0.000 response_input_item.py:473(McpApprovalResponse)
+        1    0.000    0.000    0.000    0.000 credential_accessor.py:1()
+        3    0.000    0.000    0.000    0.000 __init__.py:90(__init__)
+        1    0.000    0.000    0.000    0.000 response_audio_transcript_done_event.py:10(ResponseAudioTranscriptDoneEvent)
+        1    0.000    0.000    0.000    0.000 _types.py:3831(KeyHealthResponse)
+        3    0.000    0.000    0.000    0.000 _common.py:132(_validate_fromutc_inputs)
+        1    0.000    0.000    0.000    0.000 mcp.py:19(MCPTransport)
+        1    0.000    0.000    0.000    0.000 proxy_cli.py:60(ProxyInitializationHelpers)
+        1    0.000    0.000    0.000    0.000 testing.py:1()
+        1    0.000    0.000    0.000    0.000 search.py:70(ListSearchToolsResponse)
+        2    0.000    0.000    0.000    0.000 console.py:2008(_check_buffer)
+      177    0.000    0.000    0.000    0.000 core.py:1741(leave_whitespace)
+      132    0.000    0.000    0.000    0.000 {method 'fileno' of '_io.TextIOWrapper' objects}
+        1    0.000    0.000    0.000    0.000 scheduler.py:25(Scheduler)
+        2    0.000    0.000    0.000    0.000 sysconfig.py:133(_getuserbase)
+        1    0.000    0.000    0.000    0.000 extensions.py:979(ExtendedKeyUsage)
+        1    0.000    0.000    0.000    0.000 main.py:161(ContainerFileListResponse)
+        1    0.000    0.000    0.000    0.000 init_prompts.py:75(ListPromptsResponse)
+        1    0.000    0.000    0.000    0.000 transformation.py:14(AzureAnthropicConfig)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:118(ThreadRunCompleted)
+        1    0.000    0.000    0.000    0.000 vector_store_files.py:25(VectorStoreFileChunkingStrategy)
+        1    0.000    0.000    0.000    0.000 openai.py:197(CodeInterpreterToolParam)
+        1    0.000    0.000    0.000    0.000 cohere.py:91(CohereV2ChatResponseLogProbs)
+        1    0.000    0.000    0.000    0.000 client_proto.py:25(ResponseHandler)
+        1    0.000    0.000    0.000    0.000 http.py:131(COOP)
+      117    0.000    0.000    0.000    0.000 dataclasses.py:397()
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:160(ThreadRunCancelling)
+        2    0.000    0.000    0.000    0.000 main.py:97(set_as_environment_variables)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:10(SupportedVectorStoreIntegrations)
+        1    0.000    0.000    0.000    0.000 openai.py:624(ChatCompletionImageObject)
+       28    0.000    0.000    0.000    0.000 typing_extensions.py:443(__setattr__)
+        1    0.000    0.000    0.000    0.000 compression_utils.py:153(DecompressionBaseHandler)
+       13    0.000    0.000    0.000    0.000 __init__.py:1646(addHandler)
+        1    0.000    0.000    0.000    0.000 anthropic.py:630(AnthropicThinkingParam)
+        2    0.000    0.000    0.000    0.000 mixins.py:1()
+        1    0.000    0.000    0.000    0.000 console.py:376(PagerContext)
+        1    0.000    0.000    0.000    0.000 langfuse_handler.py:21(LangFuseHandler)
+        1    0.000    0.000    0.000    0.000 response_output_text.py:37(AnnotationURLCitation)
+        9    0.000    0.000    0.000    0.000 typing.py:1931(_allow_reckless_class_checks)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:213(ThreadRunStepInProgress)
+        1    0.000    0.000    0.000    0.000 disk_cache.py:1()
+        1    0.000    0.000    0.000    0.000 openai.py:229(MessageContentTextObject)
+        1    0.000    0.000    0.000    0.000 openai.py:1444(ResponseFailedEvent)
+        1    0.000    0.000    0.000    0.000 datadog.py:45(DatadogProxyFailureHookJsonMessage)
+        1    0.000    0.000    0.000    0.000 tag.py:1()
+        1    0.000    0.000    0.000    0.000 helpers.py:410()
+        1    0.000    0.000    0.000    0.000 transformation.py:24(NLPCloudConfig)
+        3    0.000    0.000    0.000    0.000 subprocess.py:1965(_wait)
+        1    0.000    0.000    0.000    0.000 handler.py:59(PredibaseChatCompletion)
+        1    0.000    0.000    0.000    0.000 http11.py:159(_send_request_body)
+        1    0.000    0.000    0.000    0.000 response_queued_event.py:11(ResponseQueuedEvent)
+      126    0.000    0.000    0.000    0.000 argparse.py:218(__init__)
+        1    0.000    0.000    0.000    0.000 bedrock.py:593(NovaVideoParams)
+        1    0.000    0.000    0.000    0.000 _client.py:99(ClientState)
+        1    0.000    0.000    0.000    0.000 __init__.py:322(Predicate)
+        1    0.000    0.000    0.000    0.000 progress.py:509(ProgressColumn)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:249(ThreadRunStepFailed)
+        1    0.000    0.000    0.000    0.000 _serialization.py:15(PBES)
+       26    0.000    0.000    0.000    0.000 calendar.py:60(__getitem__)
+        1    0.000    0.000    0.000    0.000 v1_role.py:1()
+        1    0.000    0.000    0.000    0.000 main.py:7(ExpiresAfter)
+        1    0.000    0.000    0.000    0.000 adapter.py:1()
+        1    0.000    0.000    0.000    0.000 types.py:22(TextEmbeddingInput)
+        1    0.000    0.000    0.000    0.000 multi_grader.py:18(MultiGrader)
+      103    0.000    0.000    0.000    0.000 dataclasses.py:1052()
+        1    0.000    0.000    0.000    0.000 get_provider_specific_headers.py:6(ProviderSpecificHeaderUtils)
+        1    0.000    0.000    0.000    0.000 response_custom_tool_call.py:11(ResponseCustomToolCall)
+        1    0.000    0.000    0.000    0.000 _make.py:61(_Nothing)
+       11    0.000    0.000    0.000    0.000 typing.py:1006(__typing_subst__)
+        1    0.000    0.000    0.000    0.000 es256.py:1()
+        1    0.000    0.000    0.000    0.000 twelvelabs_marengo_transformation.py:22(TwelveLabsMarengoEmbeddingConfig)
+      166    0.000    0.000    0.000    0.000 rules.py:23(__init__)
+        1    0.000    0.000    0.000    0.000 router.py:32(ModelConfig)
+       27    0.000    0.000    0.000    0.000 inspect.py:310(ismethoddescriptor)
+        2    0.000    0.000    0.000    0.000 collection.py:1()
+        1    0.000    0.000    0.000    0.000 __init__.py:260(EscapeFormatter)
+       42    0.000    0.000    0.000    0.000 _decorators.py:200(__set_name__)
+        1    0.000    0.000    0.000    0.000 style.py:16(_Bit)
+       11    0.000    0.000    0.000    0.000 _connection.py:330(_respond_to_state_changes)
+        1    0.000    0.000    0.000    0.000 utils.py:2067(TextCompletionResponse)
+        1    0.000    0.000    0.000    0.000 chat_completion_modality.py:1()
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:2047(_SpecialForm)
+        1    0.000    0.000    0.000    0.000 datadog.py:11(DataDogStatus)
+        1    0.000    0.000    0.000    0.000 base_health_check.py:6(IntegrationHealthCheckStatus)
+        1    0.000    0.000    0.000    0.000 nodes.py:337(If)
+       10    0.000    0.000    0.000    0.000 _state.py:275(process_event)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call_output_screenshot.py:11(ResponseComputerToolCallOutputScreenshot)
+        1    0.000    0.000    0.000    0.000 _types.py:2079(ConfigFieldUpdate)
+        1    0.000    0.000    0.000    0.000 core.py:4649(IndentedBlock)
+        1    0.000    0.000    0.000    0.000 types.py:23(SpanPayload)
+        1    0.000    0.000    0.000    0.000 nodes.py:347(Macro)
+        1    0.000    0.000    0.000    0.000 v1_ingress_tls.py:1()
+        2    0.000    0.000    0.000    0.000 x25519.py:1()
+        1    0.000    0.000    0.000    0.000 v1_namespace_spec.py:1()
+        1    0.000    0.000    0.000    0.000 uri_validate.py:1()
+        1    0.000    0.000    0.000    0.000 translation_create_response.py:1()
+        1    0.000    0.000    0.000    0.000 auto_file_chunking_strategy_param.py:1()
+        1    0.000    0.000    0.000    0.000 openai.py:1666(MCPCallInProgressEvent)
+        1    0.000    0.000    0.000    0.000 connection_pool.py:15(AsyncPoolRequest)
+        1    0.000    0.000    0.000    0.000 _make.py:2832(__init__)
+        1    0.000    0.000    0.000    0.000 keyboard.py:148(get_keyboard_sequences)
+        1    0.000    0.000    0.000    0.000 datadog_metrics.py:11(DatadogMetricSeries)
+        1    0.000    0.000    0.000    0.000 nodes.py:911(Compare)
+        2    0.000    0.000    0.000    0.000 main.py:75(dict)
+        1    0.000    0.000    0.000    0.000 bedrock.py:363(GenericStreamingChunk)
+        1    0.000    0.000    0.000    0.000 console.py:304(ScreenUpdate)
+        1    0.000    0.000    0.000    0.000 v1_transformation.py:19(CohereEmbeddingConfig)
+        1    0.000    0.000    0.000    0.000 v1_resource_policy_rule.py:1()
+       43    0.000    0.000    0.000    0.000 _helpers.py:42(decorator)
+        1    0.000    0.000    0.000    0.000 helpers.py:119(noop)
+        1    0.000    0.000    0.000    0.000 nodes.py:303(Output)
+        3    0.000    0.000    0.000    0.000 random.py:119(__init__)
+        1    0.000    0.000    0.000    0.000 utils.py:2471(StandardLoggingMCPToolCall)
+        7    0.000    0.000    0.000    0.000 _models.py:130(keys)
+        1    0.000    0.000    0.000    0.000 litellm_content_filter.py:21(CompetitorIntentEvidenceEntry)
+        1    0.000    0.000    0.000    0.000 openai.py:205(Attachment)
+        1    0.000    0.000    0.000    0.000 utils.py:2510(StandardLoggingVectorStoreRequest)
+        1    0.000    0.000    0.000    0.000 tool_choice_shell_param.py:1()
+        1    0.000    0.000    0.000    0.000 openai.py:1492(OutputItemDoneEvent)
+        1    0.000    0.000    0.000    0.000 bedrock.py:813(AmazonNovaCanvasInpaintingRequest)
+        1    0.000    0.000    0.000    0.000 __init__.py:85(InitializedState)
+        3    0.000    0.000    0.000    0.000 {built-in method _ctypes.POINTER}
+        1    0.000    0.000    0.000    0.000 _strptime.py:107(__calc_date_time)
+        1    0.000    0.000    0.000    0.000 nodes.py:319(For)
+        1    0.000    0.000    0.000    0.000 anyio.py:1()
+       15    0.000    0.000    0.000    0.000 _util.py:108(__new__)
+        1    0.000    0.000    0.000    0.000 anthropic.py:560(AnthropicResponseContentBlockThinking)
+        1    0.000    0.000    0.000    0.000 openai.py:1577(RefusalDeltaEvent)
+        1    0.000    0.000    0.000    0.000 _readers.py:210(Http10Reader)
+       14    0.000    0.000    0.000    0.000 calendar.py:79(__getitem__)
+        1    0.000    0.000    0.000    0.000 langsmith.py:40(LangsmithLogger)
+        1    0.000    0.000    0.000    0.000 queues.py:1()
+        1    0.000    0.000    0.000    0.000 openai.py:1468(ReasoningSummaryTextDoneEvent)
+        1    0.000    0.000    0.000    0.000 video_download_content_params.py:1()
+        1    0.000    0.000    0.000    0.000 openai.py:1532(ContentPartDonePartReasoningText)
+        1    0.000    0.000    0.000    0.000 openai.py:1673(MCPCallArgumentsDeltaEvent)
+        1    0.000    0.000    0.000    0.000 file_path_annotation.py:15(FilePathAnnotation)
+        1    0.000    0.000    0.000    0.000 datetime.py:2297(timezone)
+        1    0.000    0.000    0.000    0.000 bedrock.py:882(BedrockRerankInlineDocumentSource)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:443(FineTunesupervisedTuningSpec)
+        1    0.000    0.000    0.000    0.000 openai.py:1461(ReasoningSummaryTextDeltaEvent)
+       25    0.000    0.000    0.000    0.000 ipaddress.py:474(_prefix_from_prefix_string)
+        1    0.000    0.000    0.000    0.000 response_compaction_item_param.py:11(ResponseCompactionItemParam)
+        1    0.000    0.000    0.000    0.000 grader_inputs.py:13(GraderInputItemOutputText)
+        4    0.000    0.000    0.000    0.000 in_memory_cache.py:159(set_cache)
+        1    0.000    0.000    0.000    0.000 openai.py:1593(FunctionCallArgumentsDeltaEvent)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:680(VertexVideoGenerationParameters)
+        1    0.000    0.000    0.000    0.000 bedrock.py:726(AmazonNovaCanvasImageGenerationConfig)
+        7    0.000    0.000    0.000    0.000 _models.py:274(__contains__)
+        1    0.000    0.000    0.000    0.000 http_exceptions.py:11(HttpProcessingError)
+       18    0.000    0.000    0.000    0.000 py3compat.py:145(byte_string)
+        4    0.000    0.000    0.000    0.000 locale.py:593(getlocale)
+        1    0.000    0.000    0.000    0.000 response_function_web_search.py:45(ActionOpenPage)
+        1    0.000    0.000    0.000    0.000 v1_service_port.py:21(V1ServicePort)
+        1    0.000    0.000    0.000    0.000 bedrock.py:642(NovaEmbeddingRequest)
+        1    0.000    0.000    0.000    0.000 openai.py:1560(OutputTextAnnotationAddedEvent)
+      168    0.000    0.000    0.000    0.000 {method 'pop' of 'collections.deque' objects}
+       60    0.000    0.000    0.000    0.000 core.py:791(preParse)
+        1    0.000    0.000    0.000    0.000 bedrock.py:741(AmazonNovaCanvasTextToImageParams)
+        1    0.000    0.000    0.000    0.000 http_exceptions.py:91(InvalidHeader)
+        1    0.000    0.000    0.000    0.000 openai.py:1569(OutputTextDoneEvent)
+        1    0.000    0.000    0.000    0.000 base_model_iterator.py:60(BaseModelResponseIterator)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:258(ServerDisconnectedError)
+        1    0.000    0.000    0.000    0.000 completion_update_params.py:1()
+        1    0.000    0.000    0.000    0.000 bedrock.py:301(PerformanceConfigBlock)
+        1    0.000    0.000    0.000    0.000 bedrock.py:180(ConverseResponseOutputBlock)
+        1    0.000    0.000    0.000    0.000 progress.py:618(TextColumn)
+        1    0.000    0.000    0.000    0.000 response.py:540(HTTPResponse)
+        1    0.000    0.000    0.000    0.000 transformation.py:30(SearchResponse)
+        1    0.000    0.000    0.000    0.000 refusal_content_block.py:10(RefusalContentBlock)
+        1    0.000    0.000    0.000    0.000 response_code_interpreter_call_code_delta_event.py:10(ResponseCodeInterpreterCallCodeDeltaEvent)
+        1    0.000    0.000    0.000    0.000 _functools.py:6(save_method_args)
+        1    0.000    0.000    0.000    0.000 container_network_policy_disabled_param.py:1()
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:574(ParameterType)
+        1    0.000    0.000    0.000    0.000 transcription_diarized_segment.py:10(TranscriptionDiarizedSegment)
+        1    0.000    0.000    0.000    0.000 openai.py:1933(OpenAIRealtimeResponseContentPart)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:260(ThreadRunStepCancelled)
+        1    0.000    0.000    0.000    0.000 vector_store_deleted.py:10(VectorStoreDeleted)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call.py:85(ActionDrag)
+        1    0.000    0.000    0.000    0.000 openai.py:1681(MCPCallArgumentsDoneEvent)
+        1    0.000    0.000    0.000    0.000 response_image_gen_call_generating_event.py:10(ResponseImageGenCallGeneratingEvent)
+        1    0.000    0.000    0.000    0.000 bedrock.py:284(ContentBlockStartEvent)
+        1    0.000    0.000    0.000    0.000 openai.py:1585(RefusalDoneEvent)
+        2    0.000    0.000    0.000    0.000 console.py:2023(_write_buffer)
+        1    0.000    0.000    0.000    0.000 assistant_deleted.py:10(AssistantDeleted)
+       42    0.000    0.000    0.000    0.000 _decorators.py:204(__getattr__)
+       91    0.000    0.000    0.000    0.000 enum.py:1193(__str__)
+        1    0.000    0.000    0.000    0.000 openai.py:1718(ErrorEvent)
+        1    0.000    0.000    0.000    0.000 response_output_text_annotation_added_event.py:10(ResponseOutputTextAnnotationAddedEvent)
+        1    0.000    0.000    0.000    0.000 response_format_text_python.py:10(ResponseFormatTextPython)
+        2    0.000    0.000    0.000    0.000 response_format_text.py:10(ResponseFormatText)
+        1    0.000    0.000    0.000    0.000 response_mcp_call_in_progress_event.py:10(ResponseMcpCallInProgressEvent)
+        1    0.000    0.000    0.000    0.000 payload.py:66(Order)
+        1    0.000    0.000    0.000    0.000 _types.py:828(ProviderInfo)
+        1    0.000    0.000    0.000    0.000 openai.py:1651(MCPListToolsCompletedEvent)
+        1    0.000    0.000    0.000    0.000 file_citation_annotation.py:15(FileCitationAnnotation)
+        1    0.000    0.000    0.000    0.000 response_web_search_call_completed_event.py:10(ResponseWebSearchCallCompletedEvent)
+        1    0.000    0.000    0.000    0.000 utils.py:114(ProviderField)
+        1    0.000    0.000    0.000    0.000 model.py:10(Model)
+        3    0.000    0.000    0.000    0.000 datetime.py:1677(__new__)
+        1    0.000    0.000    0.000    0.000 retryhandler.py:1()
+        1    0.000    0.000    0.000    0.000 openai.py:1613(FileSearchCallSearchingEvent)
+        1    0.000    0.000    0.000    0.000 image_file_content_block.py:11(ImageFileContentBlock)
+        1    0.000    0.000    0.000    0.000 response_mcp_list_tools_completed_event.py:10(ResponseMcpListToolsCompletedEvent)
+        1    0.000    0.000    0.000    0.000 response_code_interpreter_call_in_progress_event.py:10(ResponseCodeInterpreterCallInProgressEvent)
+        1    0.000    0.000    0.000    0.000 computer_action.py:92(Keypress)
+        1    0.000    0.000    0.000    0.000 response_output_text.py:21(AnnotationFileCitation)
+       54    0.000    0.000    0.000    0.000 _utils.py:47(normalize_header_value)
+        1    0.000    0.000    0.000    0.000 rag.py:115(VertexAIVectorStoreOptions)
+        1    0.000    0.000    0.000    0.000 response_file_search_call_completed_event.py:10(ResponseFileSearchCallCompletedEvent)
+        1    0.000    0.000    0.000    0.000 response_code_interpreter_call_code_done_event.py:10(ResponseCodeInterpreterCallCodeDoneEvent)
+        1    0.000    0.000    0.000    0.000 response_function_web_search.py:19(ActionSearchSource)
+        2    0.000    0.000    0.000    0.000 linecache.py:147(lazycache)
+        1    0.000    0.000    0.000    0.000 v1_env_from_source.py:21(V1EnvFromSource)
+        1    0.000    0.000    0.000    0.000 openai.py:1607(FileSearchCallInProgressEvent)
+        1    0.000    0.000    0.000    0.000 response_code_interpreter_call_interpreting_event.py:10(ResponseCodeInterpreterCallInterpretingEvent)
+        1    0.000    0.000    0.000    0.000 response_mcp_call_arguments_done_event.py:10(ResponseMcpCallArgumentsDoneEvent)
+        1    0.000    0.000    0.000    0.000 response_mcp_call_arguments_delta_event.py:10(ResponseMcpCallArgumentsDeltaEvent)
+        4    0.000    0.000    0.000    0.000 types.py:1174(__hash__)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:47(LiteLLM_ManagedVectorStoreListResponse)
+        1    0.000    0.000    0.000    0.000 openai.py:1703(ImageGenerationPartialImageEvent)
+        1    0.000    0.000    0.000    0.000 response_image_gen_call_partial_image_event.py:10(ResponseImageGenCallPartialImageEvent)
+        1    0.000    0.000    0.000    0.000 response_reasoning_summary_text_delta_event.py:10(ResponseReasoningSummaryTextDeltaEvent)
+        1    0.000    0.000    0.000    0.000 color_triplet.py:4(ColorTriplet)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:132(ThreadRunIncomplete)
+        1    0.000    0.000    0.000    0.000 run_step_delta_event.py:11(RunStepDeltaEvent)
+        1    0.000    0.000    0.000    0.000 response_code_interpreter_call_completed_event.py:10(ResponseCodeInterpreterCallCompletedEvent)
+        1    0.000    0.000    0.000    0.000 response_function_shell_tool_call_output.py:57(ResponseFunctionShellToolCallOutput)
+        3    0.000    0.000    0.000    0.000 pathlib.py:1112(mkdir)
+        1    0.000    0.000    0.000    0.000 openai.py:1619(FileSearchCallCompletedEvent)
+        1    0.000    0.000    0.000    0.000 response_reasoning_summary_text_done_event.py:10(ResponseReasoningSummaryTextDoneEvent)
+        1    0.000    0.000    0.000    0.000 response_reasoning_summary_part_done_event.py:10(Part)
+        1    0.000    0.000    0.000    0.000 runners.py:15(_State)
+        1    0.000    0.000    0.000    0.000 transcription.py:52(UsageDuration)
+        1    0.000    0.000    0.000    0.000 openai.py:1512(ContentPartAddedEvent)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:282(ThreadMessageCreated)
+        1    0.000    0.000    0.000    0.000 response_mcp_list_tools_in_progress_event.py:10(ResponseMcpListToolsInProgressEvent)
+        1    0.000    0.000    0.000    0.000 response_reasoning_text_delta_event.py:10(ResponseReasoningTextDeltaEvent)
+        1    0.000    0.000    0.000    0.000 response_custom_tool_call_input_done_event.py:10(ResponseCustomToolCallInputDoneEvent)
+        1    0.000    0.000    0.000    0.000 chat_completion_deleted.py:10(ChatCompletionDeleted)
+        1    0.000    0.000    0.000    0.000 openai.py:1696(MCPCallFailedEvent)
+        1    0.000    0.000    0.000    0.000 response_custom_tool_call_input_delta_event.py:10(ResponseCustomToolCallInputDeltaEvent)
+        1    0.000    0.000    0.000    0.000 response_reasoning_summary_part_added_event.py:20(ResponseReasoningSummaryPartAddedEvent)
+        1    0.000    0.000    0.000    0.000 warnings.py:1()
+      118    0.000    0.000    0.000    0.000 {method 'insert' of 'list' objects}
+        1    0.000    0.000    0.000    0.000 _types.py:3066(SpecialModelNames)
+        1    0.000    0.000    0.000    0.000 openai.py:1631(WebSearchCallSearchingEvent)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:271(ThreadRunStepExpired)
+        1    0.000    0.000    0.000    0.000 code_interpreter_tool.py:10(CodeInterpreterTool)
+        1    0.000    0.000    0.000    0.000 response_mcp_list_tools_failed_event.py:10(ResponseMcpListToolsFailedEvent)
+        1    0.000    0.000    0.000    0.000 response_reasoning_text_done_event.py:10(ResponseReasoningTextDoneEvent)
+       38    0.000    0.000    0.000    0.000 {method 'strftime' of 'datetime.date' objects}
+    82/80    0.000    0.000    0.000    0.000 results.py:173(__init__)
+        1    0.000    0.000    0.000    0.000 openai.py:1947(OpenAIRealtimeResponseContentPartAdded)
+        1    0.000    0.000    0.000    0.000 openai.py:1689(MCPCallCompletedEvent)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:238(ThreadRunStepCompleted)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:188(ThreadRunExpired)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:324(ThreadMessageCompleted)
+        1    0.000    0.000    0.000    0.000 response_function_call_arguments_delta_event.py:10(ResponseFunctionCallArgumentsDeltaEvent)
+        2    0.000    0.000    0.000    0.000 response_format_json_object.py:10(ResponseFormatJSONObject)
+        1    0.000    0.000    0.000    0.000 response_code_interpreter_tool_call.py:12(OutputLogs)
+        1    0.000    0.000    0.000    0.000 openai.py:1637(WebSearchCallCompletedEvent)
+        1    0.000    0.000    0.000    0.000 response_output_text.py:78(AnnotationFilePath)
+        1    0.000    0.000    0.000    0.000 litellm_content_filter.py:42(DetectionType)
+        1    0.000    0.000    0.000    0.000 litellm_content_filter.py:71(CompetitorIntentDetection)
+        1    0.000    0.000    0.000    0.000 response_web_search_call_in_progress_event.py:10(ResponseWebSearchCallInProgressEvent)
+        4    0.000    0.000    0.000    0.000 uuid.py:139(__init__)
+        2    0.000    0.000    0.000    0.000 ed25519.py:1()
+        1    0.000    0.000    0.000    0.000 generated.py:359(MediaResolution)
+        1    0.000    0.000    0.000    0.000 code_interpreter_tool_param.py:1()
+        1    0.000    0.000    0.000    0.000 response_file_search_call_searching_event.py:10(ResponseFileSearchCallSearchingEvent)
+        1    0.000    0.000    0.000    0.000 skill.py:10(Skill)
+        1    0.000    0.000    0.000    0.000 vertex_imagen_transformation.py:1()
+        1    0.000    0.000    0.000    0.000 guardrails.py:83(Role)
+        1    0.000    0.000    0.000    0.000 image_url_content_block.py:11(ImageURLContentBlock)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:90(ThreadRunInProgress)
+        1    0.000    0.000    0.000    0.000 response_image_gen_call_in_progress_event.py:10(ResponseImageGenCallInProgressEvent)
+        1    0.000    0.000    0.000    0.000 response_function_shell_call_output_content.py:19(OutcomeExit)
+        1    0.000    0.000    0.000    0.000 tool.py:304(LocalShell)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_spec.py:1()
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:76(ThreadRunQueued)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:352(ErrorEvent)
+        1    0.000    0.000    0.000    0.000 response_input_text.py:10(ResponseInputText)
+        1    0.000    0.000    0.000    0.000 utils.py:2612(StandardLoggingModelInformation)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:296(ThreadMessageInProgress)
+        1    0.000    0.000    0.000    0.000 run.py:56(RequiredAction)
+        1    0.000    0.000    0.000    0.000 response_reasoning_summary_part_done_event.py:20(ResponseReasoningSummaryPartDoneEvent)
+        1    0.000    0.000    0.000    0.000 chat_completion_content_part_image.py:23(ChatCompletionContentPartImage)
+        1    0.000    0.000    0.000    0.000 openai.py:2020(OpenAIRealtimeDoneEvent)
+        1    0.000    0.000    0.000    0.000 computer_action.py:124(Screenshot)
+        4    0.000    0.000    0.000    0.000 http_handler.py:172(get_ssl_verify)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:174(ThreadRunCancelled)
+        1    0.000    0.000    0.000    0.000 message_deleted.py:10(MessageDeleted)
+        1    0.000    0.000    0.000    0.000 response_reasoning_item.py:11(Summary)
+        1    0.000    0.000    0.000    0.000 response_input_item.py:454(McpApprovalRequest)
+        1    0.000    0.000    0.000    0.000 openai.py:1544(ContentPartDoneEvent)
+        1    0.000    0.000    0.000    0.000 openai.py:1658(MCPListToolsFailedEvent)
+        1    0.000    0.000    0.000    0.000 computer_tool.py:10(ComputerTool)
+        1    0.000    0.000    0.000    0.000 deleted_skill.py:10(DeletedSkill)
+        1    0.000    0.000    0.000    0.000 response_output_text.py:56(AnnotationContainerFileCitation)
+        1    0.000    0.000    0.000    0.000 subprocess.py:695(_use_posix_spawn)
+        1    0.000    0.000    0.000    0.000 _asymmetric.py:1()
+        1    0.000    0.000    0.000    0.000 computer_action.py:156(Type)
+        1    0.000    0.000    0.000    0.000 computer_action.py:134(Scroll)
+        1    0.000    0.000    0.000    0.000 v1_node_spec.py:1()
+        1    0.000    0.000    0.000    0.000 client_reqrep.py:131(RequestInfo)
+        1    0.000    0.000    0.000    0.000 utils.py:1818(ModelResponse)
+        1    0.000    0.000    0.000    0.000 response_function_shell_call_output_content.py:12(OutcomeTimeout)
+        1    0.000    0.000    0.000    0.000 response_format_json_schema.py:45(ResponseFormatJSONSchema)
+        1    0.000    0.000    0.000    0.000 extensions.py:98(ExtensionType)
+        1    0.000    0.000    0.000    0.000 openai.py:2113(OpenAIBatchResponse)
+      111    0.000    0.000    0.000    0.000 _make.py:1771()
+        1    0.000    0.000    0.000    0.000 _strptime.py:83()
+       94    0.000    0.000    0.000    0.000 __init__.py:1273(append)
+        1    0.000    0.000    0.000    0.000 openai.py:521(ChatCompletionCachedContent)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:104(ThreadRunRequiresAction)
+        1    0.000    0.000    0.000    0.000 response_reasoning_item.py:21(Content)
+        1    0.000    0.000    0.000    0.000 response_input_item.py:325(ApplyPatchCallOperationCreateFile)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:146(ThreadRunFailed)
+        1    0.000    0.000    0.000    0.000 response_code_interpreter_tool_call.py:22(OutputImage)
+        1    0.000    0.000    0.000    0.000 response_function_web_search.py:55(ActionFind)
+        2    0.000    0.000    0.000    0.000 main.py:289(resolve_variables)
+        1    0.000    0.000    0.000    0.000 types.py:60(Environment)
+        1    0.000    0.000    0.000    0.000 response_input_item.py:338(ApplyPatchCallOperationDeleteFile)
+        1    0.000    0.000    0.000    0.000 streams.py:653(DataQueue)
+        1    0.000    0.000    0.000    0.000 fine_tuning_job_wandb_integration_object.py:11(FineTuningJobWandbIntegrationObject)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:202(ThreadRunStepCreated)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:338(ThreadMessageIncomplete)
+        1    0.000    0.000    0.000    0.000 computer_action.py:108(Move)
+        1    0.000    0.000    0.000    0.000 highlighter.py:17(Highlighter)
+        1    0.000    0.000    0.000    0.000 computer_action.py:169(Wait)
+        1    0.000    0.000    0.000    0.000 _types.py:2075(PassThroughEndpointResponse)
+        1    0.000    0.000    0.000    0.000 mcp.py:25(MCPSpecVersion)
+      8/4    0.000    0.000    0.000    0.000 typing.py:1481()
+        1    0.000    0.000    0.000    0.000 compression_utils.py:258(ZLibDecompressor)
+        2    0.000    0.000    0.000    0.000 x448.py:1()
+        1    0.000    0.000    0.000    0.000 _models.py:326(__init__)
+        1    0.000    0.000    0.000    0.000 response_input_item.py:348(ApplyPatchCallOperationUpdateFile)
+        1    0.000    0.000    0.000    0.000 anthropic.py:259(AnthropicCitationPageLocation)
+        1    0.000    0.000    0.000    0.000 _compression.py:1()
+      122    0.000    0.000    0.000    0.000 {method '__format__' of 'str' objects}
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:113(FunctionDeclaration)
+        1    0.000    0.000    0.000    0.000 connector.py:116(_DeprecationWaiter)
+        1    0.000    0.000    0.000    0.000 pagination.py:25(SyncPage)
+      149    0.000    0.000    0.000    0.000 functools.py:972(__set_name__)
+        2    0.000    0.000    0.000    0.000 _typing_extra.py:73()
+        1    0.000    0.000    0.000    0.000 tool_choice_apply_patch_param.py:1()
+        1    0.000    0.000    0.000    0.000 skill_update_params.py:1()
+        1    0.000    0.000    0.000    0.000 gemini.py:22(GeminiFilesSource)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:230(VectorStoreIndexType)
+        1    0.000    0.000    0.000    0.000 bedrock.py:9(CachePointBlock)
+        1    0.000    0.000    0.000    0.000 __init__.py:264(_reset_cache)
+        1    0.000    0.000    0.000    0.000 v1_ephemeral_container.py:1()
+        2    0.000    0.000    0.000    0.000 datetime.py:765(__neg__)
+      129    0.000    0.000    0.000    0.000 {method 'pop' of 'set' objects}
+        1    0.000    0.000    0.000    0.000 generated.py:382(ResponseModality)
+        1    0.000    0.000    0.000    0.000 openai.py:460(ListBatchRequest)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:206(IndexCreateRequest)
+        1    0.000    0.000    0.000    0.000 _types.py:1095(MCPApprovalStatus)
+       54    0.000    0.000    0.000    0.000 parse.py:827(__getattr__)
+       15    0.000    0.000    0.000    0.000 main.py:826(__getattr__)
+        1    0.000    0.000    0.000    0.000 utils.py:3316(LITELLM_IMAGE_VARIATION_PROVIDERS)
+        1    0.000    0.000    0.000    0.000 filesize.py:1()
+        1    0.000    0.000    0.000    0.000 resource_v1alpha3_api.py:1()
+        1    0.000    0.000    0.000    0.000 base.py:139(Version)
+        1    0.000    0.000    0.000    0.000 certificate_transparency.py:14(LogEntryType)
+        1    0.000    0.000    0.000    0.000 ai.py:23(ai)
+        1    0.000    0.000    0.000    0.000 configuration.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:2625(LiteLLM_OrganizationTableUpdate)
+        1    0.000    0.000    0.000    0.000 datadog_metrics.py:19(DatadogMetricsPayload)
+        1    0.000    0.000    0.000    0.000 response_conversation_param_param.py:1()
+        1    0.000    0.000    0.000    0.000 _discriminated_union.py:1()
+        1    0.000    0.000    0.000    0.000 http.py:124(COEP)
+      130    0.000    0.000    0.000    0.000 core.py:3992()
+       12    0.000    0.000    0.000    0.000 core.py:286(wrapper)
+        3    0.000    0.000    0.000    0.000 __init__.py:1460(setLevel)
+        1    0.000    0.000    0.000    0.000 streams.py:77(AsyncStreamReaderMixin)
+        1    0.000    0.000    0.000    0.000 _null_file.py:1()
+        1    0.000    0.000    0.000    0.000 response_item.py:127(McpListTools)
+        1    0.000    0.000    0.000    0.000 http.py:823(HttpRequest)
+        1    0.000    0.000    0.000    0.000 core.py:2463(Keyword)
+        3    0.000    0.000    0.000    0.000 six.py:236(create_module)
+        2    0.000    0.000    0.000    0.000 main.py:91(parse)
+        1    0.000    0.000    0.000    0.000 streaming_iterator.py:889(ManagedResponsesWebSocketHandler)
+        1    0.000    0.000    0.000    0.000 extensions.py:1081(TLSFeatureType)
+        1    0.000    0.000    0.000    0.000 response_output_item.py:147(McpListTools)
+        3    0.000    0.000    0.000    0.000 __init__.py:985(_search_paths)
+        1    0.000    0.000    0.000    0.000 openai.py:113(NotGiven)
+        1    0.000    0.000    0.000    0.000 exceptions.py:8(FrozenError)
+        1    0.000    0.000    0.000    0.000 ssl.py:477(Purpose)
+        1    0.000    0.000    0.000    0.000 client_credentials.py:1()
+        3    0.000    0.000    0.000    0.000 console.py:966(is_dumb_terminal)
+        1    0.000    0.000    0.000    0.000 _logging.py:162(_get_standard_record_attrs)
+        1    0.000    0.000    0.000    0.000 litellm_agent_model_resolver.py:1()
+        1    0.000    0.000    0.000    0.000 qdrant_semantic_cache.py:1()
+        1    0.000    0.000    0.000    0.000 _adapters.py:42(CompatibilityFiles)
+        1    0.000    0.000    0.000    0.000 invoke_handler.py:1775(AmazonDeepSeekR1StreamDecoder)
+        1    0.000    0.000    0.000    0.000 block_code_execution.py:31(CodeBlockDetection)
+        1    0.000    0.000    0.000    0.000 handler.py:23(VertexAIBatchPrediction)
+        1    0.000    0.000    0.000    0.000 run_step_include.py:1()
+       37    0.000    0.000    0.000    0.000 fields.py:928(__set_name__)
+       21    0.000    0.000    0.000    0.000 argparse.py:989(__init__)
+        1    0.000    0.000    0.000    0.000 open_inference.py:381(OpenInferenceMimeTypeValues)
+       18    0.000    0.000    0.000    0.000 results.py:451(__iadd__)
+        7    0.000    0.000    0.000    0.000 {built-in method _warnings.warn}
+        1    0.000    0.000    0.000    0.000 external_account_authorized_user.py:49(Credentials)
+        1    0.000    0.000    0.000    0.000 base_subprocess.py:1()
+       21    0.000    0.000    0.000    0.000 _generics.py:367(check_parameters_count)
+        2    0.000    0.000    0.000    0.000 argparse.py:2510()
+        2    0.000    0.000    0.000    0.000 random.py:128(seed)
+        1    0.000    0.000    0.000    0.000 _types.py:960(GenerateKeyResponse)
+        4    0.000    0.000    0.000    0.000 core.py:5093(__init__)
+      127    0.000    0.000    0.000    0.000 core.py:2412(__getnewargs__)
+        1    0.000    0.000    0.000    0.000 guardrails.py:515(ContentFilterAction)
+        1    0.000    0.000    0.000    0.000 structures.py:110(MultiDict)
+        1    0.000    0.000    0.000    0.000 lexer.py:254(Failure)
+        1    0.000    0.000    0.000    0.000 helpers.py:658(OpAssoc)
+        1    0.000    0.000    0.000    0.000 unicode.py:31(unicode_set)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_class_spec.py:1()
+       20    0.000    0.000    0.000    0.000 dataclasses.py:1128(_get_slots)
+       22    0.000    0.000    0.000    0.000 :254(_requires_builtin_wrapper)
+        1    0.000    0.000    0.000    0.000 sync.py:185(SyncBackend)
+        7    0.000    0.000    0.000    0.000 __init__.py:815(mtime)
+       34    0.000    0.000    0.000    0.000 ipaddress.py:1888(_split_scope_id)
+        1    0.000    0.000    0.000    0.000 exception_mapping_utils.py:1()
+        1    0.000    0.000    0.000    0.000 cost_calculator.py:2110(BaseTokenUsageProcessor)
+        1    0.000    0.000    0.000    0.000 transcription_include.py:1()
+        3    0.000    0.000    0.000    0.000 core.py:1634(__invert__)
+        1    0.000    0.000    0.000    0.000 gemini.py:220(GeminiImageGenerationPrediction)
+        1    0.000    0.000    0.000    0.000 base.py:119(Attributes)
+        1    0.000    0.000    0.000    0.000 create_embedding_response.py:22(CreateEmbeddingResponse)
+       18    0.000    0.000    0.000    0.000 socket.py:99(_intenum_converter)
+        1    0.000    0.000    0.000    0.000 cohere.py:60(CohereV2ChatResponseMessageContent)
+        4    0.000    0.000    0.000    0.000 _IntegerGMP.py:388(__mul__)
+        1    0.000    0.000    0.000    0.000 anthropic.py:396(ContentCitationsBlockDelta)
+        5    0.000    0.000    0.000    0.000 __init__.py:194(__init_subclass__)
+        1    0.000    0.000    0.000    0.000 auto.py:1()
+        1    0.000    0.000    0.000    0.000 router.py:707(RouterCacheEnum)
+        1    0.000    0.000    0.000    0.000 main.py:52(GenericResponseOutputItem)
+       33    0.000    0.000    0.000    0.000 argparse.py:1405(set_defaults)
+        3    0.000    0.000    0.000    0.000 runtime.py:136(_dict_method_all)
+       36    0.000    0.000    0.000    0.000 _make.py:1126(_attach_eq)
+        2    0.000    0.000    0.000    0.000 {method 'update' of 'collections.OrderedDict' objects}
+        1    0.000    0.000    0.000    0.000 vertex_and_google_ai_studio_gemini.py:2469(VertexLLM)
+       34    0.000    0.000    0.000    0.000 dataclasses.py:327(__set_name__)
+        1    0.000    0.000    0.000    0.000 amazon_stability1_transformation.py:1()
+        2    0.000    0.000    0.000    0.000 function_parameters.py:1()
+        2    0.000    0.000    0.000    0.000 ed448.py:1()
+        1    0.000    0.000    0.000    0.000 anthropic.py:498(MessageBlockDelta)
+        1    0.000    0.000    0.000    0.000 guardrails.py:789(Guardrail)
+        1    0.000    0.000    0.000    0.000 http_proxy.py:56(AsyncHTTPProxy)
+        1    0.000    0.000    0.000    0.000 transformation.py:19(LemonadeChatConfig)
+        1    0.000    0.000    0.000    0.000 agents.py:179(AgentConfig)
+        3    0.000    0.000    0.000    0.000 configfile.py:479()
+        1    0.000    0.000    0.000    0.000 revocation.py:1()
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:301(InvalidURL)
+       56    0.000    0.000    0.000    0.000 _discriminated_union.py:487(_set_unique_choice_for_values)
+        2    0.000    0.000    0.000    0.000 pathlib.py:766(__truediv__)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:125(VectorStoreAutoChunkingStrategy)
+        1    0.000    0.000    0.000    0.000 search.py:30(SearchTool)
+        1    0.000    0.000    0.000    0.000 chat_completion_token_logprob.py:31(ChatCompletionTokenLogprob)
+        2    0.000    0.000    0.000    0.000 {method 'set_ciphers' of '_ssl._SSLContext' objects}
+        1    0.000    0.000    0.000    0.000 v1_service_spec.py:21(V1ServiceSpec)
+        1    0.000    0.000    0.000    0.000 databricks.py:34(DatabricksReasoningSummary)
+        1    0.000    0.000    0.000    0.000 v1_ip_address_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy.py:1()
+        1    0.000    0.000    0.000    0.000 gemini.py:318(GeminiGenerateVideoResponse)
+        1    0.000    0.000    0.000    0.000 anthropic.py:273(AnthropicCitationCharLocation)
+        1    0.000    0.000    0.000    0.000 agents.py:56(HTTPAuthSecurityScheme)
+        1    0.000    0.000    0.000    0.000 _strptime.py:90()
+        1    0.000    0.000    0.000    0.000 core.py:39(__init__)
+        1    0.000    0.000    0.000    0.000 bedrock.py:319(OutputFormat)
+        1    0.000    0.000    0.000    0.000 _types.py:4041(ClientSideFallbackModel)
+        2    0.000    0.000    0.000    0.000 sysconfig.py:142(joinuser)
+        1    0.000    0.000    0.000    0.000 oci.py:292(CohereChatRequest)
+        1    0.000    0.000    0.000    0.000 anthropic.py:232(AnthropicContentParamSourceFileId)
+        5    0.000    0.000    0.000    0.000 __init__.py:576(__init__)
+        1    0.000    0.000    0.000    0.000 distro.py:663(__init__)
+        1    0.000    0.000    0.000    0.000 v1_resource_status.py:1()
+        1    0.000    0.000    0.000    0.000 vector_stores.py:138(VectorStoreStaticChunkingStrategy)
+        1    0.000    0.000    0.000    0.000 factory.py:4293(BedrockConverseMessagesProcessor)
+        1    0.000    0.000    0.000    0.000 anthropic.py:221(AnthropicContentParamSource)
+        1    0.000    0.000    0.000    0.000 litellm_content_filter.py:63(CategoryKeywordDetection)
+        1    0.000    0.000    0.000    0.000 anthropic.py:410(ContentThinkingBlockDelta)
+        1    0.000    0.000    0.000    0.000 anthropic.py:520(MessageStartBlock)
+        1    0.000    0.000    0.000    0.000 agents.py:79(OAuth2SecurityScheme)
+        1    0.000    0.000    0.000    0.000 _models.py:633(_get_content_decoder)
+        2    0.000    0.000    0.000    0.000 dall_e_3_transformation.py:1()
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment_spec.py:1()
+        1    0.000    0.000    0.000    0.000 generated.py:47(Language)
+        1    0.000    0.000    0.000    0.000 transformation.py:35(SagemakerConfig)
+        1    0.000    0.000    0.000    0.000 v1_capabilities.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:3676(MemberDeleteRequest)
+        1    0.000    0.000    0.000    0.000 utils.py:3470(ServiceTier)
+        1    0.000    0.000    0.000    0.000 openai.py:1977(OpenAIRealtimeResponseAudioDone)
+        1    0.000    0.000    0.000    0.000 openai.py:1996(OpenAIRealtimeOutputItemDone)
+        1    0.000    0.000    0.000    0.000 v1_probe.py:1()
+        1    0.000    0.000    0.000    0.000 introspect.py:1()
+        1    0.000    0.000    0.000    0.000 gemini.py:206(GeminiImageGenerationRequest)
+        1    0.000    0.000    0.000    0.000 bedrock.py:858(BedrockRerankQuery)
+        1    0.000    0.000    0.000    0.000 _types.py:2858(LiteLLM_EndUserTable)
+        1    0.000    0.000    0.000    0.000 redis_cluster_cache.py:1()
+        1    0.000    0.000    0.000    0.000 openai.py:1967(OpenAIRealtimeResponseTextDone)
+        1    0.000    0.000    0.000    0.000 parse.py:374(urlparse)
+      106    0.000    0.000    0.000    0.000 typing.py:2016()
+        1    0.000    0.000    0.000    0.000 schema.py:71(Schemas)
+        1    0.000    0.000    0.000    0.000 agents.py:64(MutualTLSSecurityScheme)
+        1    0.000    0.000    0.000    0.000 openai.py:1986(OpenAIRealtimeContentPartDone)
+        1    0.000    0.000    0.000    0.000 openai.py:695(OpenAIChatCompletionUserMessage)
+        1    0.000    0.000    0.000    0.000 refresh_token.py:1()
+      126    0.000    0.000    0.000    0.000 _make.py:1559()
+        1    0.000    0.000    0.000    0.000 v1_role.py:21(V1Role)
+        1    0.000    0.000    0.000    0.000 bedrock.py:873(BedrockRerankConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_security_context.py:1()
+        1    0.000    0.000    0.000    0.000 vector_store_files.py:68(VectorStoreFileDeleteResponse)
+        1    0.000    0.000    0.000    0.000 bedrock.py:888(BedrockRerankSource)
+        7    0.000    0.000    0.000    0.000 __init__.py:256(_register_at_fork_reinit_lock)
+        1    0.000    0.000    0.000    0.000 {method 'split' of 'bytearray' objects}
+        1    0.000    0.000    0.000    0.000 bedrock.py:753(AmazonNovaCanvasTextToImageRequest)
+        1    0.000    0.000    0.000    0.000 agents.py:87(OpenIdConnectSecurityScheme)
+        1    0.000    0.000    0.000    0.000 anthropic.py:419(ContentThinkingSignatureBlockDelta)
+       65    0.000    0.000    0.000    0.000 enum.py:809(__members__)
+        1    0.000    0.000    0.000    0.000 logging.py:1()
+        1    0.000    0.000    0.000    0.000 openai.py:1902(OpenAIRealtimeStreamResponseOutputItemAdded)
+        1    0.000    0.000    0.000    0.000 anthropic.py:466(ContentBlockStartToolUse)
+        1    0.000    0.000    0.000    0.000 aleph_alpha.py:25(AlephAlphaConfig)
+        1    0.000    0.000    0.000    0.000 openai.py:599(ChatCompletionAnnotation)
+        1    0.000    0.000    0.000    0.000 _types.py:3665(TeamAddMemberResponse)
+        1    0.000    0.000    0.000    0.000 router.py:532(SearchToolLiteLLMParams)
+        1    0.000    0.000    0.000    0.000 anthropic.py:440(ContentBlockStop)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_class_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 moderation_create_response.py:11(ModerationCreateResponse)
+       23    0.000    0.000    0.000    0.000 core.py:4295()
+        2    0.000    0.000    0.000    0.000 subprocess.py:1641(_get_handles)
+        6    0.000    0.000    0.000    0.000 __init__.py:127(mutator)
+        5    0.000    0.000    0.000    0.000 pathlib.py:1009(stat)
+        1    0.000    0.000    0.000    0.000 markdown.py:362(ListItem)
+        1    0.000    0.000    0.000    0.000 lheading.py:1()
+      109    0.000    0.000    0.000    0.000 _make.py:459()
+        1    0.000    0.000    0.000    0.000 _utils.py:24()
+      110    0.000    0.000    0.000    0.000 ipaddress.py:574(__int__)
+        1    0.000    0.000    0.000    0.000 run.py:49(RequiredActionSubmitToolOutputs)
+        2    0.000    0.000    0.000    0.000 thread.py:123(__init__)
+        3    0.000    0.000    0.000    0.000 core.py:4953(__init__)
+        1    0.000    0.000    0.000    0.000 http_parser.py:772(HttpPayloadParser)
+        1    0.000    0.000    0.000    0.000 _monitor.py:12(__init__)
+        1    0.000    0.000    0.000    0.000 resource_owner_password_credentials.py:1()
+        1    0.000    0.000    0.000    0.000 writer.py:1()
+        1    0.000    0.000    0.000    0.000 response_output_text.py:107(Logprob)
+        8    0.000    0.000    0.000    0.000 llm_caching_handler.py:22(update_cache_key_with_event_loop)
+        1    0.000    0.000    0.000    0.000 _types.py:1558(UpdateCustomerRequest)
+        1    0.000    0.000    0.000    0.000 vector_store_files.py:79(VectorStoreFileContentResponse)
+        1    0.000    0.000    0.000    0.000 _client.py:461(AsyncOpenAI)
+        1    0.000    0.000    0.000    0.000 annotated_handlers.py:1()
+        1    0.000    0.000    0.000    0.000 spawnbase.py:1()
+       42    0.000    0.000    0.000    0.000 {method 'tolist' of 'memoryview' objects}
+        1    0.000    0.000    0.000    0.000 v1_network_policy_port.py:1()
+        1    0.000    0.000    0.000    0.000 transports.py:1()
+        1    0.000    0.000    0.000    0.000 credential_accessor.py:9(CredentialAccessor)
+       37    0.000    0.000    0.000    0.000 _compat.py:28(_get_annotations)
+        1    0.000    0.000    0.000    0.000 core.py:681(nodes)
+       36    0.000    0.000    0.000    0.000 _make.py:1051(attach_hash)
+        5    0.000    0.000    0.000    0.000 decorators.py:216(decorator)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:57(VectorStoreUpdateRequest)
+        4    0.000    0.000    0.000    0.000 utils.py:1441(instance_cache)
+        1    0.000    0.000    0.000    0.000 _types.py:1531(NewCustomerRequest)
+        1    0.000    0.000    0.000    0.000 get_model_cost_map.py:1()
+        6    0.000    0.000    0.000    0.000 functools.py:191()
+        1    0.000    0.000    0.000    0.000 __init__.py:292(__init__)
+        1    0.000    0.000    0.000    0.000 threading.py:1044(_stop)
+        7    0.000    0.000    0.000    0.000 _models.py:131()
+        1    0.000    0.000    0.000    0.000 keyboard.py:197(get_leading_prefixes)
+        1    0.000    0.000    0.000    0.000 v1_csi_driver_spec.py:1()
+       26    0.000    0.000    0.000    0.000 _readers.py:43(_obsolete_line_fold)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_class_spec.py:21(V1beta1DeviceClassSpec)
+       16    0.000    0.000    0.000    0.000 _generics.py:162(_get_caller_frame_info)
+        1    0.000    0.000    0.000    0.000 datetime.py:573(timedelta)
+        1    0.000    0.000    0.000    0.000 vertex_ai_non_gemini.py:1()
+        1    0.000    0.000    0.000    0.000 mcp.py:189(MCPPostCallResponseObject)
+       91    0.000    0.000    0.000    0.000 _model_construction.py:686(__init__)
+    65/56    0.000    0.000    0.000    0.000 _discriminated_union.py:445(_infer_discriminator_values_for_inner_schema)
+      104    0.000    0.000    0.000    0.000 typing.py:2821()
+        7    0.000    0.000    0.000    0.000 util.py:251(_inner)
+        1    0.000    0.000    0.000    0.000 openai.py:1505(OpenAIChatCompletionLogprobsContent)
+        1    0.000    0.000    0.000    0.000 file_deleted.py:10(FileDeleted)
+        1    0.000    0.000    0.000    0.000 functions.py:67(Functions)
+        8    0.000    0.000    0.000    0.000 core_schema.py:2540(tagged_union_schema)
+        1    0.000    0.000    0.000    0.000 tz.py:41(tzutc)
+        1    0.000    0.000    0.000    0.000 _types.py:854(LiteLLM_ObjectPermissionBase)
+        1    0.000    0.000    0.000    0.000 datadog_mock_client.py:1()
+        3    0.000    0.000    0.000    0.000 __init__.py:1415(_clear_cache)
+        2    0.000    0.000    0.000    0.000 warnings.py:466(__enter__)
+        1    0.000    0.000    0.000    0.000 utils.py:101(LiteLLMCommonStrings)
+        1    0.000    0.000    0.000    0.000 apps_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_disruption_budget_status.py:1()
+        1    0.000    0.000    0.000    0.000 validate.py:1()
+        1    0.000    0.000    0.000    0.000 langsmith.py:59(BatchGroup)
+        1    0.000    0.000    0.000    0.000 v1_service_account.py:1()
+        3    0.000    0.000    0.000    0.000 six.py:205(load_module)
+        1    0.000    0.000    0.000    0.000 palm.py:1()
+        1    0.000    0.000    0.000    0.000 :619(get_exec_path)
+        1    0.000    0.000    0.000    0.000 v1_service_cidr.py:1()
+        1    0.000    0.000    0.000    0.000 exc.py:1()
+        1    0.000    0.000    0.000    0.000 completion.py:117(ChatCompletionMessageToolCallParam)
+       36    0.000    0.000    0.000    0.000 _make.py:927()
+        1    0.000    0.000    0.000    0.000 pprint.py:1()
+      128    0.000    0.000    0.000    0.000 {method 'lower' of 'bytes' objects}
+       75    0.000    0.000    0.000    0.000 {built-in method posix._path_normpath}
+        1    0.000    0.000    0.000    0.000 keyboard.py:213()
+        1    0.000    0.000    0.000    0.000 openai_evals.py:73(CustomGraderConfig)
+        1    0.000    0.000    0.000    0.000 formdata.py:15(FormData)
+        1    0.000    0.000    0.000    0.000 _strptime.py:91()
+        7    0.000    0.000    0.000    0.000 functools.py:660(_c3_merge)
+       31    0.000    0.000    0.000    0.000 sequences.py:39(named_pattern)
+        1    0.000    0.000    0.000    0.000 list.py:1()
+        2    0.000    0.000    0.000    0.000 socket.py:495(_real_close)
+        1    0.000    0.000    0.000    0.000 v1_quobyte_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 utils.py:53(ClientAuthType)
+        1    0.000    0.000    0.000    0.000 generated.py:195(EventType)
+        1    0.000    0.000    0.000    0.000 fractions.py:38(Fraction)
+        1    0.000    0.000    0.000    0.000 v1_ephemeral_container.py:21(V1EphemeralContainer)
+        1    0.000    0.000    0.000    0.000 logfire_logger.py:21(LogfireLevel)
+       44    0.000    0.000    0.000    0.000 unicode.py:17()
+        1    0.000    0.000    0.000    0.000 anthropic_skills.py:101(SkillVersion)
+        1    0.000    0.000    0.000    0.000 litellm_content_filter.py:30(CompetitorIntentResult)
+        1    0.000    0.000    0.000    0.000 taskgroups.py:1()
+        1    0.000    0.000    0.000    0.000 _fileio.py:29(AsyncFile)
+        2    0.000    0.000    0.000    0.000 cli.py:366(with_appcontext)
+        1    0.000    0.000    0.000    0.000 reference.py:1()
+       31    0.000    0.000    0.000    0.000 _utils.py:325(all_identical)
+        1    0.000    0.000    0.000    0.000 tokenize.py:392(open)
+        1    0.000    0.000    0.000    0.000 v1_status_details.py:1()
+        1    0.000    0.000    0.000    0.000 abc.py:14(ResourceReader)
+        1    0.000    0.000    0.000    0.000 _eventloop.py:54(AsyncBackend)
+        1    0.000    0.000    0.000    0.000 sentencepiece_bpe.py:10(SentencePieceBPETokenizer)
+        1    0.000    0.000    0.000    0.000 v1_network_policy_egress_rule.py:1()
+        1    0.000    0.000    0.000    0.000 vector_store_files.py:60(VectorStoreFileListResponse)
+        1    0.000    0.000    0.000    0.000 _types.py:2879(LiteLLM_TagTable)
+        1    0.000    0.000    0.000    0.000 resource_v1alpha3_api.py:27(ResourceV1alpha3Api)
+        1    0.000    0.000    0.000    0.000 helpers.py:583(TimeoutHandle)
+        1    0.000    0.000    0.000    0.000 _compat.py:43(__init__)
+        1    0.000    0.000    0.000    0.000 v1_api_service_condition.py:1()
+        1    0.000    0.000    0.000    0.000 router.py:258(LiteLLM_Params)
+        1    0.000    0.000    0.000    0.000 __init__.py:60(OffsetReferential)
+      106    0.000    0.000    0.000    0.000 _generate_schema.py:1523()
+       15    0.000    0.000    0.000    0.000 __init__.py:1467(debug)
+        3    0.000    0.000    0.000    0.000 :923(is_package)
+      105    0.000    0.000    0.000    0.000 {method 'copy' of 'list' objects}
+        1    0.000    0.000    0.000    0.000 supervised_hyperparameters.py:11(SupervisedHyperparameters)
+      109    0.000    0.000    0.000    0.000 _make.py:681()
+      108    0.000    0.000    0.000    0.000 _make.py:1003()
+        1    0.000    0.000    0.000    0.000 v1_downward_api_volume_file.py:1()
+        1    0.000    0.000    0.000    0.000 model_rate_limit_check.py:1()
+        1    0.000    0.000    0.000    0.000 proxy_cli.py:35(LiteLLMDatabaseConnectionPool)
+        3    0.000    0.000    0.000    0.000 compiler.py:82(_make_unop)
+        1    0.000    0.000    0.000    0.000 _types.py:1090(SpecialMCPServerName)
+        1    0.000    0.000    0.000    0.000 s3_cache.py:23(S3Cache)
+       34    0.000    0.000    0.000    0.000 typing_extensions.py:2776(__init__)
+        1    0.000    0.000    0.000    0.000 guardrails.py:135(PiiAction)
+        1    0.000    0.000    0.000    0.000 validators.py:330(_DeepIterable)
+        1    0.000    0.000    0.000    0.000 __init__.py:73(Sectioned)
+        1    0.000    0.000    0.000    0.000 v1_replication_controller_spec.py:1()
+        1    0.000    0.000    0.000    0.000 scheduler.py:12(SchedulerCacheKeys)
+        3    0.000    0.000    0.000    0.000 __init__.py:936(__init__)
+        1    0.000    0.000    0.000    0.000 dh.py:173(DHPublicKey)
+        1    0.000    0.000    0.000    0.000 v1_capabilities.py:21(V1Capabilities)
+        1    0.000    0.000    0.000    0.000 _serialization.py:54(ParameterFormat)
+        1    0.000    0.000    0.000    0.000 _confirm.py:1()
+        1    0.000    0.000    0.000    0.000 core_v1_endpoint_port.py:21(CoreV1EndpointPort)
+        1    0.000    0.000    0.000    0.000 abc.py:151(AbstractResolver)
+       12    0.000    0.000    0.000    0.000 core.py:5980()
+        1    0.000    0.000    0.000    0.000 dynamic_logging_cache.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:87(LiteLLMTeamRoles)
+        1    0.000    0.000    0.000    0.000 guardrails.py:817(GUARDRAIL_DEFINITION_LOCATION)
+        3    0.000    0.000    0.000    0.000 configfile.py:480()
+        1    0.000    0.000    0.000    0.000 gemini.py:123(BidiGenerateContentSetup)
+        3    0.000    0.000    0.000    0.000 _IntegerGMP.py:733(gcd)
+        1    0.000    0.000    0.000    0.000 v1_ingress_class_parameters_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1_rule_with_operations.py:1()
+        1    0.000    0.000    0.000    0.000 testing.py:17(pyparsing_test)
+        1    0.000    0.000    0.000    0.000 v1_node_spec.py:21(V1NodeSpec)
+        1    0.000    0.000    0.000    0.000 v1_volume.py:1()
+        1    0.000    0.000    0.000    0.000 v1_resource_claim.py:1()
+        1    0.000    0.000    0.000    0.000 _json.py:7(_CompactJSON)
+        1    0.000    0.000    0.000    0.000 azure_ai.py:6(ImageEmbeddingInput)
+        7    0.000    0.000    0.000    0.000 weakref.py:104(__init__)
+        1    0.000    0.000    0.000    0.000 v1_replica_set_status.py:1()
+        1    0.000    0.000    0.000    0.000 response_input_item.py:419(McpListToolsTool)
+        1    0.000    0.000    0.000    0.000 nodes.py:739(_FilterTestCommon)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:261(UsageMetadata)
+        1    0.000    0.000    0.000    0.000 types.py:18(TraceSpanApiStatus)
+        1    0.000    0.000    0.000    0.000 __init__.py:65(OffsetType)
+        1    0.000    0.000    0.000    0.000 _cookiejar.py:1()
+        1    0.000    0.000    0.000    0.000 v1_rbd_persistent_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 aws.py:138(AwsFetcher)
+        1    0.000    0.000    0.000    0.000 generated.py:372(ThinkingLevel)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:235(Tools)
+        1    0.000    0.000    0.000    0.000 nodes.py:623(Tuple)
+       25    0.000    0.000    0.000    0.000 _doc_utils.py:276(plural)
+       18    0.000    0.000    0.000    0.000 utils.py:89(internalcode)
+      109    0.000    0.000    0.000    0.000 _make.py:1090()
+        1    0.000    0.000    0.000    0.000 _legacy_response.py:389(HttpxBinaryResponseContent)
+        1    0.000    0.000    0.000    0.000 openai.py:168(ToolResourcesFileSearch)
+       27    0.000    0.000    0.000    0.000 :1103(_sanity_check)
+        1    0.000    0.000    0.000    0.000 __init__.py:376(TTLCache)
+        1    0.000    0.000    0.000    0.000 _types.py:2566(UserInfoV2Response)
+        1    0.000    0.000    0.000    0.000 vector_store_files.py:15(VectorStoreFileChunkingStrategyType)
+        1    0.000    0.000    0.000    0.000 bedrock.py:171(MessageBlock)
+        1    0.000    0.000    0.000    0.000 nodes.py:817(Call)
+        1    0.000    0.000    0.000    0.000 guardrails.py:799(guardrailConfig)
+        1    0.000    0.000    0.000    0.000 idtracking.py:232(FrameSymbolVisitor)
+        1    0.000    0.000    0.000    0.000 etag.py:1()
+        1    0.000    0.000    0.000    0.000 parser.py:69(Reader)
+        1    0.000    0.000    0.000    0.000 lowlevel.py:77(_NoValueSet)
+       79    0.000    0.000    0.000    0.000 signal.py:21()
+        1    0.000    0.000    0.000    0.000 handler.py:38(BedrockImageEditPreparedRequest)
+        1    0.000    0.000    0.000    0.000 databricks.py:78(DatabricksResponse)
+        1    0.000    0.000    0.000    0.000 __init__.py:18()
+       33    0.000    0.000    0.000    0.000 :60(__getattr__)
+        1    0.000    0.000    0.000    0.000 networking_v1_api.py:27(NetworkingV1Api)
+        1    0.000    0.000    0.000    0.000 v1_git_repo_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 generated.py:377(ThinkingSummaries)
+        1    0.000    0.000    0.000    0.000 router.py:350(DeploymentTypedDict)
+        1    0.000    0.000    0.000    0.000 signature.py:1()
+        1    0.000    0.000    0.000    0.000 templating.py:1()
+        3    0.000    0.000    0.000    0.000 _common.py:45(_strip_codes)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:325(CachedContentListAllResponseBody)
+       78    0.000    0.000    0.000    0.000 signal.py:16()
+       11    0.000    0.000    0.000    0.000 :1037(_resolve_name)
+        1    0.000    0.000    0.000    0.000 _collections.py:41(_Sentinel)
+        1    0.000    0.000    0.000    0.000 v1_topology_spread_constraint.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:2728(ProjectBase)
+       12    0.000    0.000    0.000    0.000 parse.py:119(_coerce_args)
+        5    0.000    0.000    0.000    0.000 _models.py:1018(__init__)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_spec.py:21(V1PersistentVolumeSpec)
+        1    0.000    0.000    0.000    0.000 _IntegerGMP.py:400(__floordiv__)
+        1    0.000    0.000    0.000    0.000 v1_node_list.py:1()
+       24    0.000    0.000    0.000    0.000 _make.py:980(_attach_repr)
+        1    0.000    0.000    0.000    0.000 representer.py:134(SafeRepresenter)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:512(MultimodalPrediction)
+        1    0.000    0.000    0.000    0.000 rerank.py:54(RerankResponseResult)
+        1    0.000    0.000    0.000    0.000 http11.py:54(__init__)
+        2    0.000    0.000    0.000    0.000 _doc_utils.py:68(copy)
+       19    0.000    0.000    0.000    0.000 keyboard.py:114()
+        1    0.000    0.000    0.000    0.000 traceloop.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint_rule_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_endpoint_hints.py:1()
+        1    0.000    0.000    0.000    0.000 v1_self_subject_review_status.py:1()
+        1    0.000    0.000    0.000    0.000 utils.py:3475(JSONFileCache)
+        1    0.000    0.000    0.000    0.000 http.py:1165(BatchHttpRequest)
+        1    0.000    0.000    0.000    0.000 router.py:551(SearchToolTypedDict)
+        1    0.000    0.000    0.000    0.000 router.py:582(GuardrailTypedDict)
+        1    0.000    0.000    0.000    0.000 openai.py:932(ChatCompletionDeltaChunk)
+        1    0.000    0.000    0.000    0.000 mock.py:57(MockBackend)
+        1    0.000    0.000    0.000    0.000 router.py:144(CredentialLiteLLMParams)
+        1    0.000    0.000    0.000    0.000 main.py:32(MarkdownIt)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:378(LogprobsResult)
+        1    0.000    0.000    0.000    0.000 connection.py:114(_has_ipv6)
+        1    0.000    0.000    0.000    0.000 paragraph.py:1()
+        1    0.000    0.000    0.000    0.000 gemini.py:226(GeminiImageGenerationResponse)
+        2    0.000    0.000    0.000    0.000 message.py:524(get_all)
+        2    0.000    0.000    0.000    0.000 subprocess.py:1952(_try_wait)
+        1    0.000    0.000    0.000    0.000 lowest_tpm_rpm_v2.py:32(LowestTPMLoggingHandler_v2)
+        1    0.000    0.000    0.000    0.000 _conditional.py:1()
+        1    0.000    0.000    0.000    0.000 v1_network_policy_port.py:21(V1NetworkPolicyPort)
+        1    0.000    0.000    0.000    0.000 segment.py:671(Segments)
+       11    0.000    0.000    0.000    0.000 base.py:541(signal)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:502(VertexMultimodalEmbeddingRequest)
+        1    0.000    0.000    0.000    0.000 auto.py:8(AutoBackend)
+        1    0.000    0.000    0.000    0.000 _sysconfigdata__aarch64-linux-gnu.py:1()
+        1    0.000    0.000    0.000    0.000 v1_security_context.py:21(V1SecurityContext)
+        1    0.000    0.000    0.000    0.000 bedrock.py:655(NovaEmbeddingResponse)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:557(VertexAIBatchEmbeddingsRequestBody)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:538(VertexAITextEmbeddingsRequestBody)
+        1    0.000    0.000    0.000    0.000 nodes.py:294(Template)
+        1    0.000    0.000    0.000    0.000 v1_config_map.py:1()
+        1    0.000    0.000    0.000    0.000 file_storage.py:1()
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:374(LogprobsTopCandidate)
+        1    0.000    0.000    0.000    0.000 bedrock.py:129(CitationsContentBlock)
+        1    0.000    0.000    0.000    0.000 thread_pool_executor.py:1()
+        1    0.000    0.000    0.000    0.000 resource_v1beta2_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_network_policy_peer.py:1()
+        1    0.000    0.000    0.000    0.000 mock.py:118(AsyncMockBackend)
+        2    0.000    0.000    0.000    0.000 threading.py:822(_maintain_shutdown_locks)
+        4    0.000    0.000    0.000    0.000 functools.py:852(register)
+       10    0.000    0.000    0.000    0.000 base.py:6(__init__)
+       10    0.000    0.000    0.000    0.000 core_schema.py:1796(generator_schema)
+        1    0.000    0.000    0.000    0.000 v1_api_group.py:1()
+        8    0.000    0.000    0.000    0.000 platform.py:914(system)
+        1    0.000    0.000    0.000    0.000 handler.py:26(VertexAIFilesHandler)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_horizontal_pod_autoscaler_status.py:1()
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:388(UrlContextMetadata)
+        1    0.000    0.000    0.000    0.000 _types.py:1788(TeamCallbackMetadata)
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 realtime.py:40(RealtimeModalityResponseTransformOutput)
+        4    0.000    0.000    0.000    0.000 {method 'write' of '_io.TextIOWrapper' objects}
+        1    0.000    0.000    0.000    0.000 openai.py:213(ImageFileObject)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:518(MultimodalPredictions)
+       85    0.000    0.000    0.000    0.000 typing_extensions.py:2693(override)
+        1    0.000    0.000    0.000    0.000 pool.py:173(Pool)
+        1    0.000    0.000    0.000    0.000 v1_cluster_trust_bundle_projection.py:1()
+       28    0.000    0.000    0.000    0.000 typing_extensions.py:423(_is_dunder)
+        4    0.000    0.000    0.000    0.000 core.py:705(add_parse_action)
+        1    0.000    0.000    0.000    0.000 anyio.py:98(AnyIOBackend)
+       16    0.000    0.000    0.000    0.000 {built-in method posix.lstat}
+        1    0.000    0.000    0.000    0.000 csp.py:1()
+        1    0.000    0.000    0.000    0.000 bedrock.py:587(NovaImageParams)
+       95    0.000    0.000    0.000    0.000 _doc_utils.py:75(__init__)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:561(VertexAIBatchEmbeddingsResponseObject)
+       58    0.000    0.000    0.000    0.000 weakref.py:352(__init__)
+        2    0.000    0.000    0.000    0.000 threading.py:583(set)
+       15    0.000    0.000    0.000    0.000 number.py:475(bytes_to_long)
+        1    0.000    0.000    0.000    0.000 v1beta1_lease_candidate_spec.py:1()
+        1    0.000    0.000    0.000    0.000 parse_link_title.py:1()
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:251(TTL)
+        1    0.000    0.000    0.000    0.000 _types.py:128(AsyncByteStream)
+        1    0.000    0.000    0.000    0.000 base.py:83(AsyncNetworkBackend)
+        1    0.000    0.000    0.000    0.000 _types.py:114(SyncByteStream)
+        1    0.000    0.000    0.000    0.000 v1_node_address.py:1()
+        1    0.000    0.000    0.000    0.000 _refresh_worker.py:1()
+       56    0.000    0.000    0.000    0.000 _transform.py:60(__init__)
+        5    0.000    0.000    0.000    0.000 _weakrefset.py:37(__init__)
+        1    0.000    0.000    0.000    0.000 regions.py:458(EndpointRulesetResolver)
+        1    0.000    0.000    0.000    0.000 bedrock.py:313(OutputFormatStructure)
+       85    0.000    0.000    0.000    0.000 _compat_pickle.py:167()
+        6    0.000    0.000    0.000    0.000 containers.py:69(__init__)
+        1    0.000    0.000    0.000    0.000 _url.py:100(UndefinedType)
+        9    0.000    0.000    0.000    0.000 _connection.py:308(_get_io_object)
+        1    0.000    0.000    0.000    0.000 signer.py:1()
+        2    0.000    0.000    0.000    0.000 {function Random.seed at 0xff4ed26ddf80}
+        1    0.000    0.000    0.000    0.000 agents.py:241(LiteLLMSendMessageResponse)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:1280(IPv4Address)
+       55    0.000    0.000    0.000    0.000 typing.py:2796()
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_spec.py:1()
+       42    0.000    0.000    0.000    0.000 _decorators.py:193(__get__)
+        1    0.000    0.000    0.000    0.000 test.py:178(EnvironBuilder)
+        2    0.000    0.000    0.000    0.000 {function socket.close at 0xff4ed1860e00}
+        1    0.000    0.000    0.000    0.000 core.py:3488(__init__)
+        1    0.000    0.000    0.000    0.000 _types.py:1440(UpdateUserRequestNoUserIDorEmail)
+        1    0.000    0.000    0.000    0.000 v1_non_resource_rule.py:1()
+        1    0.000    0.000    0.000    0.000 v1_lease_spec.py:1()
+        1    0.000    0.000    0.000    0.000 token.py:18(TokenEndpoint)
+        3    0.000    0.000    0.000    0.000 sync.py:128(write)
+        1    0.000    0.000    0.000    0.000 :44(_get_exports_list)
+        1    0.000    0.000    0.000    0.000 v1_api_service_condition.py:21(V1APIServiceCondition)
+        1    0.000    0.000    0.000    0.000 v1_ingress_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_managed_fields_entry.py:1()
+        1    0.000    0.000    0.000    0.000 litellm_agent_model_resolver.py:18(LiteLLMAgentModelResolver)
+        1    0.000    0.000    0.000    0.000 langsmith_mock_client.py:1()
+        2    0.000    0.000    0.000    0.000 argparse.py:297(format_help)
+        1    0.000    0.000    0.000    0.000 v1_field_selector_attributes.py:1()
+        1    0.000    0.000    0.000    0.000 coroutine_checker.py:1()
+        1    0.000    0.000    0.000    0.000 _oid.py:13(ExtensionOID)
+        1    0.000    0.000    0.000    0.000 parse.py:469(urlsplit)
+        1    0.000    0.000    0.000    0.000 databricks.py:53(DatabricksFunction)
+       46    0.000    0.000    0.000    0.000 typing.py:2904()
+        1    0.000    0.000    0.000    0.000 gemini.py:165(GeminiImageGenerationParameters)
+        1    0.000    0.000    0.000    0.000 lowest_latency.py:29(LowestLatencyLoggingHandler)
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_status_details.py:21(V1StatusDetails)
+        1    0.000    0.000    0.000    0.000 v1_ingress_service_backend.py:1()
+        4    0.000    0.000    0.000    0.000 contextlib.py:509(callback)
+        2    0.000    0.000    0.000    0.000 __init__.py:72(CFUNCTYPE)
+        1    0.000    0.000    0.000    0.000 range.py:1()
+        1    0.000    0.000    0.000    0.000 v1_service_account.py:21(V1ServiceAccount)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_sub_request.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_basic_device.py:1()
+        1    0.000    0.000    0.000    0.000 v1_volume_mount.py:1()
+       23    0.000    0.000    0.000    0.000 typing.py:1244(__call__)
+        1    0.000    0.000    0.000    0.000 py313.py:1()
+       27    0.000    0.000    0.000    0.000 inspect.py:505(isbuiltin)
+        1    0.000    0.000    0.000    0.000 stringprep.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_disruption_budget_status.py:21(V1PodDisruptionBudgetStatus)
+        3    0.000    0.000    0.000    0.000 core.py:1724(suppress)
+        1    0.000    0.000    0.000    0.000 jwt.py:592(OnDemandCredentials)
+        1    0.000    0.000    0.000    0.000 v1_quobyte_volume_source.py:21(V1QuobyteVolumeSource)
+       83    0.000    0.000    0.000    0.000 _known_annotated_metadata.py:377()
+        1    0.000    0.000    0.000    0.000 core.py:717(add_condition)
+       32    0.000    0.000    0.000    0.000 terminal.py:302()
+        1    0.000    0.000    0.000    0.000 plugins.py:17(_load_preferences)
+        1    0.000    0.000    0.000    0.000 numbers.py:32(Complex)
+        1    0.000    0.000    0.000    0.000 base.py:888(CertificateRevocationListBuilder)
+        1    0.000    0.000    0.000    0.000 response_input_item.py:245(ShellCallAction)
+       19    0.000    0.000    0.000    0.000 asn1.py:87(__init__)
+        1    0.000    0.000    0.000    0.000 amazon_nova_canvas_transformation.py:1()
+        1    0.000    0.000    0.000    0.000 v1_resource_status.py:21(V1ResourceStatus)
+        7    0.000    0.000    0.000    0.000 typing.py:1197(__init__)
+        1    0.000    0.000    0.000    0.000 _client.py:86(OpenAI)
+        1    0.000    0.000    0.000    0.000 v1_limit_range.py:1()
+        1    0.000    0.000    0.000    0.000 autoscaling_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 json_schema.py:233(GenerateJsonSchema)
+        1    0.000    0.000    0.000    0.000 rbac_authorization_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 s3_vectors_ingestion.py:42(S3VectorsRAGIngestion)
+        1    0.000    0.000    0.000    0.000 v1_downward_api_volume_file.py:21(V1DownwardAPIVolumeFile)
+        1    0.000    0.000    0.000    0.000 utils.py:153(Enum)
+        1    0.000    0.000    0.000    0.000 secret_manager_handler.py:1()
+        1    0.000    0.000    0.000    0.000 internal_apiserver_api.py:1()
+       47    0.000    0.000    0.000    0.000 _generate_schema.py:452()
+        1    0.000    0.000    0.000    0.000 expect.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_class.py:1()
+        1    0.000    0.000    0.000    0.000 _generate_schema.py:357(GenerateSchema)
+        1    0.000    0.000    0.000    0.000 response_item.py:184(McpCall)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_request_allocation_result.py:1()
+        1    0.000    0.000    0.000    0.000 streaming_utils.py:1()
+        1    0.000    0.000    0.000    0.000 fine_tuning_job.py:34(Hyperparameters)
+        1    0.000    0.000    0.000    0.000 _types.py:4382(LiteLLM_ManagedVectorStoreTable)
+        1    0.000    0.000    0.000    0.000 formatting.py:102(HelpFormatter)
+        1    0.000    0.000    0.000    0.000 _models.py:851(FinalRequestOptions)
+        1    0.000    0.000    0.000    0.000 v1_ingress_class_parameters_reference.py:21(V1IngressClassParametersReference)
+        3    0.000    0.000    0.000    0.000 platform.py:1106(python_implementation)
+        1    0.000    0.000    0.000    0.000 apps_v1_api.py:27(AppsV1Api)
+        1    0.000    0.000    0.000    0.000 streams.py:395(StreamReader)
+        2    0.000    0.000    0.000    0.000 functools.py:800(singledispatch)
+        1    0.000    0.000    0.000    0.000 _constants.py:1()
+        1    0.000    0.000    0.000    0.000 process.py:71(BaseProcess)
+        1    0.000    0.000    0.000    0.000 v1_replication_controller_spec.py:21(V1ReplicationControllerSpec)
+        3    0.000    0.000    0.000    0.000 core.py:3624(__init__)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_counter_consumption.py:1()
+        4    0.000    0.000    0.000    0.000 utils.py:119(deprecated)
+       26    0.000    0.000    0.000    0.000 lexer.py:146()
+        8    0.000    0.000    0.000    0.000 core_schema.py:2047(no_info_after_validator_function)
+        5    0.000    0.000    0.000    0.000 pathlib.py:778(parent)
+       16    0.000    0.000    0.000    0.000 __init__.py:29(read)
+        1    0.000    0.000    0.000    0.000 heading.py:1()
+        4    0.000    0.000    0.000    0.000 _models.py:256(__delitem__)
+        1    0.000    0.000    0.000    0.000 v1_pod_scheduling_gate.py:1()
+        6    0.000    0.000    0.000    0.000 types.py:963(__init__)
+        4    0.000    0.000    0.000    0.000 enum.py:1748()
+        1    0.000    0.000    0.000    0.000 v1_node_runtime_handler.py:1()
+        7    0.000    0.000    0.000    0.000 local.py:478(__init__)
+        6    0.000    0.000    0.000    0.000 core.py:3530(__init__)
+        9    0.000    0.000    0.000    0.000 asn1.py:291(__init__)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_list.py:1()
+        1    0.000    0.000    0.000    0.000 tokens.py:173(SSOTokenProvider)
+       14    0.000    0.000    0.000    0.000 hooks.py:39(__get__)
+       65    0.000    0.000    0.000    0.000 {method 'groupdict' of 're.Match' objects}
+        1    0.000    0.000    0.000    0.000 amazon_stability1_transformation.py:12(AmazonStabilityConfig)
+        1    0.000    0.000    0.000    0.000 base.py:27(Signal)
+        1    0.000    0.000    0.000    0.000 code.py:1()
+        1    0.000    0.000    0.000    0.000 transformation.py:29(ReplicateConfig)
+        1    0.000    0.000    0.000    0.000 apis_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_taint.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_slice_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_flow_schema_spec.py:1()
+        1    0.000    0.000    0.000    0.000 restdoc.py:133(DocumentStructure)
+        2    0.000    0.000    0.000    0.000 _testing.py:1()
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:431(_SpecialGenericAlias)
+        3    0.000    0.000    0.000    0.000 __init__.py:503(PYFUNCTYPE)
+        2    0.000    0.000    0.000    0.000 argparse.py:2519()
+       76    0.000    0.000    0.000    0.000 argparse.py:628()
+        1    0.000    0.000    0.000    0.000 custom_prompt_management.py:13(CustomPromptManagement)
+        1    0.000    0.000    0.000    0.000 bccache.py:103(BytecodeCache)
+        1    0.000    0.000    0.000    0.000 v1_field_selector_requirement.py:1()
+        1    0.000    0.000    0.000    0.000 base_tasks.py:1()
+        1    0.000    0.000    0.000    0.000 server.py:146(BaseHTTPRequestHandler)
+        1    0.000    0.000    0.000    0.000 cache_control.py:22(_CacheControl)
+        1    0.000    0.000    0.000    0.000 client.py:860(BaseClient)
+       99    0.000    0.000    0.000    0.000 util.py:203(no_escape_re_range_char)
+        3    0.000    0.000    0.000    0.000 core.py:2441(__init__)
+        4    0.000    0.000    0.000    0.000 llm_caching_handler.py:42(get_cache)
+       67    0.000    0.000    0.000    0.000 decorators.py:351(option)
+        1    0.000    0.000    0.000    0.000 coordination_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_template.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_list.py:21(V1NodeList)
+        1    0.000    0.000    0.000    0.000 v1_container.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_success_policy_rule.py:1()
+        1    0.000    0.000    0.000    0.000 handler.py:19(TogetherAIRerank)
+        1    0.000    0.000    0.000    0.000 http_proxy.py:170(ForwardHTTPConnection)
+        1    0.000    0.000    0.000    0.000 _files.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_slice.py:1()
+        1    0.000    0.000    0.000    0.000 hr.py:1()
+        6    0.000    0.000    0.000    0.000 types.py:2125(__get_pydantic_core_schema__)
+        1    0.000    0.000    0.000    0.000 service_account.py:89(Credentials)
+        1    0.000    0.000    0.000    0.000 http11.py:351(close)
+        1    0.000    0.000    0.000    0.000 v1_replica_set_status.py:21(V1ReplicaSetStatus)
+        1    0.000    0.000    0.000    0.000 helicone_mock_client.py:1()
+        1    0.000    0.000    0.000    0.000 _typedattr.py:1()
+        1    0.000    0.000    0.000    0.000 validators.py:594(_NotValidator)
+       68    0.000    0.000    0.000    0.000 :260(__init__)
+        1    0.000    0.000    0.000    0.000 apiregistration_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_self_subject_review_status.py:21(V1SelfSubjectReviewStatus)
+        1    0.000    0.000    0.000    0.000 configuration.py:25(Configuration)
+       18    0.000    0.000    0.000    0.000 _collections.py:24(freeze)
+        1    0.000    0.000    0.000    0.000 http_proxy.py:170(AsyncForwardHTTPConnection)
+        1    0.000    0.000    0.000    0.000 RSA.py:163(u)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_conversion.py:1()
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_list.py:1()
+        1    0.000    0.000    0.000    0.000 ssl.py:1006(SSLSocket)
+        1    0.000    0.000    0.000    0.000 v1_pod_status.py:1()
+        1    0.000    0.000    0.000    0.000 console.py:862(__exit__)
+        1    0.000    0.000    0.000    0.000 __init__.py:379(_Link)
+        1    0.000    0.000    0.000    0.000 vertex_ai_ingestion.py:1()
+        1    0.000    0.000    0.000    0.000 vertex_imagen_transformation.py:27(VertexAIImagenImageGenerationConfig)
+        1    0.000    0.000    0.000    0.000 v1_pod_affinity.py:1()
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:699(EndpointProvider)
+       16    0.000    0.000    0.000    0.000 utils.py:98(__getattr__)
+        2    0.000    0.000    0.000    0.000 console.py:2096(_render_buffer)
+        1    0.000    0.000    0.000    0.000 __init__.py:805(zip_children)
+        1    0.000    0.000    0.000    0.000 emitter.py:1()
+        1    0.000    0.000    0.000    0.000 common_utils.py:1017(VertexAITokenCounter)
+        1    0.000    0.000    0.000    0.000 v1beta1_audit_annotation.py:1()
+        1    0.000    0.000    0.000    0.000 generated.py:162(Environment)
+        1    0.000    0.000    0.000    0.000 fnmatch.py:1()
+        1    0.000    0.000    0.000    0.000 datetime.py:1669(datetime)
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_load_balancer_ingress.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_lease_candidate_spec.py:21(V1beta1LeaseCandidateSpec)
+        1    0.000    0.000    0.000    0.000 request_token.py:1()
+        2    0.000    0.000    0.000    0.000 subprocess.py:1090(__exit__)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:217(LiteLLM_ManagedVectorStoreIndex)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_slice.py:1()
+        1    0.000    0.000    0.000    0.000 v1_container_user.py:1()
+        1    0.000    0.000    0.000    0.000 timeout.py:14(_TYPE_DEFAULT)
+        4    0.000    0.000    0.000    0.000 locale.py:479(_parse_localename)
+        1    0.000    0.000    0.000    0.000 v1_cinder_persistent_volume_source.py:1()
+        5    0.000    0.000    0.000    0.000 core.py:4639(_generateDefaultName)
+        1    0.000    0.000    0.000    0.000 v1_endpoint_hints.py:21(V1EndpointHints)
+       10    0.000    0.000    0.000    0.000 typing_extensions.py:1479(_set_module)
+        1    0.000    0.000    0.000    0.000 iam.py:1()
+        1    0.000    0.000    0.000    0.000 __init__.py:97(SymbolFilter)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_pool.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_dns_config.py:1()
+        1    0.000    0.000    0.000    0.000 utils.py:2177(ImageObject)
+        1    0.000    0.000    0.000    0.000 _validate_call.py:1()
+       71    0.000    0.000    0.000    0.000 {built-in method from_iterable}
+        1    0.000    0.000    0.000    0.000 transformation.py:39(BlackForestLabsImageGenerationConfig)
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1beta1_api.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:2903(LiteLLM_AccessGroupTable)
+        3    0.000    0.000    0.000    0.000 feedparser.py:70(close)
+        1    0.000    0.000    0.000    0.000 _types.py:1039(KeyRequest)
+        1    0.000    0.000    0.000    0.000 _types.py:4243(SpecialManagementEndpointEnums)
+       13    0.000    0.000    0.000    0.000 _policybase.py:94(_append_doc)
+       10    0.000    0.000    0.000    0.000 _state.py:318(_fire_state_triggered_transitions)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_request.py:1()
+        1    0.000    0.000    0.000    0.000 _exponential_backoff.py:1()
+        5    0.000    0.000    0.000    0.000 lexer.py:43(__new__)
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_spec.py:21(V1beta1ValidatingAdmissionPolicySpec)
+        1    0.000    0.000    0.000    0.000 anthropic_request.py:6(AnthropicMetadata)
+        1    0.000    0.000    0.000    0.000 datadog.py:33(DD_ERRORS)
+       91    0.000    0.000    0.000    0.000 {method 'isprintable' of 'str' objects}
+        1    0.000    0.000    0.000    0.000 contentmanager.py:1()
+        1    0.000    0.000    0.000    0.000 name.py:33()
+        6    0.000    0.000    0.000    0.000 help_text.py:3(get_help)
+        7    0.000    0.000    0.000    0.000 _core_utils.py:148()
+        2    0.000    0.000    0.000    0.000 {built-in method posix.waitpid}
+        1    0.000    0.000    0.000    0.000 utils.py:829(PassthroughCallTypes)
+        5    0.000    0.000    0.000    0.000 validators.py:314(is_callable)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_class.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_tls.py:21(V1IngressTLS)
+        3    0.000    0.000    0.000    0.000 pathlib.py:1246(is_dir)
+       42    0.000    0.000    0.000    0.000 {method 'cast' of 'memoryview' objects}
+        1    0.000    0.000    0.000    0.000 stability.py:109(StabilityEraseRequest)
+        1    0.000    0.000    0.000    0.000 response_text_delta_event.py:11(LogprobTopLogprob)
+        8    0.000    0.000    0.000    0.000 _doc_utils.py:251()
+        1    0.000    0.000    0.000    0.000 v1_node_address.py:21(V1NodeAddress)
+       24    0.000    0.000    0.000    0.000 results.py:212(__getitem__)
+        1    0.000    0.000    0.000    0.000 _types.py:1959(NewOrganizationRequest)
+        1    0.000    0.000    0.000    0.000 fence.py:1()
+        1    0.000    0.000    0.000    0.000 decorators.py:75(decorator)
+       14    0.000    0.000    0.000    0.000 typing_extensions.py:530(_caller)
+        1    0.000    0.000    0.000    0.000 v1_volume.py:21(V1Volume)
+        1    0.000    0.000    0.000    0.000 resource_v1beta2_api.py:27(ResourceV1beta2Api)
+        1    0.000    0.000    0.000    0.000 v1beta1_lease_candidate_list.py:1()
+        1    0.000    0.000    0.000    0.000 router.py:207(RoutingArgs)
+        1    0.000    0.000    0.000    0.000 transformation.py:29(LiteLLMAnthropicToResponsesAPIAdapter)
+        1    0.000    0.000    0.000    0.000 scrypt.py:1()
+        1    0.000    0.000    0.000    0.000 certificate_transparency.py:19(Version)
+        1    0.000    0.000    0.000    0.000 redact_messages.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:3072(SpecialProxyStrings)
+        1    0.000    0.000    0.000    0.000 utils.py:3274()
+       22    0.000    0.000    0.000    0.000 _proxy.py:60(__as_proxied__)
+        1    0.000    0.000    0.000    0.000 v1_non_resource_rule.py:21(V1NonResourceRule)
+        1    0.000    0.000    0.000    0.000 utils.py:3420(CreateCredentialItem)
+        1    0.000    0.000    0.000    0.000 response_input_message_item.py:12(ResponseInputMessageItem)
+        3    0.000    0.000    0.000    0.000 threading.py:555(__init__)
+       37    0.000    0.000    0.000    0.000 utils.py:78(__init__)
+        1    0.000    0.000    0.000    0.000 request.py:39(_TYPE_FAILEDTELL)
+        1    0.000    0.000    0.000    0.000 gemini.py:239(GeminiVideoGenerationParameters)
+        1    0.000    0.000    0.000    0.000 response_output_item.py:93(McpCall)
+        1    0.000    0.000    0.000    0.000 json_schema.py:2404(Examples)
+        1    0.000    0.000    0.000    0.000 v1_managed_fields_entry.py:21(V1ManagedFieldsEntry)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_template_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_lease.py:1()
+        1    0.000    0.000    0.000    0.000 v1_load_balancer_status.py:1()
+        1    0.000    0.000    0.000    0.000 signature_only.py:1()
+        1    0.000    0.000    0.000    0.000 image_handling.py:1()
+        1    0.000    0.000    0.000    0.000 zipfile.py:2393(__init__)
+        1    0.000    0.000    0.000    0.000 generated.py:1212(InteractionsAPIStreamingResponse)
+        1    0.000    0.000    0.000    0.000 s3_v2.py:6(s3BatchLoggingElement)
+        1    0.000    0.000    0.000    0.000 http_proxy.py:234(TunnelHTTPConnection)
+        2    0.000    0.000    0.000    0.000 typing_extensions.py:1508(__new__)
+        4    0.000    0.000    0.000    0.000 ssl.py:461(__new__)
+        3    0.000    0.000    0.000    0.000 __init__.py:567(discover)
+        1    0.000    0.000    0.000    0.000 http_proxy.py:234(AsyncTunnelHTTPConnection)
+        1    0.000    0.000    0.000    0.000 v1alpha3_basic_device.py:21(V1alpha3BasicDevice)
+        1    0.000    0.000    0.000    0.000 charset.py:167(Charset)
+        8    0.000    0.000    0.000    0.000 errors.py:107(from_name_error)
+        1    0.000    0.000    0.000    0.000 v1_limit_range.py:21(V1LimitRange)
+        1    0.000    0.000    0.000    0.000 v1_flocker_volume_source.py:1()
+        7    0.000    0.000    0.000    0.000 context_service.py:10(contexts)
+       85    0.000    0.000    0.000    0.000 terminal.py:384(does_styling)
+        1    0.000    0.000    0.000    0.000 _types.py:1924(LiteLLM_BudgetTable)
+        1    0.000    0.000    0.000    0.000 _models.py:180(get_list)
+        1    0.000    0.000    0.000    0.000 core.py:5325(__init__)
+        1    0.000    0.000    0.000    0.000 generated.py:1191(InteractionsAPIResponse)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_template.py:1()
+        1    0.000    0.000    0.000    0.000 device.py:1()
+        1    0.000    0.000    0.000    0.000 v2_container_resource_metric_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_status.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:1458(UpdateUserRequest)
+        1    0.000    0.000    0.000    0.000 mcp.py:167(MCPDuringCallRequestObject)
+        8    0.000    0.000    0.000    0.000 {built-in method posix.close}
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_counter_consumption.py:21(V1alpha3DeviceCounterConsumption)
+        1    0.000    0.000    0.000    0.000 v1_scale_io_persistent_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_toleration.py:1()
+        1    0.000    0.000    0.000    0.000 mcp.py:156(MCPPreCallResponseObject)
+        1    0.000    0.000    0.000    0.000 transformation.py:29(BaseSkillsAPIConfig)
+        1    0.000    0.000    0.000    0.000 utils.py:1487(wrapper)
+        1    0.000    0.000    0.000    0.000 console.py:1043(width)
+        1    0.000    0.000    0.000    0.000 storage_v1alpha1_api.py:1()
+        4    0.000    0.000    0.000    0.000 core.py:711()
+       52    0.000    0.000    0.000    0.000 typing.py:2883(_namedtuple_mro_entries)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_sub_request.py:21(V1beta2DeviceSubRequest)
+        1    0.000    0.000    0.000    0.000 v1_deployment_strategy.py:1()
+        1    0.000    0.000    0.000    0.000 root_model.py:35(RootModel)
+        1    0.000    0.000    0.000    0.000 _types.py:1905(LiteLLM_DeletedTeamTable)
+        5    0.000    0.000    0.000    0.000 cookiejar.py:1261(__init__)
+        1    0.000    0.000    0.000    0.000 pathlib.py:1231(exists)
+        3    0.000    0.000    0.000    0.000 repr.py:114(rich_repr)
+        6    0.000    0.000    0.000    0.000 types.py:964()
+        1    0.000    0.000    0.000    0.000 v1_lease_spec.py:21(V1LeaseSpec)
+        1    0.000    0.000    0.000    0.000 _app.py:132(WrappedDispatcher)
+        1    0.000    0.000    0.000    0.000 v2_pods_metric_source.py:1()
+        2    0.000    0.000    0.000    0.000 configfile.py:543()
+        1    0.000    0.000    0.000    0.000 v1beta1_network_device_data.py:1()
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_binding.py:1()
+        1    0.000    0.000    0.000    0.000 connection.py:84(HTTPConnection)
+        1    0.000    0.000    0.000    0.000 v1_endpoint.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:1356(UpdateSkillRequest)
+        1    0.000    0.000    0.000    0.000 model.py:295(ServiceModel)
+        1    0.000    0.000    0.000    0.000 autoscaling_v1_api.py:27(AutoscalingV1Api)
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_binding_spec.py:1()
+       23    0.000    0.000    0.000    0.000 in_memory_cache.py:28(__init__)
+        2    0.000    0.000    0.000    0.000 _resources.py:1()
+        1    0.000    0.000    0.000    0.000 v1_object_meta.py:1()
+        1    0.000    0.000    0.000    0.000 {built-in method posix.sysconf}
+       39    0.000    0.000    0.000    0.000 {method 'fullmatch' of 're.Pattern' objects}
+        1    0.000    0.000    0.000    0.000 tokenize.py:299(detect_encoding)
+        1    0.000    0.000    0.000    0.000 create_from_yaml.py:1()
+        1    0.000    0.000    0.000    0.000 http.py:664(MediaIoBaseDownload)
+        1    0.000    0.000    0.000    0.000 core.py:325(condition_as_parse_action)
+       71    0.000    0.000    0.000    0.000 _model_construction.py:694(__call__)
+        1    0.000    0.000    0.000    0.000 _models.py:101(BaseModel)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_taint.py:21(V1beta1DeviceTaint)
+        1    0.000    0.000    0.000    0.000 v1_ingress_spec.py:21(V1IngressSpec)
+        2    0.000    0.000    0.000    0.000 __init__.py:483()
+        2    0.000    0.000    0.000    0.000 _mapping.py:1()
+        2    0.000    0.000    0.000    0.000 _date.py:11(date_form)
+        1    0.000    0.000    0.000    0.000 v1_api_service_list.py:1()
+        1    0.000    0.000    0.000    0.000 template.py:37(URITemplate)
+        1    0.000    0.000    0.000    0.000 caching.py:91(CachePingResponse)
+        1    0.000    0.000    0.000    0.000 v1_node_status.py:1()
+        3    0.000    0.000    0.000    0.000 {method 'close' of '_io.BufferedReader' objects}
+        1    0.000    0.000    0.000    0.000 _strptime.py:84()
+        1    0.000    0.000    0.000    0.000 v1_resource_health.py:1()
+        1    0.000    0.000    0.000    0.000 llm_caching_handler.py:1()
+        1    0.000    0.000    0.000    0.000 lago.py:1()
+        1    0.000    0.000    0.000    0.000 protocols.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:3593(__init__)
+        1    0.000    0.000    0.000    0.000 csp.py:19(ContentSecurityPolicy)
+        1    0.000    0.000    0.000    0.000 credentials.py:2177(SSOProvider)
+        1    0.000    0.000    0.000    0.000 handler.py:35(BlackForestLabsImageGeneration)
+        1    0.000    0.000    0.000    0.000 v1_limit_response.py:1()
+        1    0.000    0.000    0.000    0.000 config_service.py:1()
+        1    0.000    0.000    0.000    0.000 realtime.py:106(RealtimeClientSecretResponse)
+        5    0.000    0.000    0.000    0.000 http_handler.py:55(get_default_headers)
+        1    0.000    0.000    0.000    0.000 _IntegerGMP.py:563(__and__)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_slice_list.py:21(V1beta1ResourceSliceList)
+        1    0.000    0.000    0.000    0.000 config_handler.py:1()
+        1    0.000    0.000    0.000    0.000 coordination_api.py:27(CoordinationApi)
+        1    0.000    0.000    0.000    0.000 v1_flow_schema_spec.py:21(V1FlowSchemaSpec)
+        1    0.000    0.000    0.000    0.000 v1_ingress_class.py:21(V1IngressClass)
+        1    0.000    0.000    0.000    0.000 v1_pod_security_context.py:1()
+        1    0.000    0.000    0.000    0.000 __init__.py:511(TLRUCache)
+       27    0.000    0.000    0.000    0.000 {built-in method _struct.calcsize}
+        1    0.000    0.000    0.000    0.000 _schema_generation_shared.py:1()
+        1    0.000    0.000    0.000    0.000 implicit.py:15(ImplicitGrant)
+        1    0.000    0.000    0.000    0.000 bedrock_token_counter.py:14(BedrockTokenCounter)
+       44    0.000    0.000    0.000    0.000 _make.py:422()
+       38    0.000    0.000    0.000    0.000 {built-in method _ctypes.sizeof}
+        8    0.000    0.000    0.000    0.000 core_schema.py:337(wrap_serializer_function_ser_schema)
+       14    0.000    0.000    0.000    0.000 {method 'read' of '_io.StringIO' objects}
+        1    0.000    0.000    0.000    0.000 openai_evals.py:398(CancelRunResponse)
+        5    0.000    0.000    0.000    0.000 threading.py:236(__init__)
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_list.py:21(V1alpha1StorageVersionList)
+        1    0.000    0.000    0.000    0.000 _generate_schema.py:2561(_FieldNameStack)
+        1    0.000    0.000    0.000    0.000 utils.py:7882(ProviderConfigManager)
+        1    0.000    0.000    0.000    0.000 validate.py:181(ParamValidator)
+       13    0.000    0.000    0.000    0.000 local.py:358(__init__)
+        1    0.000    0.000    0.000    0.000 history.py:1()
+        1    0.000    0.000    0.000    0.000 state_block.py:1()
+        1    0.000    0.000    0.000    0.000 _synchronization.py:251(Condition)
+        1    0.000    0.000    0.000    0.000 request_validator.py:11(RequestValidator)
+        1    0.000    0.000    0.000    0.000 v1_for_node.py:1()
+        3    0.000    0.000    0.000    0.000 subprocess.py:1133(_get_devnull)
+        1    0.000    0.000    0.000    0.000 transformation.py:15(BedrockCountTokensConfig)
+        1    0.000    0.000    0.000    0.000 core.py:4734(AtLineStart)
+        1    0.000    0.000    0.000    0.000 v1_container_user.py:21(V1ContainerUser)
+        5    0.000    0.000    0.000    0.000 _client.py:208(_enforce_trailing_slash)
+       60    0.000    0.000    0.000    0.000 {built-in method builtins.divmod}
+       10    0.000    0.000    0.000    0.000 _receivebuffer.py:77(maybe_extract_at_most)
+       44    0.000    0.000    0.000    0.000 {method 'removeprefix' of 'str' objects}
+        1    0.000    0.000    0.000    0.000 paginate.py:187(PageIterator)
+        1    0.000    0.000    0.000    0.000 utils.py:3080(BudgetConfig)
+        1    0.000    0.000    0.000    0.000 _base_client.py:171(BasePage)
+        2    0.000    0.000    0.000    0.000 console.py:881(push_theme)
+        1    0.000    0.000    0.000    0.000 zipfile.py:2269(make)
+        1    0.000    0.000    0.000    0.000 v2_object_metric_status.py:1()
+        1    0.000    0.000    0.000    0.000 subresource.py:1()
+       16    0.000    0.000    0.000    0.000 types.py:130(_calculate_meta)
+        7    0.000    0.000    0.000    0.000 weakref.py:289(update)
+        1    0.000    0.000    0.000    0.000 extensions.py:1260(NameConstraints)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_constraint.py:1()
+        1    0.000    0.000    0.000    0.000 threading.py:1008(_set_tstate_lock)
+        1    0.000    0.000    0.000    0.000 v1_field_selector_requirement.py:21(V1FieldSelectorRequirement)
+        1    0.000    0.000    0.000    0.000 dynamodb.py:1()
+        8    0.000    0.000    0.000    0.000 text.py:144(__init__)
+        2    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_md5}
+       43    0.000    0.000    0.000    0.000 typing_extensions.py:658(__eq__)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_slice.py:1()
+        1    0.000    0.000    0.000    0.000 base_cache.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_claim.py:1()
+        3    0.000    0.000    0.000    0.000 __init__.py:36(__deprecate_private_class)
+        1    0.000    0.000    0.000    0.000 fields.py:153(RequestField)
+        1    0.000    0.000    0.000    0.000 v1_volume_resource_requirements.py:1()
+        5    0.000    0.000    0.000    0.000 utils.py:51(_has_surrogates)
+        2    0.000    0.000    0.000    0.000 main.py:32(with_warn_for_invalid_lines)
+        1    0.000    0.000    0.000    0.000 transformation.py:23(ClarifaiConfig)
+        1    0.000    0.000    0.000    0.000 v1_csi_driver_spec.py:21(V1CSIDriverSpec)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_pool.py:21(V1beta2ResourcePool)
+        1    0.000    0.000    0.000    0.000 model.py:97(BaseModel)
+        1    0.000    0.000    0.000    0.000 oci.py:57(OCIToolCall)
+        1    0.000    0.000    0.000    0.000 stability.py:123(StabilitySearchReplaceRequest)
+        8    0.000    0.000    0.000    0.000 core_schema.py:1617(tuple_schema)
+        1    0.000    0.000    0.000    0.000 core_v1_event.py:1()
+        1    0.000    0.000    0.000    0.000 apiregistration_v1_api.py:27(ApiregistrationV1Api)
+        1    0.000    0.000    0.000    0.000 v1_pod_template.py:21(V1PodTemplate)
+        1    0.000    0.000    0.000    0.000 __init__.py:804(FastPath)
+        3    0.000    0.000    0.000    0.000 repr.py:37(auto)
+        1    0.000    0.000    0.000    0.000 _models.py:170(get)
+        2    0.000    0.000    0.000    0.000 argparse.py:224(format_help)
+        1    0.000    0.000    0.000    0.000 _types.py:2364(LiteLLM_DeletedVerificationToken)
+        6    0.000    0.000    0.000    0.000 _connection.py:352(receive_data)
+       46    0.000    0.000    0.000    0.000 typing.py:1544(__repr__)
+        1    0.000    0.000    0.000    0.000 exceptions.py:65(ArityError)
+        2    0.000    0.000    0.000    0.000 contextlib.py:293(asynccontextmanager)
+        1    0.000    0.000    0.000    0.000 v1_job_spec.py:1()
+        1    0.000    0.000    0.000    0.000 openai_evals.py:134(Eval)
+        1    0.000    0.000    0.000    0.000 handler.py:18(OpenAITextCompletion)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler.py:1()
+        1    0.000    0.000    0.000    0.000 dh.py:252(_DHPublicKey)
+        1    0.000    0.000    0.000    0.000 optimizer.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:3854(JWTKeyMappingResponse)
+        1    0.000    0.000    0.000    0.000 _strptime.py:152(__calc_timezone)
+        4    0.000    0.000    0.000    0.000 _date.py:41(correct_form)
+        1    0.000    0.000    0.000    0.000 core.py:121(__diag__)
+        1    0.000    0.000    0.000    0.000 oci.py:90(OCIChatRequestPayload)
+        1    0.000    0.000    0.000    0.000 writer.py:40(WebSocketWriter)
+        1    0.000    0.000    0.000    0.000 web_search_preview_tool.py:11(UserLocation)
+        1    0.000    0.000    0.000    0.000 _next_gen.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_allocation_result.py:1()
+        1    0.000    0.000    0.000    0.000 v1_runtime_class.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_runtime_handler.py:21(V1NodeRuntimeHandler)
+        1    0.000    0.000    0.000    0.000 capture.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:1063(LiteLLM_ProxyModelTable)
+       52    0.000    0.000    0.000    0.000 typing.py:2833()
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment_source.py:1()
+        1    0.000    0.000    0.000    0.000 run_handler.py:1()
+        1    0.000    0.000    0.000    0.000 v2_external_metric_source.py:1()
+        1    0.000    0.000    0.000    0.000 extensions.py:390(AccessDescription)
+        1    0.000    0.000    0.000    0.000 client_ws.py:46(ClientWebSocketResponse)
+        1    0.000    0.000    0.000    0.000 resource.py:362(ResourceField)
+       38    0.000    0.000    0.000    0.000 dataclasses.py:846()
+        1    0.000    0.000    0.000    0.000 v1_pod_scheduling_gate.py:21(V1PodSchedulingGate)
+        1    0.000    0.000    0.000    0.000 datetime.py:1223(tzinfo)
+       66    0.000    0.000    0.000    0.000 {built-in method builtins.globals}
+        1    0.000    0.000    0.000    0.000 events_v1_event.py:1()
+        1    0.000    0.000    0.000    0.000 _utilities.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:1022(RegenerateKeyRequest)
+       21    0.000    0.000    0.000    0.000 _helpers.py:38(positional)
+        6    0.000    0.000    0.000    0.000 gpt_transformation.py:111(__init__)
+        1    0.000    0.000    0.000    0.000 response_tool_search_output_item.py:12(ResponseToolSearchOutputItem)
+        1    0.000    0.000    0.000    0.000 v1_container.py:21(V1Container)
+        1    0.000    0.000    0.000    0.000 v1_iscsi_persistent_volume_source.py:1()
+       56    0.000    0.000    0.000    0.000 backend.py:374(register_cipher_adapter)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_request.py:21(V1alpha3DeviceRequest)
+        1    0.000    0.000    0.000    0.000 import_export_handler.py:1()
+       30    0.000    0.000    0.000    0.000 :78(_check_methods)
+        1    0.000    0.000    0.000    0.000 v1_scale_io_volume_source.py:1()
+       11    0.000    0.000    0.000    0.000 base.py:516(__init__)
+        1    0.000    0.000    0.000    0.000 profile_handler.py:1()
+       18    0.000    0.000    0.000    0.000 __init__.py:597()
+        1    0.000    0.000    0.000    0.000 _lazy_rich.py:44(__getattr__)
+       32    0.000    0.000    0.000    0.000 core.py:696()
+        1    0.000    0.000    0.000    0.000 _requests_base.py:1()
+        1    0.000    0.000    0.000    0.000 pager.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_system_info.py:1()
+        1    0.000    0.000    0.000    0.000 api_handler.py:1()
+        1    0.000    0.000    0.000    0.000 greenscale.py:1()
+        1    0.000    0.000    0.000    0.000 converse_handler.py:88(BedrockConverseLLM)
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_spec.py:1()
+        5    0.000    0.000    0.000    0.000 datetime.py:515(_check_date_fields)
+        1    0.000    0.000    0.000    0.000 handler.py:111(OpenAILikeChatHandler)
+        1    0.000    0.000    0.000    0.000 v1beta1_cel_device_selector.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:3993(ProviderBudgetResponseObject)
+        1    0.000    0.000    0.000    0.000 _list.py:1()
+        1    0.000    0.000    0.000    0.000 guardrails.py:100(GuardrailItem)
+        5    0.000    0.000    0.000    0.000 _utils.py:402(lru_cache)
+        5    0.000    0.000    0.000    0.000 terminal_theme.py:20(__init__)
+       37    0.000    0.000    0.000    0.000 :1220(__init__)
+        1    0.000    0.000    0.000    0.000 v1_pod_affinity.py:21(V1PodAffinity)
+        1    0.000    0.000    0.000    0.000 tag.py:249(__init__)
+       20    0.000    0.000    0.000    0.000 _text.py:90(lower)
+       26    0.000    0.000    0.000    0.000 functional_validators.py:473()
+       16    0.000    0.000    0.000    0.000 {method 'reset' of '_contextvars.ContextVar' objects}
+        1    0.000    0.000    0.000    0.000 v1_iscsi_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 bedrock_ingestion.py:1()
+        1    0.000    0.000    0.000    0.000 transformation.py:12(AI21ChatConfig)
+        1    0.000    0.000    0.000    0.000 amazon_stability3_transformation.py:1()
+       37    0.000    0.000    0.000    0.000 _make.py:347(_collect_base_attrs_broken)
+       16    0.000    0.000    0.000    0.000 {method 'set' of '_contextvars.ContextVar' objects}
+        1    0.000    0.000    0.000    0.000 v1_container_status.py:1()
+        1    0.000    0.000    0.000    0.000 _connection.py:155(__init__)
+        1    0.000    0.000    0.000    0.000 v1_lease.py:21(V1Lease)
+        1    0.000    0.000    0.000    0.000 arize.py:11(ArizeConfig)
+        6    0.000    0.000    0.000    0.000 _events.py:299(__init__)
+        1    0.000    0.000    0.000    0.000 _impl.py:1()
+        1    0.000    0.000    0.000    0.000 oci.py:361(CohereChatResponse)
+        1    0.000    0.000    0.000    0.000 anthropic_skills.py:36(Skill)
+        1    0.000    0.000    0.000    0.000 validators.py:379(_DeepMapping)
+        6    0.000    0.000    0.000    0.000 _adapters.py:165(wrap_spec)
+        2    0.000    0.000    0.000    0.000 parser.py:179(parse_stream)
+       66    0.000    0.000    0.000    0.000 {method '__contains__' of 'set' objects}
+        1    0.000    0.000    0.000    0.000 router.py:438(AllowedFailsPolicy)
+        1    0.000    0.000    0.000    0.000 _base_client.py:232(BaseSyncPage)
+        1    0.000    0.000    0.000    0.000 base_futures.py:1()
+        1    0.000    0.000    0.000    0.000 v2_pods_metric_source.py:21(V2PodsMetricSource)
+        1    0.000    0.000    0.000    0.000 memory.py:48(MemoryObjectStreamState)
+        1    0.000    0.000    0.000    0.000 azure_sentinel.py:1()
+        1    0.000    0.000    0.000    0.000 openai_evals.py:411(RunDeleteResponse)
+       12    0.000    0.000    0.000    0.000 feedparser.py:122(pushlines)
+        1    0.000    0.000    0.000    0.000 v1_volume_error.py:1()
+        1    0.000    0.000    0.000    0.000 v1_self_subject_access_review.py:1()
+        1    0.000    0.000    0.000    0.000 utils.py:163(__init__)
+        9    0.000    0.000    0.000    0.000 main.py:39(str_to_bool)
+        1    0.000    0.000    0.000    0.000 v1_rbd_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 signers.py:1()
+        8    0.000    0.000    0.000    0.000 six.py:85(_import_module)
+        1    0.000    0.000    0.000    0.000 connection_pool.py:48(__init__)
+        1    0.000    0.000    0.000    0.000 http11.py:50(AsyncHTTP11Connection)
+        1    0.000    0.000    0.000    0.000 unicode.py:75(nums)
+        1    0.000    0.000    0.000    0.000 response_input.py:1()
+       57    0.000    0.000    0.000    0.000 _make.py:2006(_setattr)
+        4    0.000    0.000    0.000    0.000 :117(splitext)
+        1    0.000    0.000    0.000    0.000 pagination.py:135(SyncConversationCursorPage)
+        2    0.000    0.000    0.000    0.000 decorators.py:27(pass_context)
+        2    0.000    0.000    0.000    0.000 _adapters.py:90(__getitem__)
+        1    0.000    0.000    0.000    0.000 __init__.py:1243(__init__)
+        1    0.000    0.000    0.000    0.000 http11.py:245(_response_closed)
+        1    0.000    0.000    0.000    0.000 model_param_helper.py:19(ModelParamHelper)
+        1    0.000    0.000    0.000    0.000 apps_api.py:1()
+        1    0.000    0.000    0.000    0.000 secrets.py:1()
+        1    0.000    0.000    0.000    0.000 printer.py:1()
+        2    0.000    0.000    0.000    0.000 console.py:169(update)
+       23    0.000    0.000    0.000    0.000 core_schema.py:230(simple_ser_schema)
+        9    0.000    0.000    0.000    0.000 _weakrefset.py:85(add)
+        1    0.000    0.000    0.000    0.000 credentials.py:57(Credentials)
+        1    0.000    0.000    0.000    0.000 _config.py:205(ConfigWrapperStack)
+        4    0.000    0.000    0.000    0.000 six.py:119(_resolve)
+        1    0.000    0.000    0.000    0.000 router.py:455(RetryPolicy)
+        1    0.000    0.000    0.000    0.000 _version_info.py:10(VersionInfo)
+        2    0.000    0.000    0.000    0.000 charset.py:211(__init__)
+        1    0.000    0.000    0.000    0.000 _utility.py:333()
+        1    0.000    0.000    0.000    0.000 _utility.py:291(terminal_size)
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1beta1_api.py:27(AdmissionregistrationV1beta1Api)
+        1    0.000    0.000    0.000    0.000 common_utils.py:43()
+        1    0.000    0.000    0.000    0.000 rerank_utils.py:1()
+        1    0.000    0.000    0.000    0.000 athina.py:1()
+        1    0.000    0.000    0.000    0.000 ssl.py:1236(send)
+       46    0.000    0.000    0.000    0.000 {method 'issuperset' of 'frozenset' objects}
+        3    0.000    0.000    0.000    0.000 {built-in method posix.mkdir}
+        1    0.000    0.000    0.000    0.000 {built-in method fastuuid.fastuuid.uuid4}
+        1    0.000    0.000    0.000    0.000 loaders.py:591(ModuleLoader)
+        1    0.000    0.000    0.000    0.000 create_embedding_response.py:12(Usage)
+        1    0.000    0.000    0.000    0.000 _client.py:836(OpenAIWithRawResponse)
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_binding.py:21(V1ValidatingAdmissionPolicyBinding)
+        1    0.000    0.000    0.000    0.000 v1_load_balancer_status.py:21(V1LoadBalancerStatus)
+        1    0.000    0.000    0.000    0.000 plugin_handler.py:1()
+        1    0.000    0.000    0.000    0.000 context_handler.py:1()
+        1    0.000    0.000    0.000    0.000 slack_alerting.py:197(HangingRequestData)
+        1    0.000    0.000    0.000    0.000 mcp.py:179(MCPDuringCallResponseObject)
+        1    0.000    0.000    0.000    0.000 utils.py:2853(StandardCallbackDynamicParams)
+        1    0.000    0.000    0.000    0.000 sync_service.py:23(__init__)
+        1    0.000    0.000    0.000    0.000 _types.py:837(ModelParams)
+       36    0.000    0.000    0.000    0.000 _make.py:921()
+        1    0.000    0.000    0.000    0.000 _base_client.py:843(SyncAPIClient)
+        1    0.000    0.000    0.000    0.000 helpers.py:92()
+       20    0.000    0.000    0.000    0.000 asn1.py:65(remaining_data)
+        1    0.000    0.000    0.000    0.000 model_param_helper.py:83(_get_litellm_supported_chat_completion_kwargs)
+       10    0.000    0.000    0.000    0.000 asn1.py:157(_convertTag)
+        1    0.000    0.000    0.000    0.000 __init__.py:253(MaxLen)
+        6    0.000    0.000    0.000    0.000 __init__.py:1402(_fixupChildren)
+       17    0.000    0.000    0.000    0.000 {built-in method posix.urandom}
+        1    0.000    0.000    0.000    0.000 pagination.py:164(AsyncConversationCursorPage)
+       31    0.000    0.000    0.000    0.000 __init__.py:1267(__init__)
+        2    0.000    0.000    0.000    0.000 threading.py:422(__init__)
+        2    0.000    0.000    0.000    0.000 six.py:493(Module_six_moves_urllib)
+        1    0.000    0.000    0.000    0.000 v1_pod_status.py:21(V1PodStatus)
+       13    0.000    0.000    0.000    0.000 _models.py:123(raw)
+        1    0.000    0.000    0.000    0.000 _client.py:574(Client)
+        1    0.000    0.000    0.000    0.000 pydoc.py:570(HTMLDoc)
+        8    0.000    0.000    0.000    0.000 _discriminated_union.py:30(set_discriminator_in_metadata)
+       49    0.000    0.000    0.000    0.000 typing_extensions.py:708()
+       37    0.000    0.000    0.000    0.000 fields.py:910(__init__)
+        1    0.000    0.000    0.000    0.000 get_litellm_params.py:1()
+        1    0.000    0.000    0.000    0.000 _client.py:981(AsyncOpenAIWithRawResponse)
+        1    0.000    0.000    0.000    0.000 _client.py:1126(OpenAIWithStreamedResponse)
+        6    0.000    0.000    0.000    0.000 text.py:1130()
+        5    0.000    0.000    0.000    0.000 datetime.py:528(_check_time_fields)
+        1    0.000    0.000    0.000    0.000 v1_config_map.py:21(V1ConfigMap)
+        1    0.000    0.000    0.000    0.000 version_info.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_binding.py:1()
+        1    0.000    0.000    0.000    0.000 v1_for_node.py:21(V1ForNode)
+        1    0.000    0.000    0.000    0.000 client.py:587(ClientEndpointBridge)
+       43    0.000    0.000    0.000    0.000 _compat_pickle.py:165()
+        1    0.000    0.000    0.000    0.000 response_item.py:95(LocalShellCallOutput)
+        7    0.000    0.000    0.000    0.000 core_schema.py:499(none_schema)
+        1    0.000    0.000    0.000    0.000 {built-in method time.tzset}
+        1    0.000    0.000    0.000    0.000 v1alpha1_group_version_resource.py:1()
+        1    0.000    0.000    0.000    0.000 dall_e_3_transformation.py:16(DallE3ImageGenerationConfig)
+        5    0.000    0.000    0.000    0.000 datetime.py:545(_check_tzinfo_arg)
+        3    0.000    0.000    0.000    0.000 feedparser.py:139(__init__)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_api_service_list.py:21(V1APIServiceList)
+       57    0.000    0.000    0.000    0.000 utils.py:1152(__init__)
+        1    0.000    0.000    0.000    0.000 langfuse_mock_client.py:1()
+        1    0.000    0.000    0.000    0.000 _client.py:1271(AsyncOpenAIWithStreamedResponse)
+       36    0.000    0.000    0.000    0.000 _make.py:932()
+       18    0.000    0.000    0.000    0.000 typing.py:1386()
+        1    0.000    0.000    0.000    0.000 _argparse.py:29(RichHelpFormatter)
+        1    0.000    0.000    0.000    0.000 netrc.py:1()
+        1    0.000    0.000    0.000    0.000 v1_resource_attributes.py:1()
+       37    0.000    0.000    0.000    0.000 _make.py:441()
+       10    0.000    0.000    0.000    0.000 _models.py:221()
+       30    0.000    0.000    0.000    0.000 functional_validators.py:650(model_validator)
+        2    0.000    0.000    0.000    0.000 main.py:22(_load_dotenv_disabled)
+        1    0.000    0.000    0.000    0.000 v1_secret.py:1()
+        1    0.000    0.000    0.000    0.000 v1_resource_quota_status.py:1()
+        1    0.000    0.000    0.000    0.000 _pydantic.py:1()
+       56    0.000    0.000    0.000    0.000 keyboard.py:192()
+        1    0.000    0.000    0.000    0.000 terminal.py:257(__init__color_capabilities)
+        1    0.000    0.000    0.000    0.000 _models.py:188()
+        5    0.000    0.000    0.000    0.000 __init__.py:435(validate)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:1917(IPv6Address)
+        1    0.000    0.000    0.000    0.000 v1_api_group.py:21(V1APIGroup)
+        1    0.000    0.000    0.000    0.000 recursive_character_text_splitter.py:1()
+        1    0.000    0.000    0.000    0.000 gpt_transformation.py:16(GPTImageGenerationConfig)
+        1    0.000    0.000    0.000    0.000 overlay.py:1()
+        1    0.000    0.000    0.000    0.000 custom_tool_input_format.py:12(Text)
+       40    0.000    0.000    0.000    0.000 _make.py:1658()
+        4    0.000    0.000    0.000    0.000 in_memory_cache.py:52(check_value_size)
+        1    0.000    0.000    0.000    0.000 openmeter.py:1()
+        2    0.000    0.000    0.000    0.000 :164(islink)
+        1    0.000    0.000    0.000    0.000 subprocess.py:749(Popen)
+        1    0.000    0.000    0.000    0.000 __init__.py:397(Distribution)
+        4    0.000    0.000    0.000    0.000 _utility.py:471(is_style)
+        2    0.000    0.000    0.000    0.000 core.py:3428(_generateDefaultName)
+        1    0.000    0.000    0.000    0.000 _types.py:1295(MCPOAuthUserCredentialRequest)
+        1    0.000    0.000    0.000    0.000 container_create_response.py:11(ExpiresAfter)
+        1    0.000    0.000    0.000    0.000 dd_tracing.py:55(_should_use_dd_tracer)
+        1    0.000    0.000    0.000    0.000 _credentials_base.py:1()
+        1    0.000    0.000    0.000    0.000 container_retrieve_response.py:11(ExpiresAfter)
+        1    0.000    0.000    0.000    0.000 connection.py:185(has_expired)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_claim.py:21(V1beta2DeviceClaim)
+        1    0.000    0.000    0.000    0.000 v1_endpoint_slice.py:1()
+        8    0.000    0.000    0.000    0.000 _headers.py:205(get_comma_header)
+        4    0.000    0.000    0.000    0.000 types.py:1465(__get_pydantic_core_schema__)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_status.py:1()
+        1    0.000    0.000    0.000    0.000 stability.py:152(StabilityControlRequest)
+        1    0.000    0.000    0.000    0.000 response_input_file_content.py:11(ResponseInputFileContent)
+        2    0.000    0.000    0.000    0.000 message.py:409(__getitem__)
+        1    0.000    0.000    0.000    0.000 v1_named_rule_with_operations.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:3150(QuotedString)
+        1    0.000    0.000    0.000    0.000 lunary.py:1()
+        1    0.000    0.000    0.000    0.000 v1_role_binding.py:1()
+        1    0.000    0.000    0.000    0.000 v1_mutating_webhook.py:1()
+        1    0.000    0.000    0.000    0.000 _base_client.py:1440(AsyncAPIClient)
+        2    0.000    0.000    0.000    0.000 datetime.py:1340(__new__)
+        1    0.000    0.000    0.000    0.000 core.py:3393(__init__)
+        1    0.000    0.000    0.000    0.000 v1_volume_resource_requirements.py:21(V1VolumeResourceRequirements)
+        1    0.000    0.000    0.000    0.000 image_url_delta.py:11(ImageURLDelta)
+        2    0.000    0.000    0.000    0.000 threading.py:389(notify_all)
+        5    0.000    0.000    0.000    0.000 core.py:6034(token_map)
+       55    0.000    0.000    0.000    0.000 backend.py:2632(__init__)
+        9    0.000    0.000    0.000    0.000 terminal.py:341(__getattr__)
+        1    0.000    0.000    0.000    0.000 pagination.py:102(AsyncCursorPage)
+        1    0.000    0.000    0.000    0.000 image_file_delta.py:11(ImageFileDelta)
+        1    0.000    0.000    0.000    0.000 response_item.py:54(LocalShellCallAction)
+        1    0.000    0.000    0.000    0.000 screen.py:1()
+        1    0.000    0.000    0.000    0.000 ssl.py:503(_encode_hostname)
+        1    0.000    0.000    0.000    0.000 composer.py:1()
+        1    0.000    0.000    0.000    0.000 v1_object_reference.py:1()
+        1    0.000    0.000    0.000    0.000 state_core.py:1()
+        1    0.000    0.000    0.000    0.000 prompt_layer.py:1()
+        1    0.000    0.000    0.000    0.000 anthropic_skills.py:148(DeleteSkillVersionResponse)
+        1    0.000    0.000    0.000    0.000 _types.py:1946(LiteLLM_TeamMemberTable)
+        1    0.000    0.000    0.000    0.000 tool.py:46(McpAllowedToolsMcpToolFilter)
+        7    0.000    0.000    0.000    0.000 typing.py:1040(__init__)
+       45    0.000    0.000    0.000    0.000 core.py:1929(streamline)
+        6    0.000    0.000    0.000    0.000 vertex_and_google_ai_studio_gemini.py:2470(__init__)
+        1    0.000    0.000    0.000    0.000 supabase.py:1()
+        1    0.000    0.000    0.000    0.000 score_model_grader.py:53(Input)
+       38    0.000    0.000    0.000    0.000 :315(__subclasshook__)
+        1    0.000    0.000    0.000    0.000 transformation.py:23(OpenAILikeChatConfig)
+        1    0.000    0.000    0.000    0.000 model.py:485(OperationModel)
+        1    0.000    0.000    0.000    0.000 binding.py:148(_register_osrandom_engine)
+        1    0.000    0.000    0.000    0.000 mcp_server_manager.py:13(MCPOAuthMetadata)
+        1    0.000    0.000    0.000    0.000 utils.py:1617(S3ExpressIdentityCache)
+        1    0.000    0.000    0.000    0.000 response_output_item.py:52(LocalShellCallAction)
+        9    0.000    0.000    0.000    0.000 typing.py:277(_unpack_args)
+        4    0.000    0.000    0.000    0.000 {built-in method posix.pipe}
+       50    0.000    0.000    0.000    0.000 core.py:4282()
+        1    0.000    0.000    0.000    0.000 certs.py:27(where)
+       16    0.000    0.000    0.000    0.000 _IntegerGMP.py:642(is_even)
+        1    0.000    0.000    0.000    0.000 v1_pod_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_node_driver.py:21(V1CSINodeDriver)
+       43    0.000    0.000    0.000    0.000 _helpers.py:31(copy_docstring)
+        1    0.000    0.000    0.000    0.000 gemini_ingestion.py:1()
+       15    0.000    0.000    0.000    0.000 ssl.py:1000(_sslcopydoc)
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment_source.py:21(V1VolumeAttachmentSource)
+        1    0.000    0.000    0.000    0.000 _types.py:4060(OIDCPermissions)
+        1    0.000    0.000    0.000    0.000 __future__.py:1()
+        1    0.000    0.000    0.000    0.000 v1_job_status.py:1()
+        2    0.000    0.000    0.000    0.000 core.py:5822(__init__)
+        1    0.000    0.000    0.000    0.000 glob.py:9(Translator)
+        1    0.000    0.000    0.000    0.000 runtime.py:660(Macro)
+       41    0.000    0.000    0.000    0.000 enum.py:92(_is_single_bit)
+        1    0.000    0.000    0.000    0.000 transformation.py:42(BaseContainerConfig)
+        1    0.000    0.000    0.000    0.000 v1_object_meta.py:21(V1ObjectMeta)
+        1    0.000    0.000    0.000    0.000 v1_priority_class.py:1()
+        1    0.000    0.000    0.000    0.000 arize_phoenix_client.py:1()
+        1    0.000    0.000    0.000    0.000 quoprimime.py:55()
+        1    0.000    0.000    0.000    0.000 streaming_iterator.py:372(ResponsesAPIStreamingIterator)
+        1    0.000    0.000    0.000    0.000 response_tool_search_call.py:11(ResponseToolSearchCall)
+        4    0.000    0.000    0.000    0.000 _model_construction.py:305(init_private_attributes)
+        2    0.000    0.000    0.000    0.000 {built-in method posix.open}
+        1    0.000    0.000    0.000    0.000 v1beta1_cel_device_selector.py:21(V1beta1CELDeviceSelector)
+        1    0.000    0.000    0.000    0.000 padding.py:16(PKCS1v15)
+        2    0.000    0.000    0.000    0.000 selectors.py:583(_can_use)
+        8    0.000    0.000    0.000    0.000 _raw_api.py:235(c_uint8_ptr)
+        1    0.000    0.000    0.000    0.000 posthog.py:37(PostHogLogger)
+        1    0.000    0.000    0.000    0.000 v1_rbd_persistent_volume_source.py:21(V1RBDPersistentVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_validating_webhook.py:1()
+        1    0.000    0.000    0.000    0.000 v1_deployment_spec.py:1()
+        1    0.000    0.000    0.000    0.000 rules.py:330(Rule)
+        8    0.000    0.000    0.000    0.000 tag.py:256(register)
+        1    0.000    0.000    0.000    0.000 http.py:285(MediaUpload)
+        1    0.000    0.000    0.000    0.000 anthropic_tool_search.py:1()
+        5    0.000    0.000    0.000    0.000 typing.py:3087(__init__)
+       50    0.000    0.000    0.000    0.000 core.py:4283()
+       37    0.000    0.000    0.000    0.000 _make.py:764()
+        1    0.000    0.000    0.000    0.000 __init__.py:779(FastPath)
+       14    0.000    0.000    0.000    0.000 fields.py:314()
+        6    0.000    0.000    0.000    0.000 _urlparse.py:303(encode_host)
+        1    0.000    0.000    0.000    0.000 _fileio.py:209(Path)
+        1    0.000    0.000    0.000    0.000 utils.py:1711(ModelResponseBase)
+        1    0.000    0.000    0.000    0.000 http11.py:281(has_expired)
+        1    0.000    0.000    0.000    0.000 ciphers.py:1()
+        1    0.000    0.000    0.000    0.000 import_export_service.py:1()
+       37    0.000    0.000    0.000    0.000 _make.py:1207(_determine_attrs_eq_order)
+       22    0.000    0.000    0.000    0.000 _policybase.py:104()
+        1    0.000    0.000    0.000    0.000 results.py:36(ParseResults)
+        1    0.000    0.000    0.000    0.000 v1_topology_spread_constraint.py:21(V1TopologySpreadConstraint)
+        1    0.000    0.000    0.000    0.000 compress.py:1()
+        2    0.000    0.000    0.000    0.000 handler.py:21(__init__)
+        1    0.000    0.000    0.000    0.000 anthropic_skills.py:74(DeleteSkillResponse)
+        1    0.000    0.000    0.000    0.000 _common.py:149(_tzinfo)
+        1    0.000    0.000    0.000    0.000 amazon_titan_multimodal_transformation.py:1()
+        1    0.000    0.000    0.000    0.000 anthropic_skills.py:85(CreateSkillVersionRequest)
+        1    0.000    0.000    0.000    0.000 s3.py:1()
+       37    0.000    0.000    0.000    0.000 _make.py:477()
+        4    0.000    0.000    0.000    0.000 {built-in method _ssl.txt2obj}
+        2    0.000    0.000    0.000    0.000 sync.py:171(get_extra_info)
+       30    0.000    0.000    0.000    0.000 {method 'rsplit' of 'str' objects}
+        7    0.000    0.000    0.000    0.000 :1081(__subclasshook__)
+        1    0.000    0.000    0.000    0.000 sysconfig.py:243(is_python_build)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_request_allocation_result.py:21(V1beta2DeviceRequestAllocationResult)
+        1    0.000    0.000    0.000    0.000 terminal.py:1000(number_of_colors)
+        1    0.000    0.000    0.000    0.000 anthropic_skills.py:22(ListSkillsParams)
+       50    0.000    0.000    0.000    0.000 _policybase.py:313(header_store_parse)
+        1    0.000    0.000    0.000    0.000 _tzpath.py:31(_parse_python_tzpath)
+        5    0.000    0.000    0.000    0.000 __init__.py:1720(getEffectiveLevel)
+        1    0.000    0.000    0.000    0.000 functools.py:651(cache)
+        1    0.000    0.000    0.000    0.000 fine_tuning_job_wandb_integration.py:10(FineTuningJobWandbIntegration)
+        1    0.000    0.000    0.000    0.000 utils.py:981(ChatCompletionDeltaToolCall)
+        2    0.000    0.000    0.000    0.000 idna.py:145(encode)
+        4    0.000    0.000    0.000    0.000 _date.py:42()
+        1    0.000    0.000    0.000    0.000 v1_ceph_fs_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 tool.py:79(McpRequireApprovalMcpToolApprovalFilterNever)
+        1    0.000    0.000    0.000    0.000 v1_resource_quota.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_version.py:1()
+        1    0.000    0.000    0.000    0.000 http.py:552(MediaFileUpload)
+        1    0.000    0.000    0.000    0.000 main.py:77(get_secret_bool)
+       28    0.000    0.000    0.000    0.000 _make.py:1776()
+        6    0.000    0.000    0.000    0.000 _receivebuffer.py:57(__bool__)
+       50    0.000    0.000    0.000    0.000 _policybase.py:209(header_max_count)
+        1    0.000    0.000    0.000    0.000 v1_ip_block.py:1()
+        1    0.000    0.000    0.000    0.000 batch_error.py:10(BatchError)
+        1    0.000    0.000    0.000    0.000 tool.py:64(McpRequireApprovalMcpToolApprovalFilterAlways)
+        3    0.000    0.000    0.000    0.000 _models.py:287(origin)
+        1    0.000    0.000    0.000    0.000 _discriminated_union.py:100(_ApplyInferredDiscriminator)
+        1    0.000    0.000    0.000    0.000 v1_endpoint.py:21(V1Endpoint)
+        1    0.000    0.000    0.000    0.000 response_apply_patch_tool_call_output.py:11(ResponseApplyPatchToolCallOutput)
+        1    0.000    0.000    0.000    0.000 _models.py:402(read)
+        1    0.000    0.000    0.000    0.000 v1_toleration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_api_resource.py:1()
+        7    0.000    0.000    0.000    0.000 argparse.py:1865(_get_positional_actions)
+        8    0.000    0.000    0.000    0.000 platform.py:825(uname)
+        1    0.000    0.000    0.000    0.000 service_application.py:1()
+        1    0.000    0.000    0.000    0.000 universe.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:1314(MCPUserCredentialListItem)
+        1    0.000    0.000    0.000    0.000 {method 'write' of '_ssl._SSLSocket' objects}
+        1    0.000    0.000    0.000    0.000 _client.py:1320(AsyncClient)
+        1    0.000    0.000    0.000    0.000 v1_csi_persistent_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 sync_handler.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:3585(VirtualKeyEvent)
+        1    0.000    0.000    0.000    0.000 image_file.py:11(ImageFile)
+        1    0.000    0.000    0.000    0.000 _models.py:1013(Cookies)
+       14    0.000    0.000    0.000    0.000 _typing_extra.py:91(is_deprecated_instance)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:1487(IPv4Network)
+        3    0.000    0.000    0.000    0.000 _utility.py:457(get_style_codes)
+       46    0.000    0.000    0.000    0.000 _exceptions.py:7(map_exceptions)
+        1    0.000    0.000    0.000    0.000 v1_replica_set_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_owner_reference.py:1()
+        1    0.000    0.000    0.000    0.000 decorators.py:344(decorator)
+       16    0.000    0.000    0.000    0.000 _discriminated_union.py:113(__init__)
+       46    0.000    0.000    0.000    0.000 dataclasses.py:842(_hash_set_none)
+        1    0.000    0.000    0.000    0.000 v1_namespace_spec.py:21(V1NamespaceSpec)
+        1    0.000    0.000    0.000    0.000 v1_azure_disk_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 errors.py:35(HttpError)
+        1    0.000    0.000    0.000    0.000 handler.py:10(AzureOpenAIFineTuningAPI)
+        1    0.000    0.000    0.000    0.000 _types.py:3598(LiteLLM_TeamMembership)
+        2    0.000    0.000    0.000    0.000 sysconfig.py:347(get_default_scheme)
+        8    0.000    0.000    0.000    0.000 :262(__subclasshook__)
+        1    0.000    0.000    0.000    0.000 utils.py:121(ProviderSpecificModelInfo)
+        1    0.000    0.000    0.000    0.000 service_account.py:519(IDTokenCredentials)
+        1    0.000    0.000    0.000    0.000 v1_replica_set.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:3349(ManagementEndpointLoggingPayload)
+        1    0.000    0.000    0.000    0.000 v1_resource_rule.py:1()
+        4    0.000    0.000    0.000    0.000 six.py:164(_resolve)
+        1    0.000    0.000    0.000    0.000 utils.py:3355(LiteLLMBatch)
+        1    0.000    0.000    0.000    0.000 _base_client.py:320(BaseAsyncPage)
+        1    0.000    0.000    0.000    0.000 _lazy_imports_registry.py:1()
+        1    0.000    0.000    0.000    0.000 v1_subject_access_review_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_network_policy.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_condition.py:1()
+        1    0.000    0.000    0.000    0.000 completion_usage.py:10(CompletionTokensDetails)
+        1    0.000    0.000    0.000    0.000 _generate_schema.py:327(TypesNamespaceStack)
+        1    0.000    0.000    0.000    0.000 _doc_utils.py:234(__init__)
+        1    0.000    0.000    0.000    0.000 py313.py:12(wrap)
+       13    0.000    0.000    0.000    0.000 enum.py:923()
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:3422(__init__)
+        1    0.000    0.000    0.000    0.000 v1_pod_security_context.py:21(V1PodSecurityContext)
+        1    0.000    0.000    0.000    0.000 v1_status.py:21(V1Status)
+       37    0.000    0.000    0.000    0.000 _make.py:2047(_determine_setters)
+        2    0.000    0.000    0.000    0.000 :682(__setitem__)
+       38    0.000    0.000    0.000    0.000 _connection.py:212(their_state)
+        4    0.000    0.000    0.000    0.000 _policybase.py:60(clone)
+        1    0.000    0.000    0.000    0.000 core_v1_event.py:21(CoreV1Event)
+        1    0.000    0.000    0.000    0.000 base.py:1023(RevokedCertificateBuilder)
+       33    0.000    0.000    0.000    0.000 {method 'startswith' of 'bytes' objects}
+        1    0.000    0.000    0.000    0.000 v1_selectable_field.py:1()
+        1    0.000    0.000    0.000    0.000 v1_self_subject_rules_review.py:1()
+        1    0.000    0.000    0.000    0.000 v1_replication_controller_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_condition.py:1()
+       14    0.000    0.000    0.000    0.000 local.py:375(_l_to_r_op)
+        1    0.000    0.000    0.000    0.000 handler.py:32(__init__)
+        1    0.000    0.000    0.000    0.000 utils.py:3293(TokenCountResponse)
+        1    0.000    0.000    0.000    0.000 chat_completion_chunk.py:86(ChoiceLogprobs)
+        1    0.000    0.000    0.000    0.000 handler.py:37(SagemakerLLM)
+        1    0.000    0.000    0.000    0.000 v1_endpoint_address.py:1()
+        1    0.000    0.000    0.000    0.000 serving.py:158(WSGIRequestHandler)
+        1    0.000    0.000    0.000    0.000 terminal.py:266(__clear_color_capabilities)
+        1    0.000    0.000    0.000    0.000 transformation.py:32(OCRPageImage)
+        1    0.000    0.000    0.000    0.000 _events.py:128(_ResponseBase)
+        8    0.000    0.000    0.000    0.000 errors.py:103(__init__)
+        1    0.000    0.000    0.000    0.000 v1_node_status.py:21(V1NodeStatus)
+        1    0.000    0.000    0.000    0.000 v1_storage_os_persistent_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_service_account_token_projection.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_selector_requirement.py:1()
+        1    0.000    0.000    0.000    0.000 tz.py:132(tzoffset)
+        1    0.000    0.000    0.000    0.000 oci.py:66(OCIToolDefinition)
+        1    0.000    0.000    0.000    0.000 anthropic.py:84(AnthropicHostedTools)
+        3    0.000    0.000    0.000    0.000 repr.py:42(do_replace)
+        1    0.000    0.000    0.000    0.000 _client.py:162(BaseClient)
+       37    0.000    0.000    0.000    0.000 _make.py:307(_has_own_attribute)
+        1    0.000    0.000    0.000    0.000 _make.py:2902()
+        1    0.000    0.000    0.000    0.000 v1_pod_affinity_term.py:1()
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_status.py:1()
+        1    0.000    0.000    0.000    0.000 transcription_text_delta_event.py:11(Logprob)
+        1    0.000    0.000    0.000    0.000 guardrails.py:869(PatchGuardrailRequest)
+       11    0.000    0.000    0.000    0.000 _known_annotated_metadata.py:381(check_metadata)
+        4    0.000    0.000    0.000    0.000 platform.py:1002(_sys_version)
+        1    0.000    0.000    0.000    0.000 jwt.py:319(Credentials)
+        1    0.000    0.000    0.000    0.000 v1_job_spec.py:21(V1JobSpec)
+        1    0.000    0.000    0.000    0.000 v1_role_binding_list.py:1()
+       13    0.000    0.000    0.000    0.000 dd_tracing.py:43(wrap)
+        1    0.000    0.000    0.000    0.000 router.py:773(PreRoutingHookResponse)
+       31    0.000    0.000    0.000    0.000 common_utils.py:40()
+        1    0.000    0.000    0.000    0.000 events_v1_event.py:21(EventsV1Event)
+        1    0.000    0.000    0.000    0.000 v1_ingress_list.py:1()
+        2    0.000    0.000    0.000    0.000 resource.py:17(ResourceEndpoint)
+       46    0.000    0.000    0.000    0.000 core.py:806(postParse)
+        1    0.000    0.000    0.000    0.000 _types.py:4286(BaseDailySpendTransaction)
+        1    0.000    0.000    0.000    0.000 anthropic.py:550(AnthropicResponseContentBlockToolUse)
+       37    0.000    0.000    0.000    0.000 _make.py:679()
+        3    0.000    0.000    0.000    0.000 ssl.py:604(minimum_version)
+       20    0.000    0.000    0.000    0.000 {method 'difference' of 'set' objects}
+        2    0.000    0.000    0.000    0.000 _figure.py:111(subplots)
+        1    0.000    0.000    0.000    0.000 v1_pod_disruption_budget.py:1()
+        1    0.000    0.000    0.000    0.000 posthog_mock_client.py:1()
+        1    0.000    0.000    0.000    0.000 openai_evals.py:278(ListRunsParams)
+        1    0.000    0.000    0.000    0.000 openai_evals.py:295(ResultCounts)
+        1    0.000    0.000    0.000    0.000 _types.py:1681(GlobalEndUsersSpend)
+        2    0.000    0.000    0.000    0.000 _connection.py:72(_keep_alive)
+        1    0.000    0.000    0.000    0.000 _generate_schema.py:2513(_Definitions)
+        2    0.000    0.000    0.000    0.000 datetime.py:923(__new__)
+        1    0.000    0.000    0.000    0.000 v1_namespace_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_job_condition.py:1()
+        1    0.000    0.000    0.000    0.000 fallback_utils.py:1()
+        1    0.000    0.000    0.000    0.000 mock_client_factory.py:273(should_use_mock)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_slice_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_allocation_result.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_slice_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_runtime_class_list.py:1()
+       11    0.000    0.000    0.000    0.000 utils.py:81(from_obj)
+        1    0.000    0.000    0.000    0.000 parsed_response.py:62(ParsedResponseFunctionToolCall)
+        1    0.000    0.000    0.000    0.000 typing.py:1564(__repr__)
+        1    0.000    0.000    0.000    0.000 v1_scale.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_disruption_budget_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_horizontal_pod_autoscaler.py:1()
+        1    0.000    0.000    0.000    0.000 http.py:629(MediaInMemoryUpload)
+        6    0.000    0.000    0.000    0.000 core.py:1202(__init__)
+       21    0.000    0.000    0.000    0.000 threading.py:90(RLock)
+       11    0.000    0.000    0.000    0.000 {method 'settimeout' of '_socket.socket' objects}
+        1    0.000    0.000    0.000    0.000 _build.py:1()
+        1    0.000    0.000    0.000    0.000 storage_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint_rule_list.py:21(V1alpha3DeviceTaintRuleList)
+        1    0.000    0.000    0.000    0.000 v1_self_subject_review.py:1()
+        1    0.000    0.000    0.000    0.000 v1_stateful_set.py:1()
+        1    0.000    0.000    0.000    0.000 v1_glusterfs_persistent_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 revocation.py:19(RevocationEndpoint)
+        1    0.000    0.000    0.000    0.000 transformation.py:21(OobaboogaConfig)
+        1    0.000    0.000    0.000    0.000 v1alpha1_cluster_trust_bundle_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_http_get_action.py:1()
+        1    0.000    0.000    0.000    0.000 v1_delete_options.py:1()
+       25    0.000    0.000    0.000    0.000 csp.py:6(csp_property)
+        1    0.000    0.000    0.000    0.000 v1_namespace.py:1()
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume.py:1()
+        1    0.000    0.000    0.000    0.000 schema.py:170(_SchemaToStruct)
+        1    0.000    0.000    0.000    0.000 webauthn_types.py:8(PublicKeyCredentialDescriptor)
+        4    0.000    0.000    0.000    0.000 aiohttp_transport.py:152(__init__)
+        1    0.000    0.000    0.000    0.000 utils.py:2231(ImageUsageInputTokensDetails)
+        1    0.000    0.000    0.000    0.000 console.py:791(_detect_color_system)
+        1    0.000    0.000    0.000    0.000 v1_subject_access_review.py:1()
+        1    0.000    0.000    0.000    0.000 http.py:428(MediaIoBaseUpload)
+        1    0.000    0.000    0.000    0.000 rag.py:252(RAGIngestRequest)
+        1    0.000    0.000    0.000    0.000 cookies.py:165()
+        1    0.000    0.000    0.000    0.000 v1_node.py:1()
+       32    0.000    0.000    0.000    0.000 exceptions.py:46(__init__)
+        1    0.000    0.000    0.000    0.000 stability.py:90(StabilityOutpaintRequest)
+        1    0.000    0.000    0.000    0.000 format_helpers.py:1()
+        1    0.000    0.000    0.000    0.000 RSA.py:423(publickey)
+        9    0.000    0.000    0.000    0.000 weakref.py:367(__init__)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_template.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cron_job_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request_spec.py:1()
+        1    0.000    0.000    0.000    0.000 validators.py:667(_OrValidator)
+        1    0.000    0.000    0.000    0.000 v1_subject_rules_review_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_token_review.py:1()
+        1    0.000    0.000    0.000    0.000 converse_handler.py:89(__init__)
+        1    0.000    0.000    0.000    0.000 response_text_done_event.py:11(LogprobTopLogprob)
+       12    0.000    0.000    0.000    0.000 text.py:402(plain)
+        1    0.000    0.000    0.000    0.000 _generate_schema.py:2580(_ModelTypeStack)
+        1    0.000    0.000    0.000    0.000 {built-in method posix.getpid}
+        1    0.000    0.000    0.000    0.000 v1_replication_controller.py:1()
+        1    0.000    0.000    0.000    0.000 v1_policy_rule.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress.py:1()
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1_service_reference.py:1()
+        1    0.000    0.000    0.000    0.000 errors.py:161(BatchError)
+        1    0.000    0.000    0.000    0.000 pathlib.py:1262(is_file)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_request.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_slice_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_resource_quota_list.py:1()
+        1    0.000    0.000    0.000    0.000 base.py:29(BaseLiteLLMOpenAIResponseObject)
+       21    0.000    0.000    0.000    0.000 _make.py:394()
+        2    0.000    0.000    0.000    0.000 sysconfig.py:335(get_preferred_scheme)
+        5    0.000    0.000    0.000    0.000 _url.py:367(__new__)
+        1    0.000    0.000    0.000    0.000 v1_cluster_trust_bundle_projection.py:21(V1ClusterTrustBundleProjection)
+        1    0.000    0.000    0.000    0.000 v1_replication_controller_condition.py:1()
+       32    0.000    0.000    0.000    0.000 _internal.py:128(__init__)
+        1    0.000    0.000    0.000    0.000 _parser.py:1371(_tzparser)
+        1    0.000    0.000    0.000    0.000 oci.py:335(CohereUsage)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:315(CachedContentRequestBody)
+        1    0.000    0.000    0.000    0.000 console.py:921(encoding)
+        4    0.000    0.000    0.000    0.000 _models.py:262()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_class_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_azure_file_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 web_application.py:1()
+       12    0.000    0.000    0.000    0.000 base.py:76(__init__)
+        2    0.000    0.000    0.000    0.000 {built-in method cryptography.hazmat.bindings._openssl.ERR_clear_error}
+        1    0.000    0.000    0.000    0.000 oci.py:150(OCIResponseChoice)
+        1    0.000    0.000    0.000    0.000 transformation.py:18(SearchResult)
+        1    0.000    0.000    0.000    0.000 response_apply_patch_tool_call.py:59(ResponseApplyPatchToolCall)
+        2    0.000    0.000    0.000    0.000 parser.py:70(__init__)
+        1    0.000    0.000    0.000    0.000 pickle.py:1137(_Unpickler)
+        1    0.000    0.000    0.000    0.000 incluster_config.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_slice.py:21(V1beta2ResourceSlice)
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_role_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_se_linux_options.py:1()
+        1    0.000    0.000    0.000    0.000 v1_endpoint_slice_list.py:1()
+        1    0.000    0.000    0.000    0.000 plugin_service.py:1()
+        1    0.000    0.000    0.000    0.000 profile_service.py:1()
+        1    0.000    0.000    0.000    0.000 mlflow.py:1()
+        1    0.000    0.000    0.000    0.000 container_create_response.py:25(NetworkPolicy)
+       13    0.000    0.000    0.000    0.000 typing.py:266(_check_generic)
+        1    0.000    0.000    0.000    0.000 events.py:203(AbstractEventLoop)
+        1    0.000    0.000    0.000    0.000 tz.py:1470(__get_gettz)
+        1    0.000    0.000    0.000    0.000 response_output_item.py:36(ImageGenerationCall)
+        1    0.000    0.000    0.000    0.000 response_item.py:38(ImageGenerationCall)
+       11    0.000    0.000    0.000    0.000 console.py:758(file)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:255(ThreadLock)
+        1    0.000    0.000    0.000    0.000 _signature.py:1()
+        1    0.000    0.000    0.000    0.000 utils.py:2402(LoggedLiteLLMParams)
+        1    0.000    0.000    0.000    0.000 _python_version_support.py:188(check_python_version)
+        1    0.000    0.000    0.000    0.000 v1_iscsi_persistent_volume_source.py:21(V1ISCSIPersistentVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_secret_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_service.py:1()
+        1    0.000    0.000    0.000    0.000 v1_limit_range_item.py:1()
+        1    0.000    0.000    0.000    0.000 v1_group_version_for_discovery.py:1()
+        1    0.000    0.000    0.000    0.000 generated.py:724(ToolChoiceConfig)
+        1    0.000    0.000    0.000    0.000 transformation.py:24(OCRPageDimensions)
+       13    0.000    0.000    0.000    0.000 dual_cache.py:40(__init__)
+        1    0.000    0.000    0.000    0.000 function_tool_call_delta.py:11(Function)
+        1    0.000    0.000    0.000    0.000 container_retrieve_response.py:25(NetworkPolicy)
+        1    0.000    0.000    0.000    0.000 base.py:7(LiteLLMPydanticObjectBase)
+        6    0.000    0.000    0.000    0.000 console.py:159(copy)
+        4    0.000    0.000    0.000    0.000 {method '_set_alpn_protocols' of '_ssl._SSLContext' objects}
+        1    0.000    0.000    0.000    0.000 v1_container_status.py:21(V1ContainerStatus)
+        1    0.000    0.000    0.000    0.000 bucket.py:1()
+        1    0.000    0.000    0.000    0.000 handle_error.py:1()
+       34    0.000    0.000    0.000    0.000 _compat.py:44(find_spec)
+        1    0.000    0.000    0.000    0.000 _types.py:2805(DeleteProjectRequest)
+        1    0.000    0.000    0.000    0.000 _types.py:2849(LiteLLM_UserTableFiltered)
+        1    0.000    0.000    0.000    0.000 utils.py:2023(TextChoices)
+        1    0.000    0.000    0.000    0.000 main.py:66(DeleteResponseResult)
+        1    0.000    0.000    0.000    0.000 image.py:10(Image)
+        1    0.000    0.000    0.000    0.000 v1_self_subject_access_review_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_list.py:1()
+        1    0.000    0.000    0.000    0.000 testing.py:126(TestParseResultsAsserts)
+        1    0.000    0.000    0.000    0.000 _types.py:1304(MCPOAuthUserCredentialStatus)
+        1    0.000    0.000    0.000    0.000 base.py:150(Certificate)
+        1    0.000    0.000    0.000    0.000 _null_file.py:5(NullFile)
+        1    0.000    0.000    0.000    0.000 v1beta2_allocation_result.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_job.py:1()
+       11    0.000    0.000    0.000    0.000 control.py:187(strip_control_codes)
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha224}
+        5    0.000    0.000    0.000    0.000 parse.py:115(_decode_args)
+       32    0.000    0.000    0.000    0.000 {method 'endswith' of 'bytes' objects}
+       35    0.000    0.000    0.000    0.000 {built-in method _operator.index}
+        1    0.000    0.000    0.000    0.000 v1_limited_priority_level_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_horizontal_pod_autoscaler_spec.py:1()
+       36    0.000    0.000    0.000    0.000 _make.py:1695()
+        6    0.000    0.000    0.000    0.000 _receivebuffer.py:67(_extract)
+        1    0.000    0.000    0.000    0.000 _urls.py:390(__str__)
+        1    0.000    0.000    0.000    0.000 resource_v1beta1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_exact_device_request.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_template_list.py:1()
+        1    0.000    0.000    0.000    0.000 oci.py:199(CohereStreamChunk)
+       36    0.000    0.000    0.000    0.000 __init__.py:958(__bool__)
+        1    0.000    0.000    0.000    0.000 arize_phoenix.py:8(ArizePhoenixConfig)
+        1    0.000    0.000    0.000    0.000 v1_node_system_info.py:21(V1NodeSystemInfo)
+        1    0.000    0.000    0.000    0.000 v1_scale_io_persistent_volume_source.py:21(V1ScaleIOPersistentVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_spec.py:21(V1StatefulSetSpec)
+        1    0.000    0.000    0.000    0.000 _matrix.py:4(__init__)
+        1    0.000    0.000    0.000    0.000 v1_pod.py:1()
+        1    0.000    0.000    0.000    0.000 v1_horizontal_pod_autoscaler_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_deployment_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_storage_capacity.py:1()
+        1    0.000    0.000    0.000    0.000 handler.py:18(GroqChatCompletion)
+        1    0.000    0.000    0.000    0.000 utils.py:1048(ChatCompletionAudioResponse)
+       25    0.000    0.000    0.000    0.000 _IntegerGMP.py:360(is_negative)
+        1    0.000    0.000    0.000    0.000 functools.py:861()
+        1    0.000    0.000    0.000    0.000 _date.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device.py:1()
+        1    0.000    0.000    0.000    0.000 v1_portworx_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 generated.py:1238(DeleteInteractionResult)
+       34    0.000    0.000    0.000    0.000 _collections.py:25()
+        1    0.000    0.000    0.000    0.000 _types.py:1974(OrganizationRequest)
+       25    0.000    0.000    0.000    0.000 ipaddress.py:431(_ip_int_from_prefix)
+        4    0.000    0.000    0.000    0.000 results.py:221(__setitem__)
+        1    0.000    0.000    0.000    0.000 v1_service_account_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_disruption_budget_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_network_policy_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ip_address.py:1()
+       12    0.000    0.000    0.000    0.000 six.py:131(__init__)
+        2    0.000    0.000    0.000    0.000 core.py:5252(_generateDefaultName)
+        1    0.000    0.000    0.000    0.000 transformation.py:22(__init__)
+        1    0.000    0.000    0.000    0.000 getpass.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_param_ref.py:1()
+        1    0.000    0.000    0.000    0.000 v1_replica_set_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_resource_requirements.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_dns_config_option.py:1()
+        1    0.000    0.000    0.000    0.000 v1_linux_container_user.py:1()
+        1    0.000    0.000    0.000    0.000 threads.py:1()
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_list.py:1()
+        1    0.000    0.000    0.000    0.000 _internal.py:123(_DictAccessorProperty)
+        1    0.000    0.000    0.000    0.000 video_model_param.py:1()
+        9    0.000    0.000    0.000    0.000 __init__.py:163(__new__)
+        1    0.000    0.000    0.000    0.000 _decorators.py:408(DecoratorInfos)
+        3    0.000    0.000    0.000    0.000 feedparser.py:197(_new_message)
+        1    0.000    0.000    0.000    0.000 transformation.py:18(BaseEmbeddingConfig)
+        1    0.000    0.000    0.000    0.000 v1_storage_class_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_subject_access_review_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim.py:1()
+        1    0.000    0.000    0.000    0.000 v1_container_state_terminated.py:1()
+        1    0.000    0.000    0.000    0.000 introspect.py:20(IntrospectEndpoint)
+        1    0.000    0.000    0.000    0.000 metadata.py:23(MetadataEndpoint)
+        1    0.000    0.000    0.000    0.000 errors.py:179(UnexpectedMethodError)
+        1    0.000    0.000    0.000    0.000 ai_service.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:3425(SpendCalculateRequest)
+        1    0.000    0.000    0.000    0.000 openai.py:2178(CreateVideoRequest)
+        1    0.000    0.000    0.000    0.000 memory.py:190(MemoryObjectSendStream)
+        6    0.000    0.000    0.000    0.000 _adapters.py:12(__init__)
+        4    0.000    0.000    0.000    0.000 core_schema.py:3564(json_schema)
+        2    0.000    0.000    0.000    0.000 _IntegerGMP.py:656(is_perfect_square)
+        3    0.000    0.000    0.000    0.000 core.py:4967(_generateDefaultName)
+        1    0.000    0.000    0.000    0.000 generated.py:1247(CancelInteractionResult)
+        1    0.000    0.000    0.000    0.000 handler.py:15(WatsonXChatHandler)
+        1    0.000    0.000    0.000    0.000 _response.py:277(APIResponse)
+        1    0.000    0.000    0.000    0.000 connection_pool.py:21(assign_to_connection)
+        1    0.000    0.000    0.000    0.000 _tasks.py:37(TaskGroup)
+       13    0.000    0.000    0.000    0.000 hooks.py:45(make_callable)
+        1    0.000    0.000    0.000    0.000 RSA.py:223(public_key)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_slice.py:21(V1alpha3ResourceSlice)
+        1    0.000    0.000    0.000    0.000 v1_storage_os_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_service_cidr_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_service_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_replica_set_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cinder_persistent_volume_source.py:21(V1CinderPersistentVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_api_service_spec.py:1()
+        1    0.000    0.000    0.000    0.000 _structures.py:1()
+        1    0.000    0.000    0.000    0.000 transformation.py:52(OCRUsageInfo)
+        1    0.000    0.000    0.000    0.000 _functools.py:90(pass_none)
+        1    0.000    0.000    0.000    0.000 _types.py:3843(UpdateJWTKeyMappingRequest)
+        1    0.000    0.000    0.000    0.000 pagination.py:47(AsyncPage)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_priority_class_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_network_policy_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_config_status.py:1()
+        1    0.000    0.000    0.000    0.000 __init__.py:21(__deprecated_private_func)
+        1    0.000    0.000    0.000    0.000 rag.py:13(RAGChunkingStrategy)
+        1    0.000    0.000    0.000    0.000 python_grader.py:11(PythonGrader)
+        1    0.000    0.000    0.000    0.000 filter.py:1()
+        1    0.000    0.000    0.000    0.000 ssl.py:484(SSLContext)
+        1    0.000    0.000    0.000    0.000 v1_iscsi_volume_source.py:21(V1ISCSIVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1beta1_basic_device.py:1()
+        1    0.000    0.000    0.000    0.000 v1_taint.py:1()
+        1    0.000    0.000    0.000    0.000 main.py:117(ContainerListOptionalRequestParams)
+        1    0.000    0.000    0.000    0.000 openai.py:1184(InputTokensDetails)
+        1    0.000    0.000    0.000    0.000 timeouts.py:26(Timeout)
+        1    0.000    0.000    0.000    0.000 web_search_tool.py:11(Filters)
+        1    0.000    0.000    0.000    0.000 _signals.py:1()
+        1    0.000    0.000    0.000    0.000 session.py:81(Session)
+        1    0.000    0.000    0.000    0.000 response.py:39(Response)
+        1    0.000    0.000    0.000    0.000 v1_resource_quota_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_job_list.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:3944(And)
+        1    0.000    0.000    0.000    0.000 oci.py:108(OCIServingMode)
+        1    0.000    0.000    0.000    0.000 guardrails.py:858(ApplyGuardrailRequest)
+        1    0.000    0.000    0.000    0.000 v1_service_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_local_subject_access_review.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_driver_list.py:1()
+        1    0.000    0.000    0.000    0.000 handlers.py:877(_add_parameter_aliases)
+        1    0.000    0.000    0.000    0.000 client.py:210(ClientExceptionsDocumenter)
+        1    0.000    0.000    0.000    0.000 oci.py:187(OCIStreamChunk)
+        1    0.000    0.000    0.000    0.000 _types.py:1578(DeleteCustomerRequest)
+        1    0.000    0.000    0.000    0.000 utils.py:3379(LiteLLMRealtimeStreamLoggingObject)
+        1    0.000    0.000    0.000    0.000 validators.py:420(_NumberValidator)
+        1    0.000    0.000    0.000    0.000 v1_scoped_resource_selector_requirement.py:1()
+        1    0.000    0.000    0.000    0.000 v1_secret_projection.py:1()
+        1    0.000    0.000    0.000    0.000 v1_parent_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1_host_alias.py:1()
+        1    0.000    0.000    0.000    0.000 base.py:19(BaseEndpoint)
+        1    0.000    0.000    0.000    0.000 CMAC.py:1()
+        1    0.000    0.000    0.000    0.000 utils.py:3342(LiteLLMFineTuningJob)
+        1    0.000    0.000    0.000    0.000 _logs.py:22(setup_logging)
+        1    0.000    0.000    0.000    0.000 custom_objects_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_allocated_device_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_param_ref.py:1()
+        1    0.000    0.000    0.000    0.000 v1_glusterfs_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_names.py:1()
+        1    0.000    0.000    0.000    0.000 v1_endpoint_conditions.py:1()
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_list.py:21(V1DaemonSetList)
+        1    0.000    0.000    0.000    0.000 service.py:25(ServiceDocumenter)
+        1    0.000    0.000    0.000    0.000 cmac.py:1()
+        3    0.000    0.000    0.000    0.000 {method 'gettimeout' of '_socket.socket' objects}
+        1    0.000    0.000    0.000    0.000 version_info.py:21(VersionInfo)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_sub_request.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_allocated_device_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_template.py:21(V1alpha3ResourceClaimTemplate)
+        1    0.000    0.000    0.000    0.000 v1_mutating_webhook_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_flow_schema.py:1()
+        1    0.000    0.000    0.000    0.000 v1_empty_dir_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 client_ws.py:37(ClientWSTimeout)
+       12    0.000    0.000    0.000    0.000 types.py:975(arity)
+        1    0.000    0.000    0.000    0.000 _client.py:437(_build_request_auth)
+        1    0.000    0.000    0.000    0.000 __init__.py:281(DeprecatedList)
+       25    0.000    0.000    0.000    0.000 constructor.py:159(add_constructor)
+        1    0.000    0.000    0.000    0.000 app.py:79(Flask)
+        1    0.000    0.000    0.000    0.000 v1_secret_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_port_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_namespace_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_column_definition.py:1()
+        1    0.000    0.000    0.000    0.000 system_service.py:1()
+        1    0.000    0.000    0.000    0.000 oci.py:38(OCIImageUrl)
+        1    0.000    0.000    0.000    0.000 agents.py:70(OAuthFlows)
+        1    0.000    0.000    0.000    0.000 styled.py:1()
+       15    0.000    0.000    0.000    0.000 {method 'write' of '_io.StringIO' objects}
+        1    0.000    0.000    0.000    0.000 v1beta2_allocated_device_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_match_resources.py:1()
+        1    0.000    0.000    0.000    0.000 literal_ai.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:3733(TeamMemberUpdateResponse)
+        1    0.000    0.000    0.000    0.000 anthropic_response.py:11(AnthropicResponseTextBlock)
+        4    0.000    0.000    0.000    0.000 argparse.py:2224()
+        1    0.000    0.000    0.000    0.000 _parser.py:1006(addgroup)
+       25    0.000    0.000    0.000    0.000 {built-in method _sre.ascii_tolower}
+        1    0.000    0.000    0.000    0.000 core.py:2969(Argument)
+        1    0.000    0.000    0.000    0.000 v1_scale_io_volume_source.py:21(V1ScaleIOVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_status.py:21(V1StatefulSetStatus)
+        1    0.000    0.000    0.000    0.000 v1alpha1_cluster_trust_bundle.py:1()
+        1    0.000    0.000    0.000    0.000 v1_validation_rule.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_class_list.py:1()
+        1    0.000    0.000    0.000    0.000 openai_evals.py:311(PerTestingCriteriaResult)
+        1    0.000    0.000    0.000    0.000 rsa.py:17(RSAPrivateKey)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_sub_request.py:1()
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment_status.py:21(V1VolumeAttachmentStatus)
+        1    0.000    0.000    0.000    0.000 v1_list_meta.py:1()
+        1    0.000    0.000    0.000    0.000 keys.py:1()
+        3    0.000    0.000    0.000    0.000 _adapters.py:78(__new__)
+        1    0.000    0.000    0.000    0.000 refusal_delta_block.py:11(RefusalDeltaBlock)
+        1    0.000    0.000    0.000    0.000 v1_volume_projection.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_spec.py:1()
+       15    0.000    0.000    0.000    0.000 extensions.py:73(_make_sequence_methods)
+        1    0.000    0.000    0.000    0.000 stability.py:56(StabilityUpscaleRequest)
+        1    0.000    0.000    0.000    0.000 connector.py:858(_DNSCacheTable)
+        1    0.000    0.000    0.000    0.000 _types.py:4354(ToolDiscoveryQueueItem)
+        1    0.000    0.000    0.000    0.000 common_utils.py:518(BedrockModelInfo)
+        1    0.000    0.000    0.000    0.000 _default.py:31(__init__)
+        1    0.000    0.000    0.000    0.000 v1alpha2_lease_candidate_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_service_backend_port.py:1()
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_persistent_volume_claim_retention_policy.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_list.py:1()
+        1    0.000    0.000    0.000    0.000 image_handler.py:41(BedrockImagePreparedRequest)
+        1    0.000    0.000    0.000    0.000 common_utils.py:14(TopazModelInfo)
+        1    0.000    0.000    0.000    0.000 response_function_shell_tool_call.py:14(Action)
+       12    0.000    0.000    0.000    0.000 _receivebuffer.py:60(__len__)
+        1    0.000    0.000    0.000    0.000 ptyprocess.py:128(PtyProcess)
+        1    0.000    0.000    0.000    0.000 palm.py:27(PalmConfig)
+        1    0.000    0.000    0.000    0.000 v1_condition.py:1()
+        1    0.000    0.000    0.000    0.000 gemini.py:332(GeminiOperationMetadata)
+        1    0.000    0.000    0.000    0.000 grader_inputs.py:23(GraderInputItemInputImage)
+       23    0.000    0.000    0.000    0.000 typing.py:937(__repr__)
+        4    0.000    0.000    0.000    0.000 contextlib.py:527(_push_exit_callback)
+       14    0.000    0.000    0.000    0.000 {built-in method builtins.round}
+        1    0.000    0.000    0.000    0.000 v1beta1_device_request_allocation_result.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_volume_attributes_class.py:1()
+        1    0.000    0.000    0.000    0.000 apiextensions_v1_service_reference.py:1()
+        1    0.000    0.000    0.000    0.000 events_v1_event_list.py:1()
+        1    0.000    0.000    0.000    0.000 rbac_v1_subject.py:1()
+        1    0.000    0.000    0.000    0.000 shortcuts.py:1()
+        1    0.000    0.000    0.000    0.000 oci.py:140(OCIResponseUsage)
+        1    0.000    0.000    0.000    0.000 embedding_handler.py:24(VertexMultimodalEmbedding)
+        1    0.000    0.000    0.000    0.000 utils.py:1403(CompletionTokensDetailsWrapper)
+        3    0.000    0.000    0.000    0.000 functools.py:841(_is_union_type)
+        1    0.000    0.000    0.000    0.000 v1_probe.py:21(V1Probe)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_toleration.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_named_rule_with_operations.py:1()
+        1    0.000    0.000    0.000    0.000 v1_status_cause.py:1()
+        1    0.000    0.000    0.000    0.000 v1_resource_field_selector.py:1()
+        1    0.000    0.000    0.000    0.000 v1_role_ref.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cron_job_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request_condition.py:1()
+        1    0.000    0.000    0.000    0.000 label_model_grader.py:24(InputContentInputImage)
+       12    0.000    0.000    0.000    0.000 containers.py:75(__iter__)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:283(set)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_token_review_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_replication_controller_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_flex_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_image_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 discovery_v1_endpoint_port.py:1()
+        1    0.000    0.000    0.000    0.000 probe.py:1()
+        1    0.000    0.000    0.000    0.000 lowest_tpm_rpm.py:19(LowestTPMLoggingHandler)
+        1    0.000    0.000    0.000    0.000 stability.py:74(StabilityInpaintRequest)
+        1    0.000    0.000    0.000    0.000 rerank.py:24(OptionalRerankParams)
+        1    0.000    0.000    0.000    0.000 main.py:12(GenericResponseOutputItemContentAnnotation)
+        1    0.000    0.000    0.000    0.000 thread.py:12(ToolResourcesCodeInterpreter)
+        1    0.000    0.000    0.000    0.000 response_content_part_added_event.py:14(PartReasoningText)
+        1    0.000    0.000    0.000    0.000 v1alpha1_named_rule_with_operations.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:3825(LoggingCallbackStatus)
+        1    0.000    0.000    0.000    0.000 router.py:283(updateLiteLLMParams)
+        1    0.000    0.000    0.000    0.000 response_content_part_done_event.py:14(PartReasoningText)
+        1    0.000    0.000    0.000    0.000 response_compaction_item.py:11(ResponseCompactionItem)
+        8    0.000    0.000    0.000    0.000 _discriminated_union.py:25(__init__)
+        1    0.000    0.000    0.000    0.000 threading.py:838(Thread)
+        1    0.000    0.000    0.000    0.000 _make.py:802(_patch_original_class)
+        1    0.000    0.000    0.000    0.000 terminal.py:207(__init__streams)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_slice_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_attached_volume.py:1()
+        1    0.000    0.000    0.000    0.000 oci.py:127(OCICompletionTokenDetails)
+        1    0.000    0.000    0.000    0.000 _types.py:1388(ListSkillsRequest)
+        6    0.000    0.000    0.000    0.000 _urlparse.py:377(validate_path)
+        1    0.000    0.000    0.000    0.000 v2_metric_spec.py:1()
+        1    0.000    0.000    0.000    0.000 realtime.py:60(RealtimeExpiresAfter)
+        1    0.000    0.000    0.000    0.000 utils.py:2705(GuardrailTracingDetail)
+        1    0.000    0.000    0.000    0.000 tool_choice_mcp.py:11(ToolChoiceMcp)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:92()
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:2405(__new__)
+        1    0.000    0.000    0.000    0.000 asn1.py:557(hasOnlyInts)
+        1    0.000    0.000    0.000    0.000 v1_secret_key_selector.py:1()
+        1    0.000    0.000    0.000    0.000 v1_policy_rules_with_subjects.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_affinity.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ceph_fs_persistent_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cron_job.py:1()
+        1    0.000    0.000    0.000    0.000 unicode.py:236(Japanese)
+       32    0.000    0.000    0.000    0.000 terminal.py:295()
+        1    0.000    0.000    0.000    0.000 code_interpreter_logs.py:11(CodeInterpreterLogs)
+        1    0.000    0.000    0.000    0.000 flowcontrol_apiserver_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v2_metric_value_status.py:1()
+        1    0.000    0.000    0.000    0.000 batch_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_flex_persistent_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 dh.py:206(DHPrivateKey)
+        2    0.000    0.000    0.000    0.000 sysconfig.py:303(_get_preferred_schemes)
+        1    0.000    0.000    0.000    0.000 pty_spawn.py:29(spawn)
+        1    0.000    0.000    0.000    0.000 v1_scale_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_endpoints.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ephemeral_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_backend.py:1()
+       31    0.000    0.000    0.000    0.000 sequences.py:21(__init__)
+        1    0.000    0.000    0.000    0.000 _compat.py:7(install)
+        1    0.000    0.000    0.000    0.000 _types.py:1281(MakeMCPServersPublicRequest)
+        1    0.000    0.000    0.000    0.000 anthropic.py:306(AnthropicMessagesToolResultContent)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call_output_item.py:12(AcknowledgedSafetyCheck)
+        1    0.000    0.000    0.000    0.000 response_item.py:165(McpApprovalResponse)
+        1    0.000    0.000    0.000    0.000 memory.py:36(MemoryObjectItemReceiver)
+        1    0.000    0.000    0.000    0.000 custom_logger.py:6(StandardCustomLoggerInitParams)
+       25    0.000    0.000    0.000    0.000 ipaddress.py:415(_check_int_address)
+       12    0.000    0.000    0.000    0.000 enum.py:797(__iter__)
+        1    0.000    0.000    0.000    0.000 :48()
+        1    0.000    0.000    0.000    0.000 v1_mutating_webhook.py:21(V1MutatingWebhook)
+        1    0.000    0.000    0.000    0.000 v1_validation.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_failure_policy_rule.py:1()
+        1    0.000    0.000    0.000    0.000 v1_http_ingress_path.py:1()
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request.py:1()
+        3    0.000    0.000    0.000    0.000 six.py:219(is_package)
+        1    0.000    0.000    0.000    0.000 _functools.py:121(passthrough)
+        1    0.000    0.000    0.000    0.000 _types.py:3670(OrganizationAddMemberResponse)
+        1    0.000    0.000    0.000    0.000 response_item.py:76(LocalShellCall)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_attribute.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_request_allocation_result.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_match_resources.py:1()
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_port_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_host_path_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 ssl_match_hostname.py:1()
+        1    0.000    0.000    0.000    0.000 response_output_item.py:74(LocalShellCall)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call.py:40(ActionClick)
+        6    0.000    0.000    0.000    0.000 text.py:791(iter_text)
+        2    0.000    0.000    0.000    0.000 main.py:343(_is_interactive)
+        1    0.000    0.000    0.000    0.000 ssltransport.py:22(SSLTransport)
+        1    0.000    0.000    0.000    0.000 v2_metric_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version.py:1()
+        1    0.000    0.000    0.000    0.000 v1_eviction.py:1()
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_condition.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:3664(__init__)
+        1    0.000    0.000    0.000    0.000 oci.py:179(OCIStreamDelta)
+        1    0.000    0.000    0.000    0.000 amazon_nova_canvas_transformation.py:21(AmazonNovaCanvasConfig)
+        1    0.000    0.000    0.000    0.000 common_utils.py:247(IBMWatsonXMixin)
+        8    0.000    0.000    0.000    0.000 vertex_llm_base.py:38(__init__)
+        1    0.000    0.000    0.000    0.000 score_model_grader.py:32(InputContentInputImage)
+        4    0.000    0.000    0.000    0.000 contextlib.py:456(_exit_wrapper)
+        1    0.000    0.000    0.000    0.000 base64.py:1()
+        1    0.000    0.000    0.000    0.000 v1_container_port.py:1()
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1_webhook_client_config.py:1()
+        1    0.000    0.000    0.000    0.000 authentication_v1_token_request.py:1()
+        1    0.000    0.000    0.000    0.000 _factories.py:26(__init__)
+        1    0.000    0.000    0.000    0.000 nonmultipart.py:1()
+        1    0.000    0.000    0.000    0.000 lunary.py:69(LunaryLogger)
+        1    0.000    0.000    0.000    0.000 chat_completion_chunk.py:21(ChoiceDeltaFunctionCall)
+        1    0.000    0.000    0.000    0.000 response_item.py:111(McpListToolsTool)
+        1    0.000    0.000    0.000    0.000 factory.py:3478(BedrockImageProcessor)
+        1    0.000    0.000    0.000    0.000 v1_token_request_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_typed_object_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1_mutating_webhook_configuration_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_api_service.py:1()
+        1    0.000    0.000    0.000    0.000 matcher.py:20(State)
+        1    0.000    0.000    0.000    0.000 transcription.py:23(UsageTokensInputTokenDetails)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call.py:27(PendingSafetyCheck)
+        1    0.000    0.000    0.000    0.000 py3compat.py:1()
+        1    0.000    0.000    0.000    0.000 _utils.py:7(is_socket_readable)
+        1    0.000    0.000    0.000    0.000 sync.py:21(TLSinTLSStream)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_spec.py:21(V1PersistentVolumeClaimSpec)
+        1    0.000    0.000    0.000    0.000 v1_rbd_volume_source.py:21(V1RBDVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_seccomp_profile.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_resource_claim.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition.py:1()
+        7    0.000    0.000    0.000    0.000 context_service.py:14(current_context)
+        1    0.000    0.000    0.000    0.000 least_busy.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:1982(TeamDefaultSettings)
+        1    0.000    0.000    0.000    0.000 humanloop.py:23(PromptManagementClient)
+        1    0.000    0.000    0.000    0.000 transcription_diarized.py:13(UsageTokensInputTokenDetails)
+        1    0.000    0.000    0.000    0.000 response_output_item.py:131(McpListToolsTool)
+        1    0.000    0.000    0.000    0.000 _decorators.py:763(get_function_return_type)
+       14    0.000    0.000    0.000    0.000 {method 'finditer' of 're.Pattern' objects}
+        1    0.000    0.000    0.000    0.000 v1_rolling_update_deployment.py:1()
+        1    0.000    0.000    0.000    0.000 v1_http_header.py:1()
+        1    0.000    0.000    0.000    0.000 parser.py:62(HTMLParser)
+        1    0.000    0.000    0.000    0.000 oci.py:78(OCIMessage)
+        1    0.000    0.000    0.000    0.000 amazon_titan_g1_transformation.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:2835(NewProjectResponse)
+        1    0.000    0.000    0.000    0.000 response_input_item.py:84(ComputerCallOutputAcknowledgedSafetyCheck)
+        3    0.000    0.000    0.000    0.000 containers.py:105(extend)
+        5    0.000    0.000    0.000    0.000 __init__.py:754(__init__)
+       34    0.000    0.000    0.000    0.000 inspect.py:589()
+       26    0.000    0.000    0.000    0.000 {method 'end' of 're.Match' objects}
+        4    0.000    0.000    0.000    0.000 protocol.py:19(rich_cast)
+        1    0.000    0.000    0.000    0.000 serializer.py:42(Serializer)
+        1    0.000    0.000    0.000    0.000 v1_photon_persistent_disk_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_failure_policy_on_exit_codes_requirement.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_failure_policy_on_pod_conditions_pattern.py:1()
+        1    0.000    0.000    0.000    0.000 v1_flocker_volume_source.py:21(V1FlockerVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_ip_address_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_api_group_list.py:1()
+        1    0.000    0.000    0.000    0.000 mcp.py:77(MCPCredentials)
+        1    0.000    0.000    0.000    0.000 transcription_text_done_event.py:22(UsageInputTokenDetails)
+        1    0.000    0.000    0.000    0.000 completion_usage.py:34(PromptTokensDetails)
+        1    0.000    0.000    0.000    0.000 core.py:2979(__init__)
+        1    0.000    0.000    0.000    0.000 :1536(find_distributions)
+        1    0.000    0.000    0.000    0.000 v1_resource_attributes.py:21(V1ResourceAttributes)
+        1    0.000    0.000    0.000    0.000 v1beta1_match_resources.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim.py:1()
+        1    0.000    0.000    0.000    0.000 v1_server_address_by_client_cidr.py:1()
+        1    0.000    0.000    0.000    0.000 v1_fc_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 core_v1_event_list.py:1()
+        1    0.000    0.000    0.000    0.000 flowcontrol_v1_subject.py:1()
+        1    0.000    0.000    0.000    0.000 errorfactory.py:1()
+        1    0.000    0.000    0.000    0.000 openai_evals.py:181(DeleteEvalResponse)
+        1    0.000    0.000    0.000    0.000 tool.py:227(ImageGenerationInputImageMask)
+        1    0.000    0.000    0.000    0.000 base.py:429(CertificateSigningRequest)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_capacity.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_service_cidr.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_migration_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_sysctl.py:1()
+        1    0.000    0.000    0.000    0.000 v1_flow_schema_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_controller_revision.py:1()
+        1    0.000    0.000    0.000    0.000 init_prompts.py:64(PromptTemplateBase)
+       28    0.000    0.000    0.000    0.000 {method 'clear' of 'dict' objects}
+        1    0.000    0.000    0.000    0.000 numbers.py:294(Integral)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_status.py:21(V1PersistentVolumeClaimStatus)
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy.py:1()
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_resource_claim_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_network_policy_ingress_rule.py:1()
+        1    0.000    0.000    0.000    0.000 v1_endpoint_subset.py:1()
+        1    0.000    0.000    0.000    0.000 markdown.py:404(Link)
+        1    0.000    0.000    0.000    0.000 lowest_latency.py:23(RoutingArgs)
+        1    0.000    0.000    0.000    0.000 router.py:769(ModelGroupSettings)
+        1    0.000    0.000    0.000    0.000 openai.py:1176(OutputTokensDetails)
+        1    0.000    0.000    0.000    0.000 assistant.py:14(ToolResourcesCodeInterpreter)
+        1    0.000    0.000    0.000    0.000 __init__.py:1479(info)
+       14    0.000    0.000    0.000    0.000 argparse.py:2234(_parse_optional)
+        1    0.000    0.000    0.000    0.000 model_param_helper.py:140(_get_litellm_supported_transcription_kwargs)
+        1    0.000    0.000    0.000    0.000 pydoc.py:1164(TextDoc)
+        1    0.000    0.000    0.000    0.000 v1beta1_network_device_data.py:21(V1beta1NetworkDeviceData)
+        1    0.000    0.000    0.000    0.000 v1alpha1_migration_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_rolling_update_daemon_set.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_swap_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_rule.py:1()
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_spec.py:1()
+        1    0.000    0.000    0.000    0.000 client_initalization_utils.py:1()
+        1    0.000    0.000    0.000    0.000 datadog_llm_obs.py:74(DatadogLLMObsInitParams)
+        1    0.000    0.000    0.000    0.000 _models.py:449(Response)
+        1    0.000    0.000    0.000    0.000 v1_secret.py:21(V1Secret)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_template.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_template.py:1()
+        1    0.000    0.000    0.000    0.000 v1_token_request_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_scale_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_non_resource_attributes.py:1()
+        1    0.000    0.000    0.000    0.000 v1_env_var_source.py:1()
+        1    0.000    0.000    0.000    0.000 exceptions.py:147(SecurityWarning)
+        1    0.000    0.000    0.000    0.000 bedrock.py:633(NovaSegmentedEmbeddingParams)
+        1    0.000    0.000    0.000    0.000 openai.py:260(Thread)
+        2    0.000    0.000    0.000    0.000 theme.py:91(push_theme)
+       26    0.000    0.000    0.000    0.000 _model_construction.py:162()
+        2    0.000    0.000    0.000    0.000 tokenize.py:323(read_or_stop)
+       16    0.000    0.000    0.000    0.000 six.py:80(_add_doc)
+        1    0.000    0.000    0.000    0.000 v1beta1_volume_attributes_class.py:1()
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_update_strategy.py:1()
+        1    0.000    0.000    0.000    0.000 v1_sleep_action.py:1()
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_binding_spec.py:21(V1alpha1MutatingAdmissionPolicyBindingSpec)
+        1    0.000    0.000    0.000    0.000 v1_ingress_class_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_lease_list.py:1()
+        1    0.000    0.000    0.000    0.000 extensions.py:1092()
+        1    0.000    0.000    0.000    0.000 _types.py:1978(DeleteOrganizationRequest)
+        1    0.000    0.000    0.000    0.000 _types.py:2719(NewOrganizationResponse)
+        1    0.000    0.000    0.000    0.000 openai.py:2064(OpenAIModerationResult)
+       28    0.000    0.000    0.000    0.000 _make.py:427()
+        1    0.000    0.000    0.000    0.000 _models.py:368(Response)
+       20    0.000    0.000    0.000    0.000 enum.py:1630(_simple_enum)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim.py:1()
+        1    0.000    0.000    0.000    0.000 v1_lifecycle_handler.py:1()
+        1    0.000    0.000    0.000    0.000 v1_api_resource_list.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:5263(SkipTo)
+        1    0.000    0.000    0.000    0.000 handler.py:18(BedrockFilesHandler)
+        1    0.000    0.000    0.000    0.000 invoke_handler.py:1797(MockResponseIterator)
+        1    0.000    0.000    0.000    0.000 _make.py:2783()
+       28    0.000    0.000    0.000    0.000 {method 'endswith' of 'bytearray' objects}
+        1    0.000    0.000    0.000    0.000 v1_resource_policy_rule.py:21(V1ResourcePolicyRule)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_consumer_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_load_balancer_ingress.py:1()
+        1    0.000    0.000    0.000    0.000 v1_deployment.py:1()
+        1    0.000    0.000    0.000    0.000 oci.py:45(OCIImageContentPart)
+        1    0.000    0.000    0.000    0.000 openai.py:1709(ErrorEventError)
+        1    0.000    0.000    0.000    0.000 oauth2_session.py:18(OAuth2Session)
+        1    0.000    0.000    0.000    0.000 v1_deployment_spec.py:21(V1DeploymentSpec)
+        1    0.000    0.000    0.000    0.000 v1_service_cidr_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cluster_role_binding.py:1()
+        1    0.000    0.000    0.000    0.000 v1_affinity.py:1()
+        1    0.000    0.000    0.000    0.000 paginator.py:1()
+       11    0.000    0.000    0.000    0.000 _state.py:301(_fire_event_triggered_transitions)
+        1    0.000    0.000    0.000    0.000 connection_pool.py:16(__init__)
+       26    0.000    0.000    0.000    0.000 {built-in method _sre.ascii_iscased}
+        1    0.000    0.000    0.000    0.000 v1_job_status.py:21(V1JobStatus)
+        1    0.000    0.000    0.000    0.000 v1_validating_webhook.py:21(V1ValidatingWebhook)
+        6    0.000    0.000    0.000    0.000 _utility.py:366(is_string_color)
+        1    0.000    0.000    0.000    0.000 v2_container_resource_metric_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_class_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_migration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_scheduling.py:1()
+        1    0.000    0.000    0.000    0.000 v1_preferred_scheduling_term.py:1()
+        1    0.000    0.000    0.000    0.000 v1_non_resource_policy_rule.py:1()
+        1    0.000    0.000    0.000    0.000 v1_load_balancer_ingress.py:21(V1LoadBalancerIngress)
+        1    0.000    0.000    0.000    0.000 v1_config_map_node_config_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_aws_elastic_block_store_volume_source.py:1()
+        2    0.000    0.000    0.000    0.000 core.py:5236(parseImpl)
+        1    0.000    0.000    0.000    0.000 _types.py:3836(CreateJWTKeyMappingRequest)
+        1    0.000    0.000    0.000    0.000 _types.py:3850(DeleteJWTKeyMappingRequest)
+        1    0.000    0.000    0.000    0.000 agents.py:192(PatchAgentRequest)
+        1    0.000    0.000    0.000    0.000 file_search_tool_call_delta.py:11(FileSearchToolCallDelta)
+        1    0.000    0.000    0.000    0.000 error_object.py:10(ErrorObject)
+       29    0.000    0.000    0.000    0.000 asn1.py:40(_is_number)
+        9    0.000    0.000    0.000    0.000 {method 'remove' of 'list' objects}
+        2    0.000    0.000    0.000    0.000 _connection.py:81(_body_framing)
+        1    0.000    0.000    0.000    0.000 azure.py:89(AzureOpenAI)
+        1    0.000    0.000    0.000    0.000 utils.py:45(OptionsDict)
+        1    0.000    0.000    0.000    0.000 auth.py:142(WWWAuthenticate)
+        1    0.000    0.000    0.000    0.000 networking_v1beta1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_consumer_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_toleration.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_cluster_trust_bundle_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_server_storage_version.py:1()
+        1    0.000    0.000    0.000    0.000 v1_secret_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1_limit_range_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_node.py:1()
+        1    0.000    0.000    0.000    0.000 attr.py:1()
+        1    0.000    0.000    0.000    0.000 _decoders.py:74(__init__)
+       19    0.000    0.000    0.000    0.000 representer.py:65(add_representer)
+       18    0.000    0.000    0.000    0.000 _IntegerGMP.py:356(__nonzero__)
+       22    0.000    0.000    0.000    0.000 :797(is_package)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy.py:1()
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_binding_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_rolling_update_stateful_set_strategy.py:1()
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_gce_persistent_disk_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_host_ip.py:1()
+        9    0.000    0.000    0.000    0.000 formatters.py:284(__new__)
+        1    0.000    0.000    0.000    0.000 utils.py:1416(CacheCreationTokenDetails)
+        1    0.000    0.000    0.000    0.000 _client.py:404(_merge_headers)
+        1    0.000    0.000    0.000    0.000 _logging.py:64(SecretRedactionFilter)
+       24    0.000    0.000    0.000    0.000 functools.py:668()
+        1    0.000    0.000    0.000    0.000 pathlib.py:456(PurePath)
+        1    0.000    0.000    0.000    0.000 transformation.py:33(VoyageEmbeddingConfig)
+        1    0.000    0.000    0.000    0.000 rbac_authorization_v1_api.py:27(RbacAuthorizationV1Api)
+        1    0.000    0.000    0.000    0.000 v1beta1_ip_address.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_parent_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_claim.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutation.py:1()
+        1    0.000    0.000    0.000    0.000 v1_daemon_set.py:1()
+        1    0.000    0.000    0.000    0.000 file_citation_delta_annotation.py:11(FileCitation)
+        1    0.000    0.000    0.000    0.000 chat_completion_function_tool.py:11(ChatCompletionFunctionTool)
+        1    0.000    0.000    0.000    0.000 get_model_cost_map.py:112(validate_model_cost_map)
+        1    0.000    0.000    0.000    0.000 _docs_extraction.py:1()
+        1    0.000    0.000    0.000    0.000 v2_hpa_scaling_rules.py:1()
+        1    0.000    0.000    0.000    0.000 v1_projected_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_object_field_selector.py:1()
+        1    0.000    0.000    0.000    0.000 v1_key_to_path.py:1()
+        1    0.000    0.000    0.000    0.000 v1_azure_file_persistent_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 messages_transformation.py:16(AzureAnthropicMessagesConfig)
+        1    0.000    0.000    0.000    0.000 azure_storage.py:21(AzureBlobStorageLogger)
+        1    0.000    0.000    0.000    0.000 text_content_block.py:11(TextContentBlock)
+        1    0.000    0.000    0.000    0.000 video_create_character_response.py:10(VideoCreateCharacterResponse)
+        1    0.000    0.000    0.000    0.000 trsock.py:1()
+       20    0.000    0.000    0.000    0.000 enum.py:177(__init__)
+        8    0.000    0.000    0.000    0.000 {method 'union' of 'set' objects}
+        6    0.000    0.000    0.000    0.000 :989(__iter__)
+        1    0.000    0.000    0.000    0.000 v1_api_resource.py:21(V1APIResource)
+        1    0.000    0.000    0.000    0.000 v2_metric_target.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_class.py:1()
+        1    0.000    0.000    0.000    0.000 v1_volume_mount_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_vsphere_virtual_disk_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_binding_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_anti_affinity.py:1()
+        1    0.000    0.000    0.000    0.000 v1_component_condition.py:1()
+        1    0.000    0.000    0.000    0.000 apiextensions_v1_webhook_client_config.py:1()
+        1    0.000    0.000    0.000    0.000 apiregistration_v1_service_reference.py:1()
+       12    0.000    0.000    0.000    0.000 core.py:2454(parseImpl)
+        1    0.000    0.000    0.000    0.000 _types.py:1901(LiteLLM_TeamTableCachedObj)
+        1    0.000    0.000    0.000    0.000 transcription_text_segment_event.py:10(TranscriptionTextSegmentEvent)
+        1    0.000    0.000    0.000    0.000 thread.py:21(ToolResourcesFileSearch)
+        1    0.000    0.000    0.000    0.000 _writers.py:36(write_request)
+        2    0.000    0.000    0.000    0.000 types.py:247(coroutine)
+        1    0.000    0.000    0.000    0.000 _urls.py:15(URL)
+        1    0.000    0.000    0.000    0.000 base_events.py:387(BaseEventLoop)
+        1    0.000    0.000    0.000    0.000 v1_scope_selector.py:1()
+        1    0.000    0.000    0.000    0.000 v1_self_subject_rules_review_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_template_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_nfs_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 assistant.py:23(ToolResourcesFileSearch)
+        1    0.000    0.000    0.000    0.000 Primality.py:1()
+        3    0.000    0.000    0.000    0.000 {built-in method _stat.S_ISDIR}
+        1    0.000    0.000    0.000    0.000 v1beta1_validation.py:1()
+        1    0.000    0.000    0.000    0.000 v2_container_resource_metric_source.py:21(V2ContainerResourceMetricSource)
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_token_review_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_secret_env_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_node_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cinder_volume_source.py:1()
+       26    0.000    0.000    0.000    0.000 functions.py:39(_record_signature)
+        1    0.000    0.000    0.000    0.000 oci.py:134(OCIPromptTokensDetails)
+        1    0.000    0.000    0.000    0.000 openai_evals.py:265(CreateRunRequest)
+        1    0.000    0.000    0.000    0.000 code_interpreter_tool_call.py:19(CodeInterpreterOutputLogs)
+        1    0.000    0.000    0.000    0.000 progress.py:568(SpinnerColumn)
+        1    0.000    0.000    0.000    0.000 core.py:1817(__init__)
+        1    0.000    0.000    0.000    0.000 _compat.py:43(set_minimum_tls_version_1_2)
+        4    0.000    0.000    0.000    0.000 argparse.py:304(_join_parts)
+        1    0.000    0.000    0.000    0.000 eventstream.py:76(DecodeUtils)
+        1    0.000    0.000    0.000    0.000 exec_provider.py:1()
+        1    0.000    0.000    0.000    0.000 ws_client.py:260(PortForward)
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_class_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_volume_attributes_class_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_cluster_trust_bundle.py:1()
+        1    0.000    0.000    0.000    0.000 v1_session_affinity_config.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_failure_policy.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_runtime_handler_features.py:1()
+        1    0.000    0.000    0.000    0.000 v1_lifecycle.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_driver.py:1()
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_api_versions.py:1()
+        1    0.000    0.000    0.000    0.000 openai.py:1527(ContentPartDonePartRefusal)
+        1    0.000    0.000    0.000    0.000 video_get_character_response.py:10(VideoGetCharacterResponse)
+        1    0.000    0.000    0.000    0.000 _base_client.py:365(BaseClient)
+        1    0.000    0.000    0.000    0.000 main.py:100(get_secret)
+        1    0.000    0.000    0.000    0.000 v1beta1_cluster_trust_bundle_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_slice_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_flow_schema_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_binding.py:1()
+        8    0.000    0.000    0.000    0.000 relativedelta.py:13()
+        1    0.000    0.000    0.000    0.000 recursive_character_text_splitter.py:12(RecursiveCharacterTextSplitter)
+        1    0.000    0.000    0.000    0.000 handler.py:15(SagemakerChatHandler)
+        1    0.000    0.000    0.000    0.000 transcription_verbose.py:13(Usage)
+        1    0.000    0.000    0.000    0.000 utils.py:1467(ServerToolUse)
+        1    0.000    0.000    0.000    0.000 response_reasoning_summary_part_added_event.py:10(Part)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call.py:108(ActionKeypress)
+        1    0.000    0.000    0.000    0.000 _urlparse.py:139(__str__)
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_binding_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_claim.py:1()
+        1    0.000    0.000    0.000    0.000 v1_windows_security_context_options.py:1()
+        1    0.000    0.000    0.000    0.000 v1_tcp_socket_action.py:1()
+        1    0.000    0.000    0.000    0.000 v1_endpoints_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_config_map_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 oci.py:31(OCITextContentPart)
+        1    0.000    0.000    0.000    0.000 __init__.py:728(DistributionFinder)
+        1    0.000    0.000    0.000    0.000 _meta.py:15(PackageMetadata)
+        1    0.000    0.000    0.000    0.000 _types.py:3880(LitellmDataForBackendLLMCall)
+        1    0.000    0.000    0.000    0.000 function_tool_call.py:11(Function)
+        1    0.000    0.000    0.000    0.000 response_input_text_content.py:10(ResponseInputTextContent)
+        1    0.000    0.000    0.000    0.000 chat_completion_message_custom_tool_call.py:20(ChatCompletionMessageCustomToolCall)
+        1    0.000    0.000    0.000    0.000 console.py:415(ScreenContext)
+        1    0.000    0.000    0.000    0.000 has_key.py:1()
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration.py:21(V1PriorityLevelConfiguration)
+        1    0.000    0.000    0.000    0.000 internal_apiserver_v1alpha1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v2_object_metric_status.py:21(V2ObjectMetricStatus)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_attribute.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint_rule.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_validating_webhook_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_deployment_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_storage_capacity_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cluster_role_list.py:1()
+       27    0.000    0.000    0.000    0.000 core.py:4294()
+        1    0.000    0.000    0.000    0.000 _cpu_features.py:41(have_aes_ni)
+        1    0.000    0.000    0.000    0.000 router.py:744(MockRouterTestingParams)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:310(ThreadMessageDelta)
+        1    0.000    0.000    0.000    0.000 required_action_function_tool_call.py:20(RequiredActionFunctionToolCall)
+        1    0.000    0.000    0.000    0.000 validators.py:233(_InValidator)
+        4    0.000    0.000    0.000    0.000 _synchronization.py:266(__enter__)
+        1    0.000    0.000    0.000    0.000 types.py:1682(SecretStr)
+        7    0.000    0.000    0.000    0.000 __init__.py:788(__new__)
+       23    0.000    0.000    0.000    0.000 typing.py:3024()
+        2    0.000    0.000    0.000    0.000 _text.py:7(FoldedCase)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_class.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_binding_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha2_lease_candidate.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha2_lease_candidate_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_template_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_subresource_scale.py:1()
+        1    0.000    0.000    0.000    0.000 v1_controller_revision_list.py:1()
+        7    0.000    0.000    0.000    0.000 converters.py:29(__init_subclass__)
+        1    0.000    0.000    0.000    0.000 server.py:568()
+        1    0.000    0.000    0.000    0.000 oci.py:210(CohereMessage)
+        1    0.000    0.000    0.000    0.000 response_local_environment.py:10(ResponseLocalEnvironment)
+       22    0.000    0.000    0.000    0.000 enum.py:1376()
+        3    0.000    0.000    0.000    0.000 :1733(_get_supported_file_loaders)
+        1    0.000    0.000    0.000    0.000 numbers.py:147(Real)
+        1    0.000    0.000    0.000    0.000 v1beta1_volume_attributes_class_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_preconditions.py:1()
+        1    0.000    0.000    0.000    0.000 v1_param_kind.py:1()
+        1    0.000    0.000    0.000    0.000 v1_label_selector_requirement.py:1()
+        1    0.000    0.000    0.000    0.000 v1_downward_api_projection.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cluster_role_binding_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_config_map_list.py:1()
+        1    0.000    0.000    0.000    0.000 poly1305.py:1()
+        1    0.000    0.000    0.000    0.000 _compat.py:20(disable_stdlib_finder)
+        1    0.000    0.000    0.000    0.000 _types.py:1939(LiteLLM_BudgetTableFull)
+        1    0.000    0.000    0.000    0.000 assistant_stream_event.py:224(ThreadRunStepDelta)
+        1    0.000    0.000    0.000    0.000 response_apply_patch_tool_call.py:18(OperationCreateFile)
+        1    0.000    0.000    0.000    0.000 validators.py:128(_MatchesReValidator)
+        1    0.000    0.000    0.000    0.000 console.py:363(__enter__)
+        2    0.000    0.000    0.000    0.000 threading.py:359(notify)
+        1    0.000    0.000    0.000    0.000 v1_runtime_class.py:21(V1RuntimeClass)
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1alpha1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_attribute.py:1()
+        1    0.000    0.000    0.000    0.000 v1_user_info.py:1()
+        1    0.000    0.000    0.000    0.000 v1_validating_webhook_configuration_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_group_subject.py:1()
+        1    0.000    0.000    0.000    0.000 v1_component_status.py:1()
+       26    0.000    0.000    0.000    0.000 functions.py:38(signature)
+        1    0.000    0.000    0.000    0.000 tool_choice_custom.py:10(ToolChoiceCustom)
+        1    0.000    0.000    0.000    0.000 chat_completion_chunk.py:39(ChoiceDeltaToolCallFunction)
+        1    0.000    0.000    0.000    0.000 chat_completion_message_function_tool_call.py:25(ChatCompletionMessageFunctionToolCall)
+        1    0.000    0.000    0.000    0.000 label_model_grader.py:14(InputContentOutputText)
+        4    0.000    0.000    0.000    0.000 hooks.py:56(register_post_hook)
+        1    0.000    0.000    0.000    0.000 asn1.py:545(hasInts)
+        2    0.000    0.000    0.000    0.000 ast.py:531(__instancecheck__)
+        1    0.000    0.000    0.000    0.000 handler.py:14(AzureTextCompletion)
+        1    0.000    0.000    0.000    0.000 v1alpha1_cluster_trust_bundle_spec.py:21(V1alpha1ClusterTrustBundleSpec)
+        1    0.000    0.000    0.000    0.000 v1_node_selector.py:1()
+        1    0.000    0.000    0.000    0.000 v1_overhead.py:1()
+        1    0.000    0.000    0.000    0.000 v1_local_object_reference.py:1()
+        1    0.000    0.000    0.000    0.000 _parser.py:568(parser)
+        1    0.000    0.000    0.000    0.000 router.py:471(AlertingConfig)
+        1    0.000    0.000    0.000    0.000 vector_store_search_response.py:11(Content)
+        1    0.000    0.000    0.000    0.000 score_model_grader.py:22(InputContentOutputText)
+        2    0.000    0.000    0.000    0.000 _decoders.py:238(flush)
+        5    0.000    0.000    0.000    0.000 ssl.py:740(verify_mode)
+        1    0.000    0.000    0.000    0.000 v1_csi_persistent_volume_source.py:21(V1CSIPersistentVolumeSource)
+        1    0.000    0.000    0.000    0.000 discovery_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v2_hpa_scaling_policy.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_allocation_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_network_device_data.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_lease_candidate.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_consumer_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_ip.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_os.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_load_balancer_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_env_var.py:1()
+        1    0.000    0.000    0.000    0.000 cElementTree.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:3647(__init__)
+        1    0.000    0.000    0.000    0.000 datadog_llm_obs.py:13(InputMeta)
+        1    0.000    0.000    0.000    0.000 _types.py:2094(FieldDetail)
+        1    0.000    0.000    0.000    0.000 file_search_tool_call.py:17(FileSearchRankingOptions)
+        1    0.000    0.000    0.000    0.000 code_interpreter_tool_call.py:63(CodeInterpreterToolCall)
+       20    0.000    0.000    0.000    0.000 Primality.py:267()
+        3    0.000    0.000    0.000    0.000 :933(clear)
+        1    0.000    0.000    0.000    0.000 scheduling_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 config_exception.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_taint.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_binding.py:21(V1beta1ValidatingAdmissionPolicyBinding)
+        1    0.000    0.000    0.000    0.000 v1beta1_param_ref.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_selector_term.py:1()
+        1    0.000    0.000    0.000    0.000 markdown.py:299(TableDataElement)
+        1    0.000    0.000    0.000    0.000 prompt_caching_deployment_check.py:19(PromptCachingDeploymentCheck)
+        1    0.000    0.000    0.000    0.000 amazon_stability3_transformation.py:15(AmazonStability3Config)
+        1    0.000    0.000    0.000    0.000 client_middleware_digest_auth.py:154(DigestAuthMiddleware)
+        1    0.000    0.000    0.000    0.000 chat_completion_message.py:29(Annotation)
+        1    0.000    0.000    0.000    0.000 tool_choice_shell.py:10(ToolChoiceShell)
+        1    0.000    0.000    0.000    0.000 response_container_reference.py:10(ResponseContainerReference)
+        1    0.000    0.000    0.000    0.000 tool_choice_function.py:10(ToolChoiceFunction)
+        1    0.000    0.000    0.000    0.000 response_format_text_grammar.py:10(ResponseFormatTextGrammar)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_class_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_ip_address_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_typed_local_object_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_ordinals.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_subresources.py:1()
+        1    0.000    0.000    0.000    0.000 v1_downward_api_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cron_job_list.py:1()
+        1    0.000    0.000    0.000    0.000 eval_create_response.py:71(TestingCriterionEvalGraderPython)
+        1    0.000    0.000    0.000    0.000 tool_choice_apply_patch.py:10(ToolChoiceApplyPatch)
+        4    0.000    0.000    0.000    0.000 text.py:1098()
+        6    0.000    0.000    0.000    0.000 _urls.py:282(raw_path)
+        1    0.000    0.000    0.000    0.000 from_thread.py:145(BlockingPortal)
+        4    0.000    0.000    0.000    0.000 :121(_splitext)
+       24    0.000    0.000    0.000    0.000 {method 'seek' of '_io.StringIO' objects}
+        1    0.000    0.000    0.000    0.000 certificates_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_binding_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_modify_volume_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_status.py:1()
+        1    0.000    0.000    0.000    0.000 process.py:399(__init__)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:491(DummyCookieJar)
+        1    0.000    0.000    0.000    0.000 fine_tuning_job.py:16(Error)
+        1    0.000    0.000    0.000    0.000 response_output_item.py:166(McpApprovalRequest)
+        6    0.000    0.000    0.000    0.000 _receivebuffer.py:53(__iadd__)
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_status.py:21(V1DaemonSetStatus)
+        1    0.000    0.000    0.000    0.000 v1_pod_condition.py:21(V1PodCondition)
+        2    0.000    0.000    0.000    0.000 _default.py:6(__init__)
+        1    0.000    0.000    0.000    0.000 v1beta2_opaque_device_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_bound_object_reference.py:1()
+        1    0.000    0.000    0.000    0.000 mock_client_factory.py:43(MockResponse)
+        1    0.000    0.000    0.000    0.000 response_function_shell_tool_call_output.py:38(Output)
+        1    0.000    0.000    0.000    0.000 response_item.py:146(McpApprovalRequest)
+        1    0.000    0.000    0.000    0.000 response_function_shell_tool_call_output.py:18(OutputOutcomeTimeout)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call.py:59(ActionDoubleClick)
+        1    0.000    0.000    0.000    0.000 response_apply_patch_tool_call.py:41(OperationUpdateFile)
+       22    0.000    0.000    0.000    0.000 {method 'copy' of 'set' objects}
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_template_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_allocation_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_service_cidr_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_success_policy.py:1()
+        1    0.000    0.000    0.000    0.000 v1_topology_selector_term.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_daemon_endpoints.py:1()
+        3    0.000    0.000    0.000    0.000 __init__.py:121(wrapped)
+        1    0.000    0.000    0.000    0.000 oci.py:116(OCICompletionPayload)
+        1    0.000    0.000    0.000    0.000 handler.py:31(AzureOpenAIRealtime)
+        1    0.000    0.000    0.000    0.000 _types.py:1472(DeleteUserRequest)
+        1    0.000    0.000    0.000    0.000 exceptions.py:793(UnsupportedParamsError)
+        1    0.000    0.000    0.000    0.000 eval_list_response.py:71(TestingCriterionEvalGraderPython)
+        1    0.000    0.000    0.000    0.000 eval_list_response.py:78(TestingCriterionEvalGraderScoreModel)
+        1    0.000    0.000    0.000    0.000 file_search_tool.py:15(RankingOptionsHybridSearch)
+        1    0.000    0.000    0.000    0.000 response_apply_patch_tool_call.py:31(OperationDeleteFile)
+        3    0.000    0.000    0.000    0.000 argparse.py:1166(__init__)
+        2    0.000    0.000    0.000    0.000 reprlib.py:12(decorating_function)
+        1    0.000    0.000    0.000    0.000 v1_azure_disk_volume_source.py:21(V1AzureDiskVolumeSource)
+        5    0.000    0.000    0.000    0.000 _doc_utils.py:250()
+        1    0.000    0.000    0.000    0.000 apiextensions_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_request.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_cluster_trust_bundle_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_status.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:4790(__init__)
+        2    0.000    0.000    0.000    0.000 _path.py:1()
+        1    0.000    0.000    0.000    0.000 main.py:57(GenerateContentHelper)
+        1    0.000    0.000    0.000    0.000 transcription_diarized.py:42(UsageDuration)
+        1    0.000    0.000    0.000    0.000 openai.py:955(ChatCompletionUsageBlock)
+        1    0.000    0.000    0.000    0.000 responses_client_event.py:39(StreamOptions)
+        1    0.000    0.000    0.000    0.000 eval_retrieve_response.py:71(TestingCriterionEvalGraderPython)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call.py:172(ActionType)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call.py:124(ActionMove)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call.py:150(ActionScroll)
+       14    0.000    0.000    0.000    0.000 __init__.py:370(_FuncPtr)
+        3    0.000    0.000    0.000    0.000 {built-in method posix.getcwd}
+        3    0.000    0.000    0.000    0.000 containers.py:111(justify)
+        1    0.000    0.000    0.000    0.000 api_client.py:33(ApiClient)
+        1    0.000    0.000    0.000    0.000 v1beta1_expression_warning.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_network_device_data.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_features.py:1()
+        1    0.000    0.000    0.000    0.000 v1_component_status_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_container_state.py:1()
+       24    0.000    0.000    0.000    0.000 core.py:4052()
+        1    0.000    0.000    0.000    0.000 model_param_helper.py:104(_get_litellm_supported_text_completion_kwargs)
+        1    0.000    0.000    0.000    0.000 abc.py:209(AbstractStreamWriter)
+        1    0.000    0.000    0.000    0.000 eval_create_response.py:78(TestingCriterionEvalGraderScoreModel)
+        1    0.000    0.000    0.000    0.000 eval_retrieve_response.py:78(TestingCriterionEvalGraderScoreModel)
+        1    0.000    0.000    0.000    0.000 mimetypes.py:399(_default_mime_types)
+        1    0.000    0.000    0.000    0.000 v1_horizontal_pod_autoscaler_status.py:21(V1HorizontalPodAutoscalerStatus)
+        1    0.000    0.000    0.000    0.000 storage_v1beta1_api.py:1()
+        1    0.000    0.000    0.000    0.000 events_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 coordination_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 coordination_v1alpha2_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_claim_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_template_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_allocation_result.py:1()
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request_status.py:1()
+        1    0.000    0.000    0.000    0.000 oci.py:159(OCIChatResponse)
+        1    0.000    0.000    0.000    0.000 vector_store_files.py:42(VectorStoreFileCreateRequest)
+        7    0.000    0.000    0.000    0.000 __init__.py:820(__new__)
+        1    0.000    0.000    0.000    0.000 utils.py:2337(TranscriptionUsageDurationObject)
+        1    0.000    0.000    0.000    0.000 eval_update_response.py:78(TestingCriterionEvalGraderScoreModel)
+        1    0.000    0.000    0.000    0.000 response_function_shell_tool_call_output.py:25(OutputOutcomeExit)
+       10    0.000    0.000    0.000    0.000 six.py:186(_get_module)
+        2    0.000    0.000    0.000    0.000 _figure.py:87(_set_slots)
+        1    0.000    0.000    0.000    0.000 dateutil.py:21(__init__)
+        1    0.000    0.000    0.000    0.000 v1_label_selector.py:1()
+        1    0.000    0.000    0.000    0.000 v1_exempt_priority_level_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_expression_warning.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cross_version_object_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1_config_map_key_selector.py:1()
+        1    0.000    0.000    0.000    0.000 core_v1_event_series.py:1()
+        1    0.000    0.000    0.000    0.000 v1_app_armor_profile.py:1()
+        1    0.000    0.000    0.000    0.000 wrappers.py:18(Request)
+        1    0.000    0.000    0.000    0.000 transformation.py:19(OVHCloudChatConfig)
+        1    0.000    0.000    0.000    0.000 eval_update_response.py:71(TestingCriterionEvalGraderPython)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call.py:185(ActionWait)
+        1    0.000    0.000    0.000    0.000 _connection.py:223(start_next_cycle)
+        1    0.000    0.000    0.000    0.000 _client.py:393(_merge_cookies)
+        1    0.000    0.000    0.000    0.000 __init__.py:731(DistributionFinder)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_version.py:21(V1CustomResourceDefinitionVersion)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_class_spec.py:1()
+        1    0.000    0.000    0.000    0.000 fine_tuning.py:4(OpenAIFineTuningHyperparameters)
+        1    0.000    0.000    0.000    0.000 bedrock.py:994(BedrockToolBlock)
+        1    0.000    0.000    0.000    0.000 _types.py:784(ModelInfoDelete)
+        1    0.000    0.000    0.000    0.000 enkryptai.py:56(EnkryptAIResponseSummary)
+        8    0.000    0.000    0.000    0.000 {built-in method _asyncio.get_running_loop}
+        1    0.000    0.000    0.000    0.000 validators.py:198(_OptionalValidator)
+        1    0.000    0.000    0.000    0.000 types.py:1938()
+        1    0.000    0.000    0.000    0.000 v1_delete_options.py:21(V1DeleteOptions)
+        8    0.000    0.000    0.000    0.000 _doc_utils.py:279(mix)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_counter_consumption.py:1()
+        1    0.000    0.000    0.000    0.000 v1_variable.py:1()
+        1    0.000    0.000    0.000    0.000 v1_service_cidr_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_readiness_gate.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_config_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_local_volume_source.py:1()
+       13    0.000    0.000    0.000    0.000 cache_control.py:7(cache_control_property)
+        1    0.000    0.000    0.000    0.000 server.py:636()
+       24    0.000    0.000    0.000    0.000 core.py:4293()
+        1    0.000    0.000    0.000    0.000 generated.py:515(Result)
+        1    0.000    0.000    0.000    0.000 coroutine_checker.py:17(__init__)
+        1    0.000    0.000    0.000    0.000 http.py:70()
+        1    0.000    0.000    0.000    0.000 _types.py:4083(ScopeMapping)
+        1    0.000    0.000    0.000    0.000 _types.py:2854(LiteLLM_UserTableWithKeyCount)
+        1    0.000    0.000    0.000    0.000 _types.py:3740(TeamModelAddRequest)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call.py:140(ActionScreenshot)
+        3    0.000    0.000    0.000    0.000 console.py:232(reset_height)
+       13    0.000    0.000    0.000    0.000 _models.py:128()
+        1    0.000    0.000    0.000    0.000 __init__.py:984(distributions)
+        1    0.000    0.000    0.000    0.000 tempfile.py:820(SpooledTemporaryFile)
+        1    0.000    0.000    0.000    0.000 scanner.py:46(Scanner)
+        1    0.000    0.000    0.000    0.000 azure.py:367(AsyncAzureOpenAI)
+        1    0.000    0.000    0.000    0.000 pprint.py:106(PrettyPrinter)
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request_spec.py:21(V1CertificateSigningRequestSpec)
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_counter.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_allocation_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint_rule_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_pool.py:1()
+        1    0.000    0.000    0.000    0.000 v1_audit_annotation.py:1()
+        2    0.000    0.000    0.000    0.000 transformation.py:57(__init__)
+        1    0.000    0.000    0.000    0.000 utils.py:2347(TranscriptionUsageTokensObject)
+        1    0.000    0.000    0.000    0.000 tls.py:32(TLSAttribute)
+        5    0.000    0.000    0.000    0.000 request.py:401(add_header)
+        1    0.000    0.000    0.000    0.000 _models.py:255(__init__)
+        1    0.000    0.000    0.000    0.000 v1_priority_class.py:21(V1PriorityClass)
+        1    0.000    0.000    0.000    0.000 storagemigration_v1alpha1_api.py:1()
+        1    0.000    0.000    0.000    0.000 policy_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_config_map_projection.py:1()
+        1    0.000    0.000    0.000    0.000 v1_container_image.py:1()
+        1    0.000    0.000    0.000    0.000 prompt_manager.py:13(PromptTemplate)
+        8    0.000    0.000    0.000    0.000 {method 'isatty' of '_io.TextIOWrapper' objects}
+        1    0.000    0.000    0.000    0.000 v1_object_reference.py:21(V1ObjectReference)
+        1    0.000    0.000    0.000    0.000 v1_subject_access_review_spec.py:21(V1SubjectAccessReviewSpec)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_slice_spec.py:21(V1beta1ResourceSliceSpec)
+        1    0.000    0.000    0.000    0.000 pydoc.py:530(__init__)
+        1    0.000    0.000    0.000    0.000 discovery_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_job_template_spec.py:1()
+        1    0.000    0.000    0.000    0.000 sharedexample.py:1()
+       22    0.000    0.000    0.000    0.000 core.py:3492()
+        1    0.000    0.000    0.000    0.000 function_tool_call.py:29(FunctionToolCall)
+        1    0.000    0.000    0.000    0.000 response_input_content_param.py:1()
+        1    0.000    0.000    0.000    0.000 response_function_call_output_item_param.py:1()
+        3    0.000    0.000    0.000    0.000 _compat.py:578(_make_cached_stream_func)
+        1    0.000    0.000    0.000    0.000 from_thread.py:398(BlockingPortalProvider)
+        3    0.000    0.000    0.000    0.000 {method 'findall' of 're.Pattern' objects}
+        1    0.000    0.000    0.000    0.000 _spinners.py:1()
+        1    0.000    0.000    0.000    0.000 v1_volume_device.py:1()
+        1    0.000    0.000    0.000    0.000 v1_container_resize_policy.py:1()
+        4    0.000    0.000    0.000    0.000 terminal.py:929(normal)
+        1    0.000    0.000    0.000    0.000 bedrock.py:377(ServerSentEvent)
+        1    0.000    0.000    0.000    0.000 _types.py:4073(RoleMapping)
+        1    0.000    0.000    0.000    0.000 enkryptai.py:144(EnkryptAIGuardrailConfigModel)
+        2    0.000    0.000    0.000    0.000 _policybase.py:319(header_fetch_parse)
+        2    0.000    0.000    0.000    0.000 {method 'readline' of '_io.BufferedReader' objects}
+        1    0.000    0.000    0.000    0.000 v2_pods_metric_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_allocation_result.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_counter_set.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device.py:1()
+        1    0.000    0.000    0.000    0.000 node_handler.py:13(__init__)
+        1    0.000    0.000    0.000    0.000 oci.py:243(CohereParameterDefinition)
+        1    0.000    0.000    0.000    0.000 _types.py:2085(ConfigFieldDelete)
+        1    0.000    0.000    0.000    0.000 anthropic.py:545(AnthropicResponseContentBlockText)
+        1    0.000    0.000    0.000    0.000 transcription_segment.py:10(TranscriptionSegment)
+        3    0.000    0.000    0.000    0.000 threading.py:279(_is_owned)
+       19    0.000    0.000    0.000    0.000 {method 'groups' of 're.Match' objects}
+        1    0.000    0.000    0.000    0.000 _oid.py:86(SignatureAlgorithmOID)
+        1    0.000    0.000    0.000    0.000 retry.py:202(__init__)
+        1    0.000    0.000    0.000    0.000 v1_owner_reference.py:21(V1OwnerReference)
+        1    0.000    0.000    0.000    0.000 v1_replication_controller_status.py:21(V1ReplicationControllerStatus)
+        1    0.000    0.000    0.000    0.000 node_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 authentication_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_event_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_grpc_action.py:1()
+        1    0.000    0.000    0.000    0.000 oci.py:285(CohereResponseJSONSchemaFormat)
+        1    0.000    0.000    0.000    0.000 streaming_iterator.py:585(MockResponsesAPIStreamingIterator)
+        1    0.000    0.000    0.000    0.000 utils.py:842(CostCalculatorUtils)
+        1    0.000    0.000    0.000    0.000 _raw_api.py:57(_VoidPointer)
+        1    0.000    0.000    0.000    0.000 v1_cron_job_spec.py:21(V1CronJobSpec)
+        1    0.000    0.000    0.000    0.000 v1_pod_affinity_term.py:21(V1PodAffinityTerm)
+        1    0.000    0.000    0.000    0.000 v2_object_metric_source.py:1()
+        1    0.000    0.000    0.000    0.000 autoscaling_v2_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_claim_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_webhook_conversion.py:1()
+        1    0.000    0.000    0.000    0.000 v1_weighted_pod_affinity_term.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:133()
+        1    0.000    0.000    0.000    0.000 binding.py:205(_verify_package_version)
+        1    0.000    0.000    0.000    0.000 oci.py:218(CohereUserMessage)
+        1    0.000    0.000    0.000    0.000 oci.py:224(CohereChatBotMessage)
+        1    0.000    0.000    0.000    0.000 streaming_iterator.py:479(SyncResponsesAPIStreamingIterator)
+        1    0.000    0.000    0.000    0.000 _types.py:1326(RejectMCPServerRequest)
+        1    0.000    0.000    0.000    0.000 selectors.py:80(BaseSelector)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_condition.py:21(V1PersistentVolumeClaimCondition)
+        1    0.000    0.000    0.000    0.000 v1_self_subject_access_review.py:21(V1SelfSubjectAccessReview)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_slice_spec.py:21(V1alpha3ResourceSliceSpec)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_slice_spec.py:21(V1beta2ResourceSliceSpec)
+        1    0.000    0.000    0.000    0.000 v2_cross_version_object_reference.py:1()
+        1    0.000    0.000    0.000    0.000 apiextensions_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_variable.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_label_selector_attributes.py:1()
+        1    0.000    0.000    0.000    0.000 v1_external_documentation.py:1()
+        1    0.000    0.000    0.000    0.000 v1_http_ingress_rule_value.py:1()
+        1    0.000    0.000    0.000    0.000 v1_config_map_env_source.py:1()
+        1    0.000    0.000    0.000    0.000 __init__.py:302(_TimedCache)
+        1    0.000    0.000    0.000    0.000 oci.py:230(CohereSystemMessage)
+        1    0.000    0.000    0.000    0.000 oci.py:236(CohereToolMessage)
+        1    0.000    0.000    0.000    0.000 __init__.py:299(_MarkupEscapeHelper)
+        1    0.000    0.000    0.000    0.000 _types.py:3688(MemberUpdateResponse)
+        1    0.000    0.000    0.000    0.000 exceptions.py:124(BadRequestError)
+        1    0.000    0.000    0.000    0.000 file_path_delta_annotation.py:11(FilePath)
+        1    0.000    0.000    0.000    0.000 _make.py:3030(_AndValidator)
+        1    0.000    0.000    0.000    0.000 _utils.py:94(get_ca_bundle_from_env)
+        1    0.000    0.000    0.000    0.000 asn1.py:484(__init__)
+        1    0.000    0.000    0.000    0.000 _weakrefset.py:39(_remove)
+        1    0.000    0.000    0.000    0.000 _legacy_response.py:45(LegacyAPIResponse)
+        1    0.000    0.000    0.000    0.000 v1_node_condition.py:21(V1NodeCondition)
+        1    0.000    0.000    0.000    0.000 v1beta1_variable.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_counter_set.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_pool.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_param_kind.py:1()
+        1    0.000    0.000    0.000    0.000 v1_uncounted_terminated_pods.py:1()
+        1    0.000    0.000    0.000    0.000 factory.py:28(ResourceFactory)
+        1    0.000    0.000    0.000    0.000 rsa.py:291(RSAPrivateNumbers)
+        1    0.000    0.000    0.000    0.000 _types.py:1920(TeamRequest)
+        1    0.000    0.000    0.000    0.000 _types.py:3796(TeamInfoResponseObjectTeamTable)
+        2    0.000    0.000    0.000    0.000 {built-in method now}
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_behavior.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_template_spec.py:21(V1beta2ResourceClaimTemplateSpec)
+        1    0.000    0.000    0.000    0.000 v1beta1_match_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_migration_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_flow_schema_status.py:1()
+        1    0.000    0.000    0.000    0.000 oci.py:279(CohereResponseTextFormat)
+       13    0.000    0.000    0.000    0.000 utils.py:63(pass_environment)
+        1    0.000    0.000    0.000    0.000 router.py:593(FineTuningConfig)
+        1    0.000    0.000    0.000    0.000 _types.py:3747(TeamModelDeleteRequest)
+        1    0.000    0.000    0.000    0.000 agents.py:231(AgentMakePublicResponse)
+        1    0.000    0.000    0.000    0.000 file_search_tool_call.py:73(FileSearchToolCall)
+        1    0.000    0.000    0.000    0.000 parsed_function_tool_call.py:15(ParsedFunction)
+        3    0.000    0.000    0.000    0.000 text.py:191(__contains__)
+        1    0.000    0.000    0.000    0.000 socket.py:515(family)
+       14    0.000    0.000    0.000    0.000 _collections.py:23(freeze)
+        6    0.000    0.000    0.000    0.000 message.py:330(set_payload)
+        1    0.000    0.000    0.000    0.000 transformation.py:22(SagemakerEmbeddingConfig)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_request.py:21(V1beta1DeviceRequest)
+        1    0.000    0.000    0.000    0.000 v2_external_metric_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_counter_set.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_claim_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_selector.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_node_spec.py:1()
+        1    0.000    0.000    0.000    0.000 _parser.py:1373(_result)
+        1    0.000    0.000    0.000    0.000 poolmanager.py:199(__init__)
+       15    0.000    0.000    0.000    0.000 logging_utils.py:279(track_llm_api_timing)
+        1    0.000    0.000    0.000    0.000 compiler.py:1365(_FinalizeInfo)
+        1    0.000    0.000    0.000    0.000 _types.py:3089(InvitationModel)
+        1    0.000    0.000    0.000    0.000 message.py:20(AttachmentToolAssistantToolsFileSearchTypeOnly)
+        1    0.000    0.000    0.000    0.000 responses_client_event.py:28(ContextManagement)
+        1    0.000    0.000    0.000    0.000 response_output_text.py:97(LogprobTopLogprob)
+        1    0.000    0.000    0.000    0.000 console.py:334(__enter__)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:671(_BaseNetwork)
+        1    0.000    0.000    0.000    0.000 apiregistration_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_constraint.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_opaque_device_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_match_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_group_version_resource.py:21(V1alpha1GroupVersionResource)
+        1    0.000    0.000    0.000    0.000 v1_flow_distinguisher_method.py:1()
+        1    0.000    0.000    0.000    0.000 extensions.py:739(PolicyConstraints)
+        1    0.000    0.000    0.000    0.000 keyboard.py:123(_alternative_left_right)
+       18    0.000    0.000    0.000    0.000 __init__.py:825(__init__)
+        1    0.000    0.000    0.000    0.000 __init__.py:144(EntryPoint)
+        1    0.000    0.000    0.000    0.000 arize_phoenix_prompt_manager.py:22(ArizePhoenixPromptTemplate)
+        1    0.000    0.000    0.000    0.000 _types.py:4065(RoleBasedPermissions)
+        1    0.000    0.000    0.000    0.000 utils.py:927(FunctionCall)
+        1    0.000    0.000    0.000    0.000 _base_client.py:120(PageInfo)
+        4    0.000    0.000    0.000    0.000 core_schema.py:4129(__getattr__)
+        3    0.000    0.000    0.000    0.000 text.py:720(render)
+        1    0.000    0.000    0.000    0.000 v1_endpoint_slice.py:21(V1EndpointSlice)
+        1    0.000    0.000    0.000    0.000 v1_named_rule_with_operations.py:21(V1NamedRuleWithOperations)
+        1    0.000    0.000    0.000    0.000 authorization_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 batch_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_template_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_git_repo_volume_source.py:21(V1GitRepoVolumeSource)
+        1    0.000    0.000    0.000    0.000 storage_v1_token_request.py:1()
+        2    0.000    0.000    0.000    0.000 core.py:3510(_generateDefaultName)
+        1    0.000    0.000    0.000    0.000 _types.py:3755(OrganizationMemberAddRequest)
+        1    0.000    0.000    0.000    0.000 redis_cluster_cache.py:26(RedisClusterCache)
+        1    0.000    0.000    0.000    0.000 _model_construction.py:81(ModelMetaclass)
+        3    0.000    0.000    0.000    0.000 :790(items)
+        1    0.000    0.000    0.000    0.000 v1beta2_device.py:21(V1beta2Device)
+        1    0.000    0.000    0.000    0.000 coordination_v1beta1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v2_resource_metric_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_selector.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_allocation_result.py:1()
+        1    0.000    0.000    0.000    0.000 v1_client_ip_config.py:1()
+        1    0.000    0.000    0.000    0.000 cache_control.py:144(ResponseCacheControl)
+        1    0.000    0.000    0.000    0.000 payload.py:731(TextIOPayload)
+        1    0.000    0.000    0.000    0.000 openai.py:398(FileContentRequest)
+        1    0.000    0.000    0.000    0.000 code_interpreter_output_image.py:11(Image)
+        1    0.000    0.000    0.000    0.000 admissionregistration_api.py:1()
+        1    0.000    0.000    0.000    0.000 chat_completion_audio.py:8(ChatCompletionAudio)
+        1    0.000    0.000    0.000    0.000 _types.py:1738(ResetTeamBudgetRequest)
+        1    0.000    0.000    0.000    0.000 _serializers.py:1()
+        1    0.000    0.000    0.000    0.000 v1_role_binding.py:21(V1RoleBinding)
+        4    0.000    0.000    0.000    0.000 _doc_utils.py:261()
+        1    0.000    0.000    0.000    0.000 core.py:5079(ZeroOrMore)
+        1    0.000    0.000    0.000    0.000 node_service.py:9(__init__)
+        1    0.000    0.000    0.000    0.000 lowest_tpm_rpm.py:15(RoutingArgs)
+        1    0.000    0.000    0.000    0.000 simple_shuffle.py:1()
+        1    0.000    0.000    0.000    0.000 common_utils.py:8(NLPCloudError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:238(Timeout)
+        1    0.000    0.000    0.000    0.000 openai.py:705(ChatCompletionUserMessage)
+        1    0.000    0.000    0.000    0.000 types.py:164(FuncParamType)
+       18    0.000    0.000    0.000    0.000 :2(__eq__)
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_condition.py:21(V1PriorityLevelConfigurationCondition)
+        1    0.000    0.000    0.000    0.000 v2_metric_identifier.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_cel_device_selector.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_allocation_result.py:21(V1beta2AllocationResult)
+        1    0.000    0.000    0.000    0.000 v1_volume_node_affinity.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_param_ref.py:21(V1alpha1ParamRef)
+        1    0.000    0.000    0.000    0.000 v1_container_state_waiting.py:1()
+        1    0.000    0.000    0.000    0.000 dh.py:146(DHParameters)
+        1    0.000    0.000    0.000    0.000 _cryptography_rsa.py:88(RSASigner)
+        1    0.000    0.000    0.000    0.000 rag.py:37(OpenAIVectorStoreOptions)
+        1    0.000    0.000    0.000    0.000 transformation.py:20(VertexAIRealtimeConfig)
+        1    0.000    0.000    0.000    0.000 azure_sentinel.py:29(AzureSentinelLogger)
+        1    0.000    0.000    0.000    0.000 streams.py:583(EmptyStreamReader)
+        1    0.000    0.000    0.000    0.000 openai.py:438(RetrieveBatchRequest)
+        1    0.000    0.000    0.000    0.000 _funcs.py:1()
+        1    0.000    0.000    0.000    0.000 _synchronization.py:280(__init__)
+        4    0.000    0.000    0.000    0.000 zipfile.py:1881(__del__)
+        1    0.000    0.000    0.000    0.000 asn1.py:554()
+        1    0.000    0.000    0.000    0.000 v1_rule_with_operations.py:21(V1RuleWithOperations)
+        1    0.000    0.000    0.000    0.000 v1_self_subject_rules_review.py:21(V1SelfSubjectRulesReview)
+        1    0.000    0.000    0.000    0.000 logs_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_capacity.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_param_kind.py:1()
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_update_strategy.py:1()
+        1    0.000    0.000    0.000    0.000 v1_aggregation_rule.py:1()
+        1    0.000    0.000    0.000    0.000 map.py:382(MapAdapter)
+        1    0.000    0.000    0.000    0.000 utils.py:10(VectorStoreFileRequestUtils)
+        1    0.000    0.000    0.000    0.000 arize_phoenix_client.py:10(ArizePhoenixClient)
+        1    0.000    0.000    0.000    0.000 models.py:50(WSMessage)
+        1    0.000    0.000    0.000    0.000 exceptions.py:175(ImageFetchError)
+       15    0.000    0.000    0.000    0.000 _old_api.py:27(__init__)
+        1    0.000    0.000    0.000    0.000 validators.py:359(deep_iterable)
+        1    0.000    0.000    0.000    0.000 _subprocesses.py:10(Process)
+        1    0.000    0.000    0.000    0.000 request.py:317(Request)
+       10    0.000    0.000    0.000    0.000 typing_extensions.py:1474(_set_default)
+        1    0.000    0.000    0.000    0.000 certificates_v1alpha1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_class_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_json_patch.py:1()
+        1    0.000    0.000    0.000    0.000 v1_limit_range_spec.py:1()
+        1    0.000    0.000    0.000    0.000 openai.py:449(CancelBatchRequest)
+        1    0.000    0.000    0.000    0.000 run_step_delta_message_delta.py:11(MessageCreation)
+        6    0.000    0.000    0.000    0.000 _adapters.py:16(__getattr__)
+        1    0.000    0.000    0.000    0.000 ssl.py:732(verify_mode)
+        2    0.000    0.000    0.000    0.000 {built-in method posix.read}
+        3    0.000    0.000    0.000    0.000 _parser.py:894(_parse_flags)
+        1    0.000    0.000    0.000    0.000 v1_subject_access_review.py:21(V1SubjectAccessReview)
+        1    0.000    0.000    0.000    0.000 v1_volume_mount.py:21(V1VolumeMount)
+        1    0.000    0.000    0.000    0.000 storage_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_class.py:21(V1beta1DeviceClass)
+        1    0.000    0.000    0.000    0.000 v1beta1_ip_address_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_opaque_device_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_exec_action.py:1()
+        2    0.000    0.000    0.000    0.000 results.py:459()
+        1    0.000    0.000    0.000    0.000 oci.py:168(OCICompletionResponse)
+        1    0.000    0.000    0.000    0.000 helpers.py:659(TimerContext)
+        1    0.000    0.000    0.000    0.000 openai.py:108(HttpxBinaryResponseContent)
+        1    0.000    0.000    0.000    0.000 image_edit_completed_event.py:20(Usage)
+        5    0.000    0.000    0.000    0.000 typing_extensions.py:3441(__setattr__)
+        8    0.000    0.000    0.000    0.000 py3compat.py:123(bchr)
+        1    0.000    0.000    0.000    0.000 {built-in method zlib.decompressobj}
+        1    0.000    0.000    0.000    0.000 transformation.py:86(BaseOCRConfig)
+        1    0.000    0.000    0.000    0.000 _collections.py:206(HTTPHeaderDict)
+        1    0.000    0.000    0.000    0.000 v1_csi_storage_capacity.py:21(V1CSIStorageCapacity)
+        1    0.000    0.000    0.000    0.000 v1_node.py:21(V1Node)
+        1    0.000    0.000    0.000    0.000 v1_resource_quota.py:21(V1ResourceQuota)
+        1    0.000    0.000    0.000    0.000 v2_resource_metric_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_counter_consumption.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_constraint.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_migration_spec.py:1()
+        1    0.000    0.000    0.000    0.000 wait.py:1()
+        1    0.000    0.000    0.000    0.000 credentials.py:556(UserAccessTokenCredentials)
+        1    0.000    0.000    0.000    0.000 search.py:18(SearchToolLiteLLMParams)
+        1    0.000    0.000    0.000    0.000 _types.py:833(BlockUsers)
+        1    0.000    0.000    0.000    0.000 agents.py:237(MakeAgentsPublicRequest)
+        1    0.000    0.000    0.000    0.000 openai.py:1724(GenericEvent)
+        2    0.000    0.000    0.000    0.000 _writers.py:63(__call__)
+        1    0.000    0.000    0.000    0.000 token.py:23(Token)
+        1    0.000    0.000    0.000    0.000 v1_replica_set.py:21(V1ReplicaSet)
+        1    0.000    0.000    0.000    0.000 v1beta1_basic_device.py:21(V1beta1BasicDevice)
+        1    0.000    0.000    0.000    0.000 version_api.py:1()
+        1    0.000    0.000    0.000    0.000 events_api.py:1()
+        1    0.000    0.000    0.000    0.000 certificates_v1beta1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_constraint.py:21(V1beta1DeviceConstraint)
+        6    0.000    0.000    0.000    0.000 core.py:4987(stopOn)
+        1    0.000    0.000    0.000    0.000 gemini.py:304(GeminiVideoUri)
+        1    0.000    0.000    0.000    0.000 _types.py:1285(MCPUserCredentialRequest)
+        1    0.000    0.000    0.000    0.000 utils.py:194(KeepOpenFile)
+        7    0.000    0.000    0.000    0.000 argparse.py:1866()
+        3    0.000    0.000    0.000    0.000 threading.py:264(__enter__)
+       21    0.000    0.000    0.000    0.000 {method 'isalpha' of 'str' objects}
+        1    0.000    0.000    0.000    0.000 __init__.py:244(detect_encoding)
+        1    0.000    0.000    0.000    0.000 v1_container_state_terminated.py:21(V1ContainerStateTerminated)
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_spec.py:21(V1alpha1MutatingAdmissionPolicySpec)
+        1    0.000    0.000    0.000    0.000 v1_container_state_running.py:1()
+        1    0.000    0.000    0.000    0.000 v1_api_service_status.py:1()
+        1    0.000    0.000    0.000    0.000 user_agent.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:98(__compat__)
+        1    0.000    0.000    0.000    0.000 pyfzf.py:1()
+        1    0.000    0.000    0.000    0.000 common_utils.py:8(OobaboogaError)
+        1    0.000    0.000    0.000    0.000 response_metadata.py:16(ResponseMetadata)
+        1    0.000    0.000    0.000    0.000 response_conversation_param.py:8(ResponseConversationParam)
+        1    0.000    0.000    0.000    0.000 idna.py:298(getregentry)
+        1    0.000    0.000    0.000    0.000 v1_ingress.py:21(V1Ingress)
+        1    0.000    0.000    0.000    0.000 v1_policy_rule.py:21(V1PolicyRule)
+        1    0.000    0.000    0.000    0.000 v1_service_cidr.py:21(V1ServiceCIDR)
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_spec.py:21(V1ValidatingAdmissionPolicySpec)
+        1    0.000    0.000    0.000    0.000 _strptime.py:95(__calc_am_pm)
+        1    0.000    0.000    0.000    0.000 _monitor.py:60(data_init)
+        1    0.000    0.000    0.000    0.000 storagemigration_api.py:1()
+        1    0.000    0.000    0.000    0.000 v2_external_metric_source.py:21(V2ExternalMetricSource)
+        1    0.000    0.000    0.000    0.000 v1beta1_counter.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_apply_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 serving.py:436()
+       18    0.000    0.000    0.000    0.000 results.py:266(__bool__)
+        1    0.000    0.000    0.000    0.000 _cryptography_rsa.py:38(RSAVerifier)
+        1    0.000    0.000    0.000    0.000 opik.py:36(OpikLogger)
+        1    0.000    0.000    0.000    0.000 openai.py:963(OpenAIChatCompletionChunk)
+        1    0.000    0.000    0.000    0.000 local_skill.py:8(LocalSkill)
+        1    0.000    0.000    0.000    0.000 response_usage.py:8(InputTokensDetails)
+        6    0.000    0.000    0.000    0.000 _fields.py:129()
+        1    0.000    0.000    0.000    0.000 argparse.py:166(HelpFormatter)
+        2    0.000    0.000    0.000    0.000 :428(__new__)
+        1    0.000    0.000    0.000    0.000 v1_replica_set_condition.py:21(V1ReplicaSetCondition)
+        1    0.000    0.000    0.000    0.000 v1_replication_controller_condition.py:21(V1ReplicationControllerCondition)
+        1    0.000    0.000    0.000    0.000 v1_stateful_set.py:21(V1StatefulSet)
+        1    0.000    0.000    0.000    0.000 authentication_api.py:1()
+        3    0.000    0.000    0.000    0.000 utils.py:96(__new__)
+        1    0.000    0.000    0.000    0.000 _types.py:1512(BudgetRequest)
+        1    0.000    0.000    0.000    0.000 exceptions.py:33(AuthenticationError)
+        2    0.000    0.000    0.000    0.000 console.py:815(_enter_buffer)
+        1    0.000    0.000    0.000    0.000 __init__.py:897(find_distributions)
+       19    0.000    0.000    0.000    0.000 traceback.py:307(__len__)
+        9    0.000    0.000    0.000    0.000 {built-in method time.time}
+        1    0.000    0.000    0.000    0.000 v1_http_get_action.py:21(V1HTTPGetAction)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume.py:21(V1PersistentVolume)
+        1    0.000    0.000    0.000    0.000 v1_replication_controller.py:21(V1ReplicationController)
+        1    0.000    0.000    0.000    0.000 v1_scale.py:21(V1Scale)
+        1    0.000    0.000    0.000    0.000 v1_storage_os_persistent_volume_source.py:21(V1StorageOSPersistentVolumeSource)
+        1    0.000    0.000    0.000    0.000 certificates_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_service_cidr_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_template_list.py:21(V1PodTemplateList)
+        1    0.000    0.000    0.000    0.000 v1_ip_address_list.py:21(V1IPAddressList)
+        1    0.000    0.000    0.000    0.000 _posix_key.py:1()
+        1    0.000    0.000    0.000    0.000 oci.py:354(CohereSearchQuery)
+        1    0.000    0.000    0.000    0.000 oci.py:391(CohereChatResult)
+        1    0.000    0.000    0.000    0.000 transformation.py:63(ChatCompletionSession)
+        1    0.000    0.000    0.000    0.000 __init__.py:487(_prefer_valid)
+        1    0.000    0.000    0.000    0.000 _types.py:4078(JWTLiteLLMRoleMap)
+        1    0.000    0.000    0.000    0.000 _types.py:3112(CallbackOnUI)
+        1    0.000    0.000    0.000    0.000 router.py:712(GenericBudgetWindowDetails)
+        1    0.000    0.000    0.000    0.000 utils.py:3411(CredentialBase)
+        1    0.000    0.000    0.000    0.000 image_gen_completed_event.py:10(UsageInputTokensDetails)
+        1    0.000    0.000    0.000    0.000 chat_completion_message_custom_tool_call.py:10(Custom)
+        1    0.000    0.000    0.000    0.000 chat_completion_message.py:13(AnnotationURLCitation)
+        1    0.000    0.000    0.000    0.000 batch_usage.py:25(BatchUsage)
+        1    0.000    0.000    0.000    0.000 connection_pool.py:127(create_connection)
+        2    0.000    0.000    0.000    0.000 reprlib.py:38(__init__)
+       15    0.000    0.000    0.000    0.000 {built-in method _struct.unpack}
+        1    0.000    0.000    0.000    0.000 v1_service.py:21(V1Service)
+        1    0.000    0.000    0.000    0.000 v1beta2_allocated_device_status.py:21(V1beta2AllocatedDeviceStatus)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_type_checking.py:1()
+       17    0.000    0.000    0.000    0.000 core.py:4570(recurse)
+        2    0.000    0.000    0.000    0.000 core.py:1012(reset_cache)
+        1    0.000    0.000    0.000    0.000 iam.py:49(Signer)
+        1    0.000    0.000    0.000    0.000 oci.py:345(CohereCitation)
+        1    0.000    0.000    0.000    0.000 oci.py:383(CohereChatDetails)
+        1    0.000    0.000    0.000    0.000 gcs_cache.py:18(GCSCache)
+        1    0.000    0.000    0.000    0.000 _types.py:3889(LitellmMetadataFromRequestHeaders)
+        1    0.000    0.000    0.000    0.000 required_action_function_tool_call.py:10(Function)
+        1    0.000    0.000    0.000    0.000 eval_create_response.py:64(TestingCriterionEvalGraderTextSimilarity)
+        1    0.000    0.000    0.000    0.000 batch_usage.py:8(InputTokensDetails)
+        1    0.000    0.000    0.000    0.000 video_create_error.py:8(VideoCreateError)
+        1    0.000    0.000    0.000    0.000 events.py:644(BaseDefaultEventLoopPolicy)
+        5    0.000    0.000    0.000    0.000 types.py:135(__hash__)
+        2    0.000    0.000    0.000    0.000 subprocess.py:1905(_handle_exitstatus)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim.py:21(V1PersistentVolumeClaim)
+        1    0.000    0.000    0.000    0.000 v1_pod.py:21(V1Pod)
+        1    0.000    0.000    0.000    0.000 node_api.py:1()
+        1    0.000    0.000    0.000    0.000 rbac_authorization_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_selector.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_cel_device_selector.py:1()
+        1    0.000    0.000    0.000    0.000 v1_type_checking.py:1()
+        1    0.000    0.000    0.000    0.000 v1_daemon_endpoint.py:1()
+        1    0.000    0.000    0.000    0.000 oci.py:251(CohereTool)
+        1    0.000    0.000    0.000    0.000 anthropic_response.py:21(AnthropicResponseToolUseBlock)
+        1    0.000    0.000    0.000    0.000 eval_retrieve_response.py:64(TestingCriterionEvalGraderTextSimilarity)
+        1    0.000    0.000    0.000    0.000 image_edit_completed_event.py:10(UsageInputTokensDetails)
+        1    0.000    0.000    0.000    0.000 calendar.py:52(_localized_month)
+        1    0.000    0.000    0.000    0.000 v1_horizontal_pod_autoscaler.py:21(V1HorizontalPodAutoscaler)
+        1    0.000    0.000    0.000    0.000 v1_token_review.py:21(V1TokenReview)
+        1    0.000    0.000    0.000    0.000 v1_volume_projection.py:21(V1VolumeProjection)
+        1    0.000    0.000    0.000    0.000 networking_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_class_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_service_cidr_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_user_subject.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_dns_config.py:21(V1PodDNSConfig)
+        1    0.000    0.000    0.000    0.000 algorithms.py:91(Blowfish)
+        1    0.000    0.000    0.000    0.000 utils.py:10(VectorStoreRequestUtils)
+        1    0.000    0.000    0.000    0.000 streaming_iterator.py:127(InteractionsAPIStreamingIterator)
+        1    0.000    0.000    0.000    0.000 lowest_tpm_rpm_v2.py:28(RoutingArgs)
+        1    0.000    0.000    0.000    0.000 common_utils.py:8(ReplicateError)
+        1    0.000    0.000    0.000    0.000 base_aws_llm.py:40(Boto3CredentialsInfo)
+        1    0.000    0.000    0.000    0.000 amazon_titan_v2_transformation.py:22(AmazonTitanV2Config)
+       13    0.000    0.000    0.000    0.000 base_cache.py:23(__init__)
+        1    0.000    0.000    0.000    0.000 run_step.py:33(Usage)
+        1    0.000    0.000    0.000    0.000 container_network_policy_domain_secret.py:8(ContainerNetworkPolicyDomainSecret)
+        1    0.000    0.000    0.000    0.000 batch_usage.py:18(OutputTokensDetails)
+        1    0.000    0.000    0.000    0.000 batch_request_counts.py:8(BatchRequestCounts)
+        1    0.000    0.000    0.000    0.000 console.py:367(__exit__)
+        1    0.000    0.000    0.000    0.000 _sockets.py:42(SocketAttribute)
+        1    0.000    0.000    0.000    0.000 platform.py:778(uname_result)
+       13    0.000    0.000    0.000    0.000 {built-in method _warnings._filters_mutated}
+        1    0.000    0.000    0.000    0.000 {method 'bind' of '_socket.socket' objects}
+        1    0.000    0.000    0.000    0.000 _assistants.py:28(AssistantEventHandler)
+        1    0.000    0.000    0.000    0.000 aead.py:1()
+        1    0.000    0.000    0.000    0.000 v1_api_service_spec.py:21(V1APIServiceSpec)
+        1    0.000    0.000    0.000    0.000 v1_ceph_fs_volume_source.py:21(V1CephFSVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_condition.py:21(V1Condition)
+        1    0.000    0.000    0.000    0.000 v1_toleration.py:21(V1Toleration)
+        2    0.000    0.000    0.000    0.000 _doc_utils.py:267()
+        1    0.000    0.000    0.000    0.000 scheduling_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_counter.py:1()
+        1    0.000    0.000    0.000    0.000 v1_resource_health.py:21(V1ResourceHealth)
+        1    0.000    0.000    0.000    0.000 oci.py:266(CohereToolResult)
+        1    0.000    0.000    0.000    0.000 payload_streamer.py:50(streamer)
+        1    0.000    0.000    0.000    0.000 chatkit_workflow.py:10(Tracing)
+        1    0.000    0.000    0.000    0.000 image_gen_completed_event.py:20(Usage)
+        1    0.000    0.000    0.000    0.000 chat_completion_message_function_tool_call.py:10(Function)
+        1    0.000    0.000    0.000    0.000 computer_action.py:59(DragPath)
+        1    0.000    0.000    0.000    0.000 response_usage.py:25(ResponseUsage)
+        1    0.000    0.000    0.000    0.000 images_response.py:12(UsageInputTokensDetails)
+       14    0.000    0.000    0.000    0.000 __init__.py:892(__bool__)
+       16    0.000    0.000    0.000    0.000 argparse.py:1782(identity)
+        7    0.000    0.000    0.000    0.000 typing.py:201(_is_param_expr)
+       16    0.000    0.000    0.000    0.000 {built-in method _stat.S_ISREG}
+        1    0.000    0.000    0.000    0.000 v1_pod_disruption_budget.py:21(V1PodDisruptionBudget)
+        2    0.000    0.000    0.000    0.000 _doc_utils.py:268()
+        1    0.000    0.000    0.000    0.000 flowcontrol_apiserver_api.py:1()
+        1    0.000    0.000    0.000    0.000 openid_api.py:1()
+        1    0.000    0.000    0.000    0.000 policy_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_network_policy.py:21(V1NetworkPolicy)
+        1    0.000    0.000    0.000    0.000 _factories.py:56(__init__)
+        4    0.000    0.000    0.000    0.000 utils.py:105(__setattr__)
+        1    0.000    0.000    0.000    0.000 newline.py:1()
+        1    0.000    0.000    0.000    0.000 oci.py:259(CohereToolCall)
+        1    0.000    0.000    0.000    0.000 oci.py:273(CohereResponseFormat)
+        1    0.000    0.000    0.000    0.000 common_utils.py:8(PredibaseError)
+        1    0.000    0.000    0.000    0.000 gemini.py:325(GeminiOperationResponse)
+        1    0.000    0.000    0.000    0.000 _types.py:3807(TeamListResponseObject)
+        1    0.000    0.000    0.000    0.000 utils.py:1700(StreamingChatCompletionChunk)
+        1    0.000    0.000    0.000    0.000 eval_update_response.py:64(TestingCriterionEvalGraderTextSimilarity)
+        1    0.000    0.000    0.000    0.000 eval_list_response.py:64(TestingCriterionEvalGraderTextSimilarity)
+        1    0.000    0.000    0.000    0.000 response_function_tool_call_item.py:8(ResponseFunctionToolCallItem)
+        1    0.000    0.000    0.000    0.000 response_function_shell_call_output_content.py:32(ResponseFunctionShellCallOutputContent)
+        1    0.000    0.000    0.000    0.000 RSA.py:52(RsaKey)
+        1    0.000    0.000    0.000    0.000 v1_job_condition.py:21(V1JobCondition)
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_condition.py:21(V1StatefulSetCondition)
+        1    0.000    0.000    0.000    0.000 v1alpha3_allocated_device_status.py:21(V1alpha3AllocatedDeviceStatus)
+        1    0.000    0.000    0.000    0.000 v1beta1_allocated_device_status.py:21(V1beta1AllocatedDeviceStatus)
+        1    0.000    0.000    0.000    0.000 v1beta2_exact_device_request.py:21(V1beta2ExactDeviceRequest)
+        1    0.000    0.000    0.000    0.000 v1_for_zone.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_validation.py:1()
+        3    0.000    0.000    0.000    0.000 forms.py:6(__init__)
+        1    0.000    0.000    0.000    0.000 markdown.py:503(Markdown)
+        1    0.000    0.000    0.000    0.000 gemini.py:311(GeminiGeneratedVideoSample)
+        6    0.000    0.000    0.000    0.000 __init__.py:509()
+        1    0.000    0.000    0.000    0.000 exceptions.py:79(NotFoundError)
+        1    0.000    0.000    0.000    0.000 run.py:91(Usage)
+       15    0.000    0.000    0.000    0.000 _connection.py:205(our_state)
+        6    0.000    0.000    0.000    0.000 signal.py:49(decorator)
+        1    0.000    0.000    0.000    0.000 context.py:30(BaseContext)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_spec.py:21(V1CustomResourceDefinitionSpec)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_sub_request.py:21(V1alpha3DeviceSubRequest)
+        1    0.000    0.000    0.000    0.000 v1_volume_node_resources.py:1()
+        1    0.000    0.000    0.000    0.000 v1_azure_file_volume_source.py:21(V1AzureFileVolumeSource)
+       16    0.000    0.000    0.000    0.000 utils.py:123(__init__)
+        1    0.000    0.000    0.000    0.000 oci.py:25(OCIContentPart)
+        1    0.000    0.000    0.000    0.000 datadog_handler.py:1()
+        1    0.000    0.000    0.000    0.000 custom_guardrail.py:44(ModifyResponseException)
+        1    0.000    0.000    0.000    0.000 response.py:49(Conversation)
+        1    0.000    0.000    0.000    0.000 console.py:866(begin_capture)
+        5    0.000    0.000    0.000    0.000 {built-in method posix.register_at_fork}
+        2    0.000    0.000    0.000    0.000 tokenize.py:329(find_cookie)
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request_condition.py:21(V1CertificateSigningRequestCondition)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_column_definition.py:21(V1CustomResourceColumnDefinition)
+        1    0.000    0.000    0.000    0.000 v1_deployment_condition.py:21(V1DeploymentCondition)
+        1    0.000    0.000    0.000    0.000 v1_limit_range_item.py:21(V1LimitRangeItem)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_status.py:21(V2HorizontalPodAutoscalerStatus)
+        1    0.000    0.000    0.000    0.000 resource_api.py:1()
+        1    0.000    0.000    0.000    0.000 core_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_network_policy_list.py:21(V1NetworkPolicyList)
+        1    0.000    0.000    0.000    0.000 v1_cron_job_status.py:21(V1CronJobStatus)
+        1    0.000    0.000    0.000    0.000 link.py:1()
+        1    0.000    0.000    0.000    0.000 _encode.py:1()
+        1    0.000    0.000    0.000    0.000 compression_utils.py:183(ZLibCompressor)
+        1    0.000    0.000    0.000    0.000 _types.py:1754(DeleteTeamRequest)
+        1    0.000    0.000    0.000    0.000 _types.py:2590(LiteLLM_Config)
+        1    0.000    0.000    0.000    0.000 exceptions.py:323(RateLimitError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:460(ContentPolicyViolationError)
+        1    0.000    0.000    0.000    0.000 utils.py:7149(__init__)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call.py:75(ActionDragPath)
+        1    0.000    0.000    0.000    0.000 validators.py:90(_InstanceOfValidator)
+        1    0.000    0.000    0.000    0.000 _typedattr.py:36(TypedAttributeProvider)
+        1    0.000    0.000    0.000    0.000 __init__.py:358(Not)
+       16    0.000    0.000    0.000    0.000 {built-in method _stat.S_ISLNK}
+       11    0.000    0.000    0.000    0.000 _decoders.py:215(decode)
+        1    0.000    0.000    0.000    0.000 v1beta1_named_rule_with_operations.py:21(V1beta1NamedRuleWithOperations)
+        1    0.000    0.000    0.000    0.000 v1alpha1_cluster_trust_bundle.py:21(V1alpha1ClusterTrustBundle)
+        1    0.000    0.000    0.000    0.000 tokens.py:57(FrozenAuthToken)
+        1    0.000    0.000    0.000    0.000 dsa.py:82(DSAPublicKey)
+        1    0.000    0.000    0.000    0.000 model_rate_limit_check.py:35(ModelRateLimitingCheck)
+        1    0.000    0.000    0.000    0.000 amazon_titan_multimodal_transformation.py:25(AmazonTitanMultimodalEmbeddingG1Config)
+        5    0.000    0.000    0.000    0.000 _compat.py:29(matches)
+        1    0.000    0.000    0.000    0.000 response_usage.py:18(OutputTokensDetails)
+        3    0.000    0.000    0.000    0.000 feedparser.py:53(__init__)
+        1    0.000    0.000    0.000    0.000 {built-in method time.gmtime}
+        1    0.000    0.000    0.000    0.000 v2_metric_spec.py:21(V2MetricSpec)
+        1    0.000    0.000    0.000    0.000 v1_validation_rule.py:21(V1ValidationRule)
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_condition.py:21(V1alpha1StorageVersionCondition)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_sub_request.py:21(V1beta1DeviceSubRequest)
+        1    0.000    0.000    0.000    0.000 v1_role_binding_list.py:21(V1RoleBindingList)
+        1    0.000    0.000    0.000    0.000 v1_node_selector_requirement.py:21(V1NodeSelectorRequirement)
+        3    0.000    0.000    0.000    0.000 __init__.py:146(_getattr)
+        1    0.000    0.000    0.000    0.000 resolver.py:85(AsyncResolver)
+       10    0.000    0.000    0.000    0.000 _lazy_imports.py:65(_get_utils_globals)
+        1    0.000    0.000    0.000    0.000 chat_completion_message.py:39(FunctionCall)
+        1    0.000    0.000    0.000    0.000 images_response.py:22(UsageOutputTokensDetails)
+        3    0.000    0.000    0.000    0.000 text.py:666(rstrip_end)
+        1    0.000    0.000    0.000    0.000 v1_ceph_fs_persistent_volume_source.py:21(V1CephFSPersistentVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_names.py:21(V1CustomResourceDefinitionNames)
+        1    0.000    0.000    0.000    0.000 v1_namespace.py:21(V1Namespace)
+        1    0.000    0.000    0.000    0.000 v2_metric_status.py:21(V2MetricStatus)
+        1    0.000    0.000    0.000    0.000 v1_storage_os_volume_source.py:21(V1StorageOSVolumeSource)
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1_api.py:27(AdmissionregistrationV1Api)
+        1    0.000    0.000    0.000    0.000 v1_self_subject_review.py:21(V1SelfSubjectReview)
+        1    0.000    0.000    0.000    0.000 v1_service_list.py:21(V1ServiceList)
+        1    0.000    0.000    0.000    0.000 v1_replica_set_list.py:21(V1ReplicaSetList)
+        1    0.000    0.000    0.000    0.000 v1_ip_block.py:21(V1IPBlock)
+        1    0.000    0.000    0.000    0.000 v1_ip_address.py:21(V1IPAddress)
+        1    0.000    0.000    0.000    0.000 exceptions.py:189(BadRequestKeyError)
+        1    0.000    0.000    0.000    0.000 dh.py:23(DHParameterNumbers)
+        1    0.000    0.000    0.000    0.000 text_join.py:1()
+        1    0.000    0.000    0.000    0.000 exceptions.py:605(InternalServerError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:876(MockException)
+        1    0.000    0.000    0.000    0.000 openai.py:577(FileSearchTool)
+       14    0.000    0.000    0.000    0.000 _make.py:2023(_assign)
+        1    0.000    0.000    0.000    0.000 futures.py:30(Future)
+        1    0.000    0.000    0.000    0.000 core.py:1501(__init__)
+        1    0.000    0.000    0.000    0.000 memory.py:72(MemoryObjectReceiveStream)
+        2    0.000    0.000    0.000    0.000 _auth.py:62(sync_auth_flow)
+        5    0.000    0.000    0.000    0.000 cookiejar.py:884(__init__)
+        1    0.000    0.000    0.000    0.000 types.py:1716(SecretBytes)
+        1    0.000    0.000    0.000    0.000 v1_node_config_status.py:21(V1NodeConfigStatus)
+        1    0.000    0.000    0.000    0.000 v1_horizontal_pod_autoscaler_list.py:21(V1HorizontalPodAutoscalerList)
+        1    0.000    0.000    0.000    0.000 quota.py:1()
+        1    0.000    0.000    0.000    0.000 rsa.py:392(RSAPublicNumbers)
+        1    0.000    0.000    0.000    0.000 __init__.py:467(discover)
+        1    0.000    0.000    0.000    0.000 environment.py:1520(TemplateModule)
+        1    0.000    0.000    0.000    0.000 exceptions.py:555(BadGatewayError)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:92(AsyncThreadLock)
+        2    0.000    0.000    0.000    0.000 connapp.py:464(__call__)
+        2    0.000    0.000    0.000    0.000 {built-in method posix.uname}
+        8    0.000    0.000    0.000    0.000 {built-in method time.strftime}
+        1    0.000    0.000    0.000    0.000 authorization_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_list.py:21(V1StatefulSetList)
+        1    0.000    0.000    0.000    0.000 utils.py:2196(S3EndpointSetter)
+        1    0.000    0.000    0.000    0.000 adapters.py:167(HTTPAdapter)
+        1    0.000    0.000    0.000    0.000 es256.py:104(ES256Signer)
+        1    0.000    0.000    0.000    0.000 common_utils.py:15(SagemakerError)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:65(VectorStoreDeleteRequest)
+        1    0.000    0.000    0.000    0.000 exceptions.py:505(ServiceUnavailableError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:697(APIConnectionError)
+        1    0.000    0.000    0.000    0.000 progress.py:68(_TrackThread)
+        3    0.000    0.000    0.000    0.000 core.py:1835(add_command)
+        1    0.000    0.000    0.000    0.000 _models.py:728(raise_for_status)
+        4    0.000    0.000    0.000    0.000 parser.py:52(start)
+        1    0.000    0.000    0.000    0.000 fields.py:93(FieldInfo)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition.py:21(V1CustomResourceDefinition)
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_condition.py:21(V1DaemonSetCondition)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_condition.py:21(V2HorizontalPodAutoscalerCondition)
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy.py:21(V1ValidatingAdmissionPolicy)
+        1    0.000    0.000    0.000    0.000 autoscaling_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_runtime_class_list.py:21(V1RuntimeClassList)
+        1    0.000    0.000    0.000    0.000 mtls.py:1()
+        1    0.000    0.000    0.000    0.000 flow.py:74(Flow)
+        8    0.000    0.000    0.000    0.000 utils.py:46(pass_eval_context)
+        1    0.000    0.000    0.000    0.000 arize_phoenix.py:40(ArizePhoenixLogger)
+        1    0.000    0.000    0.000    0.000 argilla.py:9(ArgillaItem)
+        1    0.000    0.000    0.000    0.000 translation.py:8(Translation)
+        1    0.000    0.000    0.000    0.000 agents.py:22(AgentExtension)
+        1    0.000    0.000    0.000    0.000 functional_serializers.py:275(dec)
+        1    0.000    0.000    0.000    0.000 _urls.py:150(username)
+        3    0.000    0.000    0.000    0.000 __init__.py:757(path)
+        1    0.000    0.000    0.000    0.000 tempfile.py:995(TemporaryDirectory)
+        5    0.000    0.000    0.000    0.000 _parser.py:286(seek)
+        1    0.000    0.000    0.000    0.000 {built-in method today}
+        1    0.000    0.000    0.000    0.000 __init__.py:19(make)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_condition.py:21(V1CustomResourceDefinitionCondition)
+        1    0.000    0.000    0.000    0.000 v1alpha1_named_rule_with_operations.py:21(V1alpha1NamedRuleWithOperations)
+        1    0.000    0.000    0.000    0.000 v1alpha2_lease_candidate_spec.py:21(V1alpha2LeaseCandidateSpec)
+        1    0.000    0.000    0.000    0.000 _monitor.py:10(monitor_class)
+        1    0.000    0.000    0.000    0.000 v1_service_cidr_list.py:21(V1ServiceCIDRList)
+        1    0.000    0.000    0.000    0.000 v1_storage_class_list.py:21(V1StorageClassList)
+        1    0.000    0.000    0.000    0.000 v1_subject_access_review_status.py:21(V1SubjectAccessReviewStatus)
+        1    0.000    0.000    0.000    0.000 v1_resource_quota_list.py:21(V1ResourceQuotaList)
+        1    0.000    0.000    0.000    0.000 v1_role_list.py:21(V1RoleList)
+        1    0.000    0.000    0.000    0.000 v1_network_policy_spec.py:21(V1NetworkPolicySpec)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_list.py:21(V1PersistentVolumeClaimList)
+        1    0.000    0.000    0.000    0.000 v1_glusterfs_persistent_volume_source.py:21(V1GlusterfsPersistentVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_ingress_list.py:21(V1IngressList)
+        1    0.000    0.000    0.000    0.000 security.py:1()
+        1    0.000    0.000    0.000    0.000 parsers.py:380(BaseXMLResponseParser)
+        1    0.000    0.000    0.000    0.000 errors.py:225(UnsupportedResponseTypeError)
+        6    0.000    0.000    0.000    0.000 plugins.py:98()
+        1    0.000    0.000    0.000    0.000 add_retry_fallback_headers.py:1()
+        1    0.000    0.000    0.000    0.000 _utils.py:26(ArizeOTELAttributes)
+        3    0.000    0.000    0.000    0.000 __init__.py:765(__init__)
+        2    0.000    0.000    0.000    0.000 argparse.py:229()
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim.py:21(V1alpha3ResourceClaim)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_request_allocation_result.py:21(V1beta1DeviceRequestAllocationResult)
+        1    0.000    0.000    0.000    0.000 v1_ingress_class_list.py:21(V1IngressClassList)
+        1    0.000    0.000    0.000    0.000 tz.py:1545(__init__)
+        1    0.000    0.000    0.000    0.000 eventstream.py:354(EventStreamHeaderParser)
+       15    0.000    0.000    0.000    0.000 core.py:1517()
+        1    0.000    0.000    0.000    0.000 core.py:134()
+        1    0.000    0.000    0.000    0.000 models.py:296(CliDetectionResult)
+        6    0.000    0.000    0.000    0.000 plugins.py:110()
+        1    0.000    0.000    0.000    0.000 bedrock.py:938(BedrockCreateBatchRequest)
+       11    0.000    0.000    0.000    0.000 async_utils.py:12(async_variant)
+        1    0.000    0.000    0.000    0.000 table.py:132(Row)
+        3    0.000    0.000    0.000    0.000 _synchronization.py:242(__enter__)
+        1    0.000    0.000    0.000    0.000 _writers.py:22(write_headers)
+        1    0.000    0.000    0.000    0.000 dataclasses.py:579()
+        3    0.000    0.000    0.000    0.000 {built-in method _csv.register_dialect}
+        1    0.000    0.000    0.000    0.000 v1_flow_schema.py:21(V1FlowSchema)
+        1    0.000    0.000    0.000    0.000 v1_local_subject_access_review.py:21(V1LocalSubjectAccessReview)
+        3    0.000    0.000    0.000    0.000 _doc_utils.py:248()
+        1    0.000    0.000    0.000    0.000 v1_token_review_status.py:21(V1TokenReviewStatus)
+        1    0.000    0.000    0.000    0.000 v1_se_linux_options.py:21(V1SELinuxOptions)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_list.py:21(V1PersistentVolumeList)
+        1    0.000    0.000    0.000    0.000 v1_pod_disruption_budget_list.py:21(V1PodDisruptionBudgetList)
+        1    0.000    0.000    0.000    0.000 v1_pod_disruption_budget_spec.py:21(V1PodDisruptionBudgetSpec)
+        1    0.000    0.000    0.000    0.000 handler.py:21(OpenAILikeEmbeddingHandler)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:276(DateHeader)
+        1    0.000    0.000    0.000    0.000 _types.py:4247(TransformRequestBody)
+        1    0.000    0.000    0.000    0.000 bedrock.py:972(BedrockGetBatchResponse)
+        1    0.000    0.000    0.000    0.000 rules.py:6(Rules)
+        1    0.000    0.000    0.000    0.000 utils.py:428(__init__)
+        1    0.000    0.000    0.000    0.000 console.py:322(Capture)
+        2    0.000    0.000    0.000    0.000 _events.py:337(__init__)
+        1    0.000    0.000    0.000    0.000 lowlevel.py:90(RunVar)
+        5    0.000    0.000    0.000    0.000 message.py:150(__init__)
+        5    0.000    0.000    0.000    0.000 :2(__hash__)
+        2    0.000    0.000    0.000    0.000 core_schema.py:1396(callable_schema)
+        1    0.000    0.000    0.000    0.000 ec.py:64(EllipticCurvePrivateKey)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_request_allocation_result.py:21(V1alpha3DeviceRequestAllocationResult)
+        1    0.000    0.000    0.000    0.000 v1_taint.py:21(V1Taint)
+        1    0.000    0.000    0.000    0.000 v1_endpoint_address.py:21(V1EndpointAddress)
+        1    0.000    0.000    0.000    0.000 core.py:135()
+        2    0.000    0.000    0.000    0.000 results.py:438(__getattr__)
+        1    0.000    0.000    0.000    0.000 x448.py:36(X448PrivateKey)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:17(LiteLLM_VectorStoreConfig)
+        1    0.000    0.000    0.000    0.000 abc.py:131(TraversableResources)
+        1    0.000    0.000    0.000    0.000 argparse.py:1154(_SubParsersAction)
+        1    0.000    0.000    0.000    0.000 transformation.py:41(__init__)
+        1    0.000    0.000    0.000    0.000 v1_controller_revision.py:21(V1ControllerRevision)
+        1    0.000    0.000    0.000    0.000 v1_flex_volume_source.py:21(V1FlexVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1alpha1_volume_attributes_class.py:21(V1alpha1VolumeAttributesClass)
+        3    0.000    0.000    0.000    0.000 _utility.py:459()
+        1    0.000    0.000    0.000    0.000 pydoc.py:1134(__init__)
+        1    0.000    0.000    0.000    0.000 v1_ephemeral_volume_source.py:21(V1EphemeralVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_deployment_strategy.py:21(V1DeploymentStrategy)
+        1    0.000    0.000    0.000    0.000 discovery_v1_endpoint_port.py:21(DiscoveryV1EndpointPort)
+        1    0.000    0.000    0.000    0.000 client.py:84(ClientCreator)
+        1    0.000    0.000    0.000    0.000 core.py:3452(White)
+       16    0.000    0.000    0.000    0.000 results.py:26(__getitem__)
+        9    0.000    0.000    0.000    0.000 core.py:4127()
+       16    0.000    0.000    0.000    0.000 core.py:1934(recurse)
+        1    0.000    0.000    0.000    0.000 _other.py:1()
+        1    0.000    0.000    0.000    0.000 vector_stores.py:201(IndexCreateLiteLLMParams)
+        1    0.000    0.000    0.000    0.000 _types.py:2090(CallbackDelete)
+        1    0.000    0.000    0.000    0.000 _response.py:386(AsyncAPIResponse)
+       10    0.000    0.000    0.000    0.000 _make.py:1145(add_setattr)
+       16    0.000    0.000    0.000    0.000 _typedattr.py:13(typed_attribute)
+        1    0.000    0.000    0.000    0.000 mock.py:23(MockStream)
+        7    0.000    0.000    0.000    0.000 _connection.py:248(_server_switch_event)
+        1    0.000    0.000    0.000    0.000 _models.py:59(Headers)
+        1    0.000    0.000    0.000    0.000 random.py:103(Random)
+        1    0.000    0.000    0.000    0.000 emitter.py:31(Emitter)
+        1    0.000    0.000    0.000    0.000 _config.py:35(ConfigWrapper)
+        1    0.000    0.000    0.000    0.000 v1_container_port.py:21(V1ContainerPort)
+        1    0.000    0.000    0.000    0.000 v1alpha1_match_resources.py:21(V1alpha1MatchResources)
+        1    0.000    0.000    0.000    0.000 v1beta1_volume_attributes_class.py:21(V1beta1VolumeAttributesClass)
+        1    0.000    0.000    0.000    0.000 v1_secret_list.py:21(V1SecretList)
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_list.py:21(V1PriorityLevelConfigurationList)
+        1    0.000    0.000    0.000    0.000 v1_param_ref.py:21(V1ParamRef)
+        1    0.000    0.000    0.000    0.000 config.py:20(ConfigAttribute)
+        1    0.000    0.000    0.000    0.000 rbac_v1_subject.py:21(RbacV1Subject)
+        3    0.000    0.000    0.000    0.000 util.py:225()
+        1    0.000    0.000    0.000    0.000 streaming_iterator.py:201(SyncInteractionsAPIStreamingIterator)
+        1    0.000    0.000    0.000    0.000 policy.py:93(__init__)
+        1    0.000    0.000    0.000    0.000 _types.py:1035(ResetSpendRequest)
+        1    0.000    0.000    0.000    0.000 _types.py:3107(ConfigFieldInfo)
+        1    0.000    0.000    0.000    0.000 _types.py:3101(InvitationClaim)
+        1    0.000    0.000    0.000    0.000 anthropic.py:571(AnthropicResponseUsageBlock)
+        1    0.000    0.000    0.000    0.000 utils.py:3404(RawRequestTypedDict)
+        1    0.000    0.000    0.000    0.000 anthropic.py:445(ToolUseBlock)
+        1    0.000    0.000    0.000    0.000 enkryptai.py:24(EnkryptAIToxicityDetail)
+        1    0.000    0.000    0.000    0.000 file_path_annotation.py:10(FilePath)
+        1    0.000    0.000    0.000    0.000 assistant_tool_choice_function.py:8(AssistantToolChoiceFunction)
+        1    0.000    0.000    0.000    0.000 eval_delete_response.py:8(EvalDeleteResponse)
+        1    0.000    0.000    0.000    0.000 _types.py:188(ModelBuilderProtocol)
+        2    0.000    0.000    0.000    0.000 segment.py:184(line)
+        2    0.000    0.000    0.000    0.000 _synchronization.py:239(__init__)
+        1    0.000    0.000    0.000    0.000 _compat.py:454(_AtomicFile)
+        1    0.000    0.000    0.000    0.000 _models.py:1162(__bool__)
+        2    0.000    0.000    0.000    0.000 _policybase.py:289(_sanitize_header)
+        3    0.000    0.000    0.000    0.000 typing_extensions.py:3508(is_protocol)
+        1    0.000    0.000    0.000    0.000 pathlib.py:129()
+        4    0.000    0.000    0.000    0.000 typing.py:2189(runtime_checkable)
+        8    0.000    0.000    0.000    0.000 typing.py:886(__repr__)
+        1    0.000    0.000    0.000    0.000 parser.py:37(Parser)
+        1    0.000    0.000    0.000    0.000 v1_resource_rule.py:21(V1ResourceRule)
+        1    0.000    0.000    0.000    0.000 v1_parent_reference.py:21(V1ParentReference)
+        1    0.000    0.000    0.000    0.000 generated.py:154(CodeExecution)
+        1    0.000    0.000    0.000    0.000 generated.py:177(GoogleSearch)
+        1    0.000    0.000    0.000    0.000 scheduler.py:19(FlowItem)
+        1    0.000    0.000    0.000    0.000 handler.py:14(DatabricksEmbeddingHandler)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:69(VectorStoreInfoRequest)
+        1    0.000    0.000    0.000    0.000 utils.py:2617(StandardLoggingModelCostFailureDebugInformation)
+        1    0.000    0.000    0.000    0.000 progress.py:287(_ReadContext)
+        1    0.000    0.000    0.000    0.000 console.py:892(pop_theme)
+        1    0.000    0.000    0.000    0.000 ssl.py:845(SSLObject)
+        4    0.000    0.000    0.000    0.000 argparse.py:2228()
+        1    0.000    0.000    0.000    0.000 ipaddress.py:1611(_BaseV6)
+        1    0.000    0.000    0.000    0.000 configfile.py:270(_explode_unique)
+        1    0.000    0.000    0.000    0.000 _client.py:1288(__enter__)
+        1    0.000    0.000    0.000    0.000 core.py:16(Encoding)
+        1    0.000    0.000    0.000    0.000 transformation.py:12(VertexAIBatchTransformation)
+        1    0.000    0.000    0.000    0.000 v1_job.py:21(V1Job)
+        1    0.000    0.000    0.000    0.000 v1_namespace_condition.py:21(V1NamespaceCondition)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_toleration.py:21(V1alpha3DeviceToleration)
+        1    0.000    0.000    0.000    0.000 v1beta1_match_resources.py:21(V1beta1MatchResources)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim.py:21(V1beta2ResourceClaim)
+        1    0.000    0.000    0.000    0.000 _utility.py:332()
+        1    0.000    0.000    0.000    0.000 v1_typed_object_reference.py:21(V1TypedObjectReference)
+        1    0.000    0.000    0.000    0.000 v1_service_account_list.py:21(V1ServiceAccountList)
+        1    0.000    0.000    0.000    0.000 v1_namespace_list.py:21(V1NamespaceList)
+        1    0.000    0.000    0.000    0.000 base.py:262(RevokedCertificate)
+        2    0.000    0.000    0.000    0.000 transformation.py:63(__init__)
+        1    0.000    0.000    0.000    0.000 watsonx.py:7(WatsonXAPIParams)
+        1    0.000    0.000    0.000    0.000 connector.py:1773(NamedPipeConnector)
+        1    0.000    0.000    0.000    0.000 _types.py:1762(BlockKeyRequest)
+        1    0.000    0.000    0.000    0.000 _types.py:3076(InvitationNew)
+        1    0.000    0.000    0.000    0.000 _types.py:3592(CreatePassThroughEndpoint)
+        1    0.000    0.000    0.000    0.000 vector_store.py:12(FileCounts)
+        1    0.000    0.000    0.000    0.000 _proxy.py:10(LazyProxy)
+        7    0.000    0.000    0.000    0.000 fractions.py:277(_operator_fallbacks)
+        1    0.000    0.000    0.000    0.000 types.py:226(Choice)
+       13    0.000    0.000    0.000    0.000 _util.py:127(bytesify)
+       10    0.000    0.000    0.000    0.000 {method '__exit__' of '_thread.RLock' objects}
+        1    0.000    0.000    0.000    0.000 transformation.py:198(__init__)
+        1    0.000    0.000    0.000    0.000 v1_api_service.py:21(V1APIService)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_spec.py:21(V2HorizontalPodAutoscalerSpec)
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment.py:21(V1VolumeAttachment)
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version.py:21(V1alpha1StorageVersion)
+        1    0.000    0.000    0.000    0.000 storage_v1_api.py:27(StorageV1Api)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_template.py:21(V1beta1ResourceClaimTemplate)
+        1    0.000    0.000    0.000    0.000 v1_subject_rules_review_status.py:21(V1SubjectRulesReviewStatus)
+        1    0.000    0.000    0.000    0.000 v1_api_group_list.py:21(V1APIGroupList)
+        1    0.000    0.000    0.000    0.000 credentials.py:342(RefreshableCredentials)
+        1    0.000    0.000    0.000    0.000 metrics.py:1()
+        1    0.000    0.000    0.000    0.000 base.py:83(Attribute)
+        1    0.000    0.000    0.000    0.000 rag.py:292(RAGQueryResponse)
+        2    0.000    0.000    0.000    0.000 profile_service.py:7(list_profiles)
+        1    0.000    0.000    0.000    0.000 services.py:107(ServiceEventMetadata)
+        1    0.000    0.000    0.000    0.000 _types.py:4348(SpendUpdateQueueItem)
+        1    0.000    0.000    0.000    0.000 _types.py:1290(MCPUserCredentialResponse)
+        1    0.000    0.000    0.000    0.000 _types.py:1516(BudgetDeleteRequest)
+        1    0.000    0.000    0.000    0.000 utils.py:3416(CredentialItem)
+        1    0.000    0.000    0.000    0.000 validators.py:498(_MaxLengthValidator)
+        1    0.000    0.000    0.000    0.000 mock.py:84(AsyncMockStream)
+        1    0.000    0.000    0.000    0.000 _models.py:188(URL)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:189(AsyncShieldCancellation)
+        1    0.000    0.000    0.000    0.000 request.py:1694(URLopener)
+        2    0.000    0.000    0.000    0.000 types.py:2412(__hash__)
+        1    0.000    0.000    0.000    0.000 typing.py:1895(_no_init_or_replace_init)
+        1    0.000    0.000    0.000    0.000 _oid.py:53(NameOID)
+        4    0.000    0.000    0.000    0.000 core.py:3435(parseImpl)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim.py:21(V1beta1ResourceClaim)
+        1    0.000    0.000    0.000    0.000 v1_secret_volume_source.py:21(V1SecretVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_replica_set_spec.py:21(V1ReplicaSetSpec)
+        1    0.000    0.000    0.000    0.000 apiextensions_v1_service_reference.py:21(ApiextensionsV1ServiceReference)
+        1    0.000    0.000    0.000    0.000 aws.py:2169(__init__)
+        1    0.000    0.000    0.000    0.000 ec.py:123(EllipticCurvePublicKey)
+        1    0.000    0.000    0.000    0.000 ruler.py:68(Rule)
+        1    0.000    0.000    0.000    0.000 generated.py:158(UrlContext)
+        1    0.000    0.000    0.000    0.000 _types.py:3080(InvitationUpdate)
+        1    0.000    0.000    0.000    0.000 _types.py:3788(OrganizationMemberUpdateResponse)
+        1    0.000    0.000    0.000    0.000 transcription_word.py:8(TranscriptionWord)
+        1    0.000    0.000    0.000    0.000 utils.py:2239(ImageUsage)
+        1    0.000    0.000    0.000    0.000 file_citation_annotation.py:10(FileCitation)
+        1    0.000    0.000    0.000    0.000 :14(__init__)
+        1    0.000    0.000    0.000    0.000 datadog.py:37(DatadogInitParams)
+        3    0.000    0.000    0.000    0.000 threading.py:1446(current_thread)
+      2/1    0.000    0.000    0.000    0.000 {method 'send' of 'generator' objects}
+        4    0.000    0.000    0.000    0.000 {method 'extend' of 'bytearray' objects}
+        1    0.000    0.000    0.000    0.000 _typing_extra.py:348(get_function_type_hints)
+        1    0.000    0.000    0.000    0.000 v1_deployment.py:21(V1Deployment)
+        1    0.000    0.000    0.000    0.000 v1beta1_service_cidr.py:21(V1beta1ServiceCIDR)
+        3    0.000    0.000    0.000    0.000 _utility.py:372(is_rgb_color)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_attribute.py:21(V1beta1DeviceAttribute)
+        1    0.000    0.000    0.000    0.000 v1_priority_class_list.py:21(V1PriorityClassList)
+        1    0.000    0.000    0.000    0.000 v1_portworx_volume_source.py:21(V1PortworxVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_pod_list.py:21(V1PodList)
+        1    0.000    0.000    0.000    0.000 v1_horizontal_pod_autoscaler_spec.py:21(V1HorizontalPodAutoscalerSpec)
+        1    0.000    0.000    0.000    0.000 map.py:41(Map)
+        1    0.000    0.000    0.000    0.000 escape.py:1()
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:10(FunctionResponse)
+        1    0.000    0.000    0.000    0.000 common_utils.py:90(get_all_regions)
+        3    0.000    0.000    0.000    0.000 __init__.py:950(legacy_normalize)
+        1    0.000    0.000    0.000    0.000 disk_cache.py:14(DiskCache)
+        1    0.000    0.000    0.000    0.000 _types.py:3085(InvitationDelete)
+        1    0.000    0.000    0.000    0.000 _types.py:3718(TeamMemberDeleteRequest)
+        1    0.000    0.000    0.000    0.000 _types.py:3762(OrganizationMemberDeleteRequest)
+        1    0.000    0.000    0.000    0.000 utils.py:2342(TranscriptionUsageInputTokenDetailsObject)
+        1    0.000    0.000    0.000    0.000 guardrails.py:865(ApplyGuardrailResponse)
+        1    0.000    0.000    0.000    0.000 model_deleted.py:8(ModelDeleted)
+        1    0.000    0.000    0.000    0.000 common_utils.py:817(AzureCredentials)
+        1    0.000    0.000    0.000    0.000 screen.py:18(Screen)
+        1    0.000    0.000    0.000    0.000 align.py:234(VerticalCenter)
+        1    0.000    0.000    0.000    0.000 console.py:355(ThemeContext)
+        1    0.000    0.000    0.000    0.000 sysconfig.py:492(_get_sysconfigdata_name)
+        2    0.000    0.000    0.000    0.000 argparse.py:267(add_usage)
+        1    0.000    0.000    0.000    0.000 threading.py:1005(_set_native_id)
+        3    0.000    0.000    0.000    0.000 threading.py:267(__exit__)
+       12    0.000    0.000    0.000    0.000 {method 'truncate' of '_io.StringIO' objects}
+        3    0.000    0.000    0.000    0.000 {method 'replace' of 'datetime.datetime' objects}
+        1    0.000    0.000    0.000    0.000 __init__.py:531(Distribution)
+        1    0.000    0.000    0.000    0.000 v1_flex_persistent_volume_source.py:21(V1FlexPersistentVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_match_resources.py:21(V1MatchResources)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_toleration.py:21(V1beta2DeviceToleration)
+        1    0.000    0.000    0.000    0.000 _matrix.py:35(set_matrices)
+        1    0.000    0.000    0.000    0.000 ws_client.py:301(_Port)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_list.py:21(V1alpha3ResourceClaimList)
+        1    0.000    0.000    0.000    0.000 v1_replication_controller_list.py:21(V1ReplicationControllerList)
+        1    0.000    0.000    0.000    0.000 context.py:203(reducer)
+        1    0.000    0.000    0.000    0.000 google_auth_httplib2.py:134(AuthorizedHttp)
+        1    0.000    0.000    0.000    0.000 sessions.py:356(Session)
+        1    0.000    0.000    0.000    0.000 backend.py:217(_is_fips_enabled)
+        1    0.000    0.000    0.000    0.000 static_file_chunking_strategy.py:8(StaticFileChunkingStrategy)
+        1    0.000    0.000    0.000    0.000 moderation.py:181(Moderation)
+        1    0.000    0.000    0.000    0.000 types.py:422(_NumberRangeBase)
+        2    0.000    0.000    0.000    0.000 _functools.py:6(method_cache)
+        5    0.000    0.000    0.000    0.000 ssl.py:622(options)
+        1    0.000    0.000    0.000    0.000 _policybase.py:112(Policy)
+        1    0.000    0.000    0.000    0.000 typing.py:1570()
+        2    0.000    0.000    0.000    0.000 {built-in method posix.readlink}
+        1    0.000    0.000    0.000    0.000 {method 'getpeername' of '_socket.socket' objects}
+        1    0.000    0.000    0.000    0.000 v1_fc_volume_source.py:21(V1FCVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1alpha1_migration_condition.py:21(V1alpha1MigrationCondition)
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_spec.py:21(V1PriorityLevelConfigurationSpec)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_status.py:21(V1PersistentVolumeStatus)
+        1    0.000    0.000    0.000    0.000 v1_eviction.py:21(V1Eviction)
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1_service_reference.py:21(AdmissionregistrationV1ServiceReference)
+        9    0.000    0.000    0.000    0.000 core.py:4128()
+        1    0.000    0.000    0.000    0.000 commonmark.py:1()
+        1    0.000    0.000    0.000    0.000 transformation.py:66(__init__)
+        1    0.000    0.000    0.000    0.000 policy.py:26(EmailPolicy)
+        1    0.000    0.000    0.000    0.000 _types.py:3576(SSOUserDefinedValues)
+        1    0.000    0.000    0.000    0.000 _types.py:1758(BlockTeamRequest)
+        1    0.000    0.000    0.000    0.000 exceptions.py:284(PermissionDeniedError)
+        1    0.000    0.000    0.000    0.000 message_creation_step_details.py:10(MessageCreation)
+        1    0.000    0.000    0.000    0.000 code_interpreter_tool_call.py:29(CodeInterpreterOutputImageImage)
+        1    0.000    0.000    0.000    0.000 thread_create_and_run_params.py:41(ThreadCreateAndRunParamsBase)
+       10    0.000    0.000    0.000    0.000 _make.py:1538(_has_frozen_base_class)
+        1    0.000    0.000    0.000    0.000 validators.py:527(_MinLengthValidator)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:304(ShieldCancellation)
+        1    0.000    0.000    0.000    0.000 argparse.py:1006(__init__)
+        1    0.000    0.000    0.000    0.000 __init__.py:439(LibraryLoader)
+        6    0.000    0.000    0.000    0.000 {method 'split' of 'bytes' objects}
+        1    0.000    0.000    0.000    0.000 utils.py:268(extract_zipped_paths)
+        1    0.000    0.000    0.000    0.000 authentication_v1_token_request.py:21(AuthenticationV1TokenRequest)
+        1    0.000    0.000    0.000    0.000 v1_daemon_set.py:21(V1DaemonSet)
+        1    0.000    0.000    0.000    0.000 v1_role_ref.py:21(V1RoleRef)
+        1    0.000    0.000    0.000    0.000 v1_secret_key_selector.py:21(V1SecretKeySelector)
+        1    0.000    0.000    0.000    0.000 v1_queuing_configuration.py:21(V1QueuingConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_mutating_webhook_configuration.py:21(V1MutatingWebhookConfiguration)
+        1    0.000    0.000    0.000    0.000 mixins.py:211(UpdateDictMixin)
+       11    0.000    0.000    0.000    0.000 utils.py:42()
+        1    0.000    0.000    0.000    0.000 core.py:261()
+        1    0.000    0.000    0.000    0.000 core.py:2720(Word)
+        1    0.000    0.000    0.000    0.000 budget_limiter.py:44(_LiteLLMParamsDictView)
+        1    0.000    0.000    0.000    0.000 exceptions.py:199(UnprocessableEntityError)
+        1    0.000    0.000    0.000    0.000 parsed_function_tool_call.py:27(ParsedFunctionToolCall)
+       13    0.000    0.000    0.000    0.000 style.py:21(__init__)
+        4    0.000    0.000    0.000    0.000 _loop.py:18(loop_last)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:231(Lock)
+        4    0.000    0.000    0.000    0.000 fields.py:937(get_default)
+        1    0.000    0.000    0.000    0.000 platform.py:735(_Processor)
+        2    0.000    0.000    0.000    0.000 {built-in method sys.exc_info}
+        1    0.000    0.000    0.000    0.000 response.py:300(BaseHTTPResponse)
+        1    0.000    0.000    0.000    0.000 v1_csi_volume_source.py:21(V1CSIVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request.py:21(V1CertificateSigningRequest)
+        1    0.000    0.000    0.000    0.000 v1_cluster_role_binding.py:21(V1ClusterRoleBinding)
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_spec.py:21(V1DaemonSetSpec)
+        1    0.000    0.000    0.000    0.000 v1_flow_schema_condition.py:21(V1FlowSchemaCondition)
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_migration.py:21(V1alpha1StorageVersionMigration)
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy.py:21(V1beta1ValidatingAdmissionPolicy)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler.py:21(V2HorizontalPodAutoscaler)
+        1    0.000    0.000    0.000    0.000 v1_scoped_resource_selector_requirement.py:21(V1ScopedResourceSelectorRequirement)
+        1    0.000    0.000    0.000    0.000 v1_glusterfs_volume_source.py:21(V1GlusterfsVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_job_list.py:21(V1JobList)
+        2    0.000    0.000    0.000    0.000 handler.py:24(__init__)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:402(MIMEVersionHeader)
+        1    0.000    0.000    0.000    0.000 search.py:56(SearchToolInfoResponse)
+        1    0.000    0.000    0.000    0.000 exceptions.py:47(UsageError)
+        1    0.000    0.000    0.000    0.000 datetime.py:893(date)
+        1    0.000    0.000    0.000    0.000 v1_config_map_node_config_source.py:21(V1ConfigMapNodeConfigSource)
+        1    0.000    0.000    0.000    0.000 v1_cron_job.py:21(V1CronJob)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_toleration.py:21(V1beta1DeviceToleration)
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_migration_list.py:21(V1alpha1StorageVersionMigrationList)
+        1    0.000    0.000    0.000    0.000 v1_secret_projection.py:21(V1SecretProjection)
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment_spec.py:21(V1VolumeAttachmentSpec)
+        1    0.000    0.000    0.000    0.000 v1_http_ingress_path.py:21(V1HTTPIngressPath)
+        1    0.000    0.000    0.000    0.000 v1_config_map_volume_source.py:21(V1ConfigMapVolumeSource)
+        4    0.000    0.000    0.000    0.000 __init__.py:24()
+        1    0.000    0.000    0.000    0.000 x25519.py:36(X25519PrivateKey)
+        1    0.000    0.000    0.000    0.000 main.py:46(VertexAIPartnerModels)
+        1    0.000    0.000    0.000    0.000 cookies.py:236(Morsel)
+        1    0.000    0.000    0.000    0.000 model_response_utils.py:1()
+        1    0.000    0.000    0.000    0.000 custom_batch_logger.py:17(__init__)
+        1    0.000    0.000    0.000    0.000 mcp.py:127(MCPStdioConfig)
+        1    0.000    0.000    0.000    0.000 locks.py:446(Barrier)
+        1    0.000    0.000    0.000    0.000 validators.py:556(_SubclassOfValidator)
+        4    0.000    0.000    0.000    0.000 _synchronization.py:270(__exit__)
+        7    0.000    0.000    0.000    0.000 Primality.py:144(alternate)
+        3    0.000    0.000    0.000    0.000 weakref.py:495(popitem)
+        1    0.000    0.000    0.000    0.000 v2_hpa_scaling_rules.py:21(V2HPAScalingRules)
+        1    0.000    0.000    0.000    0.000 v1beta1_parent_reference.py:21(V1beta1ParentReference)
+        1    0.000    0.000    0.000    0.000 v1_volume_mount_status.py:21(V1VolumeMountStatus)
+        1    0.000    0.000    0.000    0.000 v1_service_account_token_projection.py:21(V1ServiceAccountTokenProjection)
+        1    0.000    0.000    0.000    0.000 v1_status_cause.py:21(V1StatusCause)
+        1    0.000    0.000    0.000    0.000 timed.py:22(TimestampSigner)
+        1    0.000    0.000    0.000    0.000 initialize_dynamic_callback_params.py:1()
+        1    0.000    0.000    0.000    0.000 tcp_helpers.py:1()
+        1    0.000    0.000    0.000    0.000 exceptions.py:736(APIResponseValidationError)
+        1    0.000    0.000    0.000    0.000 _compat.py:194(GenericModel)
+        1    0.000    0.000    0.000    0.000 gcs_bucket.py:28(GCSLogQueueItem)
+        1    0.000    0.000    0.000    0.000 socket.py:505(detach)
+        1    0.000    0.000    0.000    0.000 functools.py:745()
+        1    0.000    0.000    0.000    0.000 datetime.py:1315(time)
+        1    0.000    0.000    0.000    0.000 resource_v1beta1_api.py:27(ResourceV1beta1Api)
+        1    0.000    0.000    0.000    0.000 v1beta1_lease_candidate_list.py:21(V1beta1LeaseCandidateList)
+        1    0.000    0.000    0.000    0.000 v1beta1_validation.py:21(V1beta1Validation)
+        1    0.000    0.000    0.000    0.000 v1_resource_quota_spec.py:21(V1ResourceQuotaSpec)
+        1    0.000    0.000    0.000    0.000 v1_pod_resource_claim.py:21(V1PodResourceClaim)
+        1    0.000    0.000    0.000    0.000 v1_limited_priority_level_configuration.py:21(V1LimitedPriorityLevelConfiguration)
+        1    0.000    0.000    0.000    0.000 ctx.py:29(_AppCtxGlobals)
+        1    0.000    0.000    0.000    0.000 exceptions.py:67(HTTPException)
+        1    0.000    0.000    0.000    0.000 range.py:121(ContentRange)
+       13    0.000    0.000    0.000    0.000 dd_tracing.py:49(decorator)
+        2    0.000    0.000    0.000    0.000 _functools.py:7(method_cache)
+        1    0.000    0.000    0.000    0.000 base_cache.py:22(BaseCache)
+        4    0.000    0.000    0.000    0.000 in_memory_cache.py:147(allow_ttl_override)
+        1    0.000    0.000    0.000    0.000 utils.py:3432(ExtractedFileData)
+        1    0.000    0.000    0.000    0.000 openai.py:770(GenericChatCompletionMessage)
+        3    0.000    0.000    0.000    0.000 _synchronization.py:246(__exit__)
+        1    0.000    0.000    0.000    0.000 anyio.py:19(AnyIOStream)
+        4    0.000    0.000    0.000    0.000 {built-in method _locale.setlocale}
+        1    0.000    0.000    0.000    0.000 uuid.py:85(UUID)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_slice_list.py:21(V1beta2ResourceSliceList)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_class_list.py:21(V1beta1DeviceClassList)
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_status.py:21(V1alpha1StorageVersionStatus)
+        1    0.000    0.000    0.000    0.000 v1_env_var_source.py:21(V1EnvVarSource)
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request_list.py:21(V1CertificateSigningRequestList)
+        1    0.000    0.000    0.000    0.000 vertex_and_google_ai_studio_gemini.py:210(__init__)
+        2    0.000    0.000    0.000    0.000 dynamic_logging_cache.py:61(__init__)
+        3    0.000    0.000    0.000    0.000 _header_value_parser.py:878(__new__)
+        1    0.000    0.000    0.000    0.000 anthropic_response.py:32(AnthropicResponseThinkingBlock)
+        1    0.000    0.000    0.000    0.000 get_model_cost_map.py:25(GetModelCostMap)
+        1    0.000    0.000    0.000    0.000 http11.py:358(HTTP11UpgradeStream)
+       13    0.000    0.000    0.000    0.000 ssl.py:1146(_checkClosed)
+        1    0.000    0.000    0.000    0.000 env_utils.py:8(get_env_int)
+        1    0.000    0.000    0.000    0.000 configfile.py:152(_validate_config)
+        1    0.000    0.000    0.000    0.000 parse.py:413(_splitnetloc)
+        2    0.000    0.000    0.000    0.000 threading.py:832()
+        1    0.000    0.000    0.000    0.000 v1beta1_cluster_trust_bundle.py:21(V1beta1ClusterTrustBundle)
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_binding_list.py:21(V1ValidatingAdmissionPolicyBindingList)
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy.py:21(V1alpha1MutatingAdmissionPolicy)
+        1    0.000    0.000    0.000    0.000 v1_resource_requirements.py:21(V1ResourceRequirements)
+        1    0.000    0.000    0.000    0.000 v1_namespace_status.py:21(V1NamespaceStatus)
+        1    0.000    0.000    0.000    0.000 v1_gce_persistent_disk_volume_source.py:21(V1GCEPersistentDiskVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_endpoint_slice_list.py:21(V1EndpointSliceList)
+        1    0.000    0.000    0.000    0.000 v1_csi_driver.py:21(V1CSIDriver)
+        1    0.000    0.000    0.000    0.000 v1_csi_node.py:21(V1CSINode)
+        1    0.000    0.000    0.000    0.000 rag.py:262(RAGRetrievalConfig)
+        6    0.000    0.000    0.000    0.000 main.py:7764(__getattr__)
+        3    0.000    0.000    0.000    0.000 console.py:786(_theme_stack)
+        1    0.000    0.000    0.000    0.000 plugin.py:1()
+        1    0.000    0.000    0.000    0.000 base.py:12(NetworkStream)
+        1    0.000    0.000    0.000    0.000 variables.py:48(Variable)
+        7    0.000    0.000    0.000    0.000 dataclasses.py:565()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_class.py:21(V1beta2DeviceClass)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_consumer_reference.py:21(V1beta2ResourceClaimConsumerReference)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_template.py:21(V1beta2ResourceClaimTemplate)
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_binding_list.py:21(V1beta1ValidatingAdmissionPolicyBindingList)
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_list.py:21(V1ValidatingAdmissionPolicyList)
+        1    0.000    0.000    0.000    0.000 v1_validating_webhook_configuration.py:21(V1ValidatingWebhookConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_validating_webhook_configuration_list.py:21(V1ValidatingWebhookConfigurationList)
+        1    0.000    0.000    0.000    0.000 v1alpha1_cluster_trust_bundle_list.py:21(V1alpha1ClusterTrustBundleList)
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_list.py:21(V1alpha1MutatingAdmissionPolicyList)
+        1    0.000    0.000    0.000    0.000 v1_list_meta.py:21(V1ListMeta)
+        1    0.000    0.000    0.000    0.000 v1_binding.py:21(V1Binding)
+        1    0.000    0.000    0.000    0.000 v1_csi_storage_capacity_list.py:21(V1CSIStorageCapacityList)
+        1    0.000    0.000    0.000    0.000 v1_component_condition.py:21(V1ComponentCondition)
+        1    0.000    0.000    0.000    0.000 events_v1_event_list.py:21(EventsV1EventList)
+        4    0.000    0.000    0.000    0.000 formatters.py:378(resolve_capability)
+        1    0.000    0.000    0.000    0.000 utils.py:2634(StandardLoggingPayloadErrorInformation)
+        1    0.000    0.000    0.000    0.000 router.py:570(GuardrailLiteLLMParams)
+        1    0.000    0.000    0.000    0.000 padding.py:19(Padding)
+        1    0.000    0.000    0.000    0.000 exceptions.py:128(MissingParameter)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2172(no_info_wrap_validator_function)
+        2    0.000    0.000    0.000    0.000 contextlib.py:460(__init__)
+        1    0.000    0.000    0.000    0.000 {method 'setsockopt' of '_socket.socket' objects}
+        1    0.000    0.000    0.000    0.000 pickle.py:407(_Pickler)
+        1    0.000    0.000    0.000    0.000 custom_objects_api.py:27(CustomObjectsApi)
+        1    0.000    0.000    0.000    0.000 v1beta1_volume_attributes_class_list.py:21(V1beta1VolumeAttributesClassList)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_consumer_reference.py:21(V1beta1ResourceClaimConsumerReference)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_slice.py:21(V1beta1ResourceSlice)
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_list.py:21(V1beta1ValidatingAdmissionPolicyList)
+        1    0.000    0.000    0.000    0.000 v1alpha2_lease_candidate.py:21(V1alpha2LeaseCandidate)
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment_list.py:21(V1VolumeAttachmentList)
+        1    0.000    0.000    0.000    0.000 v1_vsphere_virtual_disk_volume_source.py:21(V1VsphereVirtualDiskVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_windows_security_context_options.py:21(V1WindowsSecurityContextOptions)
+        1    0.000    0.000    0.000    0.000 v1_resource_quota_status.py:21(V1ResourceQuotaStatus)
+        1    0.000    0.000    0.000    0.000 v1_ingress_port_status.py:21(V1IngressPortStatus)
+        1    0.000    0.000    0.000    0.000 v1_controller_revision_list.py:21(V1ControllerRevisionList)
+        1    0.000    0.000    0.000    0.000 v1_cluster_role_list.py:21(V1ClusterRoleList)
+        1    0.000    0.000    0.000    0.000 flowcontrol_v1_subject.py:21(FlowcontrolV1Subject)
+        1    0.000    0.000    0.000    0.000 cli_token_utils.py:1()
+        1    0.000    0.000    0.000    0.000 vertex_and_google_ai_studio_gemini.py:2910(ModelResponseIterator)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:256(VectorStoreToolParams)
+        1    0.000    0.000    0.000    0.000 __init__.py:962(MetadataPathFinder)
+        1    0.000    0.000    0.000    0.000 langfuse.py:12(LangfuseUsageDetails)
+        1    0.000    0.000    0.000    0.000 parse.py:152(_NetlocResultMixinBase)
+        3    0.000    0.000    0.000    0.000 {method 'timestamp' of 'datetime.datetime' objects}
+        1    0.000    0.000    0.000    0.000 v1_port_status.py:21(V1PortStatus)
+        1    0.000    0.000    0.000    0.000 v1_mutating_webhook_configuration_list.py:21(V1MutatingWebhookConfigurationList)
+        1    0.000    0.000    0.000    0.000 v1_cron_job_list.py:21(V1CronJobList)
+        1    0.000    0.000    0.000    0.000 apiregistration_v1_service_reference.py:21(ApiregistrationV1ServiceReference)
+        1    0.000    0.000    0.000    0.000 v1_aws_elastic_block_store_volume_source.py:21(V1AWSElasticBlockStoreVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_cluster_role_binding_list.py:21(V1ClusterRoleBindingList)
+        1    0.000    0.000    0.000    0.000 v1_component_status.py:21(V1ComponentStatus)
+        1    0.000    0.000    0.000    0.000 handler.py:49(BedrockImageEdit)
+        1    0.000    0.000    0.000    0.000 agentops.py:11(AgentOpsConfig)
+        2    0.000    0.000    0.000    0.000 validators.py:212(optional)
+        1    0.000    0.000    0.000    0.000 _compat.py:49(get_first_param_type)
+        1    0.000    0.000    0.000    0.000 types.py:618(UUIDParameterType)
+        1    0.000    0.000    0.000    0.000 _tasks.py:20(CancelScope)
+        1    0.000    0.000    0.000    0.000 __init__.py:1792(__init__)
+        1    0.000    0.000    0.000    0.000 hooks.py:78(__getattr__)
+        1    0.000    0.000    0.000    0.000 spawnbase.py:23(SpawnBase)
+        3    0.000    0.000    0.000    0.000 {method 'copy' of 'mappingproxy' objects}
+        9    0.000    0.000    0.000    0.000 {method 'release' of '_thread.lock' objects}
+        1    0.000    0.000    0.000    0.000 pathlib.py:858(Path)
+        4    0.000    0.000    0.000    0.000 argparse.py:2337(_get_nargs_pattern)
+        1    0.000    0.000    0.000    0.000 _assistants.py:460(AsyncAssistantEventHandler)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_slice_list.py:21(V1alpha3ResourceSliceList)
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_binding_list.py:21(V1alpha1MutatingAdmissionPolicyBindingList)
+        1    0.000    0.000    0.000    0.000 v1_linux_container_user.py:21(V1LinuxContainerUser)
+        1    0.000    0.000    0.000    0.000 v1_config_map_list.py:21(V1ConfigMapList)
+        1    0.000    0.000    0.000    0.000 v1_api_versions.py:21(V1APIVersions)
+        1    0.000    0.000    0.000    0.000 v1_csi_node_list.py:21(V1CSINodeList)
+        1    0.000    0.000    0.000    0.000 utils.py:93(_ModuleWithDeprecations)
+        1    0.000    0.000    0.000    0.000 bedrock.py:767(AmazonNovaCanvasColorGuidedGenerationParams)
+        1    0.000    0.000    0.000    0.000 transformation.py:99(__init__)
+        1    0.000    0.000    0.000    0.000 openai_evals.py:104(UpdateEvalRequest)
+       11    0.000    0.000    0.000    0.000 type_adapter.py:128(_frame_depth)
+       11    0.000    0.000    0.000    0.000 asn1.py:53(__init__)
+        3    0.000    0.000    0.000    0.000 traceback.py:389(extended_frame_gen)
+        5    0.000    0.000    0.000    0.000 {method 'count' of 'list' objects}
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_list.py:21(V1beta2ResourceClaimList)
+        1    0.000    0.000    0.000    0.000 v1_user_info.py:21(V1UserInfo)
+        1    0.000    0.000    0.000    0.000 v1_validation.py:21(V1Validation)
+        1    0.000    0.000    0.000    0.000 v1_resource_field_selector.py:21(V1ResourceFieldSelector)
+        1    0.000    0.000    0.000    0.000 v1_token_request_spec.py:21(V1TokenRequestSpec)
+        1    0.000    0.000    0.000    0.000 v1_preferred_scheduling_term.py:21(V1PreferredSchedulingTerm)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_template.py:21(V1PersistentVolumeClaimTemplate)
+        1    0.000    0.000    0.000    0.000 v1_policy_rules_with_subjects.py:21(V1PolicyRulesWithSubjects)
+        1    0.000    0.000    0.000    0.000 v1_limit_response.py:21(V1LimitResponse)
+        1    0.000    0.000    0.000    0.000 v1_lifecycle_handler.py:21(V1LifecycleHandler)
+        1    0.000    0.000    0.000    0.000 v1_endpoint_subset.py:21(V1EndpointSubset)
+        1    0.000    0.000    0.000    0.000 v1_endpoints.py:21(V1Endpoints)
+        1    0.000    0.000    0.000    0.000 model.py:215(StructureShape)
+        1    0.000    0.000    0.000    0.000 openai.py:501(ChatCompletionAssistantToolCall)
+        1    0.000    0.000    0.000    0.000 progress.py:702(TaskProgressColumn)
+        6    0.000    0.000    0.000    0.000 console.py:777(_buffer_index)
+        1    0.000    0.000    0.000    0.000 http11.py:358(AsyncHTTP11UpgradeStream)
+        2    0.000    0.000    0.000    0.000 connection_pool.py:349(PoolByteStream)
+        1    0.000    0.000    0.000    0.000 _tasks.py:22(TaskStatus)
+        3    0.000    0.000    0.000    0.000 _models.py:93(enforce_stream)
+        1    0.000    0.000    0.000    0.000 variables.py:29(Literal)
+        1    0.000    0.000    0.000    0.000 subprocess.py:126(CalledProcessError)
+        4    0.000    0.000    0.000    0.000 functools.py:845(_is_valid_dispatch_type)
+        1    0.000    0.000    0.000    0.000 storage_v1alpha1_api.py:27(StorageV1alpha1Api)
+        1    0.000    0.000    0.000    0.000 v2_metric_target.py:21(V2MetricTarget)
+        1    0.000    0.000    0.000    0.000 v1beta1_lease_candidate.py:21(V1beta1LeaseCandidate)
+        1    0.000    0.000    0.000    0.000 v1beta1_param_ref.py:21(V1beta1ParamRef)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_list.py:21(V1beta1ResourceClaimList)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_capacity.py:21(V1beta1DeviceCapacity)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_class_configuration.py:21(V1beta1DeviceClassConfiguration)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_class.py:21(V1alpha3DeviceClass)
+        1    0.000    0.000    0.000    0.000 v1_pod_failure_policy_on_exit_codes_requirement.py:21(V1PodFailurePolicyOnExitCodesRequirement)
+        1    0.000    0.000    0.000    0.000 v1_ingress_rule.py:21(V1IngressRule)
+        1    0.000    0.000    0.000    0.000 v1_ingress_load_balancer_ingress.py:21(V1IngressLoadBalancerIngress)
+        1    0.000    0.000    0.000    0.000 v1_network_policy_peer.py:21(V1NetworkPolicyPeer)
+        1    0.000    0.000    0.000    0.000 v1_lease_list.py:21(V1LeaseList)
+        1    0.000    0.000    0.000    0.000 v1_endpoints_list.py:21(V1EndpointsList)
+        1    0.000    0.000    0.000    0.000 v1_flow_schema_list.py:21(V1FlowSchemaList)
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1_webhook_client_config.py:21(AdmissionregistrationV1WebhookClientConfig)
+        1    0.000    0.000    0.000    0.000 ed25519.py:46(Ed25519PrivateKey)
+        1    0.000    0.000    0.000    0.000 base.py:191(_AEADCipherContext)
+        1    0.000    0.000    0.000    0.000 __init__.py:21()
+        1    0.000    0.000    0.000    0.000 base.py:57(AsyncNetworkStream)
+        1    0.000    0.000    0.000    0.000 sync.py:118(SyncStream)
+       10    0.000    0.000    0.000    0.000 __future__.py:83(__init__)
+        3    0.000    0.000    0.000    0.000 datetime.py:2317(_create)
+        1    0.000    0.000    0.000    0.000 subprocess.py:470(CompletedProcess)
+        4    0.000    0.000    0.000    0.000 contextlib.py:454(_create_cb_wrapper)
+        1    0.000    0.000    0.000    0.000 {built-in method math.exp}
+        1    0.000    0.000    0.000    0.000 __init__.py:58(check_compatibility)
+        1    0.000    0.000    0.000    0.000 discovery.py:35(Discoverer)
+        1    0.000    0.000    0.000    0.000 v2_metric_value_status.py:21(V2MetricValueStatus)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_class_list.py:21(V1beta2DeviceClassList)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_taint.py:21(V1beta2DeviceTaint)
+        1    0.000    0.000    0.000    0.000 v1beta1_ip_address.py:21(V1beta1IPAddress)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_attribute.py:21(V1alpha3DeviceAttribute)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_class_list.py:21(V1alpha3DeviceClassList)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint_rule.py:21(V1alpha3DeviceTaintRule)
+        1    0.000    0.000    0.000    0.000 v1alpha1_server_storage_version.py:21(V1alpha1ServerStorageVersion)
+        1    0.000    0.000    0.000    0.000 v1_seccomp_profile.py:21(V1SeccompProfile)
+        1    0.000    0.000    0.000    0.000 v1_service_backend_port.py:21(V1ServiceBackendPort)
+        1    0.000    0.000    0.000    0.000 v1_pod_failure_policy_rule.py:21(V1PodFailurePolicyRule)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_list.py:21(V1CustomResourceDefinitionList)
+        1    0.000    0.000    0.000    0.000 v1_affinity.py:21(V1Affinity)
+        1    0.000    0.000    0.000    0.000 v1_azure_file_persistent_volume_source.py:21(V1AzureFilePersistentVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_bound_object_reference.py:21(V1BoundObjectReference)
+        1    0.000    0.000    0.000    0.000 core_v1_event_list.py:21(CoreV1EventList)
+       11    0.000    0.000    0.000    0.000 utils.py:43()
+        1    0.000    0.000    0.000    0.000 sync_service.py:20(SyncService)
+        1    0.000    0.000    0.000    0.000 _decode.py:1()
+        1    0.000    0.000    0.000    0.000 pdf_parser.py:1()
+        1    0.000    0.000    0.000    0.000 client.py:201(ClientTimeout)
+        1    0.000    0.000    0.000    0.000 anthropic_response.py:42(AnthropicResponseRedactedThinkingBlock)
+        1    0.000    0.000    0.000    0.000 text.py:430(blank_copy)
+       12    0.000    0.000    0.000    0.000 message.py:633(get_default_type)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2738(json_or_python_schema)
+        3    0.000    0.000    0.000    0.000 parse.py:675(unquote)
+        3    0.000    0.000    0.000    0.000 argparse.py:309(_format_usage)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_attribute.py:21(V1beta2DeviceAttribute)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_list.py:21(V2HorizontalPodAutoscalerList)
+        1    0.000    0.000    0.000    0.000 v1beta1_cluster_trust_bundle_list.py:21(V1beta1ClusterTrustBundleList)
+        1    0.000    0.000    0.000    0.000 v1beta1_ip_address_list.py:21(V1beta1IPAddressList)
+        1    0.000    0.000    0.000    0.000 v1beta1_service_cidr_list.py:21(V1beta1ServiceCIDRList)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_status.py:21(V1beta1ResourceClaimStatus)
+        1    0.000    0.000    0.000    0.000 v1alpha1_volume_attributes_class_list.py:21(V1alpha1VolumeAttributesClassList)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint.py:21(V1alpha3DeviceTaint)
+        1    0.000    0.000    0.000    0.000 v1_sysctl.py:21(V1Sysctl)
+        1    0.000    0.000    0.000    0.000 v1_rolling_update_deployment.py:21(V1RollingUpdateDeployment)
+        1    0.000    0.000    0.000    0.000 v1_limit_range_list.py:21(V1LimitRangeList)
+        1    0.000    0.000    0.000    0.000 v1_deployment_list.py:21(V1DeploymentList)
+        1    0.000    0.000    0.000    0.000 v1_api_resource_list.py:21(V1APIResourceList)
+        1    0.000    0.000    0.000    0.000 v1_csi_driver_list.py:21(V1CSIDriverList)
+        1    0.000    0.000    0.000    0.000 v1_cinder_volume_source.py:21(V1CinderVolumeSource)
+        1    0.000    0.000    0.000    0.000 hashes.py:35(HashContext)
+        1    0.000    0.000    0.000    0.000 _oid.py:147(ExtendedKeyUsageOID)
+        1    0.000    0.000    0.000    0.000 base_ingestion.py:35(BaseRAGIngestion)
+        1    0.000    0.000    0.000    0.000 console.py:206(update_width)
+        8    0.000    0.000    0.000    0.000 _trace.py:53(__exit__)
+        1    0.000    0.000    0.000    0.000 _decoders.py:83(flush)
+        3    0.000    0.000    0.000    0.000 types.py:1286(__hash__)
+        8    0.000    0.000    0.000    0.000 errors.py:80(__init__)
+       10    0.000    0.000    0.000    0.000 parse.py:117()
+        1    0.000    0.000    0.000    0.000 pydoc.py:1862()
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_template_list.py:21(V1beta1ResourceClaimTemplateList)
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_binding_spec.py:21(V1beta1ValidatingAdmissionPolicyBindingSpec)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_claim.py:21(V1alpha3DeviceClaim)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_template_list.py:21(V1alpha3ResourceClaimTemplateList)
+        1    0.000    0.000    0.000    0.000 v1_component_status_list.py:21(V1ComponentStatusList)
+        1    0.000    0.000    0.000    0.000 core.py:115()
+        1    0.000    0.000    0.000    0.000 util.py:14(__config_flags)
+        1    0.000    0.000    0.000    0.000 x25519.py:12(X25519PublicKey)
+        1    0.000    0.000    0.000    0.000 transformation.py:65(__init__)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:327(AddressHeader)
+        1    0.000    0.000    0.000    0.000 anthropic.py:343(AnthropicSystemMessageContent)
+        1    0.000    0.000    0.000    0.000 parser.py:159(Option)
+        1    0.000    0.000    0.000    0.000 exceptions.py:24(ClickException)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2631(chain_schema)
+        1    0.000    0.000    0.000    0.000 __init__.py:1803(LoggerAdapter)
+       11    0.000    0.000    0.000    0.000 {method 'mro' of 'type' objects}
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_template_list.py:21(V1beta2ResourceClaimTemplateList)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_claim.py:21(V1beta1DeviceClaim)
+        1    0.000    0.000    0.000    0.000 v2_container_resource_metric_status.py:21(V2ContainerResourceMetricStatus)
+        1    0.000    0.000    0.000    0.000 v1alpha2_lease_candidate_list.py:21(V1alpha2LeaseCandidateList)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_consumer_reference.py:21(V1alpha3ResourceClaimConsumerReference)
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_binding_spec.py:21(V1ValidatingAdmissionPolicyBindingSpec)
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_binding.py:21(V1alpha1MutatingAdmissionPolicyBinding)
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_persistent_volume_claim_retention_policy.py:21(V1StatefulSetPersistentVolumeClaimRetentionPolicy)
+        1    0.000    0.000    0.000    0.000 v1_volume_error.py:21(V1VolumeError)
+        1    0.000    0.000    0.000    0.000 v1_network_policy_ingress_rule.py:21(V1NetworkPolicyIngressRule)
+        1    0.000    0.000    0.000    0.000 v1_endpoint_conditions.py:21(V1EndpointConditions)
+        4    0.000    0.000    0.000    0.000 retry.py:242()
+        1    0.000    0.000    0.000    0.000 _format.py:1()
+        1    0.000    0.000    0.000    0.000 _functools.py:130(wrapper)
+        1    0.000    0.000    0.000    0.000 bccache.py:46(Bucket)
+        1    0.000    0.000    0.000    0.000 datadog_llm_obs.py:23(DDLLMObsError)
+        1    0.000    0.000    0.000    0.000 __init__.py:1303(Manager)
+        8    0.000    0.000    0.000    0.000 argparse.py:2552(_check_value)
+        2    0.000    0.000    0.000    0.000 _parser.py:96(checkgroup)
+        3    0.000    0.000    0.000    0.000 :362(__subclasshook__)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_allocation_configuration.py:21(V1beta1DeviceAllocationConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_update_strategy.py:21(V1StatefulSetUpdateStrategy)
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutation.py:21(V1alpha1Mutation)
+        1    0.000    0.000    0.000    0.000 v1_network_policy_egress_rule.py:21(V1NetworkPolicyEgressRule)
+        1    0.000    0.000    0.000    0.000 model.py:50(Shape)
+        1    0.000    0.000    0.000    0.000 oauth1_session.py:47(OAuth1Session)
+        1    0.000    0.000    0.000    0.000 __init__.py:41(Cache)
+        3    0.000    0.000    0.000    0.000 handler.py:112(__init__)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:100(VectorStoreSearchOptionalRequestParams)
+        1    0.000    0.000    0.000    0.000 langfuse.py:6(LangfuseLoggingConfig)
+        1    0.000    0.000    0.000    0.000 gcs_bucket.py:18(GCSLoggingConfig)
+        1    0.000    0.000    0.000    0.000 py39.py:1()
+        1    0.000    0.000    0.000    0.000 ibm_detector.py:26(IBMDetectorDetection)
+        1    0.000    0.000    0.000    0.000 tls.py:252(TLSListener)
+        1    0.000    0.000    0.000    0.000 connection.py:37(__init__)
+        8    0.000    0.000    0.000    0.000 __init__.py:2229(createLock)
+        1    0.000    0.000    0.000    0.000 parse.py:1053(unwrap)
+        6    0.000    0.000    0.000    0.000 enum.py:1232(__reduce_ex__)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_allocation_configuration.py:21(V1beta2DeviceAllocationConfiguration)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_request.py:21(V1beta2DeviceRequest)
+        1    0.000    0.000    0.000    0.000 v1beta2_network_device_data.py:21(V1beta2NetworkDeviceData)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_status.py:21(V1alpha3ResourceClaimStatus)
+        1    0.000    0.000    0.000    0.000 v1_secret_reference.py:21(V1SecretReference)
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_status.py:21(V1PriorityLevelConfigurationStatus)
+        1    0.000    0.000    0.000    0.000 v1_pod_failure_policy_on_pod_conditions_pattern.py:21(V1PodFailurePolicyOnPodConditionsPattern)
+        1    0.000    0.000    0.000    0.000 v1_ingress_backend.py:21(V1IngressBackend)
+        1    0.000    0.000    0.000    0.000 v1_lifecycle.py:21(V1Lifecycle)
+        8    0.000    0.000    0.000    0.000 tag.py:69(__init__)
+        1    0.000    0.000    0.000    0.000 core.py:5113(DelimitedList)
+        9    0.000    0.000    0.000    0.000 core.py:3804(recurse)
+        1    0.000    0.000    0.000    0.000 base.py:24(CipherContext)
+        1    0.000    0.000    0.000    0.000 hashes.py:14(HashAlgorithm)
+        1    0.000    0.000    0.000    0.000 modes.py:216(GCM)
+        1    0.000    0.000    0.000    0.000 modes.py:49(ModeWithNonce)
+        1    0.000    0.000    0.000    0.000 strikethrough.py:1()
+        1    0.000    0.000    0.000    0.000 transformation.py:34(__init__)
+        1    0.000    0.000    0.000    0.000 cohere.py:54(CohereV2ChatResponseMessageToolCall)
+        1    0.000    0.000    0.000    0.000 types.py:40(TextEmbeddingFineTunedParameters)
+        1    0.000    0.000    0.000    0.000 model_param_helper.py:124(_get_litellm_supported_rerank_kwargs)
+        6    0.000    0.000    0.000    0.000 mock_client_factory.py:37(__post_init__)
+        1    0.000    0.000    0.000    0.000 exceptions.py:376(ContextWindowExceededError)
+        1    0.000    0.000    0.000    0.000 agents.py:127(AgentCardSignature)
+        1    0.000    0.000    0.000    0.000 openai.py:507(ChatCompletionToolCallChunk)
+        1    0.000    0.000    0.000    0.000 _response.py:584(StreamAlreadyConsumed)
+        1    0.000    0.000    0.000    0.000 chat_completion_tool_param.py:1()
+        1    0.000    0.000    0.000    0.000 console.py:547(ConsoleThreadLocals)
+        3    0.000    0.000    0.000    0.000 feedparser.py:210(_pop_message)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:2147(IPv6Interface)
+        7    0.000    0.000    0.000    0.000 functools.py:723()
+        1    0.000    0.000    0.000    0.000 _figure.py:67(_set_terminal_size)
+        1    0.000    0.000    0.000    0.000 v1beta1_expression_warning.py:21(V1beta1ExpressionWarning)
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_status.py:21(V1ValidatingAdmissionPolicyStatus)
+        1    0.000    0.000    0.000    0.000 v1_photon_persistent_disk_volume_source.py:21(V1PhotonPersistentDiskVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_pod_dns_config_option.py:21(V1PodDNSConfigOption)
+        1    0.000    0.000    0.000    0.000 v1_non_resource_attributes.py:21(V1NonResourceAttributes)
+        1    0.000    0.000    0.000    0.000 compat.py:334()
+        1    0.000    0.000    0.000    0.000 legacy_application.py:13(LegacyApplicationClient)
+        8    0.000    0.000    0.000    0.000 unicode.py:9(__init__)
+        1    0.000    0.000    0.000    0.000 dsa.py:81(_DSAPrivateKey)
+        1    0.000    0.000    0.000    0.000 streaming_iterator.py:12(AnthropicResponsesStreamWrapper)
+        1    0.000    0.000    0.000    0.000 vector_store_files.py:48(VectorStoreFileUpdateRequest)
+        6    0.000    0.000    0.000    0.000 openai.py:339(__init__)
+        1    0.000    0.000    0.000    0.000 types.py:7(TracePayload)
+        1    0.000    0.000    0.000    0.000 nodes.py:877(Slice)
+        1    0.000    0.000    0.000    0.000 utils.py:3061(KeyGenerationConfig)
+        1    0.000    0.000    0.000    0.000 anthropic.py:39(AnthropicOutputConfig)
+        1    0.000    0.000    0.000    0.000 chat_completion_message_tool_call_param.py:1()
+        1    0.000    0.000    0.000    0.000 _types.py:129(NotGiven)
+        1    0.000    0.000    0.000    0.000 syntax.py:178(ANSISyntaxTheme)
+        4    0.000    0.000    0.000    0.000 argparse.py:1327(__init__)
+        7    0.000    0.000    0.000    0.000 functools.py:724()
+        3    0.000    0.000    0.000    0.000 :283(__subclasshook__)
+        1    0.000    0.000    0.000    0.000 {method 'close' of 'select.epoll' objects}
+        1    0.000    0.000    0.000    0.000 v1_self_subject_access_review_spec.py:21(V1SelfSubjectAccessReviewSpec)
+        1    0.000    0.000    0.000    0.000 v1_service_status.py:21(V1ServiceStatus)
+        1    0.000    0.000    0.000    0.000 v1_pod_resource_claim_status.py:21(V1PodResourceClaimStatus)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_subresource_scale.py:21(V1CustomResourceSubresourceScale)
+        1    0.000    0.000    0.000    0.000 auth.py:16(Authorization)
+        1    0.000    0.000    0.000    0.000 lexer.py:8(Lexer)
+        1    0.000    0.000    0.000    0.000 _requests_base.py:24(_BaseAuthorizedSession)
+        1    0.000    0.000    0.000    0.000 challenges.py:88(PasswordChallenge)
+        1    0.000    0.000    0.000    0.000 url.py:52()
+        1    0.000    0.000    0.000    0.000 inline.py:1()
+        1    0.000    0.000    0.000    0.000 model_param_helper.py:131(_get_litellm_supported_embedding_kwargs)
+        1    0.000    0.000    0.000    0.000 base_protocol.py:9(BaseProtocol)
+        6    0.000    0.000    0.000    0.000 core.py:867(__init__)
+        1    0.000    0.000    0.000    0.000 _urlparse.py:106(authority)
+        1    0.000    0.000    0.000    0.000 _models.py:665(is_success)
+        7    0.000    0.000    0.000    0.000 _models.py:276()
+        1    0.000    0.000    0.000    0.000 _urls.py:233(netloc)
+        1    0.000    0.000    0.000    0.000 socket.py:214(socket)
+        2    0.000    0.000    0.000    0.000 threading.py:1317(_make_invoke_excepthook)
+        2    0.000    0.000    0.000    0.000 subprocess.py:1118(__del__)
+        9    0.000    0.000    0.000    0.000 asn1.py:61(data_since_bookmark)
+        1    0.000    0.000    0.000    0.000 bz2.py:26(BZ2File)
+        2    0.000    0.000    0.000    0.000 :53(getmtime)
+        1    0.000    0.000    0.000    0.000 batch_v1_api.py:27(BatchV1Api)
+        1    0.000    0.000    0.000    0.000 es256.py:38(ES256Verifier)
+        1    0.000    0.000    0.000    0.000 extensions.py:542(FreshestCRL)
+        1    0.000    0.000    0.000    0.000 ed448.py:42(Ed448PrivateKey)
+        1    0.000    0.000    0.000    0.000 extensions.py:430(BasicConstraints)
+        1    0.000    0.000    0.000    0.000 renderer.py:28(RendererHTML)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:84(SystemInstructions)
+        1    0.000    0.000    0.000    0.000 databricks.py:60(DatabricksTool)
+        1    0.000    0.000    0.000    0.000 exception_mapping_utils.py:30(ExceptionCheckers)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:468(ContentTypeHeader)
+        1    0.000    0.000    0.000    0.000 cost_calculator.py:2198(RealtimeAPITokenUsageProcessor)
+        1    0.000    0.000    0.000    0.000 anthropic.py:171(AnthropicMcpServerToolConfiguration)
+        1    0.000    0.000    0.000    0.000 gzip.py:121(GzipFile)
+        1    0.000    0.000    0.000    0.000 openai.py:2148(OpenAIWebSearchUserLocation)
+        1    0.000    0.000    0.000    0.000 utils.py:3603(PreProcessNonDefaultParams)
+        1    0.000    0.000    0.000    0.000 _cmp.py:1()
+        1    0.000    0.000    0.000    0.000 measure.py:11(Measurement)
+       10    0.000    0.000    0.000    0.000 style.py:198(null)
+        3    0.000    0.000    0.000    0.000 message.py:211(is_multipart)
+        7    0.000    0.000    0.000    0.000 _validators.py:248(create_constraint_validator)
+        5    0.000    0.000    0.000    0.000 constructor.py:165(add_multi_constructor)
+        1    0.000    0.000    0.000    0.000 py3compat.py:132(tobytes)
+        1    0.000    0.000    0.000    0.000 traceback.py:372(StackSummary)
+        7    0.000    0.000    0.000    0.000 {method 'toordinal' of 'datetime.date' objects}
+        1    0.000    0.000    0.000    0.000 ec.py:18(EllipticCurveOID)
+        1    0.000    0.000    0.000    0.000 _monitor.py:57(color_init)
+        1    0.000    0.000    0.000    0.000 v1_scale_status.py:21(V1ScaleStatus)
+        1    0.000    0.000    0.000    0.000 v1_scheduling.py:21(V1Scheduling)
+        1    0.000    0.000    0.000    0.000 v1_node_affinity.py:21(V1NodeAffinity)
+        1    0.000    0.000    0.000    0.000 v1_object_field_selector.py:21(V1ObjectFieldSelector)
+        1    0.000    0.000    0.000    0.000 v1_host_alias.py:21(V1HostAlias)
+        1    0.000    0.000    0.000    0.000 v1_nfs_volume_source.py:21(V1NFSVolumeSource)
+        1    0.000    0.000    0.000    0.000 extensions.py:1851(SignedCertificateTimestamps)
+        1    0.000    0.000    0.000    0.000 _collections.py:84(__init__)
+        1    0.000    0.000    0.000    0.000 __init__.py:9(gfm_like)
+        1    0.000    0.000    0.000    0.000 config_service.py:14(get_settings)
+        1    0.000    0.000    0.000    0.000 markdown.py:30(MarkdownElement)
+        1    0.000    0.000    0.000    0.000 converse_transformation.py:135(__init__)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:116(VectorStoreExpirationPolicy)
+        1    0.000    0.000    0.000    0.000 helicone.py:14(HeliconeLogger)
+        1    0.000    0.000    0.000    0.000 utils.py:3504(CallbacksByType)
+        1    0.000    0.000    0.000    0.000 _models.py:795(GenericModel)
+        1    0.000    0.000    0.000    0.000 get_model_cost_map.py:158(ModelCostMapSourceInfo)
+        1    0.000    0.000    0.000    0.000 jupyter.py:18(JupyterRenderable)
+        1    0.000    0.000    0.000    0.000 _base.py:325(Future)
+        1    0.000    0.000    0.000    0.000 _testing.py:11(TestRunner)
+       10    0.000    0.000    0.000    0.000 __init__.py:322(_wrap_deprecated_method)
+        1    0.000    0.000    0.000    0.000 _import_utils.py:9(import_cached_base_model)
+        4    0.000    0.000    0.000    0.000 argparse.py:594()
+        1    0.000    0.000    0.000    0.000 selector_events.py:43(BaseSelectorEventLoop)
+        1    0.000    0.000    0.000    0.000 v2_hpa_scaling_policy.py:21(V2HPAScalingPolicy)
+        1    0.000    0.000    0.000    0.000 v1_image_volume_source.py:21(V1ImageVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_subresources.py:21(V1CustomResourceSubresources)
+        1    0.000    0.000    0.000    0.000 connection.py:114(_ConnectionBase)
+        3    0.000    0.000    0.000    0.000 handlers.py:609(document_base64_encoding)
+        1    0.000    0.000    0.000    0.000 cache_control.py:121(RequestCacheControl)
+        6    0.000    0.000    0.000    0.000 six.py:199(__get_module)
+        1    0.000    0.000    0.000    0.000 main.py:32(VertexAIGemmaModels)
+        1    0.000    0.000    0.000    0.000 image_handler.py:60(BedrockImageGeneration)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:61(HttpxPartType)
+        8    0.000    0.000    0.000    0.000 contentmanager.py:13(add_get_handler)
+        1    0.000    0.000    0.000    0.000 chat_completion_reasoning_effort.py:1()
+        1    0.000    0.000    0.000    0.000 file_proxy.py:11(FileProxy)
+        1    0.000    0.000    0.000    0.000 configparser.py:298(ParsingError)
+        1    0.000    0.000    0.000    0.000 zipfile.py:1219(ZipFile)
+        1    0.000    0.000    0.000    0.000 __init__.py:896(MetadataPathFinder)
+        1    0.000    0.000    0.000    0.000 parser.py:40(Binding)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:1420(IPv4Interface)
+        1    0.000    0.000    0.000    0.000 asn1.py:81(DerObject)
+        6    0.000    0.000    0.000    0.000 signal.py:48(_wraps)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_status.py:21(V1beta2ResourceClaimStatus)
+        1    0.000    0.000    0.000    0.000 v1_typed_local_object_reference.py:21(V1TypedLocalObjectReference)
+        1    0.000    0.000    0.000    0.000 v1_host_path_volume_source.py:21(V1HostPathVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_key_to_path.py:21(V1KeyToPath)
+        1    0.000    0.000    0.000    0.000 v1_label_selector_requirement.py:21(V1LabelSelectorRequirement)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_status.py:21(V1CustomResourceDefinitionStatus)
+        1    0.000    0.000    0.000    0.000 style.py:21(BaseStyle)
+        1    0.000    0.000    0.000    0.000 session.py:28(Session)
+        1    0.000    0.000    0.000    0.000 retry.py:41(Retry)
+        1    0.000    0.000    0.000    0.000 zero.py:1()
+        1    0.000    0.000    0.000    0.000 vector_store_files.py:74(VectorStoreFileContentTextPart)
+        1    0.000    0.000    0.000    0.000 transformation.py:24(TextToSpeechRequestData)
+        1    0.000    0.000    0.000    0.000 gpt_5_transformation.py:44(OpenAIGPT5Config)
+        1    0.000    0.000    0.000    0.000 langsmith.py:30(LangsmithCredentialsObject)
+        1    0.000    0.000    0.000    0.000 _types.py:4324(DailyTagSpendTransaction)
+        1    0.000    0.000    0.000    0.000 openai.py:223(ImageURLListItem)
+        2    0.000    0.000    0.000    0.000 http11.py:331(HTTP11ConnectionByteStream)
+        8    0.000    0.000    0.000    0.000 _trace.py:47(__enter__)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:383(_IPAddressBase)
+        9    0.000    0.000    0.000    0.000 asn1.py:58(set_bookmark)
+        2    0.000    0.000    0.000    0.000 {method 'replace' of 'code' objects}
+        1    0.000    0.000    0.000    0.000 :818(fsdecode)
+        1    0.000    0.000    0.000    0.000 {built-in method posix.confstr}
+        5    0.000    0.000    0.000    0.000 {method 'append' of 'collections.deque' objects}
+        1    0.000    0.000    0.000    0.000 _response.py:48(BaseAPIResponse)
+        1    0.000    0.000    0.000    0.000 v2_cross_version_object_reference.py:21(V2CrossVersionObjectReference)
+        1    0.000    0.000    0.000    0.000 v2_object_metric_source.py:21(V2ObjectMetricSource)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_pool.py:21(V1beta1ResourcePool)
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_status.py:21(V1beta1ValidatingAdmissionPolicyStatus)
+        1    0.000    0.000    0.000    0.000 v1beta1_cluster_trust_bundle_spec.py:21(V1beta1ClusterTrustBundleSpec)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device.py:21(V1alpha3Device)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_class_spec.py:21(V1alpha3DeviceClassSpec)
+        1    0.000    0.000    0.000    0.000 v1alpha3_network_device_data.py:21(V1alpha3NetworkDeviceData)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_pool.py:21(V1alpha3ResourcePool)
+        1    0.000    0.000    0.000    0.000 v1_server_address_by_client_cidr.py:21(V1ServerAddressByClientCIDR)
+        1    0.000    0.000    0.000    0.000 v1_rolling_update_daemon_set.py:21(V1RollingUpdateDaemonSet)
+        1    0.000    0.000    0.000    0.000 v1_pod_template_spec.py:21(V1PodTemplateSpec)
+        1    0.000    0.000    0.000    0.000 v1_group_version_for_discovery.py:21(V1GroupVersionForDiscovery)
+        1    0.000    0.000    0.000    0.000 v1_http_header.py:21(V1HTTPHeader)
+        1    0.000    0.000    0.000    0.000 v1_container_state.py:21(V1ContainerState)
+        1    0.000    0.000    0.000    0.000 v1_env_var.py:21(V1EnvVar)
+        1    0.000    0.000    0.000    0.000 apiextensions_v1_webhook_client_config.py:21(ApiextensionsV1WebhookClientConfig)
+        1    0.000    0.000    0.000    0.000 configloader.py:1()
+        1    0.000    0.000    0.000    0.000 challenges.py:55(ReauthChallenge)
+        1    0.000    0.000    0.000    0.000 pkcs12.py:39(PKCS12Certificate)
+        1    0.000    0.000    0.000    0.000 balance_pairs.py:1()
+        1    0.000    0.000    0.000    0.000 markdown.py:287(TableRowElement)
+        1    0.000    0.000    0.000    0.000 bedrock.py:534(TwelveLabsAsyncInvokeStatusResponse)
+        1    0.000    0.000    0.000    0.000 nodes.py:644(List)
+        6    0.000    0.000    0.000    0.000 utils.py:29(pass_context)
+        1    0.000    0.000    0.000    0.000 openai.py:1499(OpenAIChatCompletionLogprobsContentTopLogprobs)
+        1    0.000    0.000    0.000    0.000 http11.py:271(can_handle_request)
+        2    0.000    0.000    0.000    0.000 _urlparse.py:437(percent_encoded)
+        1    0.000    0.000    0.000    0.000 _auth.py:175(DigestAuth)
+        1    0.000    0.000    0.000    0.000 _utils.py:309(sync_elapsed)
+        1    0.000    0.000    0.000    0.000 _models.py:544(http_version)
+        1    0.000    0.000    0.000    0.000 request.py:2139(FancyURLopener)
+        1    0.000    0.000    0.000    0.000 _model_construction.py:740(default_ignored_types)
+        3    0.000    0.000    0.000    0.000 threading.py:1199(daemon)
+        1    0.000    0.000    0.000    0.000 subprocess.py:1231(poll)
+        4    0.000    0.000    0.000    0.000 main.py:60(_get_stream)
+        1    0.000    0.000    0.000    0.000 v1alpha3_counter.py:21(V1alpha3Counter)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_allocation_configuration.py:21(V1alpha3DeviceAllocationConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_secret_env_source.py:21(V1SecretEnvSource)
+        1    0.000    0.000    0.000    0.000 v1_resource_claim.py:21(V1ResourceClaim)
+        1    0.000    0.000    0.000    0.000 v1_projected_volume_source.py:21(V1ProjectedVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_node_selector_term.py:21(V1NodeSelectorTerm)
+        1    0.000    0.000    0.000    0.000 v1_ingress_service_backend.py:21(V1IngressServiceBackend)
+        1    0.000    0.000    0.000    0.000 v1_exempt_priority_level_configuration.py:21(V1ExemptPriorityLevelConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_ingress_class_spec.py:21(V1IngressClassSpec)
+        1    0.000    0.000    0.000    0.000 v1_cross_version_object_reference.py:21(V1CrossVersionObjectReference)
+        8    0.000    0.000    0.000    0.000 validate.py:51(_create_type_check_guard)
+        2    0.000    0.000    0.000    0.000 handler.py:43(__init__)
+        1    0.000    0.000    0.000    0.000 amazon_titan_g1_transformation.py:22(AmazonTitanG1Config)
+        1    0.000    0.000    0.000    0.000 queue.py:28(Queue)
+        1    0.000    0.000    0.000    0.000 _urls.py:420(QueryParams)
+        1    0.000    0.000    0.000    0.000 calendar.py:54()
+        1    0.000    0.000    0.000    0.000 types.py:906(ImportString)
+        1    0.000    0.000    0.000    0.000 style.py:78(ReSTStyle)
+        1    0.000    0.000    0.000    0.000 flowcontrol_apiserver_v1_api.py:27(FlowcontrolApiserverV1Api)
+        1    0.000    0.000    0.000    0.000 v1_success_policy_rule.py:21(V1SuccessPolicyRule)
+        1    0.000    0.000    0.000    0.000 v1_variable.py:21(V1Variable)
+        1    0.000    0.000    0.000    0.000 v1_rolling_update_stateful_set_strategy.py:21(V1RollingUpdateStatefulSetStrategy)
+        1    0.000    0.000    0.000    0.000 v1_pod_anti_affinity.py:21(V1PodAntiAffinity)
+        1    0.000    0.000    0.000    0.000 v1_preconditions.py:21(V1Preconditions)
+        1    0.000    0.000    0.000    0.000 v1_node_runtime_handler_features.py:21(V1NodeRuntimeHandlerFeatures)
+        1    0.000    0.000    0.000    0.000 v1_non_resource_policy_rule.py:21(V1NonResourcePolicyRule)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_volume_source.py:21(V1PersistentVolumeClaimVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_config_map_key_selector.py:21(V1ConfigMapKeySelector)
+        1    0.000    0.000    0.000    0.000 v1_config_map_projection.py:21(V1ConfigMapProjection)
+        1    0.000    0.000    0.000    0.000 useragent.py:74(UserAgentComponent)
+        1    0.000    0.000    0.000    0.000 relativedelta.py:18(relativedelta)
+        1    0.000    0.000    0.000    0.000 core.py:3732(Tag)
+        1    0.000    0.000    0.000    0.000 proxy.py:1()
+        1    0.000    0.000    0.000    0.000 challenges.py:107(SecurityKeyChallenge)
+        1    0.000    0.000    0.000    0.000 _posix_read.py:1()
+        1    0.000    0.000    0.000    0.000 main.py:42(VertexAIModelGardenModels)
+        1    0.000    0.000    0.000    0.000 transformation.py:46(__init__)
+        1    0.000    0.000    0.000    0.000 slack_alerting.py:30(ProviderRegionOutageModel)
+        1    0.000    0.000    0.000    0.000 anthropic.py:474(ContentBlockStartText)
+        1    0.000    0.000    0.000    0.000 openai.py:643(DocumentObject)
+        1    0.000    0.000    0.000    0.000 run_create_params.py:30(RunCreateParamsBase)
+        1    0.000    0.000    0.000    0.000 _make.py:2034(_assign_with_converter)
+        8    0.000    0.000    0.000    0.000 text.py:167(__len__)
+        1    0.000    0.000    0.000    0.000 __init__.py:1308(__init__)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:1139(_BaseV4)
+        1    0.000    0.000    0.000    0.000 threading.py:637(Barrier)
+        1    0.000    0.000    0.000    0.000 _compression.py:33(DecompressReader)
+        4    0.000    0.000    0.000    0.000 :812(__init__)
+        1    0.000    0.000    0.000    0.000 {built-in method _thread.get_native_id}
+        3    0.000    0.000    0.000    0.000 _utility.py:358(get_color_code)
+        1    0.000    0.000    0.000    0.000 v1alpha3_allocation_result.py:21(V1alpha3AllocationResult)
+        1    0.000    0.000    0.000    0.000 v1_param_kind.py:21(V1ParamKind)
+        1    0.000    0.000    0.000    0.000 exceptions.py:68(BuildError)
+        1    0.000    0.000    0.000    0.000 headers.py:13(Headers)
+        1    0.000    0.000    0.000    0.000 args.py:65(ClientArgsCreator)
+        1    0.000    0.000    0.000    0.000 challenges.py:278()
+        1    0.000    0.000    0.000    0.000 base.py:70(FromServiceAccountMixin)
+        1    0.000    0.000    0.000    0.000 rsa.py:512(_RSAPublicKey)
+        1    0.000    0.000    0.000    0.000 streaming_iterator.py:708(ResponsesWebSocketStreaming)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:702(VertexVideoGenerationResponse)
+        1    0.000    0.000    0.000    0.000 nodes.py:71(EvalContext)
+        1    0.000    0.000    0.000    0.000 utils.py:7148(AvailableModelsCache)
+        1    0.000    0.000    0.000    0.000 client.py:789(HTTPConnection)
+        8    0.000    0.000    0.000    0.000 _exceptions.py:366(request_context)
+        1    0.000    0.000    0.000    0.000 _models.py:705(has_redirect_location)
+        1    0.000    0.000    0.000    0.000 socket.py:521(type)
+        2    0.000    0.000    0.000    0.000 warnings.py:487(__exit__)
+        1    0.000    0.000    0.000    0.000 :786(keys)
+        1    0.000    0.000    0.000    0.000 {built-in method time.localtime}
+        2    0.000    0.000    0.000    0.000 {built-in method _pickle.dumps}
+        3    0.000    0.000    0.000    0.000 _utility.py:453(get_style_code)
+        1    0.000    0.000    0.000    0.000 v1_token_request_status.py:21(V1TokenRequestStatus)
+        1    0.000    0.000    0.000    0.000 v1_token_review_spec.py:21(V1TokenReviewSpec)
+        1    0.000    0.000    0.000    0.000 v1_service_cidr_spec.py:21(V1ServiceCIDRSpec)
+        1    0.000    0.000    0.000    0.000 v1_local_volume_source.py:21(V1LocalVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_match_condition.py:21(V1MatchCondition)
+        1    0.000    0.000    0.000    0.000 v1_downward_api_volume_source.py:21(V1DownwardAPIVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_empty_dir_volume_source.py:21(V1EmptyDirVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_app_armor_profile.py:21(V1AppArmorProfile)
+        1    0.000    0.000    0.000    0.000 config.py:25(Config)
+        1    0.000    0.000    0.000    0.000 ssl_.py:24()
+        1    0.000    0.000    0.000    0.000 oid.py:1()
+        1    0.000    0.000    0.000    0.000 terminal.py:1506(WINSZ)
+        1    0.000    0.000    0.000    0.000 handler.py:19(OpenAIImageGenerationHandler)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:73(VectorStoreResultContent)
+        1    0.000    0.000    0.000    0.000 bedrock.py:351(BedrockInvokeNovaRequest)
+        1    0.000    0.000    0.000    0.000 transformation.py:35(__init__)
+        2    0.000    0.000    0.000    0.000 headerregistry.py:566(__init__)
+        1    0.000    0.000    0.000    0.000 nodes.py:577(Const)
+        1    0.000    0.000    0.000    0.000 openai.py:234(MessageContentImageFileObject)
+        1    0.000    0.000    0.000    0.000 openai.py:864(ChatCompletionToolChoiceObjectParam)
+        1    0.000    0.000    0.000    0.000 thread.py:118(ThreadPoolExecutor)
+        1    0.000    0.000    0.000    0.000 coroutines.py:1()
+        1    0.000    0.000    0.000    0.000 _client.py:413(_merge_queryparams)
+        1    0.000    0.000    0.000    0.000 client.py:108()
+        1    0.000    0.000    0.000    0.000 types.py:1762(PaymentCardNumber)
+        5    0.000    0.000    0.000    0.000 __init__.py:428(__init__)
+        1    0.000    0.000    0.000    0.000 extensions.py:1127(KeyUsage)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_template_spec.py:21(V1beta1ResourceClaimTemplateSpec)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_claim_configuration.py:21(V1beta2DeviceClaimConfiguration)
+        1    0.000    0.000    0.000    0.000 v1alpha3_opaque_device_configuration.py:21(V1alpha3OpaqueDeviceConfiguration)
+        1    0.000    0.000    0.000    0.000 v1beta1_counter_set.py:21(V1beta1CounterSet)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_counter_consumption.py:21(V1beta1DeviceCounterConsumption)
+        1    0.000    0.000    0.000    0.000 v1alpha1_match_condition.py:21(V1alpha1MatchCondition)
+        1    0.000    0.000    0.000    0.000 v1alpha1_variable.py:21(V1alpha1Variable)
+        1    0.000    0.000    0.000    0.000 v1_tcp_socket_action.py:21(V1TCPSocketAction)
+        1    0.000    0.000    0.000    0.000 v1_webhook_conversion.py:21(V1WebhookConversion)
+        1    0.000    0.000    0.000    0.000 v1_selectable_field.py:21(V1SelectableField)
+        1    0.000    0.000    0.000    0.000 v1_external_documentation.py:21(V1ExternalDocumentation)
+        1    0.000    0.000    0.000    0.000 v1_field_selector_attributes.py:21(V1FieldSelectorAttributes)
+        8    0.000    0.000    0.000    0.000 validate.py:50(type_check)
+        1    0.000    0.000    0.000    0.000 models.py:640(Response)
+        1    0.000    0.000    0.000    0.000 binding.py:117(Binding)
+        1    0.000    0.000    0.000    0.000 extensions.py:357(SubjectInformationAccess)
+        1    0.000    0.000    0.000    0.000 credentials.py:31(Credentials)
+        1    0.000    0.000    0.000    0.000 keyboard.py:23(Keystroke)
+        1    0.000    0.000    0.000    0.000 bedrock.py:697(AmazonStability3TextToImageResponse)
+        1    0.000    0.000    0.000    0.000 base_otel_llm_obs_attributes.py:8(BaseLLMObsOTELAttributes)
+        1    0.000    0.000    0.000    0.000 py313.py:19(compose)
+        1    0.000    0.000    0.000    0.000 __init__.py:14(FrozenList)
+        1    0.000    0.000    0.000    0.000 environment.py:1560(TemplateExpression)
+        1    0.000    0.000    0.000    0.000 http_parser.py:963(DeflateBuffer)
+        1    0.000    0.000    0.000    0.000 main.py:101(DecodedVideoId)
+        2    0.000    0.000    0.000    0.000 _models.py:173(__eq__)
+        1    0.000    0.000    0.000    0.000 functional_validators.py:87(BeforeValidator)
+        1    0.000    0.000    0.000    0.000 numbers.py:267(Rational)
+        2    0.000    0.000    0.000    0.000 main.py:353(_is_debugger)
+        1    0.000    0.000    0.000    0.000 random.py:215(__init_subclass__)
+        1    0.000    0.000    0.000    0.000 platform.py:1119(python_version)
+        1    0.000    0.000    0.000    0.000 asn1.py:441(DerSequence)
+        1    0.000    0.000    0.000    0.000 {built-in method math.copysign}
+        3    0.000    0.000    0.000    0.000 _utility.py:369(is_integer_color)
+        1    0.000    0.000    0.000    0.000 tools.py:10(NetmaskTools)
+        1    0.000    0.000    0.000    0.000 v1beta2_counter_set.py:21(V1beta2CounterSet)
+        1    0.000    0.000    0.000    0.000 v1beta1_audit_annotation.py:21(V1beta1AuditAnnotation)
+        1    0.000    0.000    0.000    0.000 v1_volume_device.py:21(V1VolumeDevice)
+        1    0.000    0.000    0.000    0.000 v1_node_swap_status.py:21(V1NodeSwapStatus)
+        1    0.000    0.000    0.000    0.000 v1_audit_annotation.py:21(V1AuditAnnotation)
+        1    0.000    0.000    0.000    0.000 iri2uri.py:1()
+        1    0.000    0.000    0.000    0.000 ed25519.py:16(Ed25519PublicKey)
+        1    0.000    0.000    0.000    0.000 rsa.py:364(_RSAPrivateKey)
+        1    0.000    0.000    0.000    0.000 _serialization.py:153(_KeySerializationEncryption)
+        1    0.000    0.000    0.000    0.000 handler.py:19(__init__)
+        1    0.000    0.000    0.000    0.000 cohere_transformation.py:13(BedrockCohereEmbeddingConfig)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:490(InstanceImage)
+        1    0.000    0.000    0.000    0.000 base_model_iterator.py:232(FakeStreamResponseIterator)
+        1    0.000    0.000    0.000    0.000 handler.py:18(BedrockCountTokensHandler)
+        1    0.000    0.000    0.000    0.000 mlflow.py:14(MlflowLogger)
+        1    0.000    0.000    0.000    0.000 __init__.py:208(Path)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:504(ContentTransferEncodingHeader)
+        1    0.000    0.000    0.000    0.000 payload.py:350(BytesPayload)
+        1    0.000    0.000    0.000    0.000 resolver.py:27(ThreadedResolver)
+        1    0.000    0.000    0.000    0.000 litellm_logging.py:252(__init__)
+        1    0.000    0.000    0.000    0.000 ibm_detector.py:12(IBMDetectorRequestBodyDetectorServer)
+        1    0.000    0.000    0.000    0.000 anthropic.py:227(AnthropicContentParamSourceUrl)
+        1    0.000    0.000    0.000    0.000 openai.py:700(OpenAITextCompletionUserMessage)
+        1    0.000    0.000    0.000    0.000 openai.py:514(ChatCompletionDeltaToolCallChunk)
+        1    0.000    0.000    0.000    0.000 datadog_llm_obs.py:19(OutputMeta)
+        1    0.000    0.000    0.000    0.000 common_utils.py:258(OpenAICredentials)
+        1    0.000    0.000    0.000    0.000 jupyter.py:36(JupyterMixin)
+        1    0.000    0.000    0.000    0.000 core.py:3018(_parse_decls)
+        1    0.000    0.000    0.000    0.000 _headers.py:121(raw_items)
+        1    0.000    0.000    0.000    0.000 _connection.py:341(trailing_data)
+        7    0.000    0.000    0.000    0.000 __init__.py:792(__init__)
+        3    0.000    0.000    0.000    0.000 __init__.py:594(_discover_resolvers)
+        1    0.000    0.000    0.000    0.000 __init__.py:910(_search_paths)
+        1    0.000    0.000    0.000    0.000 threading.py:103(_RLock)
+        1    0.000    0.000    0.000    0.000 threading.py:804(_newname)
+        1    0.000    0.000    0.000    0.000 lzma.py:38(LZMAFile)
+        6    0.000    0.000    0.000    0.000 typing.py:2586(final)
+        5    0.000    0.000    0.000    0.000 {method 'deleter' of 'property' objects}
+        2    0.000    0.000    0.000    0.000 {built-in method posix.putenv}
+        1    0.000    0.000    0.000    0.000 v2_resource_metric_source.py:21(V2ResourceMetricSource)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_constraint.py:21(V1beta2DeviceConstraint)
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_migration_status.py:21(V1alpha1StorageVersionMigrationStatus)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_allocation_result.py:21(V1alpha3DeviceAllocationResult)
+        1    0.000    0.000    0.000    0.000 v1_uncounted_terminated_pods.py:21(V1UncountedTerminatedPods)
+        1    0.000    0.000    0.000    0.000 v1_success_policy.py:21(V1SuccessPolicy)
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_reference.py:21(V1PriorityLevelConfigurationReference)
+        1    0.000    0.000    0.000    0.000 v1_container_resize_policy.py:21(V1ContainerResizePolicy)
+        2    0.000    0.000    0.000    0.000 six.py:169(_SixMetaPathImporter)
+        1    0.000    0.000    0.000    0.000 discovery.py:1395(Resource)
+        1    0.000    0.000    0.000    0.000 binding.py:129(__init__)
+        1    0.000    0.000    0.000    0.000 connectionpool.py:120(HTTPConnectionPool)
+        1    0.000    0.000    0.000    0.000 import_export_handler.py:9(__init__)
+        1    0.000    0.000    0.000    0.000 embedding_handler.py:25(__init__)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:490(ContentDispositionHeader)
+        4    0.000    0.000    0.000    0.000 http_handler.py:797(_get_ssl_connector_kwargs)
+        1    0.000    0.000    0.000    0.000 anthropic.py:460(TextBlock)
+        1    0.000    0.000    0.000    0.000 openai.py:672(ChatCompletionFileObject)
+        1    0.000    0.000    0.000    0.000 get_model_cost_map.py:54(_check_is_valid_dict)
+        8    0.000    0.000    0.000    0.000 color.py:478()
+        8    0.000    0.000    0.000    0.000 palette.py:14(__init__)
+        5    0.000    0.000    0.000    0.000 console.py:772(_buffer)
+        2    0.000    0.000    0.000    0.000 connection_pool.py:262()
+        1    0.000    0.000    0.000    0.000 _utils.py:303(sync_start)
+        1    0.000    0.000    0.000    0.000 calendar.py:653(timegm)
+        3    0.000    0.000    0.000    0.000 __init__.py:504(CFunctionType)
+        5    0.000    0.000    0.000    0.000 {method 'capitalize' of 'str' objects}
+        1    0.000    0.000    0.000    0.000 :897(_resolve_filename)
+        1    0.000    0.000    0.000    0.000 _url.py:119(_InternalURLCache)
+        2    0.000    0.000    0.000    0.000 _figure.py:97(_set_subplots)
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_ordinals.py:21(V1StatefulSetOrdinals)
+        1    0.000    0.000    0.000    0.000 v1_group_subject.py:21(V1GroupSubject)
+        6    0.000    0.000    0.000    0.000 _common.py:13(tzname_in_python2)
+        1    0.000    0.000    0.000    0.000 ed448.py:12(Ed448PublicKey)
+        1    0.000    0.000    0.000    0.000 utils.py:7(FilesAPIUtils)
+        1    0.000    0.000    0.000    0.000 utils.py:9(VideoGenerationRequestUtils)
+        1    0.000    0.000    0.000    0.000 common_utils.py:8(OCIError)
+        1    0.000    0.000    0.000    0.000 nodes.py:360(CallBlock)
+        1    0.000    0.000    0.000    0.000 utils.py:434(_postinit)
+        1    0.000    0.000    0.000    0.000 anthropic_beta_headers_manager.py:38(GetAnthropicBetaHeadersConfig)
+        1    0.000    0.000    0.000    0.000 exceptions.py:901(LiteLLMUnknownProvider)
+        1    0.000    0.000    0.000    0.000 openai.py:607(OpenAIChatCompletionTextObject)
+        1    0.000    0.000    0.000    0.000 get_model_cost_map.py:74(_check_model_count_not_reduced)
+        1    0.000    0.000    0.000    0.000 console.py:1083(capture)
+        2    0.000    0.000    0.000    0.000 connection.py:190(is_idle)
+        1    0.000    0.000    0.000    0.000 iterators.py:1()
+        5    0.000    0.000    0.000    0.000 __init__.py:1319(disable)
+        1    0.000    0.000    0.000    0.000 threading.py:1001(_set_ident)
+        1    0.000    0.000    0.000    0.000 traceback.py:638(TracebackException)
+        3    0.000    0.000    0.000    0.000 {method '__enter__' of '_thread.lock' objects}
+        1    0.000    0.000    0.000    0.000 kube_config.py:186(KubeConfigLoader)
+        1    0.000    0.000    0.000    0.000 v1beta1_param_kind.py:21(V1beta1ParamKind)
+        1    0.000    0.000    0.000    0.000 v1_event_source.py:21(V1EventSource)
+        1    0.000    0.000    0.000    0.000 v1_ip_address_spec.py:21(V1IPAddressSpec)
+        1    0.000    0.000    0.000    0.000 pool.py:745(ApplyResult)
+        1    0.000    0.000    0.000    0.000 file_storage.py:12(FileStorage)
+        1    0.000    0.000    0.000    0.000 general_name.py:160(DirectoryName)
+        1    0.000    0.000    0.000    0.000 caching.py:35(RedisPipelineIncrementOperation)
+        1    0.000    0.000    0.000    0.000 __init__.py:790(_clear_after_fork)
+        2    0.000    0.000    0.000    0.000 _itertools.py:167(__getitem__)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:439(ParameterizedMIMEHeader)
+        1    0.000    0.000    0.000    0.000 abc.py:113(AbstractView)
+        1    0.000    0.000    0.000    0.000 http_parser.py:102(RawResponseMessage)
+        1    0.000    0.000    0.000    0.000 exceptions.py:7(TemplateError)
+        1    0.000    0.000    0.000    0.000 console.py:857(__enter__)
+        1    0.000    0.000    0.000    0.000 connection.py:165(can_handle_request)
+        1    0.000    0.000    0.000    0.000 _config.py:325(Proxy)
+        1    0.000    0.000    0.000    0.000 base64mime.py:1()
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:1461(__new__)
+        2    0.000    0.000    0.000    0.000 core.py:733(_splitlist)
+        1    0.000    0.000    0.000    0.000 fields.py:47(_FromFieldInfoInputs)
+        1    0.000    0.000    0.000    0.000 client.py:72(DynamicClient)
+        1    0.000    0.000    0.000    0.000 v1beta1_opaque_device_configuration.py:21(V1beta1OpaqueDeviceConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_topology_selector_term.py:21(V1TopologySelectorTerm)
+        1    0.000    0.000    0.000    0.000 v1_label_selector.py:21(V1LabelSelector)
+        1    0.000    0.000    0.000    0.000 v1_modify_volume_status.py:21(V1ModifyVolumeStatus)
+        1    0.000    0.000    0.000    0.000 v1_expression_warning.py:21(V1ExpressionWarning)
+        6    0.000    0.000    0.000    0.000 reduction.py:43(register)
+        1    0.000    0.000    0.000    0.000 difflib.py:44(SequenceMatcher)
+        1    0.000    0.000    0.000    0.000 _common.py:267(tzrangebase)
+        7    0.000    0.000    0.000    0.000 _common.py:9(__init__)
+        1    0.000    0.000    0.000    0.000 bucket.py:20(TokenBucket)
+        6    0.000    0.000    0.000    0.000 core.py:3511()
+        1    0.000    0.000    0.000    0.000 adapters.py:137(BaseAdapter)
+        1    0.000    0.000    0.000    0.000 padding.py:60(OAEP)
+        1    0.000    0.000    0.000    0.000 vertex_and_google_ai_studio_gemini.py:121(VertexAIBaseConfig)
+        1    0.000    0.000    0.000    0.000 lexer.py:143()
+        1    0.000    0.000    0.000    0.000 __init__.py:177(FastLookup)
+        1    0.000    0.000    0.000    0.000 nodes.py:380(With)
+        1    0.000    0.000    0.000    0.000 openai.py:2089(OpenAIChatCompletionLogprobs)
+        1    0.000    0.000    0.000    0.000 fine_tuning_job_integration.py:1()
+        1    0.000    0.000    0.000    0.000 _streaming.py:242(ServerSentEvent)
+        1    0.000    0.000    0.000    0.000 queues.py:21(Queue)
+        1    0.000    0.000    0.000    0.000 ansi.py:20(_AnsiToken)
+        1    0.000    0.000    0.000    0.000 theme.py:105(pop_theme)
+        1    0.000    0.000    0.000    0.000 types.py:550(FloatRange)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:598(CapacityLimiterAdapter)
+        1    0.000    0.000    0.000    0.000 _urls.py:159(password)
+        1    0.000    0.000    0.000    0.000 functional_validators.py:27(AfterValidator)
+        1    0.000    0.000    0.000    0.000 _cookiejar.py:24(SimpleCookieJar)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_counter_consumption.py:21(V1beta2DeviceCounterConsumption)
+        1    0.000    0.000    0.000    0.000 v1beta2_opaque_device_configuration.py:21(V1beta2OpaqueDeviceConfiguration)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_behavior.py:21(V2HorizontalPodAutoscalerBehavior)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint_rule_spec.py:21(V1alpha3DeviceTaintRuleSpec)
+        1    0.000    0.000    0.000    0.000 v1_self_subject_rules_review_spec.py:21(V1SelfSubjectRulesReviewSpec)
+        1    0.000    0.000    0.000    0.000 v1_pod_ip.py:21(V1PodIP)
+        1    0.000    0.000    0.000    0.000 v1_node_daemon_endpoints.py:21(V1NodeDaemonEndpoints)
+        1    0.000    0.000    0.000    0.000 v1_job_template_spec.py:21(V1JobTemplateSpec)
+        1    0.000    0.000    0.000    0.000 v1_grpc_action.py:21(V1GRPCAction)
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request_status.py:21(V1CertificateSigningRequestStatus)
+        1    0.000    0.000    0.000    0.000 core_v1_event_series.py:21(CoreV1EventSeries)
+        1    0.000    0.000    0.000    0.000 _factories.py:9(__init__)
+        1    0.000    0.000    0.000    0.000 eventstream.py:438(EventStreamBuffer)
+        1    0.000    0.000    0.000    0.000 __init__.py:496(Authentication)
+        1    0.000    0.000    0.000    0.000 core.py:5075(_generateDefaultName)
+        1    0.000    0.000    0.000    0.000 ec.py:306(ECDSA)
+        1    0.000    0.000    0.000    0.000 __init__.py:49(Response)
+        1    0.000    0.000    0.000    0.000 fragments_join.py:1()
+        1    0.000    0.000    0.000    0.000 profile_handler.py:10(__init__)
+        1    0.000    0.000    0.000    0.000 caching.py:55(RedisPipelineRpushOperation)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:525(MessageIDHeader)
+        1    0.000    0.000    0.000    0.000 utils.py:425(PromptTokensDetailsResult)
+        1    0.000    0.000    0.000    0.000 tasks.py:78(Task)
+        1    0.000    0.000    0.000    0.000 highlighter.py:80(ReprHighlighter)
+        1    0.000    0.000    0.000    0.000 highlighter.py:106(JSONHighlighter)
+        1    0.000    0.000    0.000    0.000 _compat.py:52(_NonClosingTextIOWrapper)
+        2    0.000    0.000    0.000    0.000 _decoders.py:211(__init__)
+        2    0.000    0.000    0.000    0.000 ssl.py:632(hostname_checks_common_name)
+        6    0.000    0.000    0.000    0.000 _adapters.py:25(__init__)
+        1    0.000    0.000    0.000    0.000 csv.py:80(DictReader)
+        1    0.000    0.000    0.000    0.000 threading.py:498(BoundedSemaphore)
+        2    0.000    0.000    0.000    0.000 warnings.py:440(__init__)
+        1    0.000    0.000    0.000    0.000 pydoc.py:528(HTMLRepr)
+        1    0.000    0.000    0.000    0.000 discovery_v1_api.py:27(DiscoveryV1Api)
+        1    0.000    0.000    0.000    0.000 v1beta1_variable.py:21(V1beta1Variable)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_allocation_result.py:21(V1beta1DeviceAllocationResult)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_claim_configuration.py:21(V1beta1DeviceClaimConfiguration)
+        1    0.000    0.000    0.000    0.000 v1alpha1_param_kind.py:21(V1alpha1ParamKind)
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_migration_spec.py:21(V1alpha1StorageVersionMigrationSpec)
+        1    0.000    0.000    0.000    0.000 v1alpha3_counter_set.py:21(V1alpha3CounterSet)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_claim_configuration.py:21(V1alpha3DeviceClaimConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_weighted_pod_affinity_term.py:21(V1WeightedPodAffinityTerm)
+        1    0.000    0.000    0.000    0.000 v1_session_affinity_config.py:21(V1SessionAffinityConfig)
+        1    0.000    0.000    0.000    0.000 v1_label_selector_attributes.py:21(V1LabelSelectorAttributes)
+        1    0.000    0.000    0.000    0.000 v1_local_object_reference.py:21(V1LocalObjectReference)
+        1    0.000    0.000    0.000    0.000 v1_container_state_waiting.py:21(V1ContainerStateWaiting)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_conversion.py:21(V1CustomResourceConversion)
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_update_strategy.py:21(V1DaemonSetUpdateStrategy)
+        1    0.000    0.000    0.000    0.000 v1_config_map_env_source.py:21(V1ConfigMapEnvSource)
+        1    0.000    0.000    0.000    0.000 v1_container_image.py:21(V1ContainerImage)
+        1    0.000    0.000    0.000    0.000 events_v1_event_series.py:21(EventsV1EventSeries)
+        1    0.000    0.000    0.000    0.000 storage_v1_token_request.py:21(StorageV1TokenRequest)
+        1    0.000    0.000    0.000    0.000 request_validator.py:10(RequestValidator)
+        1    0.000    0.000    0.000    0.000 generator.py:28(Generator)
+        1    0.000    0.000    0.000    0.000 __init__.py:1211(Http)
+        1    0.000    0.000    0.000    0.000 certificate_transparency.py:38(SignedCertificateTimestamp)
+        1    0.000    0.000    0.000    0.000 markdown.py:330(ListElement)
+        1    0.000    0.000    0.000    0.000 utils.py:52(InteractionsAPIRequestUtils)
+        1    0.000    0.000    0.000    0.000 aiohttp_transport.py:78(AiohttpResponseStream)
+        1    0.000    0.000    0.000    0.000 exceptions.py:418(RejectedRequestError)
+        1    0.000    0.000    0.000    0.000 anthropic.py:509(MessageChunk)
+        1    0.000    0.000    0.000    0.000 main.py:85(DecodedResponseId)
+        1    0.000    0.000    0.000    0.000 sslproto.py:259(SSLProtocol)
+        1    0.000    0.000    0.000    0.000 sslproto.py:78(_SSLProtocolTransport)
+        6    0.000    0.000    0.000    0.000 _urlparse.py:350(normalize_port)
+        4    0.000    0.000    0.000    0.000 argparse.py:305()
+        2    0.000    0.000    0.000    0.000 __init__.py:764(__init__)
+        5    0.000    0.000    0.000    0.000 datetime.py:51(_days_in_month)
+        1    0.000    0.000    0.000    0.000 selectors.py:442(EpollSelector)
+        4    0.000    0.000    0.000    0.000 {method 'append' of 'bytearray' objects}
+        2    0.000    0.000    0.000    0.000 {method 'rfind' of 'bytes' objects}
+        3    0.000    0.000    0.000    0.000 {built-in method _imp.extension_suffixes}
+        1    0.000    0.000    0.000    0.000 _app.py:48(DispatcherBase)
+        1    0.000    0.000    0.000    0.000 quantity.py:1()
+        1    0.000    0.000    0.000    0.000 networking_v1beta1_api.py:27(NetworkingV1beta1Api)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_class_spec.py:21(V1beta2DeviceClassSpec)
+        1    0.000    0.000    0.000    0.000 v2_external_metric_status.py:21(V2ExternalMetricStatus)
+        1    0.000    0.000    0.000    0.000 v2_metric_identifier.py:21(V2MetricIdentifier)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_allocation_result.py:21(V1beta2DeviceAllocationResult)
+        1    0.000    0.000    0.000    0.000 v1beta1_allocation_result.py:21(V1beta1AllocationResult)
+        1    0.000    0.000    0.000    0.000 v1beta1_device.py:21(V1beta1Device)
+        1    0.000    0.000    0.000    0.000 v1_scale_spec.py:21(V1ScaleSpec)
+        1    0.000    0.000    0.000    0.000 v1_attached_volume.py:21(V1AttachedVolume)
+        1    0.000    0.000    0.000    0.000 wrappers.py:139(Response)
+        1    0.000    0.000    0.000    0.000 capture.py:28(Entrypoint)
+        1    0.000    0.000    0.000    0.000 __init__.py:9(KeyDerivationFunction)
+        1    0.000    0.000    0.000    0.000 config_service.py:11(ConfigService)
+        3    0.000    0.000    0.000    0.000 azure.py:132(__init__)
+        1    0.000    0.000    0.000    0.000 bedrock.py:450(AmazonTitanV2EmbeddingsByType)
+        1    0.000    0.000    0.000    0.000 dynamic_logging_cache.py:54(DynamicLoggingCache)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:117(TokenList)
+        1    0.000    0.000    0.000    0.000 _ratio.py:12(Edge)
+        6    0.000    0.000    0.000    0.000 _headers.py:117(__getitem__)
+        1    0.000    0.000    0.000    0.000 connection_pool.py:254()
+        1    0.000    0.000    0.000    0.000 request.py:624(HTTPErrorProcessor)
+        1    0.000    0.000    0.000    0.000 _content.py:184(encode_request)
+        1    0.000    0.000    0.000    0.000 error.py:35(HTTPError)
+        2    0.000    0.000    0.000    0.000 argparse.py:247(_add_item)
+        1    0.000    0.000    0.000    0.000 traceback.py:247(FrameSummary)
+        2    0.000    0.000    0.000    0.000 RSA.py:212(has_private)
+        1    0.000    0.000    0.000    0.000 v2_resource_metric_status.py:21(V2ResourceMetricStatus)
+        1    0.000    0.000    0.000    0.000 certificates_v1_api.py:27(CertificatesV1Api)
+        1    0.000    0.000    0.000    0.000 v2_pods_metric_status.py:21(V2PodsMetricStatus)
+        1    0.000    0.000    0.000    0.000 v1beta1_match_condition.py:21(V1beta1MatchCondition)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_constraint.py:21(V1alpha3DeviceConstraint)
+        1    0.000    0.000    0.000    0.000 adaptive.py:92(RateClocker)
+        1    0.000    0.000    0.000    0.000 visitor.py:100(TreeInterpreter)
+        1    0.000    0.000    0.000    0.000 client.py:35(ClientDocumenter)
+        1    0.000    0.000    0.000    0.000 handlers.py:729(document_glacier_tree_hash_checksum)
+        1    0.000    0.000    0.000    0.000 test.py:1298(TestResponse)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:54(RuleSetStandardLibrary)
+        6    0.000    0.000    0.000    0.000 base.py:601(__getattr__)
+        1    0.000    0.000    0.000    0.000 core.py:2608(CaselessKeyword)
+        1    0.000    0.000    0.000    0.000 connection.py:538(HTTPSConnection)
+        1    0.000    0.000    0.000    0.000 cookies.py:176(RequestsCookieJar)
+        1    0.000    0.000    0.000    0.000 extensions.py:288(SubjectKeyIdentifier)
+        1    0.000    0.000    0.000    0.000 __about__.py:1()
+        1    0.000    0.000    0.000    0.000 x448.py:12(X448PublicKey)
+        1    0.000    0.000    0.000    0.000 sequences.py:18(Termcap)
+        1    0.000    0.000    0.000    0.000 plugins.py:9(Plugins)
+        1    0.000    0.000    0.000    0.000 markdown.py:415(ImageItem)
+        1    0.000    0.000    0.000    0.000 bedrock.py:455(AmazonTitanV2EmbeddingResponse)
+        1    0.000    0.000    0.000    0.000 visitor.py:50(NodeTransformer)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:562(HeaderRegistry)
+        1    0.000    0.000    0.000    0.000 compression_utils.py:288(BrotliDecompressor)
+        1    0.000    0.000    0.000    0.000 multipart.py:1097(MultipartPayloadWriter)
+        1    0.000    0.000    0.000    0.000 utils.py:2742(CostBreakdown)
+        1    0.000    0.000    0.000    0.000 azure.py:52(BaseAzureClient)
+        1    0.000    0.000    0.000    0.000 progress.py:648(BarColumn)
+        1    0.000    0.000    0.000    0.000 console.py:896(use_theme)
+        1    0.000    0.000    0.000    0.000 _state.py:250(__init__)
+        1    0.000    0.000    0.000    0.000 _models.py:148(ByteStream)
+        1    0.000    0.000    0.000    0.000 abc.py:177(InspectLoader)
+        6    0.000    0.000    0.000    0.000 _client.py:425(_build_auth)
+        1    0.000    0.000    0.000    0.000 __init__.py:1067(StreamHandler)
+        1    0.000    0.000    0.000    0.000 subprocess.py:163(TimeoutExpired)
+        4    0.000    0.000    0.000    0.000 {built-in method _heapq.heappush}
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_class_configuration.py:21(V1alpha3DeviceClassConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_scope_selector.py:21(V1ScopeSelector)
+        1    0.000    0.000    0.000    0.000 v1_sleep_action.py:21(V1SleepAction)
+        1    0.000    0.000    0.000    0.000 v1_daemon_endpoint.py:21(V1DaemonEndpoint)
+        1    0.000    0.000    0.000    0.000 v1_downward_api_projection.py:21(V1DownwardAPIProjection)
+        1    0.000    0.000    0.000    0.000 _internal.py:18(_Missing)
+        1    0.000    0.000    0.000    0.000 eventstream.py:292(MessagePrelude)
+        1    0.000    0.000    0.000    0.000 base.py:75(GrantTypeBase)
+        1    0.000    0.000    0.000    0.000 __init__.py:74(Client)
+        1    0.000    0.000    0.000    0.000 core.py:4803(PrecededBy)
+        1    0.000    0.000    0.000    0.000 core.py:3372(CharsNotIn)
+        1    0.000    0.000    0.000    0.000 timeout.py:25(Timeout)
+        1    0.000    0.000    0.000    0.000 {built-in method cryptography.hazmat.bindings._openssl.EVP_default_properties_is_fips_enabled}
+        1    0.000    0.000    0.000    0.000 webauthn_handler.py:10(WebAuthnHandler)
+        1    0.000    0.000    0.000    0.000 modes.py:57(ModeWithAuthenticationTag)
+        1    0.000    0.000    0.000    0.000 extensions.py:1775(InvalidityDate)
+        1    0.000    0.000    0.000    0.000 extensions.py:1894(OCSPNonce)
+        4    0.000    0.000    0.000    0.000 utils.py:87(__init__)
+        1    0.000    0.000    0.000    0.000 _config.py:6(config)
+        1    0.000    0.000    0.000    0.000 markdown.py:455(MarkdownContext)
+        1    0.000    0.000    0.000    0.000 nodes.py:670(Pair)
+        1    0.000    0.000    0.000    0.000 streams.py:60(ChunkTupleAsyncStreamIterator)
+        1    0.000    0.000    0.000    0.000 exceptions.py:914(GuardrailRaisedException)
+        4    0.000    0.000    0.000    0.000 in_memory_cache.py:211(get_cache)
+        1    0.000    0.000    0.000    0.000 exceptions.py:927(BlockedPiiEntityError)
+        1    0.000    0.000    0.000    0.000 utils.py:6734(TextCompletionStreamWrapper)
+        2    0.000    0.000    0.000    0.000 highlighter.py:8(_combine_regex)
+        1    0.000    0.000    0.000    0.000 protocol.py:1()
+        1    0.000    0.000    0.000    0.000 _writers.py:88(send_data)
+        1    0.000    0.000    0.000    0.000 default.py:204(__enter__)
+        1    0.000    0.000    0.000    0.000 calendar.py:71(_localized_day)
+        1    0.000    0.000    0.000    0.000 _core_utils.py:184(_WalkCoreSchema)
+        2    0.000    0.000    0.000    0.000 __init__.py:801(addFilter)
+        1    0.000    0.000    0.000    0.000 argparse.py:1720(ArgumentParser)
+        1    0.000    0.000    0.000    0.000 threading.py:224(Condition)
+        3    0.000    0.000    0.000    0.000 main.py:43(__init__)
+        2    0.000    0.000    0.000    0.000 {method 'difference_update' of 'set' objects}
+        1    0.000    0.000    0.000    0.000 :174(__subclasshook__)
+        1    0.000    0.000    0.000    0.000 {method 'flush' of 'zlib.Decompress' objects}
+        1    0.000    0.000    0.000    0.000 _monitor.py:237(set_theme)
+        1    0.000    0.000    0.000    0.000 v1beta1_ip_address_spec.py:21(V1beta1IPAddressSpec)
+        1    0.000    0.000    0.000    0.000 v1beta1_type_checking.py:21(V1beta1TypeChecking)
+        1    0.000    0.000    0.000    0.000 v1_pod_failure_policy.py:21(V1PodFailurePolicy)
+        1    0.000    0.000    0.000    0.000 v1_node_config_source.py:21(V1NodeConfigSource)
+        1    0.000    0.000    0.000    0.000 v1_overhead.py:21(V1Overhead)
+        1    0.000    0.000    0.000    0.000 v1_ingress_load_balancer_status.py:21(V1IngressLoadBalancerStatus)
+        1    0.000    0.000    0.000    0.000 v1_host_ip.py:21(V1HostIP)
+        1    0.000    0.000    0.000    0.000 v1_api_service_status.py:21(V1APIServiceStatus)
+        1    0.000    0.000    0.000    0.000 adaptive.py:38(ClientRateLimiter)
+        1    0.000    0.000    0.000    0.000 utils.py:373(IMDSFetcher)
+        7    0.000    0.000    0.000    0.000 parsers.py:163(_text_content)
+        2    0.000    0.000    0.000    0.000 history.py:51(get_global_history_recorder)
+        1    0.000    0.000    0.000    0.000 restdoc.py:50(ReSTDocument)
+        1    0.000    0.000    0.000    0.000 errors.py:13(OAuth2Error)
+        1    0.000    0.000    0.000    0.000 _utilities.py:24(__new__)
+        6    0.000    0.000    0.000    0.000 core.py:5769(postParse)
+        1    0.000    0.000    0.000    0.000 general_name.py:35(RFC822Name)
+        1    0.000    0.000    0.000    0.000 ec.py:125(_EllipticCurvePrivateKey)
+        1    0.000    0.000    0.000    0.000 dsa.py:15(DSAParameters)
+        1    0.000    0.000    0.000    0.000 __init__.py:17(ConsoleRender)
+        3    0.000    0.000    0.000    0.000 handler.py:15(__init__)
+        1    0.000    0.000    0.000    0.000 handler.py:15(XAIRealtime)
+        1    0.000    0.000    0.000    0.000 ElementTree.py:125(Element)
+        1    0.000    0.000    0.000    0.000 invoke_handler.py:1752(AmazonAnthropicClaudeStreamDecoder)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:362(GroundingMetadata)
+        1    0.000    0.000    0.000    0.000 nodes.py:898(Concat)
+        1    0.000    0.000    0.000    0.000 caching.py:45(RedisPipelineSetOperation)
+        1    0.000    0.000    0.000    0.000 payload.py:845(BytesIOPayload)
+        1    0.000    0.000    0.000    0.000 client_reqrep.py:117(ContentDisposition)
+        1    0.000    0.000    0.000    0.000 payload.py:82(payload_type)
+        1    0.000    0.000    0.000    0.000 http_handler.py:319(MaskedHTTPStatusError)
+        1    0.000    0.000    0.000    0.000 bccache.py:188(FileSystemBytecodeCache)
+        1    0.000    0.000    0.000    0.000 nodes.py:684(Keyword)
+        1    0.000    0.000    0.000    0.000 exceptions.py:844(BudgetExceededError)
+        1    0.000    0.000    0.000    0.000 rerank.py:34(RerankBilledUnits)
+        1    0.000    0.000    0.000    0.000 guardrails.py:259(PiiEntityCategoryMap)
+        1    0.000    0.000    0.000    0.000 _headers.py:171()
+        4    0.000    0.000    0.000    0.000 _headers.py:102(__init__)
+        1    0.000    0.000    0.000    0.000 client.py:239(HTTPResponse)
+        1    0.000    0.000    0.000    0.000 readers.py:53(MultiplexedPath)
+        1    0.000    0.000    0.000    0.000 __init__.py:108(Gt)
+        1    0.000    0.000    0.000    0.000 functional_validators.py:82(_from_decorator)
+        1    0.000    0.000    0.000    0.000 functional_validators.py:548(FreeModelBeforeValidatorWithoutInfo)
+        2    0.000    0.000    0.000    0.000 _policybase.py:41(__init__)
+        1    0.000    0.000    0.000    0.000 _schema_generation_shared.py:65(CallbackGetCoreSchemaHandler)
+        4    0.000    0.000    0.000    0.000 main.py:817()
+        2    0.000    0.000    0.000    0.000 parser.py:75(has_next)
+        1    0.000    0.000    0.000    0.000 parser.py:72(Parser)
+        1    0.000    0.000    0.000    0.000 __init__.py:27(_UrandomRNG)
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1alpha1_api.py:27(AdmissionregistrationV1alpha1Api)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_class_configuration.py:21(V1beta2DeviceClassConfiguration)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_spec.py:21(V1beta2ResourceClaimSpec)
+        1    0.000    0.000    0.000    0.000 v1beta1_service_cidr_spec.py:21(V1beta1ServiceCIDRSpec)
+        1    0.000    0.000    0.000    0.000 v1_node_features.py:21(V1NodeFeatures)
+        1    0.000    0.000    0.000    0.000 v1_ingress_status.py:21(V1IngressStatus)
+        1    0.000    0.000    0.000    0.000 discovery.py:47(EndpointDiscoveryModel)
+        1    0.000    0.000    0.000    0.000 collection.py:263(CollectionManager)
+        1    0.000    0.000    0.000    0.000 tz.py:386(tzfile)
+        5    0.000    0.000    0.000    0.000 mixins.py:198(_calls_update)
+        1    0.000    0.000    0.000    0.000 test.py:1361(Cookie)
+        6    0.000    0.000    0.000    0.000 compat.py:10(with_str_method)
+        1    0.000    0.000    0.000    0.000 core.py:3536(GoToColumn)
+        1    0.000    0.000    0.000    0.000 cookies.py:23(MockRequest)
+        1    0.000    0.000    0.000    0.000 dsa.py:176(_DSAPublicKey)
+        1    0.000    0.000    0.000    0.000 extensions.py:1095(InhibitAnyPolicy)
+        1    0.000    0.000    0.000    0.000 ciphers.py:16(_CipherContext)
+        1    0.000    0.000    0.000    0.000 url.py:80(Url)
+        1    0.000    0.000    0.000    0.000 _asymmetric.py:12(AsymmetricPadding)
+        1    0.000    0.000    0.000    0.000 least_busy.py:16(LeastBusyLoggingHandler)
+        1    0.000    0.000    0.000    0.000 embedding_handler.py:22(__init__)
+        1    0.000    0.000    0.000    0.000 handler.py:16(__init__)
+        4    0.000    0.000    0.000    0.000 aiohttp_transport.py:126(__init__)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:25(BlobType)
+        1    0.000    0.000    0.000    0.000 get_headers.py:1()
+        1    0.000    0.000    0.000    0.000 types.py:28(TextEmbeddingBGEInput)
+        1    0.000    0.000    0.000    0.000 exceptions.py:88(TemplateSyntaxError)
+        1    0.000    0.000    0.000    0.000 _types.py:3800(TeamInfoResponseObject)
+        1    0.000    0.000    0.000    0.000 payload.py:430(StringPayload)
+        1    0.000    0.000    0.000    0.000 compression_utils.py:321(ZSTDDecompressor)
+        1    0.000    0.000    0.000    0.000 abc.py:252(AbstractAccessLogger)
+        1    0.000    0.000    0.000    0.000 http_parser.py:89(RawRequestMessage)
+        1    0.000    0.000    0.000    0.000 nodes.py:787(Filter)
+        1    0.000    0.000    0.000    0.000 tracing.py:320(Trace)
+        1    0.000    0.000    0.000    0.000 galileo.py:36(GalileoObserve)
+        1    0.000    0.000    0.000    0.000 syntax.py:122(SyntaxTheme)
+        1    0.000    0.000    0.000    0.000 _writers.py:94(send_eom)
+        1    0.000    0.000    0.000    0.000 types.py:593(BoolParamType)
+        1    0.000    0.000    0.000    0.000 connection.py:195(is_closed)
+        1    0.000    0.000    0.000    0.000 readers.py:15(FileReader)
+        1    0.000    0.000    0.000    0.000 _urlparse.py:97(ParseResult)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:484(CapacityLimiter)
+        6    0.000    0.000    0.000    0.000 feedparser.py:125(__iter__)
+        6    0.000    0.000    0.000    0.000 default.py:69(map_httpcore_exceptions)
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha3_224}
+        1    0.000    0.000    0.000    0.000 __init__.py:6(HTTPStatus)
+        1    0.000    0.000    0.000    0.000 _encoded_words.py:73(_QByteMap)
+        1    0.000    0.000    0.000    0.000 types.py:2279(Base64UrlEncoder)
+        1    0.000    0.000    0.000    0.000 json_schema.py:152(_DefinitionsRemapping)
+        1    0.000    0.000    0.000    0.000 version.py:11(version_short)
+        1    0.000    0.000    0.000    0.000 threading.py:276(_acquire_restore)
+        4    0.000    0.000    0.000    0.000 asn1.py:515(__getitem__)
+        1    0.000    0.000    0.000    0.000 :94(__new__)
+        2    0.000    0.000    0.000    0.000 {built-in method math.log}
+        1    0.000    0.000    0.000    0.000 idtracking.py:174(RootVisitor)
+        1    0.000    0.000    0.000    0.000 request.py:55(make_headers)
+        3    0.000    0.000    0.000    0.000 _utility.py:87(no_duplicates)
+        1    0.000    0.000    0.000    0.000 resource.py:232(Subresource)
+        1    0.000    0.000    0.000    0.000 v1beta2_cel_device_selector.py:21(V1beta2CELDeviceSelector)
+        1    0.000    0.000    0.000    0.000 v1_user_subject.py:21(V1UserSubject)
+        1    0.000    0.000    0.000    0.000 v1_service_cidr_status.py:21(V1ServiceCIDRStatus)
+        1    0.000    0.000    0.000    0.000 v1_pod_os.py:21(V1PodOS)
+        1    0.000    0.000    0.000    0.000 v1_http_ingress_rule_value.py:21(V1HTTPIngressRuleValue)
+        1    0.000    0.000    0.000    0.000 process.py:364(_ParentProcess)
+        1    0.000    0.000    0.000    0.000 tz.py:201(tzlocal)
+        1    0.000    0.000    0.000    0.000 example.py:17(BaseExampleDocumenter)
+        1    0.000    0.000    0.000    0.000 mixins.py:65(ImmutableDictMixin)
+        1    0.000    0.000    0.000    0.000 mimeparse.py:1()
+        2    0.000    0.000    0.000    0.000 results.py:269(__iter__)
+        1    0.000    0.000    0.000    0.000 core.py:2971(Char)
+        1    0.000    0.000    0.000    0.000 modes.py:18(Mode)
+        1    0.000    0.000    0.000    0.000 Padding.py:1()
+        2    0.000    0.000    0.000    0.000 commonmark.py:12(make)
+        1    0.000    0.000    0.000    0.000 cooldown_cache.py:24(CooldownCacheValue)
+        1    0.000    0.000    0.000    0.000 vector_store_files.py:86(VectorStoreFileAuthCredentials)
+        1    0.000    0.000    0.000    0.000 filters.py:1175(_GroupTuple)
+        1    0.000    0.000    0.000    0.000 dual_cache.py:39(LimitedSizeOrderedDict)
+        1    0.000    0.000    0.000    0.000 http_parser.py:581(HttpRequestParser)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:386(ClientConnectorCertificateError)
+        1    0.000    0.000    0.000    0.000 completion.py:69(FunctionCall)
+        1    0.000    0.000    0.000    0.000 litellm_logging.py:251(ServiceTraceIDCache)
+        1    0.000    0.000    0.000    0.000 anthropic.py:152(AnthropicContainer)
+        1    0.000    0.000    0.000    0.000 file_search_tool_param.py:49(FileSearchToolParam)
+        1    0.000    0.000    0.000    0.000 trsock.py:4(TransportSocket)
+        1    0.000    0.000    0.000    0.000 progress.py:774(TimeRemainingColumn)
+        2    0.000    0.000    0.000    0.000 validators.py:294(__call__)
+        1    0.000    0.000    0.000    0.000 markup.py:20(Tag)
+        1    0.000    0.000    0.000    0.000 types.py:188(UnprocessedParamType)
+        1    0.000    0.000    0.000    0.000 _urls.py:335(is_relative_url)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:874(DefaultCookiePolicy)
+        1    0.000    0.000    0.000    0.000 quopri.py:1()
+        1    0.000    0.000    0.000    0.000 message.py:972(MIMEPart)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:1227(deepvalues)
+        1    0.000    0.000    0.000    0.000 _utils.py:145(ValueItems)
+        1    0.000    0.000    0.000    0.000 __init__.py:873(Handler)
+        1    0.000    0.000    0.000    0.000 hooks.py:82(modify)
+        3    0.000    0.000    0.000    0.000 hooks.py:86(make_instance_modify)
+        1    0.000    0.000    0.000    0.000 _raw_api.py:216(_Py_buffer)
+        1    0.000    0.000    0.000    0.000 :964(create_module)
+        4    0.000    0.000    0.000    0.000 zipfile.py:1885(close)
+        1    0.000    0.000    0.000    0.000 _monitor.py:38(axes_init)
+        1    0.000    0.000    0.000    0.000 _date.py:4(date_class)
+        1    0.000    0.000    0.000    0.000 ws_client.py:51(WSClient)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_capacity.py:21(V1beta2DeviceCapacity)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_selector.py:21(V1beta2DeviceSelector)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_spec.py:21(V1beta1ResourceClaimSpec)
+        1    0.000    0.000    0.000    0.000 v1_volume_node_affinity.py:21(V1VolumeNodeAffinity)
+        1    0.000    0.000    0.000    0.000 v1_node_selector.py:21(V1NodeSelector)
+        1    0.000    0.000    0.000    0.000 v1_container_state_running.py:21(V1ContainerStateRunning)
+        1    0.000    0.000    0.000    0.000 structures.py:655(CombinedMultiDict)
+        1    0.000    0.000    0.000    0.000 base.py:36(Client)
+        1    0.000    0.000    0.000    0.000 requests.py:296(AuthorizedSession)
+        1    0.000    0.000    0.000    0.000 utils.py:94(__init__)
+        1    0.000    0.000    0.000    0.000 hashes.py:238(BLAKE2s)
+        1    0.000    0.000    0.000    0.000 ec.py:347(EllipticCurvePublicNumbers)
+        3    0.000    0.000    0.000    0.000 six.py:880(add_metaclass)
+        1    0.000    0.000    0.000    0.000 utils.py:9(AnthropicMessagesRequestUtils)
+        1    0.000    0.000    0.000    0.000 types.py:47(EmbeddingParameters)
+        1    0.000    0.000    0.000    0.000 caching.py:64(RedisPipelineLpopOperation)
+        1    0.000    0.000    0.000    0.000 _types.py:4395(EnterpriseLicenseData)
+        1    0.000    0.000    0.000    0.000 open_inference.py:4(SpanAttributes)
+        1    0.000    0.000    0.000    0.000 rerank.py:39(RerankTokens)
+        1    0.000    0.000    0.000    0.000 utils.py:2727(CachingDetails)
+        1    0.000    0.000    0.000    0.000 utils.py:3310(CustomHuggingfaceTokenizer)
+        1    0.000    0.000    0.000    0.000 _reflection.py:1()
+        1    0.000    0.000    0.000    0.000 _transform.py:44(PropertyInfo)
+        2    0.000    0.000    0.000    0.000 sync.py:119(__init__)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:112(AsyncEvent)
+        1    0.000    0.000    0.000    0.000 _models.py:310(Request)
+        1    0.000    0.000    0.000    0.000 _common.py:127(_TZifHeader)
+        1    0.000    0.000    0.000    0.000 {method 'poll' of 'select.poll' objects}
+        1    0.000    0.000    0.000    0.000 responses_client_event_param.py:67(ResponsesClientEventParam)
+        1    0.000    0.000    0.000    0.000 _utility.py:331()
+        1    0.000    0.000    0.000    0.000 v1_pod_readiness_gate.py:21(V1PodReadinessGate)
+        1    0.000    0.000    0.000    0.000 tz.py:1167(_tzicalvtz)
+        1    0.000    0.000    0.000    0.000 utils.py:3027(ContainerMetadataFetcher)
+        1    0.000    0.000    0.000    0.000 httpsession.py:275(URLLib3Session)
+        5    0.000    0.000    0.000    0.000 loaders.py:127(instance_cache)
+        1    0.000    0.000    0.000    0.000 structures.py:474(OrderedMultiDict)
+        4    0.000    0.000    0.000    0.000 range.py:109(_callback_property)
+        1    0.000    0.000    0.000    0.000 signers.py:33(RequestSigner)
+        1    0.000    0.000    0.000    0.000 service.py:24(ServiceDocumenter)
+        1    0.000    0.000    0.000    0.000 credentials.py:480(Signing)
+        2    0.000    0.000    0.000    0.000 plugins.py:116()
+        2    0.000    0.000    0.000    0.000 handler.py:30(__init__)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:456(ResponseSupervisedTuningSpec)
+        1    0.000    0.000    0.000    0.000 lexer.py:269(Token)
+        1    0.000    0.000    0.000    0.000 completion.py:82(Function)
+        1    0.000    0.000    0.000    0.000 nodes.py:991(And)
+        1    0.000    0.000    0.000    0.000 openai.py:218(ImageURLObject)
+        1    0.000    0.000    0.000    0.000 _json.py:28(_CustomEncoder)
+        1    0.000    0.000    0.000    0.000 _streaming.py:23(Stream)
+        1    0.000    0.000    0.000    0.000 _logs.py:34(SensitiveHeadersFilter)
+        1    0.000    0.000    0.000    0.000 _make.py:2365(Attribute)
+        4    0.000    0.000    0.000    0.000 console.py:782(_buffer_index)
+        1    0.000    0.000    0.000    0.000 types.py:200(StringParamType)
+        1    0.000    0.000    0.000    0.000 _resources.py:10(AsyncResource)
+        1    0.000    0.000    0.000    0.000 _models.py:48(enforce_url)
+        1    0.000    0.000    0.000    0.000 tls.py:60(TLSStream)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:74(HTTPError)
+        1    0.000    0.000    0.000    0.000 functional_validators.py:234(WrapValidator)
+        2    0.000    0.000    0.000    0.000 representer.py:71(add_multi_representer)
+        1    0.000    0.000    0.000    0.000 __init__.py:1432(Logger)
+        1    0.000    0.000    0.000    0.000 parse.py:361(_fix_result_transcoding)
+        1    0.000    0.000    0.000    0.000 decoder.py:284(__init__)
+        1    0.000    0.000    0.000    0.000 __init__.py:321(CDLL)
+        4    0.000    0.000    0.000    0.000 {method 'strip' of 'bytes' objects}
+        3    0.000    0.000    0.000    0.000 {built-in method atexit.register}
+        4    0.000    0.000    0.000    0.000 _utility.py:473()
+        1    0.000    0.000    0.000    0.000 v1_limit_range_spec.py:21(V1LimitRangeSpec)
+        1    0.000    0.000    0.000    0.000 signer.py:76(Signer)
+        1    0.000    0.000    0.000    0.000 matcher.py:33(StateMachineMatcher)
+        1    0.000    0.000    0.000    0.000 model.py:263(MapShape)
+        1    0.000    0.000    0.000    0.000 wsgi.py:338(_RangeWrapper)
+        1    0.000    0.000    0.000    0.000 core.py:4713(AtStringStart)
+        1    0.000    0.000    0.000    0.000 core.py:3679(WordStart)
+        1    0.000    0.000    0.000    0.000 base.py:47(Signer)
+        2    0.000    0.000    0.000    0.000 default.py:5(make)
+        1    0.000    0.000    0.000    0.000 markdown.py:112(Paragraph)
+        1    0.000    0.000    0.000    0.000 transformation.py:100(OCIRequestWrapper)
+        1    0.000    0.000    0.000    0.000 handler.py:24(AzureAnthropicChatCompletion)
+        1    0.000    0.000    0.000    0.000 __init__.py:102(CompleteDirs)
+        1    0.000    0.000    0.000    0.000 payload.py:461(StringIOPayload)
+        1    0.000    0.000    0.000    0.000 compression_utils.py:91(ZLibBackendWrapper)
+        1    0.000    0.000    0.000    0.000 abc.py:39(AbstractRouter)
+        1    0.000    0.000    0.000    0.000 _make.py:621(_ClassBuilder)
+        1    0.000    0.000    0.000    0.000 console.py:462(Group)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:110(EventAdapter)
+        1    0.000    0.000    0.000    0.000 _sockets.py:103(UNIXSocketStream)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:425(SemaphoreAdapter)
+        1    0.000    0.000    0.000    0.000 _client.py:95()
+        1    0.000    0.000    0.000    0.000 safe_json_loads.py:1()
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha1}
+        5    0.000    0.000    0.000    0.000 platform.py:772(_unknown_as_blank)
+        3    0.000    0.000    0.000    0.000 datetime.py:46(_days_before_year)
+        5    0.000    0.000    0.000    0.000 typing.py:390(__init_subclass__)
+        3    0.000    0.000    0.000    0.000 {method 'popitem' of 'dict' objects}
+        3    0.000    0.000    0.000    0.000 _figure.py:57(_set_size)
+        1    0.000    0.000    0.000    0.000 policy_v1_api.py:27(PolicyV1Api)
+        1    0.000    0.000    0.000    0.000 coordination_v1_api.py:27(CoordinationV1Api)
+        1    0.000    0.000    0.000    0.000 v1_flow_distinguisher_method.py:21(V1FlowDistinguisherMethod)
+        1    0.000    0.000    0.000    0.000 reduction.py:33(ForkingPickler)
+        1    0.000    0.000    0.000    0.000 accept.py:9(Accept)
+        1    0.000    0.000    0.000    0.000 serving.py:698(BaseWSGIServer)
+        1    0.000    0.000    0.000    0.000 exceptions.py:253(Unauthorized)
+        1    0.000    0.000    0.000    0.000 probe.py:6(_HTTP2ProbeCache)
+        1    0.000    0.000    0.000    0.000 socks.py:145(socksocket)
+        1    0.000    0.000    0.000    0.000 dh.py:115(_DHPrivateKey)
+        1    0.000    0.000    0.000    0.000 extensions.py:1366(Extension)
+        1    0.000    0.000    0.000    0.000 __init__.py:68(Request)
+        3    0.000    0.000    0.000    0.000 six.py:239(exec_module)
+        1    0.000    0.000    0.000    0.000 prompt.py:340(Confirm)
+        1    0.000    0.000    0.000    0.000 cohere.py:74(CohereV2ChatResponseUsageBilledUnits)
+        1    0.000    0.000    0.000    0.000 common_utils.py:120(ModelResponseIterator)
+        1    0.000    0.000    0.000    0.000 __init__.py:768(path)
+        1    0.000    0.000    0.000    0.000 bccache.py:331(MemcachedBytecodeCache)
+        1    0.000    0.000    0.000    0.000 guardrails.py:813(DynamicGuardrailParams)
+        1    0.000    0.000    0.000    0.000 pagination.py:20(CursorPageItem)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:80(APIStatusError)
+        1    0.000    0.000    0.000    0.000 validators.py:202(__call__)
+        1    0.000    0.000    0.000    0.000 _pick.py:1()
+        3    0.000    0.000    0.000    0.000 containers.py:93(__len__)
+        4    0.000    0.000    0.000    0.000 _content.py:35(__iter__)
+        1    0.000    0.000    0.000    0.000 types.py:2046(PastDate)
+        1    0.000    0.000    0.000    0.000 functional_validators.py:153(PlainValidator)
+        1    0.000    0.000    0.000    0.000 types.py:1239(PathType)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:824(SupportsIndex)
+        1    0.000    0.000    0.000    0.000 _migration.py:31()
+        1    0.000    0.000    0.000    0.000 constructor.py:482(FullConstructor)
+        1    0.000    0.000    0.000    0.000 parse.py:1205(_splittag)
+        2    0.000    0.000    0.000    0.000 subprocess.py:268(_cleanup)
+        5    0.000    0.000    0.000    0.000 :381(__subclasshook__)
+        1    0.000    0.000    0.000    0.000 {method 'flush' of '_io.TextIOWrapper' objects}
+        2    0.000    0.000    0.000    0.000 {built-in method time.perf_counter}
+        3    0.000    0.000    0.000    0.000 {method 'span' of 're.Match' objects}
+        1    0.000    0.000    0.000    0.000 {built-in method binascii.a2b_base64}
+        1    0.000    0.000    0.000    0.000 config.py:33(ConfigDict)
+        1    0.000    0.000    0.000    0.000 response_create_params.py:37(ResponseCreateParamsBase)
+        1    0.000    0.000    0.000    0.000 completion_create_params.py:37(CompletionCreateParamsBase)
+        1    0.000    0.000    0.000    0.000 _dict.py:73()
+        1    0.000    0.000    0.000    0.000 resource.py:108(ResourceList)
+        1    0.000    0.000    0.000    0.000 _abnf.py:412(continuous_frame)
+        1    0.000    0.000    0.000    0.000 events_v1_api.py:27(EventsV1Api)
+        1    0.000    0.000    0.000    0.000 apiextensions_v1_api.py:27(ApiextensionsV1Api)
+        1    0.000    0.000    0.000    0.000 _ssl_compat.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_selector.py:21(V1beta1DeviceSelector)
+        1    0.000    0.000    0.000    0.000 v1alpha3_cel_device_selector.py:21(V1alpha3CELDeviceSelector)
+        1    0.000    0.000    0.000    0.000 v1alpha1_json_patch.py:21(V1alpha1JSONPatch)
+        1    0.000    0.000    0.000    0.000 v1_csi_node_spec.py:21(V1CSINodeSpec)
+        1    0.000    0.000    0.000    0.000 sessions.py:24(SessionMixin)
+        1    0.000    0.000    0.000    0.000 useragent.py:130(UserAgentString)
+        1    0.000    0.000    0.000    0.000 serving.py:96(DechunkedInput)
+        1    0.000    0.000    0.000    0.000 auth.py:214(SigV4Auth)
+        4    0.000    0.000    0.000    0.000 utils.py:197(__init__)
+        1    0.000    0.000    0.000    0.000 common.py:295(CaseInsensitiveDict)
+        1    0.000    0.000    0.000    0.000 core.py:4106(Or)
+        1    0.000    0.000    0.000    0.000 core.py:5186(Opt)
+        1    0.000    0.000    0.000    0.000 _credentials_base.py:23(_BaseCredentials)
+        1    0.000    0.000    0.000    0.000 keys.py:6(_HashedTuple)
+        1    0.000    0.000    0.000    0.000 _oid.py:176(AttributeOID)
+        1    0.000    0.000    0.000    0.000 plugin_service.py:7(PluginService)
+        1    0.000    0.000    0.000    0.000 parse_link_title.py:6(_Result)
+        1    0.000    0.000    0.000    0.000 transformation.py:13(VoyageError)
+        1    0.000    0.000    0.000    0.000 transformation.py:1382(OCIStreamWrapper)
+        1    0.000    0.000    0.000    0.000 transformation.py:77(OCISignerProtocol)
+        1    0.000    0.000    0.000    0.000 utils.py:3067(TeamUIKeyGenerationConfig)
+        1    0.000    0.000    0.000    0.000 openai.py:661(ChatCompletionFileObjectFile)
+        1    0.000    0.000    0.000    0.000 utils.py:7440(ModelResponseIterator)
+        1    0.000    0.000    0.000    0.000 file_create_params.py:36(ExpiresAfter)
+        5    0.000    0.000    0.000    0.000 text.py:810()
+        1    0.000    0.000    0.000    0.000 console.py:292(NewLine)
+        1    0.000    0.000    0.000    0.000 colorsys.py:1()
+        1    0.000    0.000    0.000    0.000 _urlparse.py:402(normalize_path)
+        1    0.000    0.000    0.000    0.000 types.py:382(AllowInfNan)
+        1    0.000    0.000    0.000    0.000 __init__.py:936(setLevel)
+        1    0.000    0.000    0.000    0.000 asn1.py:915(DerSetOf)
+        2    0.000    0.000    0.000    0.000 :195(__subclasshook__)
+        3    0.000    0.000    0.000    0.000 {method 'locked' of '_thread.lock' objects}
+        2    0.000    0.000    0.000    0.000 {method 'cache_clear' of 'functools._lru_cache_wrapper' objects}
+        2    0.000    0.000    0.000    0.000 _default.py:22(set_size_term_inf)
+        1    0.000    0.000    0.000    0.000 storage_v1beta1_api.py:27(StorageV1beta1Api)
+        1    0.000    0.000    0.000    0.000 v1beta2_counter.py:21(V1beta2Counter)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_selector.py:21(V1alpha3DeviceSelector)
+        1    0.000    0.000    0.000    0.000 v1beta1_counter.py:21(V1beta1Counter)
+        1    0.000    0.000    0.000    0.000 v1alpha1_apply_configuration.py:21(V1alpha1ApplyConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_type_checking.py:21(V1TypeChecking)
+        1    0.000    0.000    0.000    0.000 v1_exec_action.py:21(V1ExecAction)
+        1    0.000    0.000    0.000    0.000 v1_flow_schema_status.py:21(V1FlowSchemaStatus)
+        1    0.000    0.000    0.000    0.000 v1_client_ip_config.py:21(V1ClientIPConfig)
+        1    0.000    0.000    0.000    0.000 provider.py:124(DefaultJSONProvider)
+        1    0.000    0.000    0.000    0.000 regions.py:113(EndpointResolver)
+        3    0.000    0.000    0.000    0.000 response.py:40(_set_property)
+        1    0.000    0.000    0.000    0.000 _factories.py:13(__call__)
+        1    0.000    0.000    0.000    0.000 socketserver.py:153(BaseServer)
+        1    0.000    0.000    0.000    0.000 core.py:3570(LineStart)
+        1    0.000    0.000    0.000    0.000 core.py:3705(WordEnd)
+        1    0.000    0.000    0.000    0.000 core.py:5686(Combine)
+        1    0.000    0.000    0.000    0.000 base.py:27(Verifier)
+        1    0.000    0.000    0.000    0.000 dsa.py:126(DSAParameterNumbers)
+        1    0.000    0.000    0.000    0.000 ec.py:54(EllipticCurveSignatureAlgorithm)
+        1    0.000    0.000    0.000    0.000 utils.py:10(ContainerRequestUtils)
+        1    0.000    0.000    0.000    0.000 common_utils.py:8(PetalsError)
+        1    0.000    0.000    0.000    0.000 __init__.py:315(EntryPoints)
+        1    0.000    0.000    0.000    0.000 enkryptai.py:18(EnkryptAIPIIDetail)
+        1    0.000    0.000    0.000    0.000 logfire_logger.py:16(SpanConfig)
+        1    0.000    0.000    0.000    0.000 computer_action_param.py:157(Type)
+        1    0.000    0.000    0.000    0.000 subprocess.py:115(Process)
+        1    0.000    0.000    0.000    0.000 selector_events.py:896(_SelectorSocketTransport)
+        1    0.000    0.000    0.000    0.000 markdown.py:167(CodeBlock)
+        5    0.000    0.000    0.000    0.000 :9(__init__)
+        1    0.000    0.000    0.000    0.000 highlighter.py:61(RegexHighlighter)
+        1    0.000    0.000    0.000    0.000 _readers.py:148(ChunkedReader)
+        1    0.000    0.000    0.000    0.000 core.py:2002(_check_iter)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:263(__init__)
+        1    0.000    0.000    0.000    0.000 zipfile.py:345(ZipInfo)
+        1    0.000    0.000    0.000    0.000 functional_validators.py:716(InstanceOf)
+        1    0.000    0.000    0.000    0.000 _known_annotated_metadata.py:161(_get_at_to_constraint_map)
+        4    0.000    0.000    0.000    0.000 parser.py:48(__init__)
+        4    0.000    0.000    0.000    0.000 zipfile.py:692(_check_compression)
+        1    0.000    0.000    0.000    0.000 __init__.py:1323(disable)
+        1    0.000    0.000    0.000    0.000 constructor.py:19(BaseConstructor)
+        3    0.000    0.000    0.000    0.000 typing.py:426(__init__)
+        4    0.000    0.000    0.000    0.000 _strptime.py:210()
+        3    0.000    0.000    0.000    0.000 _utility.py:316(__init__)
+        1    0.000    0.000    0.000    0.000 pydoc.py:1132(TextRepr)
+        1    0.000    0.000    0.000    0.000 autoscaling_v2_api.py:27(AutoscalingV2Api)
+        1    0.000    0.000    0.000    0.000 v1beta1_service_cidr_status.py:21(V1beta1ServiceCIDRStatus)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_spec.py:21(V1alpha3ResourceClaimSpec)
+        1    0.000    0.000    0.000    0.000 v1_volume_node_resources.py:21(V1VolumeNodeResources)
+        1    0.000    0.000    0.000    0.000 v1_for_zone.py:21(V1ForZone)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_validation.py:21(V1CustomResourceValidation)
+        1    0.000    0.000    0.000    0.000 v1_aggregation_rule.py:21(V1AggregationRule)
+        1    0.000    0.000    0.000    0.000 connection.py:347(Connection)
+        1    0.000    0.000    0.000    0.000 tz.py:1475(GettzFunc)
+        3    0.000    0.000    0.000    0.000 __init__.py:43(private_class)
+        1    0.000    0.000    0.000    0.000 handlers.py:910(ParameterAlias)
+        1    0.000    0.000    0.000    0.000 loaders.py:150(JSONFileLoader)
+        1    0.000    0.000    0.000    0.000 base.py:1(BaseRetryBackoff)
+        1    0.000    0.000    0.000    0.000 exceptions.py:353(MethodNotAllowed)
+        1    0.000    0.000    0.000    0.000 exceptions.py:513(RequestedRangeNotSatisfiable)
+        1    0.000    0.000    0.000    0.000 etag.py:6(ETags)
+        1    0.000    0.000    0.000    0.000 _internal.py:64(_ColorStreamHandler)
+        1    0.000    0.000    0.000    0.000 structures.py:859(HeaderSet)
+        1    0.000    0.000    0.000    0.000 _parser.py:241(parserinfo)
+        1    0.000    0.000    0.000    0.000 core.py:4261(MatchFirst)
+        1    0.000    0.000    0.000    0.000 webauthn_types.py:29(AuthenticationExtensionsClientInputs)
+        1    0.000    0.000    0.000    0.000 webauthn_types.py:86(AuthenticatorAssertionResponse)
+        1    0.000    0.000    0.000    0.000 algorithms.py:27(AES)
+        1    0.000    0.000    0.000    0.000 base.py:286(_RawRevokedCertificate)
+        1    0.000    0.000    0.000    0.000 extensions.py:151(CRLNumber)
+        1    0.000    0.000    0.000    0.000 credentials.py:302(AnonymousCredentials)
+        1    0.000    0.000    0.000    0.000 table_wide.py:1()
+        1    0.000    0.000    0.000    0.000 _lazy_rich.py:1()
+        1    0.000    0.000    0.000    0.000 markdown.py:132(Heading)
+        1    0.000    0.000    0.000    0.000 exceptions.py:13(RequestException)
+        1    0.000    0.000    0.000    0.000 langsmith.py:50(CredentialsKey)
+        1    0.000    0.000    0.000    0.000 posthog.py:6(PostHogEventPayload)
+        1    0.000    0.000    0.000    0.000 json_loader.py:12(SimpleProviderConfig)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:387(SingleAddressHeader)
+        5    0.000    0.000    0.000    0.000 contentmanager.py:27(add_set_handler)
+        1    0.000    0.000    0.000    0.000 cookies.py:442(BaseCookie)
+        1    0.000    0.000    0.000    0.000 nodes.py:490(BinExpr)
+        1    0.000    0.000    0.000    0.000 utils.py:3071(PersonalUIKeyGenerationConfig)
+        1    0.000    0.000    0.000    0.000 _module_client.py:35(ChatProxy)
+        1    0.000    0.000    0.000    0.000 base_subprocess.py:10(BaseSubprocessTransport)
+        1    0.000    0.000    0.000    0.000 qdrant_semantic_cache.py:24(QdrantSemanticCache)
+        1    0.000    0.000    0.000    0.000 base_events.py:274(Server)
+        1    0.000    0.000    0.000    0.000 progress.py:551(RenderableColumn)
+        1    0.000    0.000    0.000    0.000 constrain.py:10(Constrain)
+        1    0.000    0.000    0.000    0.000 _headers.py:122()
+        1    0.000    0.000    0.000    0.000 interfaces.py:85(ConnectionInterface)
+        3    0.000    0.000    0.000    0.000 _models.py:168(__init__)
+        3    0.000    0.000    0.000    0.000 readers.py:27(files)
+        1    0.000    0.000    0.000    0.000 ssl.py:456(_ASN1Object)
+        1    0.000    0.000    0.000    0.000 abc.py:43(Finder)
+        1    0.000    0.000    0.000    0.000 request.py:1080(AbstractDigestAuthHandler)
+        1    0.000    0.000    0.000    0.000 _decorators.py:212(Decorator)
+        1    0.000    0.000    0.000    0.000 core_schema.py:47(CoreConfig)
+        1    0.000    0.000    0.000    0.000 tempfile.py:271(_RandomNameSequence)
+        1    0.000    0.000    0.000    0.000 threading.py:1509(_register_atexit)
+        2    0.000    0.000    0.000    0.000 __init__.py:440(__init__)
+        1    0.000    0.000    0.000    0.000 spawnbase.py:13(_NullCoder)
+        3    0.000    0.000    0.000    0.000 traceback.py:325(walk_stack)
+        1    0.000    0.000    0.000    0.000 weakref.py:414(__getitem__)
+        4    0.000    0.000    0.000    0.000 {method 'items' of 'collections.OrderedDict' objects}
+        1    0.000    0.000    0.000    0.000 {built-in method _functools.reduce}
+        1    0.000    0.000    0.000    0.000 _figure.py:73(_set_master_size)
+        1    0.000    0.000    0.000    0.000 _doc_utils.py:167(documentation_class)
+        1    0.000    0.000    0.000    0.000 _dict.py:102()
+        1    0.000    0.000    0.000    0.000 _monitor.py:75(text_init)
+        1    0.000    0.000    0.000    0.000 model.py:246(ResourceModel)
+        2    0.000    0.000    0.000    0.000 six.py:454(Module_six_moves_urllib_response)
+        1    0.000    0.000    0.000    0.000 local.py:186(LocalManager)
+        1    0.000    0.000    0.000    0.000 wsgi.py:425(LimitedStream)
+        1    0.000    0.000    0.000    0.000 eventstream.py:32(DuplicateHeader)
+        1    0.000    0.000    0.000    0.000 httpsession.py:216(ProxyConfiguration)
+        1    0.000    0.000    0.000    0.000 client.py:1303(ClientMeta)
+        1    0.000    0.000    0.000    0.000 sync_handler.py:5(SyncHandler)
+        1    0.000    0.000    0.000    0.000 errors.py:218(AccessDeniedError)
+        1    0.000    0.000    0.000    0.000 errors.py:379(CustomOAuth2Error)
+        1    0.000    0.000    0.000    0.000 socketserver.py:391(TCPServer)
+        1    0.000    0.000    0.000    0.000 server.py:974(CGIHTTPRequestHandler)
+        1    0.000    0.000    0.000    0.000 core.py:5867(Suppress)
+        1    0.000    0.000    0.000    0.000 core.py:4655(_Indent)
+        1    0.000    0.000    0.000    0.000 core.py:2633(CloseMatch)
+        1    0.000    0.000    0.000    0.000 core.py:3619(LineEnd)
+        1    0.000    0.000    0.000    0.000 models.py:84(RequestEncodingMixin)
+        1    0.000    0.000    0.000    0.000 sessions.py:106(SessionRedirectMixin)
+        1    0.000    0.000    0.000    0.000 extensions.py:1746(CRLReason)
+        1    0.000    0.000    0.000    0.000 credentials.py:407(Scoped)
+        1    0.000    0.000    0.000    0.000 algorithms.py:114(CAST5)
+        1    0.000    0.000    0.000    0.000 questions.py:38(Question)
+        1    0.000    0.000    0.000    0.000 ruler.py:33(StateBase)
+        1    0.000    0.000    0.000    0.000 rag.py:271(RAGRerankConfig)
+        1    0.000    0.000    0.000    0.000 handler.py:45(_StreamParser)
+        1    0.000    0.000    0.000    0.000 main.py:339(Completions)
+        1    0.000    0.000    0.000    0.000 base_model_iterator.py:200(MockResponseIterator)
+        1    0.000    0.000    0.000    0.000 bedrock.py:267(InferenceConfig)
+        1    0.000    0.000    0.000    0.000 common_utils.py:73(AmazonBedrockGlobalConfig)
+        1    0.000    0.000    0.000    0.000 _itertools.py:114(__init__)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:156(BaseHeader)
+        1    0.000    0.000    0.000    0.000 helpers.py:239(ProxyInfo)
+        1    0.000    0.000    0.000    0.000 compiler.py:271(UndeclaredNameVisitor)
+        1    0.000    0.000    0.000    0.000 openai.py:629(ChatCompletionVideoUrlObject)
+        1    0.000    0.000    0.000    0.000 _module_client.py:59(EvalsProxy)
+        1    0.000    0.000    0.000    0.000 _module_client.py:77(SkillsProxy)
+        1    0.000    0.000    0.000    0.000 queue.py:258(_PySimpleQueue)
+        1    0.000    0.000    0.000    0.000 _base_client.py:2024(OtherPlatform)
+        1    0.000    0.000    0.000    0.000 progress.py:867(DownloadColumn)
+        1    0.000    0.000    0.000    0.000 _fileno.py:1()
+        1    0.000    0.000    0.000    0.000 _make.py:2867(_fmt_converter_call)
+        1    0.000    0.000    0.000    0.000 request.py:426(OpenerDirector)
+        3    0.000    0.000    0.000    0.000 _adapters.py:143(__init__)
+        1    0.000    0.000    0.000    0.000 encoders.py:1()
+        1    0.000    0.000    0.000    0.000 zipfile.py:2313(Path)
+        1    0.000    0.000    0.000    0.000 __init__.py:351(EntryPoints)
+        1    0.000    0.000    0.000    0.000 types.py:1386(Json)
+        1    0.000    0.000    0.000    0.000 core_schema.py:123(SerializationInfo)
+        1    0.000    0.000    0.000    0.000 resolver.py:12(BaseResolver)
+        1    0.000    0.000    0.000    0.000 threading.py:273(_release_save)
+        1    0.000    0.000    0.000    0.000 pss.py:41(PSS_SigScheme)
+        1    0.000    0.000    0.000    0.000 tempfile.py:571(_TemporaryFileCloser)
+        1    0.000    0.000    0.000    0.000 threading.py:544(Event)
+        2    0.000    0.000    0.000    0.000 __init__.py:101(CFunctionType)
+        1    0.000    0.000    0.000    0.000 selectors.py:290(SelectSelector)
+        2    0.000    0.000    0.000    0.000 traceback.py:264(__init__)
+        2    0.000    0.000    0.000    0.000 six.py:129(_LazyModule)
+        3    0.000    0.000    0.000    0.000 :186(__init__)
+        1    0.000    0.000    0.000    0.000 tools.py:176(Connect)
+        1    0.000    0.000    0.000    0.000 _monitor.py:87(draw_init)
+        1    0.000    0.000    0.000    0.000 apps_api.py:27(AppsApi)
+        1    0.000    0.000    0.000    0.000 sessions.py:112(SessionInterface)
+        1    0.000    0.000    0.000    0.000 cli.py:514(FlaskGroup)
+        3    0.000    0.000    0.000    0.000 config.py:23(__init__)
+        2    0.000    0.000    0.000    0.000 six.py:475(Module_six_moves_urllib_robotparser)
+        1    0.000    0.000    0.000    0.000 handlers.py:372(DeprecatedServiceDocumenter)
+        1    0.000    0.000    0.000    0.000 handlers.py:433(SimpleHandler)
+        1    0.000    0.000    0.000    0.000 core.py:4928(NotAny)
+        1    0.000    0.000    0.000    0.000 exceptions.py:290(RecursiveGrammarException)
+        1    0.000    0.000    0.000    0.000 exceptions.py:254(ParseException)
+        4    0.000    0.000    0.000    0.000 results.py:23(__init__)
+        1    0.000    0.000    0.000    0.000 core.py:3529(PositionToken)
+        1    0.000    0.000    0.000    0.000 core.py:4368(Each)
+        1    0.000    0.000    0.000    0.000 core.py:3642(StringStart)
+        1    0.000    0.000    0.000    0.000 core.py:5349(_update_ignorer)
+        1    0.000    0.000    0.000    0.000 poolmanager.py:56(PoolKey)
+        3    0.000    0.000    0.000    0.000 ssh.py:378(__init__)
+        1    0.000    0.000    0.000    0.000 extensions.py:2083(UnrecognizedExtension)
+        1    0.000    0.000    0.000    0.000 general_name.py:27(GeneralName)
+        1    0.000    0.000    0.000    0.000 base.py:54(AEADDecryptionContext)
+        1    0.000    0.000    0.000    0.000 MD5.py:49(MD5Hash)
+        1    0.000    0.000    0.000    0.000 HMAC.py:58()
+        1    0.000    0.000    0.000    0.000 state_block.py:14(StateBlock)
+        1    0.000    0.000    0.000    0.000 node_service.py:8(NodeService)
+        1    0.000    0.000    0.000    0.000 track_deployment_metrics.py:1()
+        1    0.000    0.000    0.000    0.000 cohere.py:11(ToolResultObject)
+        1    0.000    0.000    0.000    0.000 bedrock.py:480(AmazonTitanMultimodalEmbeddingResponse)
+        1    0.000    0.000    0.000    0.000 deepeval.py:20(DeepEvalLogger)
+        4    0.000    0.000    0.000    0.000 _url.py:158(rewrite_module)
+        1    0.000    0.000    0.000    0.000 http_exceptions.py:45(BadHttpMessage)
+        3    0.000    0.000    0.000    0.000 payload.py:83(__init__)
+        1    0.000    0.000    0.000    0.000 nodes.py:467(Expr)
+        1    0.000    0.000    0.000    0.000 _types.py:409()
+        1    0.000    0.000    0.000    0.000 utils.py:2559(StandardLoggingPromptManagementMetadata)
+        1    0.000    0.000    0.000    0.000 _module_client.py:47(FilesProxy)
+        1    0.000    0.000    0.000    0.000 _module_client.py:65(ImagesProxy)
+        1    0.000    0.000    0.000    0.000 _module_client.py:89(BatchesProxy)
+        1    0.000    0.000    0.000    0.000 _module_client.py:143(FineTuningProxy)
+        1    0.000    0.000    0.000    0.000 _module_client.py:155(ConversationsProxy)
+        1    0.000    0.000    0.000    0.000 progress.py:840(MofNCompleteColumn)
+        1    0.000    0.000    0.000    0.000 utils.py:495(PacifyFlushWrapper)
+        1    0.000    0.000    0.000    0.000 _utils.py:212()
+        1    0.000    0.000    0.000    0.000 ssl.py:159(TLSVersion)
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha384}
+        1    0.000    0.000    0.000    0.000 mimetypes.py:64(MimeTypes)
+        1    0.000    0.000    0.000    0.000 annotated_handlers.py:65(GetCoreSchemaHandler)
+        1    0.000    0.000    0.000    0.000 json_schema.py:2108(ValidationsMapping)
+        3    0.000    0.000    0.000    0.000 _model_construction.py:71(NoInitField)
+        1    0.000    0.000    0.000    0.000 representer.py:13(BaseRepresenter)
+        1    0.000    0.000    0.000    0.000 __init__.py:362(YAMLObject)
+        1    0.000    0.000    0.000    0.000 pathlib.py:130()
+        1    0.000    0.000    0.000    0.000 ptyprocess.py:799(PtyProcessUnicode)
+        2    0.000    0.000    0.000    0.000 functools.py:741(is_related)
+        4    0.000    0.000    0.000    0.000 {method '__sizeof__' of 'object' objects}
+        1    0.000    0.000    0.000    0.000 :242(__subclasshook__)
+        1    0.000    0.000    0.000    0.000 linecache.py:52(checkcache)
+        1    0.000    0.000    0.000    0.000 storagemigration_v1alpha1_api.py:27(StoragemigrationV1alpha1Api)
+        1    0.000    0.000    0.000    0.000 pydoc.py:1986(__init__)
+        1    0.000    0.000    0.000    0.000 scheduling_v1_api.py:27(SchedulingV1Api)
+        1    0.000    0.000    0.000    0.000 url_safe.py:79(URLSafeTimedSerializer)
+        1    0.000    0.000    0.000    0.000 process.py:349(AuthenticationString)
+        1    0.000    0.000    0.000    0.000 utils.py:2083(ArnParser)
+        1    0.000    0.000    0.000    0.000 _markupbase.py:23(ParserBase)
+        3    0.000    0.000    0.000    0.000 handlers.py:911(__init__)
+        1    0.000    0.000    0.000    0.000 utils.py:652(ImportStringError)
+        1    0.000    0.000    0.000    0.000 parsers.py:1038(RestXMLParser)
+        1    0.000    0.000    0.000    0.000 device.py:15(DeviceClient)
+        1    0.000    0.000    0.000    0.000 errors.py:329(InvalidTokenError)
+        1    0.000    0.000    0.000    0.000 core.py:3659(StringEnd)
+        1    0.000    0.000    0.000    0.000 core.py:4767(FollowedBy)
+        1    0.000    0.000    0.000    0.000 core.py:5676(TokenConverter)
+        1    0.000    0.000    0.000    0.000 ed25519.py:80(_Ed25519PrivateKey)
+        1    0.000    0.000    0.000    0.000 hmac.py:27(HMAC)
+        1    0.000    0.000    0.000    0.000 __init__.py:239(MRUCache)
+        1    0.000    0.000    0.000    0.000 base.py:46(AEADCipherContext)
+        3    0.000    0.000    0.000    0.000 validators.py:6(__init__)
+        2    0.000    0.000    0.000    0.000 config_service.py:20(get_default_dir)
+        1    0.000    0.000    0.000    0.000 node_handler.py:12(NodeHandler)
+        1    0.000    0.000    0.000    0.000 profile_service.py:4(ProfileService)
+        1    0.000    0.000    0.000    0.000 watsonx.py:13(WatsonXCredentials)
+        1    0.000    0.000    0.000    0.000 ElementTree.py:1767(C14NWriterTarget)
+        1    0.000    0.000    0.000    0.000 bedrock.py:432(CohereEmbeddingRequestWithModel)
+        1    0.000    0.000    0.000    0.000 bedrock.py:903(AmazonDeepSeekR1StreamingResponse)
+        1    0.000    0.000    0.000    0.000 realtime.py:49(RealtimeQueryParams)
+        1    0.000    0.000    0.000    0.000 main.py:327(Chat)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:545(ContentEmbeddings)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:416(PromptFeedback)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:565(GeminiEmbedContentRequestBody)
+        1    0.000    0.000    0.000    0.000 bedrock.py:71(BedrockConverseReasoningTextBlock)
+        1    0.000    0.000    0.000    0.000 bedrock.py:225(SystemToolBlock)
+        1    0.000    0.000    0.000    0.000 bedrock.py:599(NovaAudioParams)
+        1    0.000    0.000    0.000    0.000 bedrock.py:863(BedrockRerankModelConfiguration)
+        1    0.000    0.000    0.000    0.000 bedrock.py:925(BedrockS3OutputDataConfig)
+        1    0.000    0.000    0.000    0.000 bedrock.py:305(JsonSchemaDefinition)
+        1    0.000    0.000    0.000    0.000 bedrock.py:513(TwelveLabsMarengoEmbeddingResponse)
+        1    0.000    0.000    0.000    0.000 bedrock.py:19(SourceBlock)
+        1    0.000    0.000    0.000    0.000 nodes.py:833(Getitem)
+        1    0.000    0.000    0.000    0.000 nodes.py:855(Getattr)
+        1    0.000    0.000    0.000    0.000 main.py:25(ImageEditRequestParams)
+        1    0.000    0.000    0.000    0.000 typedefs.py:63(Middleware)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 nodes.py:515(UnaryExpr)
+        1    0.000    0.000    0.000    0.000 _abc.py:15(SupportsKeys)
+        1    0.000    0.000    0.000    0.000 nodes.py:393(Block)
+        1    0.000    0.000    0.000    0.000 nodes.py:608(TemplateData)
+        1    0.000    0.000    0.000    0.000 nodes.py:1083(MarkSafe)
+        1    0.000    0.000    0.000    0.000 argilla.py:17(ArgillaCredentialsObject)
+        1    0.000    0.000    0.000    0.000 coroutine_checker.py:11(CoroutineChecker)
+        1    0.000    0.000    0.000    0.000 _module_client.py:41(BetaProxy)
+        1    0.000    0.000    0.000    0.000 _module_client.py:53(AudioProxy)
+        1    0.000    0.000    0.000    0.000 _module_client.py:71(ModelsProxy)
+        1    0.000    0.000    0.000    0.000 _module_client.py:83(VideosProxy)
+        1    0.000    0.000    0.000    0.000 _module_client.py:95(UploadsProxy)
+        1    0.000    0.000    0.000    0.000 _module_client.py:101(WebhooksProxy)
+        1    0.000    0.000    0.000    0.000 _module_client.py:107(RealtimeProxy)
+        1    0.000    0.000    0.000    0.000 _module_client.py:119(EmbeddingsProxy)
+        1    0.000    0.000    0.000    0.000 _module_client.py:137(ModerationsProxy)
+        1    0.000    0.000    0.000    0.000 _module_client.py:149(VectorStoresProxy)
+        1    0.000    0.000    0.000    0.000 openai.py:618(ChatCompletionImageUrlObject)
+        1    0.000    0.000    0.000    0.000 openai.py:876(ChatCompletionToolParamFunctionChunk)
+        1    0.000    0.000    0.000    0.000 shlex.py:19(shlex)
+        1    0.000    0.000    0.000    0.000 _base_client.py:2102(OtherArch)
+        1    0.000    0.000    0.000    0.000 unix_events.py:57(_UnixSelectorEventLoop)
+        1    0.000    0.000    0.000    0.000 base_events.py:206(_SendfileFallbackProtocol)
+        4    0.000    0.000    0.000    0.000 _types.py:149(__bool__)
+        1    0.000    0.000    0.000    0.000 _make.py:2589()
+        1    0.000    0.000    0.000    0.000 _make.py:2802(Converter)
+        1    0.000    0.000    0.000    0.000 style.py:765(StyleStack)
+        1    0.000    0.000    0.000    0.000 _receivebuffer.py:48(__init__)
+        1    0.000    0.000    0.000    0.000 _sockets.py:57(_SocketProvider)
+        1    0.000    0.000    0.000    0.000 _headers.py:271(has_expect_100_continue)
+        1    0.000    0.000    0.000    0.000 _urlparse.py:116(netloc)
+        4    0.000    0.000    0.000    0.000 _client.py:1453()
+        3    0.000    0.000    0.000    0.000 parser.py:17(__init__)
+        1    0.000    0.000    0.000    0.000 _validate_call.py:15(ValidateCallWrapper)
+        1    0.000    0.000    0.000    0.000 types.py:1625(_SecretField)
+        1    0.000    0.000    0.000    0.000 types.py:688(StringConstraints)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:2342(__init__)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:3394(TypeAliasType)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:843(SupportsRound)
+        1    0.000    0.000    0.000    0.000 _file_system.py:1()
+        1    0.000    0.000    0.000    0.000 selectors.py:206(_BaseSelectorImpl)
+        2    0.000    0.000    0.000    0.000 __init__.py:46(new)
+        1    0.000    0.000    0.000    0.000 _utility.py:270(is_ipython)
+        2    0.000    0.000    0.000    0.000 _figure.py:34(_set_family)
+        1    0.000    0.000    0.000    0.000 pool.py:837(IMapIterator)
+        1    0.000    0.000    0.000    0.000 util.py:182(Finalize)
+        1    0.000    0.000    0.000    0.000 auth.py:860(HmacV1Auth)
+        1    0.000    0.000    0.000    0.000 waiter.py:169(AcceptorConfig)
+        1    0.000    0.000    0.000    0.000 tokens.py:22(OAuth2Token)
+        1    0.000    0.000    0.000    0.000 models.py:313(PreparedRequest)
+        1    0.000    0.000    0.000    0.000 connectionpool.py:67(ConnectionPool)
+        1    0.000    0.000    0.000    0.000 general_name.py:80(DNSName)
+        1    0.000    0.000    0.000    0.000 general_name.py:119(UniformResourceIdentifier)
+        1    0.000    0.000    0.000    0.000 x448.py:59(_X448PrivateKey)
+        1    0.000    0.000    0.000    0.000 _exponential_backoff.py:42(_BaseExponentialBackoff)
+        1    0.000    0.000    0.000    0.000 utils.py:14(Prehashed)
+        1    0.000    0.000    0.000    0.000 KDF.py:187(_S2V)
+        1    0.000    0.000    0.000    0.000 parser_block.py:46(ParserBlock)
+        1    0.000    0.000    0.000    0.000 ElementTree.py:1506(XMLParser)
+        1    0.000    0.000    0.000    0.000 ollama.py:28(OllamaVisionModelObject)
+        1    0.000    0.000    0.000    0.000 main.py:357(AsyncCompletions)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:673(VertexVideoGenerationInstance)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:120(VertexAISearch)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:357(SearchEntryPoint)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:506(VideoEmbedding)
+        1    0.000    0.000    0.000    0.000 bedrock.py:465(AmazonTitanG1EmbeddingResponse)
+        1    0.000    0.000    0.000    0.000 bedrock.py:709(AmazonTitanTextToImageParams)
+        1    0.000    0.000    0.000    0.000 runtime.py:1023(StrictUndefined)
+        1    0.000    0.000    0.000    0.000 py310.py:1()
+        1    0.000    0.000    0.000    0.000 http_exceptions.py:99(BadStatusLine)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:872(Terminal)
+        1    0.000    0.000    0.000    0.000 nodes.py:1151(Scope)
+        1    0.000    0.000    0.000    0.000 openai.py:239(MessageContentImageURLObject)
+        1    0.000    0.000    0.000    0.000 openai.py:470(OpenAIErrorBody)
+        1    0.000    0.000    0.000    0.000 _module_client.py:113(ResponsesProxy)
+        1    0.000    0.000    0.000    0.000 _module_client.py:125(ContainersProxy)
+        1    0.000    0.000    0.000    0.000 _module_client.py:131(CompletionsProxy)
+        1    0.000    0.000    0.000    0.000 _resources_proxy.py:9(ResourcesProxy)
+        1    0.000    0.000    0.000    0.000 _assistants.py:856(AsyncAssistantStreamManager)
+        1    0.000    0.000    0.000    0.000 assistant_update_params.py:17(AssistantUpdateParams)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call_param.py:209(ResponseComputerToolCallParam)
+        1    0.000    0.000    0.000    0.000 _make.py:2587()
+        1    0.000    0.000    0.000    0.000 validators.py:577(_subclass_of)
+        1    0.000    0.000    0.000    0.000 _compat.py:62(get_return_type)
+        1    0.000    0.000    0.000    0.000 exceptions.py:231(BadOptionUsage)
+        1    0.000    0.000    0.000    0.000 exceptions.py:257(FileError)
+        1    0.000    0.000    0.000    0.000 parser.py:245(ParsingState)
+        4    0.000    0.000    0.000    0.000 _synchronization.py:311(__exit__)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:1776(FileCookieJar)
+        1    0.000    0.000    0.000    0.000 calendar.py:156(__init__)
+        1    0.000    0.000    0.000    0.000 calendar.py:150(Calendar)
+        1    0.000    0.000    0.000    0.000 __init__.py:98(BaseMetadata)
+        1    0.000    0.000    0.000    0.000 types.py:2239(Base64Encoder)
+        1    0.000    0.000    0.000    0.000 _std_types_schema.py:45(InnerSchemaValidator)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:1495(__instancecheck__)
+        1    0.000    0.000    0.000    0.000 __init__.py:123(getLevelName)
+        2    0.000    0.000    0.000    0.000 typing_extensions.py:856(inner)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:788(SupportsInt)
+        2    0.000    0.000    0.000    0.000 subprocess.py:1087(__enter__)
+        1    0.000    0.000    0.000    0.000 tempfile.py:614(_TemporaryFileWrapper)
+        1    0.000    0.000    0.000    0.000 selectors.py:341(_PollLikeSelector)
+        2    0.000    0.000    0.000    0.000 pathlib.py:52(__init__)
+        1    0.000    0.000    0.000    0.000 asn1.py:49(BytesIO_EOF)
+        2    0.000    0.000    0.000    0.000 contextlib.py:543(__enter__)
+        2    0.000    0.000    0.000    0.000 {built-in method maketrans}
+        1    0.000    0.000    0.000    0.000 {built-in method posix.isatty}
+        2    0.000    0.000    0.000    0.000 {built-in method time.monotonic}
+        1    0.000    0.000    0.000    0.000 version_api.py:27(VersionApi)
+        1    0.000    0.000    0.000    0.000 pydoc.py:2219(ModuleScanner)
+        1    0.000    0.000    0.000    0.000 local.py:106(LocalStack)
+        1    0.000    0.000    0.000    0.000 config.py:50(Config)
+        1    0.000    0.000    0.000    0.000 converters.py:18(BaseConverter)
+        1    0.000    0.000    0.000    0.000 credentials.py:1401(AssumeRoleProvider)
+        1    0.000    0.000    0.000    0.000 model.py:273(StringShape)
+        1    0.000    0.000    0.000    0.000 ast.py:1()
+        1    0.000    0.000    0.000    0.000 docstringparser.py:107(StemNode)
+        1    0.000    0.000    0.000    0.000 mixins.py:145(ImmutableHeadersMixin)
+        1    0.000    0.000    0.000    0.000 exceptions.py:175(BadRequest)
+        1    0.000    0.000    0.000    0.000 eventstream.py:48(InvalidPayloadLength)
+        1    0.000    0.000    0.000    0.000 parsers.py:188(ResponseParser)
+        1    0.000    0.000    0.000    0.000 utils.py:1164(ArgumentGenerator)
+        1    0.000    0.000    0.000    0.000 utils.py:1901(S3RegionRedirector)
+        1    0.000    0.000    0.000    0.000 errors.py:265(TemporarilyUnavailableError)
+        1    0.000    0.000    0.000    0.000 errors.py:255(ServerError)
+        4    0.000    0.000    0.000    0.000 core.py:5915(postParse)
+        1    0.000    0.000    0.000    0.000 __init__.py:99(version_info)
+        1    0.000    0.000    0.000    0.000 requests.py:242(_MutualTlsOffloadAdapter)
+        1    0.000    0.000    0.000    0.000 poolmanager.py:162(PoolManager)
+        1    0.000    0.000    0.000    0.000 __init__.py:106(__version__)
+        1    0.000    0.000    0.000    0.000 cmac.py:20(_CMACContext)
+        1    0.000    0.000    0.000    0.000 binding.py:23(_OpenSSLError)
+        1    0.000    0.000    0.000    0.000 algorithms.py:137(ARC4)
+        1    0.000    0.000    0.000    0.000 _refresh_worker.py:24(RefreshThreadManager)
+        1    0.000    0.000    0.000    0.000 credentials.py:339(ReadOnlyScoped)
+        1    0.000    0.000    0.000    0.000 _checkbox.py:10(Checkbox)
+        1    0.000    0.000    0.000    0.000 BLAKE2s.py:58(BLAKE2s_Hash)
+        1    0.000    0.000    0.000    0.000 config_handler.py:7(ConfigHandler)
+        1    0.000    0.000    0.000    0.000 zero.py:8(make)
+        1    0.000    0.000    0.000    0.000 ruler.py:76(Ruler)
+        1    0.000    0.000    0.000    0.000 stability.py:36(StabilityImageEditRequest)
+        1    0.000    0.000    0.000    0.000 openai.py:67(MistralEmbeddingConfig)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:15(FunctionCall)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:276(TokenCountDetailsResponse)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:579(GcsSource)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:450(FineTuneJobCreate)
+        1    0.000    0.000    0.000    0.000 py311.py:1()
+        1    0.000    0.000    0.000    0.000 http_exceptions.py:108(BadHttpMethod)
+        1    0.000    0.000    0.000    0.000 _structures.py:6(InfinityType)
+        1    0.000    0.000    0.000    0.000 client_reqrep.py:149(Fingerprint)
+        1    0.000    0.000    0.000    0.000 nodes.py:372(FilterBlock)
+        1    0.000    0.000    0.000    0.000 _types.py:3900(JWTKeyItem)
+        1    0.000    0.000    0.000    0.000 anthropic.py:487(MessageDelta)
+        1    0.000    0.000    0.000    0.000 batch_utils.py:10(InMemoryFile)
+        1    0.000    0.000    0.000    0.000 agents.py:42(SecuritySchemeBase)
+        1    0.000    0.000    0.000    0.000 enkryptai.py:44(EnkryptAIKeywordDetail)
+        1    0.000    0.000    0.000    0.000 utils.py:7473(ModelResponseListIterator)
+        1    0.000    0.000    0.000    0.000 openai.py:151(ToolResourcesFileSearchVectorStore)
+        1    0.000    0.000    0.000    0.000 openai.py:142(ToolResourcesCodeInterpreter)
+        1    0.000    0.000    0.000    0.000 openai.py:892(Function)
+        1    0.000    0.000    0.000    0.000 _old_api.py:26(APIRemovedInV1Proxy)
+        1    0.000    0.000    0.000    0.000 response_output_message_param.py:16(ResponseOutputMessageParam)
+        1    0.000    0.000    0.000    0.000 datadog_llm_obs.py:40(LLMMetrics)
+        1    0.000    0.000    0.000    0.000 _types.py:117(RequestOptions)
+        1    0.000    0.000    0.000    0.000 exceptions.py:81(NotCallableError)
+        1    0.000    0.000    0.000    0.000 validators.py:111(instance_of)
+        1    0.000    0.000    0.000    0.000 pager.py:5(Pager)
+        1    0.000    0.000    0.000    0.000 connection_pool.py:350(__init__)
+        1    0.000    0.000    0.000    0.000 _util.py:12(ProtocolError)
+        1    0.000    0.000    0.000    0.000 console.py:517(_is_jupyter)
+        1    0.000    0.000    0.000    0.000 _streams.py:17(UnreliableObjectReceiveStream)
+        1    0.000    0.000    0.000    0.000 _streams.py:118(ByteReceiveStream)
+        1    0.000    0.000    0.000    0.000 _config.py:196(Timeout)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:279(Event)
+        1    0.000    0.000    0.000    0.000 abc.py:161(ResourceLoader)
+        1    0.000    0.000    0.000    0.000 _auth.py:22(Auth)
+        4    0.000    0.000    0.000    0.000 _client.py:1473(_init_transport)
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha256}
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha512}
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha3_256}
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha3_512}
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_shake_128}
+        1    0.000    0.000    0.000    0.000 _models.py:199()
+        1    0.000    0.000    0.000    0.000 _models.py:569(content)
+        1    0.000    0.000    0.000    0.000 types.py:402(__hash__)
+        1    0.000    0.000    0.000    0.000 zipfile.py:805(ZipExtFile)
+        1    0.000    0.000    0.000    0.000 types.py:2202(EncoderProtocol)
+        1    0.000    0.000    0.000    0.000 argparse.py:890(BooleanOptionalAction)
+        1    0.000    0.000    0.000    0.000 argparse.py:1650(_ArgumentGroup)
+        1    0.000    0.000    0.000    0.000 string.py:57(Template)
+        1    0.000    0.000    0.000    0.000 __init__.py:711(BufferingFormatter)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:797(SupportsFloat)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:815(SupportsBytes)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:832(SupportsAbs)
+        1    0.000    0.000    0.000    0.000 asn1.py:263(DerInteger)
+        1    0.000    0.000    0.000    0.000 py3compat.py:143(tostr)
+        1    0.000    0.000    0.000    0.000 _raw_api.py:270(SmartPointer)
+        2    0.000    0.000    0.000    0.000 six.py:178(__init__)
+        2    0.000    0.000    0.000    0.000 __version__.py:1()
+        1    0.000    0.000    0.000    0.000 :52(normcase)
+        1    0.000    0.000    0.000    0.000 {method 'split' of 're.Pattern' objects}
+        1    0.000    0.000    0.000    0.000 _dict.py:107()
+        1    0.000    0.000    0.000    0.000 _dict.py:111()
+        1    0.000    0.000    0.000    0.000 _default.py:47(axes_init)
+        1    0.000    0.000    0.000    0.000 pydoc.py:1550(_PlainTextDoc)
+        1    0.000    0.000    0.000    0.000 internal_apiserver_v1alpha1_api.py:27(InternalApiserverV1alpha1Api)
+        1    0.000    0.000    0.000    0.000 authorization_v1_api.py:27(AuthorizationV1Api)
+        1    0.000    0.000    0.000    0.000 coordination_v1alpha2_api.py:27(CoordinationV1alpha2Api)
+        1    0.000    0.000    0.000    0.000 coordination_v1beta1_api.py:27(CoordinationV1beta1Api)
+        1    0.000    0.000    0.000    0.000 signer.py:48(HMACAlgorithm)
+        1    0.000    0.000    0.000    0.000 difflib.py:1666(HtmlDiff)
+        1    0.000    0.000    0.000    0.000 rules.py:258(RuleTemplateFactory)
+        1    0.000    0.000    0.000    0.000 sessions.py:288(SecureCookieSessionInterface)
+        1    0.000    0.000    0.000    0.000 sessions.py:95(NullSession)
+        1    0.000    0.000    0.000    0.000 hooks.py:402(EventAliaser)
+        1    0.000    0.000    0.000    0.000 response.py:38(StreamingBody)
+        2    0.000    0.000    0.000    0.000 six.py:91(_LazyDescr)
+        1    0.000    0.000    0.000    0.000 docstringparser.py:243(DataNode)
+        1    0.000    0.000    0.000    0.000 docstringparser.py:22(DocStringParser)
+        1    0.000    0.000    0.000    0.000 exceptions.py:389(NotAcceptable)
+        1    0.000    0.000    0.000    0.000 exceptions.py:549(ExpectationFailed)
+        1    0.000    0.000    0.000    0.000 eventstream.py:40(InvalidHeadersLength)
+        1    0.000    0.000    0.000    0.000 serialize.py:345(JSONSerializer)
+        1    0.000    0.000    0.000    0.000 shape.py:22(ShapeDocumenter)
+        1    0.000    0.000    0.000    0.000 utils.py:1706(S3RegionRedirectorv2)
+        1    0.000    0.000    0.000    0.000 errors.py:198(MissingCodeChallengeError)
+        1    0.000    0.000    0.000    0.000 server.py:642(SimpleHTTPRequestHandler)
+        1    0.000    0.000    0.000    0.000 flow.py:319(InstalledAppFlow)
+        1    0.000    0.000    0.000    0.000 core.py:4661(_IndentGreater)
+        3    0.000    0.000    0.000    0.000 core.py:2446(_generateDefaultName)
+        1    0.000    0.000    0.000    0.000 structures.py:13(CaseInsensitiveDict)
+        1    0.000    0.000    0.000    0.000 auth.py:107(HTTPDigestAuth)
+        1    0.000    0.000    0.000    0.000 requests.py:116(Request)
+        1    0.000    0.000    0.000    0.000 probe.py:13(__init__)
+        1    0.000    0.000    0.000    0.000 {method 'string' of '_cffi_backend.FFI' objects}
+        1    0.000    0.000    0.000    0.000 ec.py:217(_EllipticCurvePublicKey)
+        1    0.000    0.000    0.000    0.000 extensions.py:476(DeltaCRLIndicator)
+        1    0.000    0.000    0.000    0.000 extensions.py:1009(OCSPNoCheck)
+        1    0.000    0.000    0.000    0.000 general_name.py:184(RegisteredID)
+        1    0.000    0.000    0.000    0.000 _base_key.py:1()
+        1    0.000    0.000    0.000    0.000 markdown.py:192(BlockQuote)
+        1    0.000    0.000    0.000    0.000 llm_caching_handler.py:10(LLMClientCache)
+        1    0.000    0.000    0.000    0.000 handler.py:7(BedrockBatchesHandler)
+        1    0.000    0.000    0.000    0.000 gemini.py:28(GeminiCreateFilesResponseObject)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:553(EmbedContentRequest)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:597(OutputInfo)
+        1    0.000    0.000    0.000    0.000 literal_ai.py:20(LiteralAILogger)
+        1    0.000    0.000    0.000    0.000 lexer.py:297(TokenStreamIterator)
+        1    0.000    0.000    0.000    0.000 _collections.py:28(Pair)
+        1    0.000    0.000    0.000    0.000 __init__.py:998(PathDistribution)
+        1    0.000    0.000    0.000    0.000 azure_blob_cache.py:20(AzureBlobCache)
+        1    0.000    0.000    0.000    0.000 pickle.py:200(_Framer)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:519(AddrSpec)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:271(UniqueUnstructuredHeader)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:12(Address)
+        1    0.000    0.000    0.000    0.000 nodes.py:1177(EvalContextModifier)
+        1    0.000    0.000    0.000    0.000 nodes.py:1190(ScopedEvalContextModifier)
+        1    0.000    0.000    0.000    0.000 nodes.py:1001(Or)
+        1    0.000    0.000    0.000    0.000 nodes.py:1158(OverlayScope)
+        1    0.000    0.000    0.000    0.000 custom_llm.py:34(CustomLLMError)
+        1    0.000    0.000    0.000    0.000 ibm_detector.py:46(IBMDetectorResponseOrchestrator)
+        1    0.000    0.000    0.000    0.000 assistant_create_params.py:134(ToolResourcesCodeInterpreter)
+        1    0.000    0.000    0.000    0.000 run_create_params.py:207(AdditionalMessage)
+        1    0.000    0.000    0.000    0.000 responses_client_event_param.py:29(ContextManagement)
+        1    0.000    0.000    0.000    0.000 score_model_grader_param.py:118(ScoreModelGraderParam)
+        1    0.000    0.000    0.000    0.000 live_render.py:20(LiveRender)
+        4    0.000    0.000    0.000    0.000 _synchronization.py:308(__enter__)
+        1    0.000    0.000    0.000    0.000 _sockets.py:125(SocketListener)
+        1    0.000    0.000    0.000    0.000 _streams.py:190(Listener)
+        1    0.000    0.000    0.000    0.000 readers.py:31(ZipReader)
+        1    0.000    0.000    0.000    0.000 client.py:1398(HTTPSConnection)
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha3_384}
+        1    0.000    0.000    0.000    0.000 request.py:1256(AbstractHTTPHandler)
+        1    0.000    0.000    0.000    0.000 ssl.py:185(_TLSAlertType)
+        1    0.000    0.000    0.000    0.000 _urls.py:168(host)
+        1    0.000    0.000    0.000    0.000 message.py:405(__len__)
+        1    0.000    0.000    0.000    0.000 socket.py:663(SocketIO)
+        1    0.000    0.000    0.000    0.000 __init__.py:922(PathDistribution)
+        1    0.000    0.000    0.000    0.000 types.py:2764(Discriminator)
+        1    0.000    0.000    0.000    0.000 _core_metadata.py:35(CoreMetadataHandler)
+        1    0.000    0.000    0.000    0.000 _model_construction.py:634(_DeprecatedFieldDescriptor)
+        1    0.000    0.000    0.000    0.000 fields.py:992(ComputedFieldInfo)
+        2    0.000    0.000    0.000    0.000 argparse.py:1282(__init__)
+        1    0.000    0.000    0.000    0.000 __init__.py:531(Formatter)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:806(SupportsComplex)
+        1    0.000    0.000    0.000    0.000 pathlib.py:232(_PosixFlavour)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:563(_BaseAddress)
+        1    0.000    0.000    0.000    0.000 random.py:787(SystemRandom)
+        1    0.000    0.000    0.000    0.000 datetime.py:1284(IsoCalendarDate)
+        1    0.000    0.000    0.000    0.000 __init__.py:6()
+        1    0.000    0.000    0.000    0.000 selectors.py:433(PollSelector)
+        1    0.000    0.000    0.000    0.000 _raw_api.py:252(VoidPointer_ctypes)
+        1    0.000    0.000    0.000    0.000 __init__.py:156(py_object)
+        1    0.000    0.000    0.000    0.000 __init__.py:399(PyDLL)
+        1    0.000    0.000    0.000    0.000 exceptions.py:6(ExceptionPexpect)
+        1    0.000    0.000    0.000    0.000 expect.py:5(Expecter)
+        2    0.000    0.000    0.000    0.000 {method 'clear' of 'list' objects}
+        3    0.000    0.000    0.000    0.000 subprocess.py:1917(_internal_poll)
+        1    0.000    0.000    0.000    0.000 context.py:230(DefaultContext)
+        1    0.000    0.000    0.000    0.000 process.py:397(_MainProcess)
+        1    0.000    0.000    0.000    0.000 credentials.py:161(ProfileProviderBuilder)
+        1    0.000    0.000    0.000    0.000 credentials.py:1296(ConfigProvider)
+        2    0.000    0.000    0.000    0.000 six.py:108(MovedModule)
+        1    0.000    0.000    0.000    0.000 utils.py:568(InstanceMetadataFetcher)
+        1    0.000    0.000    0.000    0.000 base.py:11(BaseRetryableChecker)
+        1    0.000    0.000    0.000    0.000 resource.py:37(ResourceDocumenter)
+        1    0.000    0.000    0.000    0.000 exceptions.py:418(Conflict)
+        1    0.000    0.000    0.000    0.000 eventstream.py:64(NoInitialResponseError)
+        1    0.000    0.000    0.000    0.000 eventstream.py:334(EventStreamMessage)
+        1    0.000    0.000    0.000    0.000 eventstream.py:26(ParserError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:152(InsecureRequestWarning)
+        1    0.000    0.000    0.000    0.000 headers.py:28(Headers)
+        1    0.000    0.000    0.000    0.000 errors.py:169(MissingRedirectURIError)
+        1    0.000    0.000    0.000    0.000 errors.py:173(MismatchingRedirectURIError)
+        1    0.000    0.000    0.000    0.000 _collections.py:65(RecentlyUsedContainer)
+        1    0.000    0.000    0.000    0.000 requests.py:49(_Response)
+        1    0.000    0.000    0.000    0.000 ssl_.py:60(_is_has_never_check_common_name_reliable)
+        1    0.000    0.000    0.000    0.000 extensions.py:1028(PrecertPoison)
+        1    0.000    0.000    0.000    0.000 _stack.py:6(Stack)
+        2    0.000    0.000    0.000    0.000 main.py:1069(__getattr__)
+        1    0.000    0.000    0.000    0.000 client_initalization_utils.py:14(InitalizeCachedClient)
+        1    0.000    0.000    0.000    0.000 ElementTree.py:525(ElementTree)
+        1    0.000    0.000    0.000    0.000 bedrock.py:792(AmazonNovaCanvasTextToImageResponse)
+        2    0.000    0.000    0.000    0.000 __init__.py:736(Context)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:104(Group)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:291(AddressList)
+        1    0.000    0.000    0.000    0.000 client_reqrep.py:105(_gen_default_accept_encoding)
+        1    0.000    0.000    0.000    0.000 streams.py:718(FlowControlDataQueue)
+        1    0.000    0.000    0.000    0.000 transcription_create_params.py:22(TranscriptionCreateParamsBase)
+        1    0.000    0.000    0.000    0.000 utils.py:5356(PotentialModelNamesAndCustomLLMProvider)
+        1    0.000    0.000    0.000    0.000 image_file_content_block_param.py:12(ImageFileContentBlockParam)
+        1    0.000    0.000    0.000    0.000 _tools.py:29(ResponsesPydanticFunctionTool)
+        1    0.000    0.000    0.000    0.000 vector_store_update_params.py:13(VectorStoreUpdateParams)
+        1    0.000    0.000    0.000    0.000 _base_client.py:281(AsyncPaginator)
+        1    0.000    0.000    0.000    0.000 chat_completion_content_part_text_param.py:10(ChatCompletionContentPartTextParam)
+        1    0.000    0.000    0.000    0.000 namespace_tool_param.py:28(NamespaceToolParam)
+        1    0.000    0.000    0.000    0.000 transports.py:9(BaseTransport)
+        1    0.000    0.000    0.000    0.000 _models.py:835(FinalRequestOptionsInput)
+        2    0.000    0.000    0.000    0.000 types.py:672(__init__)
+        1    0.000    0.000    0.000    0.000 configparser.py:1256(SectionProxy)
+        1    0.000    0.000    0.000    0.000 http11.py:332(__init__)
+        1    0.000    0.000    0.000    0.000 _events.py:357(ConnectionClosed)
+        1    0.000    0.000    0.000    0.000 base.py:65(AsyncBaseTransport)
+        1    0.000    0.000    0.000    0.000 _streams.py:98(ObjectStream)
+        1    0.000    0.000    0.000    0.000 _client.py:68(UseClientDefault)
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_shake_256}
+        1    0.000    0.000    0.000    0.000 _models.py:553(reason_phrase)
+        1    0.000    0.000    0.000    0.000 _urls.py:134(raw_scheme)
+        1    0.000    0.000    0.000    0.000 types.py:3026(_OnErrorOmit)
+        1    0.000    0.000    0.000    0.000 annotated_handlers.py:23(GetJsonSchemaHandler)
+        1    0.000    0.000    0.000    0.000 functional_validators.py:781(SkipValidation)
+        1    0.000    0.000    0.000    0.000 fields.py:895(ModelPrivateAttr)
+        1    0.000    0.000    0.000    0.000 __init__.py:473(__init__)
+        1    0.000    0.000    0.000    0.000 loader.py:31(SafeLoader)
+        1    0.000    0.000    0.000    0.000 RSA.py:580(InputComps)
+        1    0.000    0.000    0.000    0.000 threading.py:410(Semaphore)
+        1    0.000    0.000    0.000    0.000 SHA1.py:49(SHA1Hash)
+        1    0.000    0.000    0.000    0.000 {method 'disable' of '_lsprof.Profiler' objects}
+        1    0.000    0.000    0.000    0.000 {built-in method _codecs.lookup}
+        1    0.000    0.000    0.000    0.000 parse.py:421(_checknetloc)
+        1    0.000    0.000    0.000    0.000 _config.py:179(_load_client_certs)
+        3    0.000    0.000    0.000    0.000 text.py:860(truncate)
+        2    0.000    0.000    0.000    0.000 _figure.py:82(_set_slots_max)
+        3    0.000    0.000    0.000    0.000 _utility.py:417()
+        1    0.000    0.000    0.000    0.000 _dict.py:115()
+        1    0.000    0.000    0.000    0.000 _dict.py:140()
+        2    0.000    0.000    0.000    0.000 _monitor.py:26(set_date)
+        1    0.000    0.000    0.000    0.000 kube_config.py:667(KubeConfigMerger)
+        1    0.000    0.000    0.000    0.000 certificates_v1alpha1_api.py:27(CertificatesV1alpha1Api)
+        1    0.000    0.000    0.000    0.000 converters.py:127(NumberConverter)
+        1    0.000    0.000    0.000    0.000 ctx.py:287(RequestContext)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:581(ParameterDefinition)
+        1    0.000    0.000    0.000    0.000 model.py:257(ListShape)
+        1    0.000    0.000    0.000    0.000 _parser.py:394(_ymd)
+        1    0.000    0.000    0.000    0.000 utils.py:1658(S3ExpressIdentityResolver)
+        1    0.000    0.000    0.000    0.000 translate.py:1()
+        1    0.000    0.000    0.000    0.000 exceptions.py:325(Forbidden)
+        1    0.000    0.000    0.000    0.000 exceptions.py:435(Gone)
+        1    0.000    0.000    0.000    0.000 range.py:34(Range)
+        1    0.000    0.000    0.000    0.000 mixins.py:12(ImmutableListMixin)
+        1    0.000    0.000    0.000    0.000 user_agent.py:4(UserAgent)
+        1    0.000    0.000    0.000    0.000 eventstream.py:56(ChecksumMismatch)
+        1    0.000    0.000    0.000    0.000 client.py:403(ClientContextParamsDocumenter)
+        1    0.000    0.000    0.000    0.000 errors.py:304(UnauthorizedClientError)
+        1    0.000    0.000    0.000    0.000 errors.py:312(UnsupportedGrantTypeError)
+        1    0.000    0.000    0.000    0.000 errors.py:368(LoginRequired)
+        1    0.000    0.000    0.000    0.000 authorization_code.py:64(AuthorizationCodeGrant)
+        1    0.000    0.000    0.000    0.000 errors.py:185(InvalidRequestError)
+        1    0.000    0.000    0.000    0.000 errors.py:210(MissingCodeVerifierError)
+        1    0.000    0.000    0.000    0.000 errors.py:233(UnsupportedCodeChallengeMethodError)
+        1    0.000    0.000    0.000    0.000 errors.py:275(InvalidClientError)
+        1    0.000    0.000    0.000    0.000 errors.py:291(InvalidGrantError)
+        1    0.000    0.000    0.000    0.000 errors.py:343(InsufficientScopeError)
+        1    0.000    0.000    0.000    0.000 errors.py:11(OAuth1Error)
+        1    0.000    0.000    0.000    0.000 core.py:2315(_PendingSkip)
+        1    0.000    0.000    0.000    0.000 util.py:129(LRUMemo)
+        1    0.000    0.000    0.000    0.000 dh.py:39(_DHParameters)
+        1    0.000    0.000    0.000    0.000 environment_vars.py:1()
+        1    0.000    0.000    0.000    0.000 exceptions.py:18(GoogleAuthError)
+        1    0.000    0.000    0.000    0.000 algorithms.py:195(ChaCha20)
+        1    0.000    0.000    0.000    0.000 _oid.py:170(CertificatePoliciesOID)
+        1    0.000    0.000    0.000    0.000 ec.py:40(EllipticCurve)
+        1    0.000    0.000    0.000    0.000 context_handler.py:7(__init__)
+        1    0.000    0.000    0.000    0.000 plugins.py:10(__init__)
+        1    0.000    0.000    0.000    0.000 bedrock_ingestion.py:63(BedrockRAGIngestion)
+        1    0.000    0.000    0.000    0.000 exceptions.py:34(ConnectionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:30(HTTPError)
+        1    0.000    0.000    0.000    0.000 vertex_ai_ingestion.py:29(VertexAIRAGIngestion)
+        1    0.000    0.000    0.000    0.000 handler.py:15(ResponsesToCompletionBridgeHandlerInputKwargs)
+        1    0.000    0.000    0.000    0.000 streaming_utils.py:14(ModelResponseIterator)
+        1    0.000    0.000    0.000    0.000 lago.py:31(LagoLogger)
+        1    0.000    0.000    0.000    0.000 runtime.py:122(TemplateReference)
+        1    0.000    0.000    0.000    0.000 connector.py:232(_ConnectTunnelConnection)
+        1    0.000    0.000    0.000    0.000 sqs.py:41(SQSLogger)
+        1    0.000    0.000    0.000    0.000 datadog_llm_obs.py:82(DDLLMObsLatencyMetrics)
+        1    0.000    0.000    0.000    0.000 _types.py:4312(DailyOrganizationSpendTransaction)
+        1    0.000    0.000    0.000    0.000 _types.py:4320(DailyEndUserSpendTransaction)
+        1    0.000    0.000    0.000    0.000 _types.py:4417(ResponseLiteLLM_ManagedVectorStore)
+        1    0.000    0.000    0.000    0.000 _types.py:4235(PrismaCompatibleUpdateDBModel)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:322(UniqueDateHeader)
+        1    0.000    0.000    0.000    0.000 multipart.py:568(BodyPartReaderPayload)
+        1    0.000    0.000    0.000    0.000 utils.py:666(Cycler)
+        2    0.000    0.000    0.000    0.000 handler.py:186(__init__)
+        1    0.000    0.000    0.000    0.000 _assistants.py:424(AssistantStreamManager)
+        1    0.000    0.000    0.000    0.000 _qs.py:23(Querystring)
+        1    0.000    0.000    0.000    0.000 completion_create_params.py:14(CompletionCreateParamsBase)
+        1    0.000    0.000    0.000    0.000 selector_events.py:752(_SelectorTransport)
+        1    0.000    0.000    0.000    0.000 unix_events.py:594(_UnixWritePipeTransport)
+        1    0.000    0.000    0.000    0.000 streams.py:181(StreamReaderProtocol)
+        1    0.000    0.000    0.000    0.000 tool_param.py:241(ImageGeneration)
+        1    0.000    0.000    0.000    0.000 __init__.py:687(KeywordCaseFilter)
+        1    0.000    0.000    0.000    0.000 converters.py:66(default_if_none)
+        1    0.000    0.000    0.000    0.000 _compat.py:78(_FixupStream)
+        1    0.000    0.000    0.000    0.000 _streams.py:52(UnreliableObjectSendStream)
+        1    0.000    0.000    0.000    0.000 _streams.py:149(ByteSendStream)
+        1    0.000    0.000    0.000    0.000 _streams.py:161(ByteStream)
+        3    0.000    0.000    0.000    0.000 core.py:67(_check_multicommand)
+        1    0.000    0.000    0.000    0.000 _decoders.py:206(ByteChunker)
+        2    0.000    0.000    0.000    0.000 _config.py:297(__init__)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:341(Semaphore)
+        1    0.000    0.000    0.000    0.000 abc.py:230(ExecutionLoader)
+        1    0.000    0.000    0.000    0.000 request.py:2399(ftpwrapper)
+        1    0.000    0.000    0.000    0.000 request.py:1588(CacheFTPHandler)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:107(RequestError)
+        1    0.000    0.000    0.000    0.000 _multipart.py:84(FileField)
+        1    0.000    0.000    0.000    0.000 _utils.py:318(URLPattern)
+        1    0.000    0.000    0.000    0.000 calendar.py:74()
+        1    0.000    0.000    0.000    0.000 _client.py:772(_transport_for_url)
+        1    0.000    0.000    0.000    0.000 __init__.py:412(Deprecated)
+        1    0.000    0.000    0.000    0.000 __init__.py:467(SelectableGroups)
+        1    0.000    0.000    0.000    0.000 types.py:2942(_AllowAnyJson)
+        1    0.000    0.000    0.000    0.000 zipfile.py:2240(CompleteDirs)
+        1    0.000    0.000    0.000    0.000 _decorators.py:158(PydanticDescriptorProxy)
+        1    0.000    0.000    0.000    0.000 errors.py:95(PydanticUndefinedAnnotation)
+        1    0.000    0.000    0.000    0.000 __init__.py:280(LogRecord)
+        1    0.000    0.000    0.000    0.000 argparse.py:1340(_ActionsContainer)
+        3    0.000    0.000    0.000    0.000 __init__.py:983(setFormatter)
+        1    0.000    0.000    0.000    0.000 pathlib.py:301(_Selector)
+        1    0.000    0.000    0.000    0.000 _compression.py:9(BaseStream)
+        1    0.000    0.000    0.000    0.000 traceback.py:615(_ExceptionPrintContext)
+        1    0.000    0.000    0.000    0.000 _monitor.py:69(lines_init)
+        1    0.000    0.000    0.000    0.000 _default.py:75(bar_init)
+        1    0.000    0.000    0.000    0.000 _doc_utils.py:74(parameters_class)
+        1    0.000    0.000    0.000    0.000 _dict.py:119()
+        1    0.000    0.000    0.000    0.000 _dict.py:123()
+        1    0.000    0.000    0.000    0.000 _dict.py:135()
+        1    0.000    0.000    0.000    0.000 _dict.py:144()
+        1    0.000    0.000    0.000    0.000 _dict.py:152()
+        2    0.000    0.000    0.000    0.000 _default.py:17(set_size_term)
+        1    0.000    0.000    0.000    0.000 _figure.py:62(_limit_size)
+        1    0.000    0.000    0.000    0.000 certificates_v1beta1_api.py:27(CertificatesV1beta1Api)
+        1    0.000    0.000    0.000    0.000 pool.py:150(_PoolCache)
+        1    0.000    0.000    0.000    0.000 reduction.py:251(AbstractReducer)
+        1    0.000    0.000    0.000    0.000 pool.py:921(ThreadPool)
+        1    0.000    0.000    0.000    0.000 cli.py:391(AppGroup)
+        1    0.000    0.000    0.000    0.000 tag.py:219(TaggedJSONSerializer)
+        1    0.000    0.000    0.000    0.000 endpoint.py:77(Endpoint)
+        1    0.000    0.000    0.000    0.000 httpchecksum.py:86(CrtCrc32Checksum)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:551(RuleCreator)
+        1    0.000    0.000    0.000    0.000 credentials.py:1818(CanonicalNameCredentialSourcer)
+        2    0.000    0.000    0.000    0.000 six.py:144(MovedAttribute)
+        1    0.000    0.000    0.000    0.000 docstringparser.py:163(TagNode)
+        1    0.000    0.000    0.000    0.000 exceptions.py:340(NotFound)
+        1    0.000    0.000    0.000    0.000 exceptions.py:405(RequestTimeout)
+        1    0.000    0.000    0.000    0.000 exceptions.py:463(PreconditionFailed)
+        1    0.000    0.000    0.000    0.000 exceptions.py:487(RequestURITooLarge)
+        1    0.000    0.000    0.000    0.000 exceptions.py:500(UnsupportedMediaType)
+        1    0.000    0.000    0.000    0.000 exceptions.py:223(ClientDisconnected)
+        1    0.000    0.000    0.000    0.000 exceptions.py:238(SecurityError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:246(BadHost)
+        1    0.000    0.000    0.000    0.000 multipart.py:77(MultipartDecoder)
+        1    0.000    0.000    0.000    0.000 serialize.py:704(RestXMLSerializer)
+        1    0.000    0.000    0.000    0.000 sharedexample.py:20(SharedExampleDocumenter)
+        1    0.000    0.000    0.000    0.000 params.py:17(BaseParamsDocumenter)
+        1    0.000    0.000    0.000    0.000 serialize.py:75(Serializer)
+        1    0.000    0.000    0.000    0.000 errors.py:320(UnsupportedTokenTypeError)
+        1    0.000    0.000    0.000    0.000 errors.py:357(ConsentRequired)
+        1    0.000    0.000    0.000    0.000 exceptions.py:167(ResponseNotChunked)
+        1    0.000    0.000    0.000    0.000 exceptions.py:162(InsecurePlatformWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:157(SystemTimeWarning)
+        1    0.000    0.000    0.000    0.000 oauth2_auth.py:6(OAuth2)
+        1    0.000    0.000    0.000    0.000 errors.py:177(InvalidClientIdError)
+        1    0.000    0.000    0.000    0.000 errors.py:181(MissingClientIdError)
+        1    0.000    0.000    0.000    0.000 errors.py:194(MissingResponseTypeError)
+        1    0.000    0.000    0.000    0.000 errors.py:245(InvalidScopeError)
+        1    0.000    0.000    0.000    0.000 socketserver.py:522(UDPServer)
+        1    0.000    0.000    0.000    0.000 generator.py:407(BytesGenerator)
+        1    0.000    0.000    0.000    0.000 __init__.py:562(DigestAuthentication)
+        1    0.000    0.000    0.000    0.000 __init__.py:852(ProxyInfo)
+        1    0.000    0.000    0.000    0.000 exceptions.py:274(ParseFatalException)
+        1    0.000    0.000    0.000    0.000 exceptions.py:281(ParseSyntaxException)
+        1    0.000    0.000    0.000    0.000 core.py:2383(Literal)
+        1    0.000    0.000    0.000    0.000 general_helpers.py:1()
+        1    0.000    0.000    0.000    0.000 hashes.py:15(_HashContext)
+        1    0.000    0.000    0.000    0.000 scrypt.py:24(Scrypt)
+        1    0.000    0.000    0.000    0.000 _request_methods.py:20(RequestMethods)
+        1    0.000    0.000    0.000    0.000 name.py:60()
+        1    0.000    0.000    0.000    0.000 _http_client.py:28(Response)
+        1    0.000    0.000    0.000    0.000 dsa.py:173(DSAPublicNumbers)
+        1    0.000    0.000    0.000    0.000 ec.py:443(EllipticCurvePrivateNumbers)
+        1    0.000    0.000    0.000    0.000 dh.py:70(DHPublicNumbers)
+        1    0.000    0.000    0.000    0.000 dh.py:108(DHPrivateNumbers)
+        1    0.000    0.000    0.000    0.000 __init__.py:280(RRCache)
+        1    0.000    0.000    0.000    0.000 _cipheralgorithm.py:33(BlockCipherAlgorithm)
+        1    0.000    0.000    0.000    0.000 _argparse.py:555(HelpPreviewAction)
+        1    0.000    0.000    0.000    0.000 table_zero.py:1()
+        1    0.000    0.000    0.000    0.000 sequences.py:244(Sequence)
+        1    0.000    0.000    0.000    0.000 markdown.py:96(TextElement)
+        1    0.000    0.000    0.000    0.000 markdown.py:230(TableElement)
+        1    0.000    0.000    0.000    0.000 _url.py:6(URL)
+        1    0.000    0.000    0.000    0.000 exceptions.py:42(SSLError)
+        1    0.000    0.000    0.000    0.000 openai_ingestion.py:22(OpenAIRAGIngestion)
+        1    0.000    0.000    0.000    0.000 aiohttp_handler.py:36(__init__)
+        3    0.000    0.000    0.000    0.000 common_utils.py:18(__init__)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:212(BaseVectorStoreAuthCredentials)
+        1    0.000    0.000    0.000    0.000 s3.py:12(S3Logger)
+        2    0.000    0.000    0.000    0.000 __init__.py:999(__init__)
+        1    0.000    0.000    0.000    0.000 gzip.py:75(_PaddedFile)
+        1    0.000    0.000    0.000    0.000 _types.py:4316(DailyUserSpendTransaction)
+        1    0.000    0.000    0.000    0.000 _structures.py:35(NegativeInfinityType)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:382(UniqueAddressHeader)
+        1    0.000    0.000    0.000    0.000 payload.py:930(BufferedReaderPayload)
+        1    0.000    0.000    0.000    0.000 payload.py:96(PayloadRegistry)
+        1    0.000    0.000    0.000    0.000 exceptions.py:773(JSONSchemaValidationError)
+        1    0.000    0.000    0.000    0.000 assistant_create_params.py:206(ToolResourcesFileSearch)
+        1    0.000    0.000    0.000    0.000 assistant_create_params.py:224(ToolResources)
+        1    0.000    0.000    0.000    0.000 run_create_params.py:234(TruncationStrategy)
+        1    0.000    0.000    0.000    0.000 pkgutil.py:269(ImpLoader)
+        1    0.000    0.000    0.000    0.000 _response.py:642(AsyncResponseContextManager)
+        1    0.000    0.000    0.000    0.000 thread_create_params.py:118(ToolResourcesFileSearchVectorStoreChunkingStrategyStaticStatic)
+        1    0.000    0.000    0.000    0.000 thread_create_params.py:108(ToolResourcesFileSearchVectorStoreChunkingStrategyAuto)
+        1    0.000    0.000    0.000    0.000 assistant_create_params.py:28(AssistantCreateParams)
+        1    0.000    0.000    0.000    0.000 responses_client_event_param.py:40(StreamOptions)
+        1    0.000    0.000    0.000    0.000 file_content.py:1()
+        1    0.000    0.000    0.000    0.000 unix_events.py:1212(MultiLoopChildWatcher)
+        1    0.000    0.000    0.000    0.000 unix_events.py:458(_UnixReadPipeTransport)
+        1    0.000    0.000    0.000    0.000 skill_list_params.py:10(SkillListParams)
+        1    0.000    0.000    0.000    0.000 gzip.py:455(_GzipReader)
+        1    0.000    0.000    0.000    0.000 events.py:98(TimerHandle)
+        1    0.000    0.000    0.000    0.000 lexer.py:498(RegexLexerMeta)
+        1    0.000    0.000    0.000    0.000 _log_render.py:15(__init__)
+        1    0.000    0.000    0.000    0.000 _extension.py:1()
+        1    0.000    0.000    0.000    0.000 _receivebuffer.py:64(__bytes__)
+        1    0.000    0.000    0.000    0.000 interfaces.py:85(AsyncConnectionInterface)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:187(LockAdapter)
+        1    0.000    0.000    0.000    0.000 env_utils.py:1()
+        1    0.000    0.000    0.000    0.000 _client.py:113(BoundSyncStream)
+        1    0.000    0.000    0.000    0.000 ssl.py:227(_TLSMessageType)
+        1    0.000    0.000    0.000    0.000 request.py:834(HTTPPasswordMgr)
+        1    0.000    0.000    0.000    0.000 request.py:1398(HTTPCookieProcessor)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:353(RequestNotRead)
+        1    0.000    0.000    0.000    0.000 _urls.py:195(raw_host)
+        1    0.000    0.000    0.000    0.000 zipfile.py:621(LZMACompressor)
+        1    0.000    0.000    0.000    0.000 types.py:2416(EncodedStr)
+        1    0.000    0.000    0.000    0.000 types.py:2628(GetPydanticSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2457(UnionSchema)
+        1    0.000    0.000    0.000    0.000 warnings.py:15(PydanticDeprecationWarning)
+        1    0.000    0.000    0.000    0.000 argparse.py:1004(_StoreFalseAction)
+        1    0.000    0.000    0.000    0.000 selectors.py:60(_SelectorMapping)
+        1    0.000    0.000    0.000    0.000 asn1.py:708(DerObjectId)
+        1    0.000    0.000    0.000    0.000 asn1.py:826(DerBitString)
+        1    0.000    0.000    0.000    0.000 subprocess.py:481(__init__)
+        1    0.000    0.000    0.000    0.000 threading.py:1421(_DummyThread)
+        1    0.000    0.000    0.000    0.000 {method 'title' of 'str' objects}
+        1    0.000    0.000    0.000    0.000 {method 'rstrip' of 'bytes' objects}
+        2    0.000    0.000    0.000    0.000 {method 'getvalue' of '_io.BytesIO' objects}
+        2    0.000    0.000    0.000    0.000 {method 'fileno' of '_socket.socket' objects}
+        1    0.000    0.000    0.000    0.000 _dict.py:127()
+        1    0.000    0.000    0.000    0.000 _dict.py:148()
+        2    0.000    0.000    0.000    0.000 _default.py:12(set_limitsize)
+        1    0.000    0.000    0.000    0.000 resource.py:22(Resource)
+        1    0.000    0.000    0.000    0.000 node_v1_api.py:27(NodeV1Api)
+        1    0.000    0.000    0.000    0.000 authentication_api.py:27(AuthenticationApi)
+        1    0.000    0.000    0.000    0.000 well_known_api.py:27(WellKnownApi)
+        1    0.000    0.000    0.000    0.000 incluster_config.py:37(InClusterConfigLoader)
+        1    0.000    0.000    0.000    0.000 connection.py:578(SocketListener)
+        1    0.000    0.000    0.000    0.000 response.py:789(ResponseStream)
+        1    0.000    0.000    0.000    0.000 converters.py:198(FloatConverter)
+        1    0.000    0.000    0.000    0.000 difflib.py:724(Differ)
+        1    0.000    0.000    0.000    0.000 httpchecksum.py:134(AwsChunkedWrapper)
+        1    0.000    0.000    0.000    0.000 credentials.py:661(CachedCredentialFetcher)
+        1    0.000    0.000    0.000    0.000 credentials.py:1729(AssumeRoleWithWebIdentityProvider)
+        1    0.000    0.000    0.000    0.000 credentials.py:986(ProcessProvider)
+        1    0.000    0.000    0.000    0.000 waiter.py:97(WaiterModel)
+        1    0.000    0.000    0.000    0.000 monitoring.py:68(MonitorEventAdapter)
+        1    0.000    0.000    0.000    0.000 exceptions.py:449(LengthRequired)
+        1    0.000    0.000    0.000    0.000 exceptions.py:476(RequestEntityTooLarge)
+        1    0.000    0.000    0.000    0.000 formparser.py:292(MultiPartParser)
+        1    0.000    0.000    0.000    0.000 serialize.py:434(BaseRestSerializer)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:53(AWSConnection)
+        1    0.000    0.000    0.000    0.000 web_application.py:18(WebApplicationClient)
+        1    0.000    0.000    0.000    0.000 socketserver.py:639(_Threads)
+        1    0.000    0.000    0.000    0.000 base.py:18(ValidatorsContainer)
+        1    0.000    0.000    0.000    0.000 google_auth_httplib2.py:32(_Response)
+        1    0.000    0.000    0.000    0.000 __init__.py:633(HmacDigestAuthentication)
+        1    0.000    0.000    0.000    0.000 __init__.py:835(KeyCerts)
+        1    0.000    0.000    0.000    0.000 __init__.py:784(FileCache)
+        1    0.000    0.000    0.000    0.000 __init__.py:1754(Response)
+        1    0.000    0.000    0.000    0.000 structures.py:86(__init__)
+        1    0.000    0.000    0.000    0.000 discovery.py:147(_BytesGenerator)
+        1    0.000    0.000    0.000    0.000 requests.py:196(_MutualTlsAdapter)
+        1    0.000    0.000    0.000    0.000 connectionpool.py:965(HTTPSConnectionPool)
+        1    0.000    0.000    0.000    0.000 hmac.py:19(_HMACContext)
+        1    0.000    0.000    0.000    0.000 algorithms.py:61(Camellia)
+        1    0.000    0.000    0.000    0.000 algorithms.py:74(TripleDES)
+        1    0.000    0.000    0.000    0.000 general_name.py:254(OtherName)
+        1    0.000    0.000    0.000    0.000 general_name.py:208(IPAddress)
+        1    0.000    0.000    0.000    0.000 ed25519.py:20(_Ed25519PublicKey)
+        1    0.000    0.000    0.000    0.000 dsa.py:217(DSAPrivateNumbers)
+        1    0.000    0.000    0.000    0.000 validators.py:5(Validators)
+        1    0.000    0.000    0.000    0.000 ai_service.py:4(AIService)
+        1    0.000    0.000    0.000    0.000 exceptions.py:38(ProxyError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:55(ConnectTimeout)
+        1    0.000    0.000    0.000    0.000 exceptions.py:46(Timeout)
+        1    0.000    0.000    0.000    0.000 gemini_ingestion.py:25(GeminiRAGIngestion)
+        1    0.000    0.000    0.000    0.000 ElementTree.py:1272(XMLPullParser)
+        1    0.000    0.000    0.000    0.000 openai.py:1629(__init__)
+        1    0.000    0.000    0.000    0.000 common_utils.py:910(CommonBatchFilesUtils)
+        1    0.000    0.000    0.000    0.000 visitor.py:16(NodeVisitor)
+        1    0.000    0.000    0.000    0.000 api.py:50(Api)
+        1    0.000    0.000    0.000    0.000 :35(__init__)
+        1    0.000    0.000    0.000    0.000 helpers.py:362(EnsureOctetStream)
+        1    0.000    0.000    0.000    0.000 _types.py:4308(DailyTeamSpendTransaction)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:397(UniqueSingleAddressHeader)
+        1    0.000    0.000    0.000    0.000 _abc.py:20(SupportsIKeys)
+        1    0.000    0.000    0.000    0.000 utils.py:2421(AdapterCompletionStreamWrapper)
+        1    0.000    0.000    0.000    0.000 openai.py:2158(OpenAIRealtimeTurnDetection)
+        1    0.000    0.000    0.000    0.000 assistant_create_params.py:180(ToolResourcesFileSearchVectorStore)
+        1    0.000    0.000    0.000    0.000 message_list_params.py:10(MessageListParams)
+        1    0.000    0.000    0.000    0.000 thread.py:46(_WorkItem)
+        1    0.000    0.000    0.000    0.000 vector_store_update_params.py:31(ExpiresAfter)
+        1    0.000    0.000    0.000    0.000 response_input_image_param.py:11(ResponseInputImageParam)
+        1    0.000    0.000    0.000    0.000 response_custom_tool_call_param.py:10(ResponseCustomToolCallParam)
+        1    0.000    0.000    0.000    0.000 response_function_tool_call_param.py:10(ResponseFunctionToolCallParam)
+        1    0.000    0.000    0.000    0.000 streams.py:301(StreamWriter)
+        1    0.000    0.000    0.000    0.000 __init__.py:275(_AmbiguousModuleClientUsageError)
+        1    0.000    0.000    0.000    0.000 datadog_llm_obs.py:69(DDIntakePayload)
+        1    0.000    0.000    0.000    0.000 model_param_helper.py:79(get_litellm_provider_specific_params_for_chat_params)
+        1    0.000    0.000    0.000    0.000 lexer.py:49(Lexer)
+        1    0.000    0.000    0.000    0.000 abc.py:4(RichRenderable)
+        1    0.000    0.000    0.000    0.000 util.py:122(make_analysator)
+        1    0.000    0.000    0.000    0.000 _util.py:59(LocalProtocolError)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:153(AsyncSemaphore)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:293(Semaphore)
+        1    0.000    0.000    0.000    0.000 stapled.py:22(StapledByteStream)
+        1    0.000    0.000    0.000    0.000 stapled.py:58(StapledObjectStream)
+        1    0.000    0.000    0.000    0.000 _base.py:141(_AcquireFutures)
+        1    0.000    0.000    0.000    0.000 _events.py:259(Data)
+        1    0.000    0.000    0.000    0.000 readers.py:107(NamespaceReader)
+        1    0.000    0.000    0.000    0.000 _auth.py:126(BasicAuth)
+        1    0.000    0.000    0.000    0.000 request.py:645(HTTPRedirectHandler)
+        1    0.000    0.000    0.000    0.000 request.py:791(ProxyHandler)
+        1    0.000    0.000    0.000    0.000 _parseaddr.py:211(AddrlistClass)
+        1    0.000    0.000    0.000    0.000 header.py:541(_Accumulator)
+        1    0.000    0.000    0.000    0.000 types.py:2319(EncodedBytes)
+        1    0.000    0.000    0.000    0.000 __init__.py:862(Prepared)
+        1    0.000    0.000    0.000    0.000 _generate_schema.py:2485(_CommonField)
+        1    0.000    0.000    0.000    0.000 json_schema.py:2370(WithJsonSchema)
+        1    0.000    0.000    0.000    0.000 __init__.py:472(MyLocal)
+        1    0.000    0.000    0.000    0.000 parser.py:47(Position)
+        1    0.000    0.000    0.000    0.000 hooks.py:8(MethodHook)
+        1    0.000    0.000    0.000    0.000 asn1.py:699(DerNull)
+        1    0.000    0.000    0.000    0.000 _endian.py:23(_swapped_meta)
+        1    0.000    0.000    0.000    0.000 threading.py:1370(Timer)
+        2    0.000    0.000    0.000    0.000 threading.py:568(is_set)
+        2    0.000    0.000    0.000    0.000 reprlib.py:9(recursive_repr)
+        2    0.000    0.000    0.000    0.000 {built-in method sys.audit}
+        2    0.000    0.000    0.000    0.000 {built-in method posix.WIFSTOPPED}
+        2    0.000    0.000    0.000    0.000 {built-in method posix.waitstatus_to_exitcode}
+        1    0.000    0.000    0.000    0.000 {built-in method math.sqrt}
+        1    0.000    0.000    0.000    0.000 __init__.py:351(__init__)
+        1    0.000    0.000    0.000    0.000 _argparse.py:285(_rich_usage_spans)
+        1    0.000    0.000    0.000    0.000 _default.py:81(confusion_matrix_init)
+        1    0.000    0.000    0.000    0.000 _default.py:66(draw_init)
+        1    0.000    0.000    0.000    0.000 tools.py:115(Sumarize)
+        1    0.000    0.000    0.000    0.000 discovery.py:319(EagerDiscoverer)
+        1    0.000    0.000    0.000    0.000 _dict.py:131()
+        1    0.000    0.000    0.000    0.000 _matrix.py:12(set_size)
+        1    0.000    0.000    0.000    0.000 resource.py:281(ResourceInstance)
+        1    0.000    0.000    0.000    0.000 rest.py:51(RESTClientObject)
+        1    0.000    0.000    0.000    0.000 apiregistration_api.py:27(ApiregistrationApi)
+        1    0.000    0.000    0.000    0.000 context.py:220(Process)
+        1    0.000    0.000    0.000    0.000 tag.py:60(JSONTag)
+        1    0.000    0.000    0.000    0.000 tag.py:159(TagBytes)
+        1    0.000    0.000    0.000    0.000 pool.py:80(MaybeEncodingError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:59(RequestAliasRedirect)
+        1    0.000    0.000    0.000    0.000 local.py:35(Local)
+        1    0.000    0.000    0.000    0.000 cli.py:293(ScriptInfo)
+        1    0.000    0.000    0.000    0.000 ctx.py:238(AppContext)
+        1    0.000    0.000    0.000    0.000 sessions.py:53(SecureCookieSession)
+        1    0.000    0.000    0.000    0.000 serialize.py:207(QuerySerializer)
+        1    0.000    0.000    0.000    0.000 httpchecksum.py:75(Crc32Checksum)
+        1    0.000    0.000    0.000    0.000 auth.py:125(SigV2Auth)
+        1    0.000    0.000    0.000    0.000 discovery.py:99(EndpointDiscoveryManager)
+        1    0.000    0.000    0.000    0.000 tokens.py:62(DeferredRefreshableToken)
+        1    0.000    0.000    0.000    0.000 credentials.py:2087(SSOCredentialFetcher)
+        1    0.000    0.000    0.000    0.000 quota.py:6(RetryQuota)
+        2    0.000    0.000    0.000    0.000 six.py:245(_MovedItems)
+        2    0.000    0.000    0.000    0.000 six.py:382(Module_six_moves_urllib_error)
+        1    0.000    0.000    0.000    0.000 session.py:1173(SessionVarDict)
+        1    0.000    0.000    0.000    0.000 utils.py:696(IMDSRegionProvider)
+        1    0.000    0.000    0.000    0.000 exceptions.py:841(__init__)
+        1    0.000    0.000    0.000    0.000 model.py:714(ShapeResolver)
+        1    0.000    0.000    0.000    0.000 accept.py:188(MIMEAccept)
+        1    0.000    0.000    0.000    0.000 docstring.py:19(LazyLoadedDocstring)
+        1    0.000    0.000    0.000    0.000 mobile_application.py:13(MobileApplicationClient)
+        1    0.000    0.000    0.000    0.000 _utilities.py:12(Symbol)
+        1    0.000    0.000    0.000    0.000 socketserver.py:551(ForkingMixIn)
+        1    0.000    0.000    0.000    0.000 common.py:331(Request)
+        1    0.000    0.000    0.000    0.000 flow.py:479(_RedirectWSGIApp)
+        1    0.000    0.000    0.000    0.000 exceptions.py:43(RequestError)
+        1    0.000    0.000    0.000    0.000 dsa.py:58(_DSAParameters)
+        1    0.000    0.000    0.000    0.000 algorithms.py:149(IDEA)
+        1    0.000    0.000    0.000    0.000 __init__.py:171(LFUCache)
+        1    0.000    0.000    0.000    0.000 __init__.py:143(FIFOCache)
+        1    0.000    0.000    0.000    0.000 webauthn_handler.py:22(PluginHandler)
+        1    0.000    0.000    0.000    0.000 _oid.py:161(AuthorityInformationAccessOID)
+        1    0.000    0.000    0.000    0.000 modes.py:109(CBC)
+        1    0.000    0.000    0.000    0.000 algorithms.py:41(AES128)
+        1    0.000    0.000    0.000    0.000 padding.py:81(MGF1)
+        1    0.000    0.000    0.000    0.000 base.py:41(AttributeNotFound)
+        1    0.000    0.000    0.000    0.000 base.py:11(BaseConsoleRender)
+        1    0.000    0.000    0.000    0.000 _list.py:10(List)
+        1    0.000    0.000    0.000    0.000 SHA256.py:49(SHA256Hash)
+        1    0.000    0.000    0.000    0.000 requests.py:72(TimeoutGuard)
+        1    0.000    0.000    0.000    0.000 provider.py:10(ServiceProvider)
+        1    0.000    0.000    0.000    0.000 parser_inline.py:54(ParserInline)
+        1    0.000    0.000    0.000    0.000 system_service.py:4(SystemService)
+        1    0.000    0.000    0.000    0.000 base.py:3(BaseService)
+        2    0.000    0.000    0.000    0.000 base.py:18(set_reserved_names)
+        2    0.000    0.000    0.000    0.000 events.py:4(Event)
+        1    0.000    0.000    0.000    0.000 linkify.py:144(_LinkType)
+        1    0.000    0.000    0.000    0.000 _argparse.py:124(_Section)
+        1    0.000    0.000    0.000    0.000 utils.py:13(OptionsType)
+        1    0.000    0.000    0.000    0.000 async_client_cleanup.py:1()
+        1    0.000    0.000    0.000    0.000 clientside_credential_handler.py:1()
+        1    0.000    0.000    0.000    0.000 ElementTree.py:1384(TreeBuilder)
+        1    0.000    0.000    0.000    0.000 gemini.py:83(BidiGenerateContentRealtimeInput)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:153(VectorStoreFileCounts)
+        1    0.000    0.000    0.000    0.000 bedrock.py:158(ContentBlock)
+        1    0.000    0.000    0.000    0.000 version.py:69(_BaseVersion)
+        1    0.000    0.000    0.000    0.000 compiler.py:252(DependencyFinderVisitor)
+        1    0.000    0.000    0.000    0.000 runtime.py:964(ChainableUndefined)
+        1    0.000    0.000    0.000    0.000 _compat.py:38(NullFinder)
+        1    0.000    0.000    0.000    0.000 __init__.py:913(Prepared)
+        1    0.000    0.000    0.000    0.000 _meta.py:51(SimplePath)
+        1    0.000    0.000    0.000    0.000 client_middleware_digest_auth.py:36(DigestAuthChallenge)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:335(MailboxList)
+        1    0.000    0.000    0.000    0.000 datadog_llm_obs.py:88(DDLLMObsSpendMetrics)
+        1    0.000    0.000    0.000    0.000 _types.py:4329(DailyAgentSpendTransaction)
+        1    0.000    0.000    0.000    0.000 abc.py:129(ResolveResult)
+        1    0.000    0.000    0.000    0.000 open_inference.py:170(MessageAttributes)
+        1    0.000    0.000    0.000    0.000 exceptions.py:1019(GuardrailInterventionNormalStringError)
+        1    0.000    0.000    0.000    0.000 utils.py:3325(HttpHandlerRequestFields)
+        1    0.000    0.000    0.000    0.000 utils.py:88(SafeAttributeModel)
+        1    0.000    0.000    0.000    0.000 utils.py:109(CostPerToken)
+        1    0.000    0.000    0.000    0.000 assistant_create_params.py:168(ToolResourcesFileSearchVectorStoreChunkingStrategyStatic)
+        1    0.000    0.000    0.000    0.000 job_create_params.py:17(JobCreateParams)
+        1    0.000    0.000    0.000    0.000 utils.py:7506(CustomModelResponseIterator)
+        1    0.000    0.000    0.000    0.000 queue.py:223(PriorityQueue)
+        1    0.000    0.000    0.000    0.000 openai.py:538(WebSearchOptionsUserLocationApproximate)
+        1    0.000    0.000    0.000    0.000 _response.py:618(ResponseContextManager)
+        1    0.000    0.000    0.000    0.000 thread_create_params.py:30(ThreadCreateParams)
+        1    0.000    0.000    0.000    0.000 thread_create_params.py:171(ToolResourcesFileSearch)
+        1    0.000    0.000    0.000    0.000 image_generate_params.py:13(ImageGenerateParamsBase)
+        1    0.000    0.000    0.000    0.000 computer_action_list_param.py:136(Scroll)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:35(APIError)
+        1    0.000    0.000    0.000    0.000 _streaming.py:283(SSEDecoder)
+        1    0.000    0.000    0.000    0.000 response_output_text_param.py:117(ResponseOutputTextParam)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:472(McpApprovalResponse)
+        1    0.000    0.000    0.000    0.000 response_input_file_param.py:11(ResponseInputFileParam)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:266(ShellCall)
+        1    0.000    0.000    0.000    0.000 response_reasoning_item_param.py:31(ResponseReasoningItemParam)
+        1    0.000    0.000    0.000    0.000 taskgroups.py:12(TaskGroup)
+        1    0.000    0.000    0.000    0.000 unix_events.py:1337(ThreadedChildWatcher)
+        1    0.000    0.000    0.000    0.000 events.py:161(AbstractServer)
+        1    0.000    0.000    0.000    0.000 image_edit_params.py:14(ImageEditParamsBase)
+        1    0.000    0.000    0.000    0.000 input_token_count_params.py:25(InputTokenCountParams)
+        1    0.000    0.000    0.000    0.000 runners.py:21(Runner)
+        1    0.000    0.000    0.000    0.000 configparser.py:1211(ConfigParser)
+        2    0.000    0.000    0.000    0.000 http11.py:295(is_idle)
+        1    0.000    0.000    0.000    0.000 wsgi.py:30(WSGIByteStream)
+        1    0.000    0.000    0.000    0.000 _urls.py:323(is_absolute_url)
+        1    0.000    0.000    0.000    0.000 default.py:124(HTTPTransport)
+        1    0.000    0.000    0.000    0.000 _client.py:119(__init__)
+        1    0.000    0.000    0.000    0.000 feedparser.py:45(BufferedSubFile)
+        1    0.000    0.000    0.000    0.000 feedparser.py:136(FeedParser)
+        1    0.000    0.000    0.000    0.000 request.py:908(HTTPPasswordMgrWithPriorAuth)
+        1    0.000    0.000    0.000    0.000 request.py:1474(FileHandler)
+        1    0.000    0.000    0.000    0.000 calendar.py:412(HTMLCalendar)
+        1    0.000    0.000    0.000    0.000 types.py:1133(UuidVersion)
+        1    0.000    0.000    0.000    0.000 types.py:1515(Secret)
+        1    0.000    0.000    0.000    0.000 _std_types_schema.py:309(MappingValidator)
+        1    0.000    0.000    0.000    0.000 types.py:1487(_SecretBase)
+        1    0.000    0.000    0.000    0.000 csv.py:23(Dialect)
+        1    0.000    0.000    0.000    0.000 __init__.py:123(DeprecatedTuple)
+        1    0.000    0.000    0.000    0.000 _core_metadata.py:17(CoreMetadata)
+        1    0.000    0.000    0.000    0.000 _forward_ref.py:7(PydanticRecursiveRef)
+        1    0.000    0.000    0.000    0.000 _repr.py:29(Representation)
+        1    0.000    0.000    0.000    0.000 _internal_dataclass.py:1()
+        1    0.000    0.000    0.000    0.000 core_schema.py:166(ValidationInfo)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2833(TypedDictSchema)
+        1    0.000    0.000    0.000    0.000 string.py:188(Formatter)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:697(Protocol)
+        1    0.000    0.000    0.000    0.000 parse.py:836(_Quoter)
+        1    0.000    0.000    0.000    0.000 decoder.py:254(JSONDecoder)
+        1    0.000    0.000    0.000    0.000 __init__.py:240(c_char_p)
+        1    0.000    0.000    0.000    0.000 __init__.py:256(c_wchar_p)
+        1    0.000    0.000    0.000    0.000 asn1.py:358(DerBoolean)
+        1    0.000    0.000    0.000    0.000 _endian.py:48(BigEndianStructure)
+        1    0.000    0.000    0.000    0.000 {method 'issubset' of 'set' objects}
+        2    0.000    0.000    0.000    0.000 {method 'seek' of '_io.BytesIO' objects}
+        1    0.000    0.000    0.000    0.000 {built-in method _codecs.register_error}
+        1    0.000    0.000    0.000    0.000 {method 'register' of 'select.poll' objects}
+        1    0.000    0.000    0.000    0.000 _default.py:41(color_init)
+        2    0.000    0.000    0.000    0.000 _monitor.py:23(set_size)
+        1    0.000    0.000    0.000    0.000 discovery.py:220(LazyDiscoverer)
+        1    0.000    0.000    0.000    0.000 watch.py:86(Watch)
+        1    0.000    0.000    0.000    0.000 connection.py:431(Listener)
+        1    0.000    0.000    0.000    0.000 timed.py:170(TimedSerializer)
+        1    0.000    0.000    0.000    0.000 blueprints.py:18(Blueprint)
+        1    0.000    0.000    0.000    0.000 hooks.py:194(HierarchicalEmitter)
+        1    0.000    0.000    0.000    0.000 hooks.py:506(_PrefixTrie)
+        1    0.000    0.000    0.000    0.000 model.py:783(DenormalizedStructureBuilder)
+        1    0.000    0.000    0.000    0.000 paginate.py:591(Paginator)
+        1    0.000    0.000    0.000    0.000 tz.py:874(tzrange)
+        1    0.000    0.000    0.000    0.000 tz.py:1253(tzical)
+        1    0.000    0.000    0.000    0.000 waiter.py:142(SingleWaiterConfig)
+        1    0.000    0.000    0.000    0.000 utils.py:47(cached_property)
+        1    0.000    0.000    0.000    0.000 httpchecksum.py:48(BaseChecksum)
+        1    0.000    0.000    0.000    0.000 service_application.py:17(ServiceApplicationClient)
+        1    0.000    0.000    0.000    0.000 flow.py:467(_WSGIRequestHandler)
+        1    0.000    0.000    0.000    0.000 orderedset.py:6(Link)
+        1    0.000    0.000    0.000    0.000 discovery.py:979(ResourceMethodParameters)
+        1    0.000    0.000    0.000    0.000 __init__.py:819(Credentials)
+        1    0.000    0.000    0.000    0.000 response.py:188(MultiDecoder)
+        1    0.000    0.000    0.000    0.000 modes.py:123(XTS)
+        1    0.000    0.000    0.000    0.000 modes.py:200(CTR)
+        1    0.000    0.000    0.000    0.000 ed448.py:81(_Ed448PrivateKey)
+        1    0.000    0.000    0.000    0.000 x25519.py:62(_X25519PrivateKey)
+        1    0.000    0.000    0.000    0.000 __init__.py:202(LRUCache)
+        1    0.000    0.000    0.000    0.000 _oid.py:47(CRLEntryExtensionOID)
+        1    0.000    0.000    0.000    0.000 state_inline.py:43(StateInline)
+        1    0.000    0.000    0.000    0.000 state_inline.py:17(Delimiter)
+        1    0.000    0.000    0.000    0.000 stability.py:170(StabilityEditResponse)
+        1    0.000    0.000    0.000    0.000 gemini.py:49(BidiGenerateContentServerContent)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:653(VertexBatchPredictionResponse)
+        1    0.000    0.000    0.000    0.000 bedrock.py:184(ConverseTokenUsageBlock)
+        1    0.000    0.000    0.000    0.000 palm.py:13(PalmError)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 pickle.py:263(_Unframer)
+        1    0.000    0.000    0.000    0.000 datadog_metrics.py:6(DatadogMetricPoint)
+        1    0.000    0.000    0.000    0.000 dynamodb.py:12(DyanmoDBLogger)
+        1    0.000    0.000    0.000    0.000 exceptions.py:859(InvalidRequestError)
+        1    0.000    0.000    0.000    0.000 anthropic_response.py:59(AnthropicUsage)
+        1    0.000    0.000    0.000    0.000 speech_create_params.py:13(SpeechCreateParams)
+        1    0.000    0.000    0.000    0.000 utils.py:3277(LiteLLMLoggingBaseClass)
+        1    0.000    0.000    0.000    0.000 anthropic.py:491(UsageDelta)
+        1    0.000    0.000    0.000    0.000 assistant_create_params.py:153(ToolResourcesFileSearchVectorStoreChunkingStrategyStaticStatic)
+        1    0.000    0.000    0.000    0.000 thread_create_and_run_params.py:267(ThreadToolResourcesFileSearchVectorStore)
+        1    0.000    0.000    0.000    0.000 step_list_params.py:13(StepListParams)
+        1    0.000    0.000    0.000    0.000 thread_create_params.py:99(ToolResourcesCodeInterpreter)
+        1    0.000    0.000    0.000    0.000 _streaming.py:132(AsyncStream)
+        1    0.000    0.000    0.000    0.000 response_output_text_param.py:95(LogprobTopLogprob)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call_param.py:109(ActionKeypress)
+        1    0.000    0.000    0.000    0.000 computer_action_list_param.py:71(Drag)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:154(ToolSearchCall)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:190(LocalShellCallAction)
+        1    0.000    0.000    0.000    0.000 response_output_text_param.py:55(AnnotationContainerFileCitation)
+        1    0.000    0.000    0.000    0.000 unix_events.py:902(PidfdChildWatcher)
+        1    0.000    0.000    0.000    0.000 selector_events.py:1134(_SelectorDatagramTransport)
+        1    0.000    0.000    0.000    0.000 queues.py:218(PriorityQueue)
+        1    0.000    0.000    0.000    0.000 model_param_helper.py:36(get_exclude_params_for_model_parameters)
+        1    0.000    0.000    0.000    0.000 setters.py:11(pipe)
+        1    0.000    0.000    0.000    0.000 exceptions.py:23(FrozenInstanceError)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 console.py:358(__init__)
+        1    0.000    0.000    0.000    0.000 _base.py:569(Executor)
+        1    0.000    0.000    0.000    0.000 _ssl.py:1()
+        1    0.000    0.000    0.000    0.000 _fileio.py:195(_PathIterator)
+        1    0.000    0.000    0.000    0.000 from_thread.py:84(_BlockingAsyncContextManager)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:139(Lock)
+        1    0.000    0.000    0.000    0.000 stapled.py:94(MultiListener)
+        1    0.000    0.000    0.000    0.000 default.py:265(AsyncHTTPTransport)
+        1    0.000    0.000    0.000    0.000 {method 'selected_alpn_protocol' of '_ssl._SSLSocket' objects}
+        1    0.000    0.000    0.000    0.000 _adapters.py:48(SpecPath)
+        1    0.000    0.000    0.000    0.000 _auth.py:145(NetRCAuth)
+        1    0.000    0.000    0.000    0.000 __init__.py:154(HTTPMethod)
+        1    0.000    0.000    0.000    0.000 ssl.py:154()
+        1    0.000    0.000    0.000    0.000 _models.py:1177(_CookieCompatRequest)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:743(Cookie)
+        1    0.000    0.000    0.000    0.000 calendar.py:295(TextCalendar)
+        1    0.000    0.000    0.000    0.000 zipfile.py:1134(_ZipWriteFile)
+        1    0.000    0.000    0.000    0.000 _policybase.py:279(Compat32)
+        1    0.000    0.000    0.000    0.000 __init__.py:68(SupportsGt)
+        1    0.000    0.000    0.000    0.000 types.py:113(Strict)
+        1    0.000    0.000    0.000    0.000 _import_utils.py:16(import_cached_field_info)
+        1    0.000    0.000    0.000    0.000 _model_construction.py:58(_ModelNamespaceDict)
+        1    0.000    0.000    0.000    0.000 __init__.py:73(ErrorDetails)
+        1    0.000    0.000    0.000    0.000 core_schema.py:3033(ModelSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:3266(DataclassSchema)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:2675(decorator)
+        1    0.000    0.000    0.000    0.000 errors.py:135(PydanticSchemaGenerationError)
+        1    0.000    0.000    0.000    0.000 core_schema.py:992(TimeSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:3131(DataclassField)
+        1    0.000    0.000    0.000    0.000 serializer.py:11(Serializer)
+        1    0.000    0.000    0.000    0.000 _logging.py:170(JsonFormatter)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:1503(TypeVar)
+        1    0.000    0.000    0.000    0.000 encoder.py:74(JSONEncoder)
+        1    0.000    0.000    0.000    0.000 PKCS1_OAEP.py:34(PKCS1OAEP_Cipher)
+        1    0.000    0.000    0.000    0.000 _IntegerGMP.py:110(_GMP)
+        2    0.000    0.000    0.000    0.000 _parser.py:99(checklookbehindgroup)
+        1    0.000    0.000    0.000    0.000 {method 'close' of 'generator' objects}
+        2    0.000    0.000    0.000    0.000 {method 'truncate' of '_io.BytesIO' objects}
+        1    0.000    0.000    0.000    0.000 {built-in method select.poll}
+        1    0.000    0.000    0.000    0.000 _default.py:29(default_monitor_class)
+        1    0.000    0.000    0.000    0.000 _strptime.py:30(LocaleTime)
+        1    0.000    0.000    0.000    0.000 discovery.py:418(CacheDecoder)
+        1    0.000    0.000    0.000    0.000 _doc_utils.py:115(method_class)
+        1    0.000    0.000    0.000    0.000 exec_provider.py:22(ExecProvider)
+        1    0.000    0.000    0.000    0.000 kube_config.py:601(ConfigNode)
+        1    0.000    0.000    0.000    0.000 local.py:255(_ProxyLookup)
+        1    0.000    0.000    0.000    0.000 cli.py:762(CertParamType)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:434(RuleSetEndpoint)
+        1    0.000    0.000    0.000    0.000 credentials.py:1987(CredentialResolver)
+        1    0.000    0.000    0.000    0.000 credentials.py:1089(EnvProvider)
+        1    0.000    0.000    0.000    0.000 throttling.py:6(CubicCalculator)
+        2    0.000    0.000    0.000    0.000 six.py:340(Module_six_moves_urllib_parse)
+        2    0.000    0.000    0.000    0.000 six.py:402(Module_six_moves_urllib_request)
+        1    0.000    0.000    0.000    0.000 docstringparser.py:59(HTMLTree)
+        1    0.000    0.000    0.000    0.000 session.py:1130(ComponentLocator)
+        1    0.000    0.000    0.000    0.000 utils.py:1583(IdentityCache)
+        1    0.000    0.000    0.000    0.000 configprovider.py:901(ConfiguredEndpointProvider)
+        1    0.000    0.000    0.000    0.000 monitoring.py:24(Monitor)
+        1    0.000    0.000    0.000    0.000 errorfactory.py:17(BaseClientExceptions)
+        1    0.000    0.000    0.000    0.000 standard.py:252(ExponentialBackoff)
+        1    0.000    0.000    0.000    0.000 resource.py:332(ServiceResourceDocumenter)
+        1    0.000    0.000    0.000    0.000 configprovider.py:437(ConfigValueStore)
+        1    0.000    0.000    0.000    0.000 collection.py:28(ResourceCollection)
+        1    0.000    0.000    0.000    0.000 _common.py:6(weekday)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:433(AWSRequest)
+        1    0.000    0.000    0.000    0.000 parsers.py:644(BaseJSONParser)
+        1    0.000    0.000    0.000    0.000 parsers.py:888(BaseRestParser)
+        1    0.000    0.000    0.000    0.000 hooks.py:66(BaseEventHooks)
+        1    0.000    0.000    0.000    0.000 eventstream.py:539(EventStream)
+        1    0.000    0.000    0.000    0.000 utils.py:2950(S3ControlArnParamHandlerv2)
+        1    0.000    0.000    0.000    0.000 oauth1_auth.py:19(OAuth1)
+        1    0.000    0.000    0.000    0.000 base.py:21(BaseEndpoint)
+        1    0.000    0.000    0.000    0.000 model.py:267(JsonModel)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:206(UnixBrowser)
+        1    0.000    0.000    0.000    0.000 __init__.py:982(HTTPConnectionWithTimeout)
+        1    0.000    0.000    0.000    0.000 __init__.py:1069(HTTPSConnectionWithTimeout)
+        2    0.000    0.000    0.000    0.000 results.py:457()
+        1    0.000    0.000    0.000    0.000 base.py:144(InvalidVersion)
+        1    0.000    0.000    0.000    0.000 ed448.py:21(_Ed448PublicKey)
+        1    0.000    0.000    0.000    0.000 hashes.py:178(SHAKE128)
+        1    0.000    0.000    0.000    0.000 __init__.py:305(_Timer)
+        1    0.000    0.000    0.000    0.000 __init__.py:28(_DefaultSize)
+        1    0.000    0.000    0.000    0.000 modes.py:33(ModeWithInitializationVector)
+        1    0.000    0.000    0.000    0.000 pyfzf.py:34(FzfPrompt)
+        1    0.000    0.000    0.000    0.000 HMAC.py:61(HMAC)
+        1    0.000    0.000    0.000    0.000 import_export_service.py:8(ImportExportService)
+        1    0.000    0.000    0.000    0.000 _parse.py:105(MutableURL)
+        1    0.000    0.000    0.000    0.000 adapter.py:8(AdapterItem)
+        1    0.000    0.000    0.000    0.000 markdown.py:263(TableHeaderElement)
+        1    0.000    0.000    0.000    0.000 markdown.py:275(TableBodyElement)
+        1    0.000    0.000    0.000    0.000 aws.py:1971(Parser)
+        1    0.000    0.000    0.000    0.000 markdown.py:87(UnknownElement)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:131(VectorStoreStaticChunkingStrategyConfig)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:479(VideoSegmentConfig)
+        1    0.000    0.000    0.000    0.000 openmeter.py:28(OpenMeterLogger)
+        1    0.000    0.000    0.000    0.000 lexer.py:452(OptionalLStrip)
+        1    0.000    0.000    0.000    0.000 tracing.py:201(TraceRequestStartParams)
+        1    0.000    0.000    0.000    0.000 main.py:107(ContainerCreateRequestParams)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:226(QuotedString)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:265(Comment)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:231(UnixClientConnectorError)
+        1    0.000    0.000    0.000    0.000 helpers.py:944(ETag)
+        1    0.000    0.000    0.000    0.000 models.py:72(WebSocketError)
+        1    0.000    0.000    0.000    0.000 compression_utils.py:49(ZLibDecompressObjProtocol)
+        1    0.000    0.000    0.000    0.000 payload.py:939(JsonPayload)
+        1    0.000    0.000    0.000    0.000 router.py:686(RouterModelGroupAliasItem)
+        1    0.000    0.000    0.000    0.000 router.py:735(LiteLLM_RouterFileObject)
+        1    0.000    0.000    0.000    0.000 _url.py:109(CacheInfo)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:387(NameAddr)
+        1    0.000    0.000    0.000    0.000 utils.py:499(CompletionTokensDetailsResult)
+        1    0.000    0.000    0.000    0.000 open_inference.py:404(ErrorAttributes)
+        1    0.000    0.000    0.000    0.000 main.py:91(VideoCreateRequestParams)
+        1    0.000    0.000    0.000    0.000 slack_alerting.py:26(OutageModel)
+        1    0.000    0.000    0.000    0.000 _types.py:3907(JWKUrlResponse)
+        1    0.000    0.000    0.000    0.000 agents.py:14(AgentProvider)
+        1    0.000    0.000    0.000    0.000 logfire_logger.py:26(LogfireLogger)
+        1    0.000    0.000    0.000    0.000 openai.py:488(ChatCompletionAudioDelta)
+        1    0.000    0.000    0.000    0.000 utils.py:2391(GenericImageParsingChunk)
+        1    0.000    0.000    0.000    0.000 functional_serializers.py:82(WrapSerializer)
+        1    0.000    0.000    0.000    0.000 _tools.py:13(PydanticFunctionTool)
+        1    0.000    0.000    0.000    0.000 assistant_list_params.py:10(AssistantListParams)
+        1    0.000    0.000    0.000    0.000 thread_create_params.py:189(ToolResources)
+        1    0.000    0.000    0.000    0.000 distro.py:67(InfoDict)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:58(Message)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call_param.py:151(ActionScroll)
+        1    0.000    0.000    0.000    0.000 response_file_search_tool_call_param.py:13(Result)
+        1    0.000    0.000    0.000    0.000 response_tool_search_output_item_param_param.py:13(ResponseToolSearchOutputItemParamParam)
+        1    0.000    0.000    0.000    0.000 response_custom_tool_call_output_param.py:17(ResponseCustomToolCallOutputParam)
+        1    0.000    0.000    0.000    0.000 websocket_connection_options.py:15(WebSocketConnectionOptions)
+        1    0.000    0.000    0.000    0.000 web_search_tool_param.py:13(Filters)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:59(Message)
+        1    0.000    0.000    0.000    0.000 easy_input_message_param.py:13(EasyInputMessageParam)
+        1    0.000    0.000    0.000    0.000 response_output_text_param.py:20(AnnotationFileCitation)
+        1    0.000    0.000    0.000    0.000 computer_action_list_param.py:26(Click)
+        1    0.000    0.000    0.000    0.000 response_input_text_param.py:10(ResponseInputTextParam)
+        1    0.000    0.000    0.000    0.000 response_output_refusal_param.py:10(ResponseOutputRefusalParam)
+        1    0.000    0.000    0.000    0.000 response_reasoning_item_param.py:11(Summary)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call_param.py:28(PendingSafetyCheck)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call_param.py:125(ActionMove)
+        1    0.000    0.000    0.000    0.000 computer_action_list_param.py:94(Keypress)
+        1    0.000    0.000    0.000    0.000 response_compaction_item_param_param.py:11(ResponseCompactionItemParamParam)
+        1    0.000    0.000    0.000    0.000 utils.py:149(AgenticLoopParams)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:453(McpApprovalRequest)
+        1    0.000    0.000    0.000    0.000 response_output_text_param.py:36(AnnotationURLCitation)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:99(ComputerCallOutput)
+        1    0.000    0.000    0.000    0.000 subprocess.py:17(SubprocessStreamProtocol)
+        1    0.000    0.000    0.000    0.000 events.py:24(Handle)
+        1    0.000    0.000    0.000    0.000 transports.py:72(WriteTransport)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:491(McpCall)
+        1    0.000    0.000    0.000    0.000 _models.py:636(DiscriminatorDetails)
+        1    0.000    0.000    0.000    0.000 transports.py:251(_FlowControlMixin)
+        1    0.000    0.000    0.000    0.000 syntax.py:214(_SyntaxHighlightRange)
+        2    0.000    0.000    0.000    0.000 _make.py:2859(_get_global_name)
+        1    0.000    0.000    0.000    0.000 exceptions.py:31(FrozenAttributeError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:47(NotAnAttrsClassError)
+        2    0.000    0.000    0.000    0.000 :12(__init__)
+        2    0.000    0.000    0.000    0.000 _pick.py:4(pick_bool)
+        1    0.000    0.000    0.000    0.000 _cell_widths.py:1()
+        1    0.000    0.000    0.000    0.000 console.py:544()
+        1    0.000    0.000    0.000    0.000 console.py:330(__init__)
+        1    0.000    0.000    0.000    0.000 theme.py:80(ThemeStack)
+        2    0.000    0.000    0.000    0.000 console.py:1529(check_text)
+        1    0.000    0.000    0.000    0.000 _util.py:80(RemoteProtocolError)
+        1    0.000    0.000    0.000    0.000 _state.py:358(start_next_cycle)
+        1    0.000    0.000    0.000    0.000 _writers.py:62(BodyWriter)
+        1    0.000    0.000    0.000    0.000 connection.py:23(exponential_backoff)
+        2    0.000    0.000    0.000    0.000 _client.py:298(cookies)
+        2    0.000    0.000    0.000    0.000 _auth.py:38(auth_flow)
+        1    0.000    0.000    0.000    0.000 _adapters.py:83(ChildPath)
+        1    0.000    0.000    0.000    0.000 header.py:179(Header)
+        1    0.000    0.000    0.000    0.000 header.py:413(_ValueFormatter)
+        1    0.000    0.000    0.000    0.000 request.py:1374(HTTPHandler)
+        1    0.000    0.000    0.000    0.000 _multipart.py:193(MultipartStream)
+        2    0.000    0.000    0.000    0.000 calendar.py:55()
+        2    0.000    0.000    0.000    0.000 calendar.py:76(__init__)
+        1    0.000    0.000    0.000    0.000 _collections.py:27(Pair)
+        1    0.000    0.000    0.000    0.000 types.py:2065(FutureDate)
+        1    0.000    0.000    0.000    0.000 types.py:2122(AwareDatetime)
+        1    0.000    0.000    0.000    0.000 types.py:2179(FutureDatetime)
+        1    0.000    0.000    0.000    0.000 __init__.py:46(PackageNotFoundError)
+        1    0.000    0.000    0.000    0.000 _mock_val_ser.py:20(MockCoreSchema)
+        1    0.000    0.000    0.000    0.000 json_schema.py:2505(SkipJsonSchema)
+        1    0.000    0.000    0.000    0.000 _docs_extraction.py:11(DocstringVisitor)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1233(EnumSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2960(ModelFieldsSchema)
+        1    0.000    0.000    0.000    0.000 _decorators.py:25(ValidatorDecoratorInfo)
+        1    0.000    0.000    0.000    0.000 core_schema.py:616(FloatSchema)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:2222(IPv6Network)
+        1    0.000    0.000    0.000    0.000 composer.py:11(Composer)
+        1    0.000    0.000    0.000    0.000 encoder.py:105(__init__)
+        1    0.000    0.000    0.000    0.000 __init__.py:165(c_short)
+        1    0.000    0.000    0.000    0.000 __init__.py:246(c_void_p)
+        1    0.000    0.000    0.000    0.000 __init__.py:251(c_bool)
+        1    0.000    0.000    0.000    0.000 __init__.py:261(c_wchar)
+        1    0.000    0.000    0.000    0.000 _endian.py:55(BigEndianUnion)
+        1    0.000    0.000    0.000    0.000 threading.py:798(BrokenBarrierError)
+        1    0.000    0.000    0.000    0.000 threading.py:1400(_MainThread)
+        1    0.000    0.000    0.000    0.000 expect.py:187(searcher_string)
+        1    0.000    0.000    0.000    0.000 traceback.py:90(_Sentinel)
+        1    0.000    0.000    0.000    0.000 asn1.py:654(DerOctetString)
+        1    0.000    0.000    0.000    0.000 functools.py:753()
+        2    0.000    0.000    0.000    0.000 {built-in method sys.gettrace}
+        1    0.000    0.000    0.000    0.000 {built-in method _imp.get_frozen_object}
+        1    0.000    0.000    0.000    0.000 {built-in method _thread._set_sentinel}
+        1    0.000    0.000    0.000    0.000 {method 'seek' of '_io.BufferedReader' objects}
+        2    0.000    0.000    0.000    0.000 {method 'weekday' of 'datetime.date' objects}
+        1    0.000    0.000    0.000    0.000 _matrix.py:98(set_canvas)
+        1    0.000    0.000    0.000    0.000 _strptime.py:128()
+        1    0.000    0.000    0.000    0.000 _strptime.py:170(TimeRE)
+        1    0.000    0.000    0.000    0.000 _app.py:96(SSLDispatcher)
+        2    0.000    0.000    0.000    0.000 _figure.py:98()
+        1    0.000    0.000    0.000    0.000 _default.py:4(default_figure_class)
+        1    0.000    0.000    0.000    0.000 _monitor.py:33(labels_init)
+        1    0.000    0.000    0.000    0.000 kube_config.py:86(FileOrData)
+        1    0.000    0.000    0.000    0.000 authentication_v1_api.py:27(AuthenticationV1Api)
+        1    0.000    0.000    0.000    0.000 url_safe.py:15(URLSafeSerializerMixin)
+        1    0.000    0.000    0.000    0.000 context.py:283(SpawnProcess)
+        1    0.000    0.000    0.000    0.000 auth.py:603(S3ExpressQueryAuth)
+        1    0.000    0.000    0.000    0.000 credentials.py:1906(ContainerProvider)
+        1    0.000    0.000    0.000    0.000 signers.py:362(CloudFrontSigner)
+        1    0.000    0.000    0.000    0.000 credentials.py:940(CredentialProvider)
+        1    0.000    0.000    0.000    0.000 standard.py:298(TransientRetryableChecker)
+        1    0.000    0.000    0.000    0.000 standard.py:479(RetryQuotaChecker)
+        1    0.000    0.000    0.000    0.000 tz.py:328(_ttinfo)
+        1    0.000    0.000    0.000    0.000 exceptions.py:8(ParseError)
+        1    0.000    0.000    0.000    0.000 _parser.py:219(_resultbase)
+        1    0.000    0.000    0.000    0.000 _parser.py:1589(ParserError)
+        1    0.000    0.000    0.000    0.000 utils.py:3326(SSOTokenLoader)
+        1    0.000    0.000    0.000    0.000 utils.py:3359(EventbridgeSignerSetter)
+        1    0.000    0.000    0.000    0.000 paginate.py:27(TokenEncoder)
+        1    0.000    0.000    0.000    0.000 configprovider.py:823(SectionConfigProvider)
+        1    0.000    0.000    0.000    0.000 configprovider.py:564(SmartDefaultsConfigStoreFactory)
+        1    0.000    0.000    0.000    0.000 model.py:78(DefinitionWithParams)
+        1    0.000    0.000    0.000    0.000 base.py:21(ResourceMeta)
+        1    0.000    0.000    0.000    0.000 collection.py:369(CollectionFactory)
+        1    0.000    0.000    0.000    0.000 serving.py:877(ForkingWSGIServer)
+        1    0.000    0.000    0.000    0.000 range.py:4(IfRange)
+        1    0.000    0.000    0.000    0.000 headers.py:467(EnvironHeaders)
+        1    0.000    0.000    0.000    0.000 wsgi.py:211(ClosingIterator)
+        1    0.000    0.000    0.000    0.000 formparser.py:133(FormDataParser)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:609(HeadersDict)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:345(AWSRequestPreparer)
+        1    0.000    0.000    0.000    0.000 tokens.py:259(TokenBase)
+        1    0.000    0.000    0.000    0.000 base.py:508(NamedSignal)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:140(BaseBrowser)
+        1    0.000    0.000    0.000    0.000 simple_server.py:71(WSGIRequestHandler)
+        1    0.000    0.000    0.000    0.000 oauth2_session.py:12(TokenUpdated)
+        1    0.000    0.000    0.000    0.000 client_credentials.py:14(ClientCredentialsGrant)
+        1    0.000    0.000    0.000    0.000 oauth1_session.py:26(TokenRequestDenied)
+        1    0.000    0.000    0.000    0.000 refresh_token.py:14(RefreshTokenGrant)
+        1    0.000    0.000    0.000    0.000 socketserver.py:672(ThreadingMixIn)
+        1    0.000    0.000    0.000    0.000 testing.py:22(reset_pyparsing_context)
+        1    0.000    0.000    0.000    0.000 __init__.py:550(BasicAuthentication)
+        1    0.000    0.000    0.000    0.000 __init__.py:738(GoogleLoginAuthentication)
+        1    0.000    0.000    0.000    0.000 __init__.py:711(WsseAuthentication)
+        1    0.000    0.000    0.000    0.000 core.py:941(_CacheType)
+        1    0.000    0.000    0.000    0.000 poolmanager.py:492(ProxyManager)
+        1    0.000    0.000    0.000    0.000 exceptions.py:59(ProxyError)
+        1    0.000    0.000    0.000    0.000 _base_connection.py:12(ProxyConfig)
+        1    0.000    0.000    0.000    0.000 exceptions.py:139(NewConnectionError)
+        1    0.000    0.000    0.000    0.000 poly1305.py:19(_Poly1305Context)
+        1    0.000    0.000    0.000    0.000 x25519.py:21(_X25519PublicKey)
+        2    0.000    0.000    0.000    0.000 binding.py:82(_openssl_assert)
+        1    0.000    0.000    0.000    0.000 algorithms.py:172(SEED)
+        1    0.000    0.000    0.000    0.000 algorithms.py:217(SM4)
+        1    0.000    0.000    0.000    0.000 provider.py:3(RemoteStub)
+        1    0.000    0.000    0.000    0.000 challenges.py:255(SamlChallenge)
+        1    0.000    0.000    0.000    0.000 _exponential_backoff.py:111(ExponentialBackoff)
+        1    0.000    0.000    0.000    0.000 _refresh_worker.py:82(RefreshThread)
+        1    0.000    0.000    0.000    0.000 modes.py:158(OFB)
+        1    0.000    0.000    0.000    0.000 base.py:261(_AEADEncryptionContext)
+        1    0.000    0.000    0.000    0.000 help_text.py:20(get_instructions)
+        1    0.000    0.000    0.000    0.000 help_text.py:1()
+        1    0.000    0.000    0.000    0.000 CMAC.py:41(CMAC)
+        2    0.000    0.000    0.000    0.000 terminal.py:393(is_a_tty)
+        1    0.000    0.000    0.000    0.000 _editor.py:8(Editor)
+        1    0.000    0.000    0.000    0.000 parser_core.py:36(ParserCore)
+        1    0.000    0.000    0.000    0.000 handler.py:252(GenAIHubOrchestration)
+        1    0.000    0.000    0.000    0.000 vertex_ai_non_gemini.py:29(TextStreamer)
+        1    0.000    0.000    0.000    0.000 transformation.py:341(BytezCustomStreamWrapper)
+        2    0.000    0.000    0.000    0.000 handler.py:22(__init__)
+        1    0.000    0.000    0.000    0.000 ElementTree.py:1105(_ListDataStream)
+        1    0.000    0.000    0.000    0.000 utils.py:69(CommonUtils)
+        1    0.000    0.000    0.000    0.000 openai.py:1909(__init__)
+        1    0.000    0.000    0.000    0.000 ElementTree.py:477(QName)
+        1    0.000    0.000    0.000    0.000 bedrock.py:843(BedrockPreparedRequest)
+        1    0.000    0.000    0.000    0.000 health_check_utils.py:1()
+        1    0.000    0.000    0.000    0.000 gpt_transformation.py:783(OpenAIChatCompletionStreamingHandler)
+        1    0.000    0.000    0.000    0.000 bedrock.py:52(ToolResultContentBlock)
+        1    0.000    0.000    0.000    0.000 utils.py:734(Namespace)
+        1    0.000    0.000    0.000    0.000 optimizer.py:27(Optimizer)
+        1    0.000    0.000    0.000    0.000 payload_streamer.py:72(StreamPayload)
+        1    0.000    0.000    0.000    0.000 __init__.py:389(FileHash)
+        1    0.000    0.000    0.000    0.000 __init__.py:371(PackagePath)
+        1    0.000    0.000    0.000    0.000 _itertools.py:78(bucket)
+        1    0.000    0.000    0.000    0.000 client_reqrep.py:124(_RequestInfo)
+        1    0.000    0.000    0.000    0.000 tracing.py:228(TraceRequestEndParams)
+        1    0.000    0.000    0.000    0.000 tracing.py:238(TraceRequestExceptionParams)
+        1    0.000    0.000    0.000    0.000 tracing.py:248(TraceRequestRedirectParams)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 tracing.py:210(TraceRequestChunkSentParams)
+        1    0.000    0.000    0.000    0.000 __init__.py:61(PackageNotFoundError)
+        1    0.000    0.000    0.000    0.000 http_handler.py:1240()
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:310(Address)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:558(DisplayName)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:659(Parameter)
+        1    0.000    0.000    0.000    0.000 helpers.py:314(MimeType)
+        1    0.000    0.000    0.000    0.000 contentmanager.py:7(ContentManager)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 compression_utils.py:44(ZLibCompressObjProtocol)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:457(Mailbox)
+        1    0.000    0.000    0.000    0.000 open_inference.py:294(RerankerAttributes)
+        1    0.000    0.000    0.000    0.000 open_inference.py:218(MessageContentAttributes)
+        1    0.000    0.000    0.000    0.000 exceptions.py:787(OpenAIError)
+        1    0.000    0.000    0.000    0.000 anthropic.py:615(AnthropicChatCompletionUsageBlock)
+        1    0.000    0.000    0.000    0.000 version.py:454(_TrimmedRelease)
+        1    0.000    0.000    0.000    0.000 translation_create_params.py:14(TranslationCreateParams)
+        1    0.000    0.000    0.000    0.000 reinforcement_hyperparameters_param.py:11(ReinforcementHyperparametersParam)
+        1    0.000    0.000    0.000    0.000 openai.py:2141(OpenAIWebSearchUserLocationApproximate)
+        1    0.000    0.000    0.000    0.000 job_list_params.py:11(JobListParams)
+        1    0.000    0.000    0.000    0.000 functional_serializers.py:420(SerializeAsAny)
+        1    0.000    0.000    0.000    0.000 functional_serializers.py:18(PlainSerializer)
+        1    0.000    0.000    0.000    0.000 dpo_hyperparameters_param.py:11(DpoHyperparametersParam)
+        1    0.000    0.000    0.000    0.000 assistant_tool_choice_param.py:12(AssistantToolChoiceParam)
+        1    0.000    0.000    0.000    0.000 run_create_params.py:199(AdditionalMessageAttachment)
+        1    0.000    0.000    0.000    0.000 message_create_params.py:15(MessageCreateParams)
+        1    0.000    0.000    0.000    0.000 assistant_tool_choice_function_param.py:10(AssistantToolChoiceFunctionParam)
+        1    0.000    0.000    0.000    0.000 run_update_params.py:13(RunUpdateParams)
+        1    0.000    0.000    0.000    0.000 thread_create_params.py:145(ToolResourcesFileSearchVectorStore)
+        1    0.000    0.000    0.000    0.000 _response.py:544(StreamedBinaryAPIResponse)
+        1    0.000    0.000    0.000    0.000 thread_create_params.py:72(Message)
+        1    0.000    0.000    0.000    0.000 run_create_params.py:256(RunCreateParamsNonStreaming)
+        1    0.000    0.000    0.000    0.000 _base_client.py:832(SyncHttpxClientWrapper)
+        1    0.000    0.000    0.000    0.000 _qs.py:138(Options)
+        1    0.000    0.000    0.000    0.000 distro.py:61(VersionDict)
+        1    0.000    0.000    0.000    0.000 score_model_grader_param.py:85(SamplingParams)
+        1    0.000    0.000    0.000    0.000 upload_create_params.py:12(UploadCreateParams)
+        1    0.000    0.000    0.000    0.000 container_create_params.py:17(ContainerCreateParams)
+        1    0.000    0.000    0.000    0.000 embedding_create_params.py:14(EmbeddingCreateParams)
+        1    0.000    0.000    0.000    0.000 vector_store_create_params.py:15(VectorStoreCreateParams)
+        1    0.000    0.000    0.000    0.000 image_create_variation_params.py:14(ImageCreateVariationParams)
+        1    0.000    0.000    0.000    0.000 response_file_search_tool_call_param.py:36(ResponseFileSearchToolCallParam)
+        1    0.000    0.000    0.000    0.000 response_format_text_json_schema_config_param.py:11(ResponseFormatTextJSONSchemaConfigParam)
+        1    0.000    0.000    0.000    0.000 computer_action_list_param.py:126(Screenshot)
+        1    0.000    0.000    0.000    0.000 response_function_web_search_param.py:72(ResponseFunctionWebSearchParam)
+        1    0.000    0.000    0.000    0.000 input_item_list_params.py:13(InputItemListParams)
+        1    0.000    0.000    0.000    0.000 namespace_tool_param.py:13(ToolFunction)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call_param.py:41(ActionClick)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call_output_screenshot_param.py:10(ResponseComputerToolCallOutputScreenshotParam)
+        1    0.000    0.000    0.000    0.000 tool_choice_mcp_param.py:11(ToolChoiceMcpParam)
+        1    0.000    0.000    0.000    0.000 completion_list_params.py:13(CompletionListParams)
+        1    0.000    0.000    0.000    0.000 custom_tool_param.py:12(CustomToolParam)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:434(McpListTools)
+        1    0.000    0.000    0.000    0.000 function_tool_param.py:11(FunctionToolParam)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:294(ShellCallOutput)
+        1    0.000    0.000    0.000    0.000 response_code_interpreter_tool_call_param.py:34(ResponseCodeInterpreterToolCallParam)
+        1    0.000    0.000    0.000    0.000 unix_events.py:823(AbstractChildWatcher)
+        1    0.000    0.000    0.000    0.000 unix_events.py:1033(SafeChildWatcher)
+        1    0.000    0.000    0.000    0.000 unix_events.py:1426(_UnixDefaultEventLoopPolicy)
+        1    0.000    0.000    0.000    0.000 protocols.py:9(BaseProtocol)
+        1    0.000    0.000    0.000    0.000 tasks.py:689(_GatheringFuture)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:490(McpCall)
+        1    0.000    0.000    0.000    0.000 eval_list_params.py:10(EvalListParams)
+        1    0.000    0.000    0.000    0.000 tool_param.py:114(Mcp)
+        1    0.000    0.000    0.000    0.000 athina.py:6(AthinaLogger)
+        1    0.000    0.000    0.000    0.000 model_param_helper.py:170(_get_exclude_kwargs)
+        1    0.000    0.000    0.000    0.000 styled.py:11(Styled)
+        1    0.000    0.000    0.000    0.000 live.py:16(_RefreshThread)
+        1    0.000    0.000    0.000    0.000 lexer.py:358(_PseudoMatch)
+        1    0.000    0.000    0.000    0.000 token.py:12(_TokenType)
+        1    0.000    0.000    0.000    0.000 style.py:58(StyleMeta)
+        1    0.000    0.000    0.000    0.000 style.py:170(Style)
+        1    0.000    0.000    0.000    0.000 exceptions.py:39(AttrsAttributeNotFoundError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:55(DefaultAlreadySetError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:72(PythonTooOldError)
+        1    0.000    0.000    0.000    0.000 console.py:115(ConsoleDimensions)
+        1    0.000    0.000    0.000    0.000 text.py:1142()
+        1    0.000    0.000    0.000    0.000 decorators.py:50(make_pass_decorator)
+        1    0.000    0.000    0.000    0.000 _receivebuffer.py:147(is_next_line_obviously_invalid_request_line)
+        1    0.000    0.000    0.000    0.000 http11.py:298(is_closed)
+        1    0.000    0.000    0.000    0.000 types.py:156(CompositeParamType)
+        1    0.000    0.000    0.000    0.000 base.py:14(BaseTransport)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:80(Event)
+        1    0.000    0.000    0.000    0.000 _testing.py:9(TaskInfo)
+        1    0.000    0.000    0.000    0.000 _base.py:74(_AsCompletedWaiter)
+        1    0.000    0.000    0.000    0.000 _events.py:247(__post_init__)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:1753(__iter__)
+        1    0.000    0.000    0.000    0.000 _status_codes.py:52(is_success)
+        1    0.000    0.000    0.000    0.000 default.py:111(__init__)
+        1    0.000    0.000    0.000    0.000 abc.py:112(PathEntryFinder)
+        1    0.000    0.000    0.000    0.000 _auth.py:343(_DigestAuthChallenge)
+        1    0.000    0.000    0.000    0.000 request.py:1383(HTTPSHandler)
+        1    0.000    0.000    0.000    0.000 ssl.py:170(_TLSContentType)
+        1    0.000    0.000    0.000    0.000 response.py:14(addbase)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:841(CookiePolicy)
+        1    0.000    0.000    0.000    0.000 _models.py:1195(_CookieCompatResponse)
+        1    0.000    0.000    0.000    0.000 response.py:68(addinfourl)
+        1    0.000    0.000    0.000    0.000 _functools.py:83()
+        1    0.000    0.000    0.000    0.000 calendar.py:573(LocaleTextCalendar)
+        1    0.000    0.000    0.000    0.000 _parseaddr.py:512(AddressList)
+        1    0.000    0.000    0.000    0.000 _policybase.py:18(_PolicyBase)
+        1    0.000    0.000    0.000    0.000 _discriminated_union.py:20(MissingDefinitionForUnionRef)
+        1    0.000    0.000    0.000    0.000 __init__.py:119(Ge)
+        1    0.000    0.000    0.000    0.000 __init__.py:412(DocInfo)
+        1    0.000    0.000    0.000    0.000 types.py:2676(Tag)
+        1    0.000    0.000    0.000    0.000 types.py:2141(NaiveDatetime)
+        1    0.000    0.000    0.000    0.000 types.py:2160(PastDatetime)
+        1    0.000    0.000    0.000    0.000 _model_construction.py:669(_PydanticWeakRef)
+        1    0.000    0.000    0.000    0.000 functional_validators.py:503(ModelWrapValidatorHandler)
+        1    0.000    0.000    0.000    0.000 _schema_generation_shared.py:21(GenerateJsonSchemaHandler)
+        1    0.000    0.000    0.000    0.000 _utils.py:340(SafeGetItemProxy)
+        1    0.000    0.000    0.000    0.000 parser.py:35(Original)
+        1    0.000    0.000    0.000    0.000 __init__.py:2213(NullHandler)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:572(_ProtocolMeta)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:915(_TypedDictMeta)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:2346(_UnpackAlias)
+        1    0.000    0.000    0.000    0.000 core_schema.py:3375(ArgumentsSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:3499(CustomErrorSchema)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:3553(Doc)
+        1    0.000    0.000    0.000    0.000 core_schema.py:327(WrapSerializerFunctionSerSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2729(JsonOrPythonSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:555(IntSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1136(TimedeltaSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1859(DictSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:3199(DataclassArgsSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:924(DateSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2526(TaggedUnionSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:3610(UrlSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:3676(MultiHostUrlSchema)
+        1    0.000    0.000    0.000    0.000 aliases.py:86(AliasGenerator)
+        1    0.000    0.000    0.000    0.000 _decorators.py:86(FieldSerializerDecoratorInfo)
+        1    0.000    0.000    0.000    0.000 aliases.py:15(AliasPath)
+        1    0.000    0.000    0.000    0.000 aliases.py:56(AliasChoices)
+        1    0.000    0.000    0.000    0.000 constructor.py:713(UnsafeConstructor)
+        1    0.000    0.000    0.000    0.000 core_schema.py:681(DecimalSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:797(StringSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1058(DatetimeSchema)
+        1    0.000    0.000    0.000    0.000 __init__.py:488(StringTemplateStyle)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:1611(ParamSpec)
+        2    0.000    0.000    0.000    0.000 typing_extensions.py:855(_ensure_subclassable)
+        1    0.000    0.000    0.000    0.000 hooks.py:60(ClassHook)
+        1    0.000    0.000    0.000    0.000 pathlib.py:48(_Flavour)
+        1    0.000    0.000    0.000    0.000 parse.py:190(_NetlocResultMixinStr)
+        1    0.000    0.000    0.000    0.000 __init__.py:169(c_ushort)
+        1    0.000    0.000    0.000    0.000 __init__.py:173(c_long)
+        1    0.000    0.000    0.000    0.000 __init__.py:177(c_ulong)
+        1    0.000    0.000    0.000    0.000 __init__.py:186(c_int)
+        1    0.000    0.000    0.000    0.000 __init__.py:190(c_uint)
+        1    0.000    0.000    0.000    0.000 __init__.py:194(c_float)
+        1    0.000    0.000    0.000    0.000 __init__.py:198(c_double)
+        1    0.000    0.000    0.000    0.000 __init__.py:202(c_longdouble)
+        1    0.000    0.000    0.000    0.000 __init__.py:223(c_ubyte)
+        1    0.000    0.000    0.000    0.000 __init__.py:230(c_byte)
+        1    0.000    0.000    0.000    0.000 __init__.py:235(c_char)
+        1    0.000    0.000    0.000    0.000 _endian.py:34(_swapped_struct_meta)
+        1    0.000    0.000    0.000    0.000 _endian.py:35(_swapped_union_meta)
+        1    0.000    0.000    0.000    0.000 expect.py:285(searcher_re)
+        1    0.000    0.000    0.000    0.000 _IntegerGMP.py:133(_MPZ)
+        2    0.000    0.000    0.000    0.000 ast.py:516(_getter)
+        1    0.000    0.000    0.000    0.000 {built-in method sys.exit}
+        1    0.000    0.000    0.000    0.000 {method 'getsockopt' of '_socket.socket' objects}
+        1    0.000    0.000    0.000    0.000 _default.py:57(canvas_init)
+        1    0.000    0.000    0.000    0.000 _doc_utils.py:42(parameter_class)
+        1    0.000    0.000    0.000    0.000 _utility.py:277(platform)
+        1    0.000    0.000    0.000    0.000 _default.py:62(text_init)
+        1    0.000    0.000    0.000    0.000 dateutil.py:20(TimezoneInfo)
+        1    0.000    0.000    0.000    0.000 _app.py:73(Dispatcher)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:70(WebSocketBadStatusException)
+        1    0.000    0.000    0.000    0.000 tag.py:119(PassDict)
+        1    0.000    0.000    0.000    0.000 util.py:108(_platform_supports_abstract_sockets)
+        1    0.000    0.000    0.000    0.000 tag.py:173(TagMarkup)
+        1    0.000    0.000    0.000    0.000 context.py:276(ForkProcess)
+        1    0.000    0.000    0.000    0.000 rules.py:27(RulePart)
+        1    0.000    0.000    0.000    0.000 templating.py:52(DispatchingJinjaLoader)
+        1    0.000    0.000    0.000    0.000 cli.py:849(SeparatedPathType)
+        1    0.000    0.000    0.000    0.000 exc.py:7(BadData)
+        1    0.000    0.000    0.000    0.000 tag.py:93(TagDict)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:442(EndpointRule)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:649(RuleSet)
+        1    0.000    0.000    0.000    0.000 credentials.py:638(DeferredRefreshableCredentials)
+        1    0.000    0.000    0.000    0.000 credentials.py:730(BaseAssumeRoleCredentialFetcher)
+        1    0.000    0.000    0.000    0.000 credentials.py:1356(BotoProvider)
+        1    0.000    0.000    0.000    0.000 credentials.py:304(Credentials)
+        1    0.000    0.000    0.000    0.000 credentials.py:783(AssumeRoleCredentialFetcher)
+        1    0.000    0.000    0.000    0.000 tz.py:1036(tzstr)
+        1    0.000    0.000    0.000    0.000 utils.py:762(InstanceMetadataRegionFetcher)
+        1    0.000    0.000    0.000    0.000 handlers.py:960(ClientMethodAlias)
+        1    0.000    0.000    0.000    0.000 retryhandler.py:260(MaxAttemptsDecorator)
+        1    0.000    0.000    0.000    0.000 configprovider.py:287(DefaultConfigResolver)
+        1    0.000    0.000    0.000    0.000 special.py:19(RetryIDPCommunicationError)
+        1    0.000    0.000    0.000    0.000 paginate.py:105(TokenDecoder)
+        1    0.000    0.000    0.000    0.000 standard.py:157(RetryContext)
+        1    0.000    0.000    0.000    0.000 configprovider.py:323(ConfigChainFactory)
+        1    0.000    0.000    0.000    0.000 model.py:176(ResponseResource)
+        1    0.000    0.000    0.000    0.000 base.py:38(NestedDocumenter)
+        1    0.000    0.000    0.000    0.000 wsgi.py:286(FileWrapper)
+        1    0.000    0.000    0.000    0.000 waiter.py:23(WaiterDocumenter)
+        1    0.000    0.000    0.000    0.000 paginator.py:23(PaginatorDocumenter)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:542(AWSResponse)
+        1    0.000    0.000    0.000    0.000 endpoint.py:386(EndpointCreator)
+        1    0.000    0.000    0.000    0.000 parsers.py:556(QueryParser)
+        1    0.000    0.000    0.000    0.000 httpchecksum.py:216(StreamingChecksumBody)
+        1    0.000    0.000    0.000    0.000 regions.py:52(BaseEndpointResolver)
+        1    0.000    0.000    0.000    0.000 auth.py:483(S3SigV4Auth)
+        1    0.000    0.000    0.000    0.000 base.py:554(_WeakNamespace)
+        1    0.000    0.000    0.000    0.000 exceptions.py:94(HTTPClientError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:520(ClientError)
+        1    0.000    0.000    0.000    0.000 socketserver.py:731(BaseRequestHandler)
+        1    0.000    0.000    0.000    0.000 access_token.py:21(AccessTokenEndpoint)
+        1    0.000    0.000    0.000    0.000 util.py:11(FileWrapper)
+        1    0.000    0.000    0.000    0.000 sts.py:44(Client)
+        1    0.000    0.000    0.000    0.000 authorization.py:17(AuthorizationEndpoint)
+        1    0.000    0.000    0.000    0.000 http.py:1723(HttpMock)
+        1    0.000    0.000    0.000    0.000 core.py:5178(_NullToken)
+        1    0.000    0.000    0.000    0.000 actions.py:7(OnlyOnce)
+        1    0.000    0.000    0.000    0.000 core.py:2436(Empty)
+        1    0.000    0.000    0.000    0.000 core.py:2581(CaselessLiteral)
+        1    0.000    0.000    0.000    0.000 util.py:80(_UnboundedCache)
+        1    0.000    0.000    0.000    0.000 core.py:5743(Group)
+        1    0.000    0.000    0.000    0.000 auth.py:76(HTTPBasicAuth)
+        1    0.000    0.000    0.000    0.000 models.py:230(Request)
+        1    0.000    0.000    0.000    0.000 exceptions.py:31(PoolError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:247(IncompleteRead)
+        1    0.000    0.000    0.000    0.000 response.py:227(BytesQueueBuffer)
+        1    0.000    0.000    0.000    0.000 backend.py:2631(GetCipherByName)
+        1    0.000    0.000    0.000    0.000 x448.py:20(_X448PublicKey)
+        1    0.000    0.000    0.000    0.000 _oid.py:43(OCSPExtensionOID)
+        1    0.000    0.000    0.000    0.000 __init__.py:514(_Item)
+        1    0.000    0.000    0.000    0.000 modes.py:186(CFB8)
+        1    0.000    0.000    0.000    0.000 modes.py:41(ModeWithTweak)
+        1    0.000    0.000    0.000    0.000 ai_handler.py:12(AIHandler)
+        1    0.000    0.000    0.000    0.000 plugin_handler.py:7(__init__)
+        1    0.000    0.000    0.000    0.000 _text.py:7(Text)
+        1    0.000    0.000    0.000    0.000 questions.py:12(TaggedValue)
+        1    0.000    0.000    0.000    0.000 profile_handler.py:9(ProfileHandler)
+        1    0.000    0.000    0.000    0.000 run_handler.py:9(RunHandler)
+        1    0.000    0.000    0.000    0.000 exceptions.py:66(ReauthFailError)
+        1    0.000    0.000    0.000    0.000 renderer.py:19(RendererProtocol)
+        1    0.000    0.000    0.000    0.000 state_core.py:13(StateCore)
+        1    0.000    0.000    0.000    0.000 _common.py:80(_fix_legacy_win_text)
+        1    0.000    0.000    0.000    0.000 custom_llm.py:8(CustomLLMItem)
+        1    0.000    0.000    0.000    0.000 transformation.py:20(TogetherAIRerankConfig)
+        1    0.000    0.000    0.000    0.000 handler.py:112(SAPStreamIterator)
+        1    0.000    0.000    0.000    0.000 stability.py:46(StabilityImageGenerationResponse)
+        1    0.000    0.000    0.000    0.000 azure.py:48(AzureOpenAIAssistantsAPIConfig)
+        1    0.000    0.000    0.000    0.000 sandbox.py:397(ImmutableSandboxedEnvironment)
+        1    0.000    0.000    0.000    0.000 cohere.py:6(CallObject)
+        1    0.000    0.000    0.000    0.000 cohere.py:49(CohereV2ChatResponseMessageToolCallFunction)
+        1    0.000    0.000    0.000    0.000 bedrock.py:960(BedrockCreateBatchResponse)
+        1    0.000    0.000    0.000    0.000 utils.py:14(ProcessedAudioFile)
+        1    0.000    0.000    0.000    0.000 common_utils.py:355(ModelResponseIterator)
+        1    0.000    0.000    0.000    0.000 common_utils.py:804(BedrockEventStreamDecoderBase)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:162(SafetSettingsConfig)
+        1    0.000    0.000    0.000    0.000 bedrock.py:581(NovaTextParams)
+        1    0.000    0.000    0.000    0.000 bedrock.py:289(ContentBlockDeltaEvent)
+        1    0.000    0.000    0.000    0.000 bedrock.py:14(SystemContentBlock)
+        1    0.000    0.000    0.000    0.000 version.py:38(_Version)
+        1    0.000    0.000    0.000    0.000 greenscale.py:8(GreenscaleLogger)
+        1    0.000    0.000    0.000    0.000 _collections.py:6(FreezableDefaultDict)
+        1    0.000    0.000    0.000    0.000 tracing.py:219(TraceResponseChunkReceivedParams)
+        1    0.000    0.000    0.000    0.000 payload_streamer.py:63(StreamWrapperPayload)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:414(AngleAddr)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:636(DomainLiteral)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:281(ServerFingerprintMismatch)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:184(WhiteSpaceTokenList)
+        1    0.000    0.000    0.000    0.000 helpers.py:793(ErrorableProtocol)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:495(Domain)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:723(MimeParameters)
+        1    0.000    0.000    0.000    0.000 contentmanager.py:9(__init__)
+        1    0.000    0.000    0.000    0.000 open_inference.py:251(AudioAttributes)
+        1    0.000    0.000    0.000    0.000 _types.py:4015(ProxyStateVariables)
+        1    0.000    0.000    0.000    0.000 utils.py:3075(StandardKeyGenerationConfig)
+        1    0.000    0.000    0.000    0.000 guardrails.py:130(LakeraCategoryThresholds)
+        1    0.000    0.000    0.000    0.000 enkryptai.py:11(EnkryptAIPolicyViolationDetail)
+        1    0.000    0.000    0.000    0.000 dynamic_logging_cache.py:20(LangfuseInMemoryCache)
+        1    0.000    0.000    0.000    0.000 assistant_update_params.py:189(ToolResources)
+        1    0.000    0.000    0.000    0.000 pkgutil.py:194(ImpImporter)
+        1    0.000    0.000    0.000    0.000 text_content_block_param.py:10(TextContentBlockParam)
+        1    0.000    0.000    0.000    0.000 thread_create_and_run_params.py:321(Thread)
+        1    0.000    0.000    0.000    0.000 run_submit_tool_outputs_params.py:23(ToolOutput)
+        1    0.000    0.000    0.000    0.000 thread_update_params.py:14(ThreadUpdateParams)
+        1    0.000    0.000    0.000    0.000 thread_update_params.py:53(ToolResources)
+        1    0.000    0.000    0.000    0.000 file_search_tool_param.py:10(FileSearchRankingOptions)
+        1    0.000    0.000    0.000    0.000 _response.py:518(AsyncBinaryAPIResponse)
+        1    0.000    0.000    0.000    0.000 run_list_params.py:10(RunListParams)
+        1    0.000    0.000    0.000    0.000 thread_create_params.py:64(MessageAttachment)
+        1    0.000    0.000    0.000    0.000 thread_create_params.py:133(ToolResourcesFileSearchVectorStoreChunkingStrategyStatic)
+        1    0.000    0.000    0.000    0.000 eval_update_params.py:13(EvalUpdateParams)
+        1    0.000    0.000    0.000    0.000 upload_complete_params.py:12(UploadCompleteParams)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:70(APIResponseValidationError)
+        1    0.000    0.000    0.000    0.000 _base_client.py:812(_DefaultHttpxClient)
+        1    0.000    0.000    0.000    0.000 label_model_grader_param.py:78(LabelModelGraderParam)
+        1    0.000    0.000    0.000    0.000 batch_create_params.py:13(BatchCreateParams)
+        1    0.000    0.000    0.000    0.000 python_grader_param.py:10(PythonGraderParam)
+        1    0.000    0.000    0.000    0.000 container_list_params.py:10(ContainerListParams)
+        1    0.000    0.000    0.000    0.000 response_input_file_content_param.py:11(ResponseInputFileContentParam)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call_param.py:141(ActionScreenshot)
+        1    0.000    0.000    0.000    0.000 response_function_web_search_param.py:30(ActionSearch)
+        1    0.000    0.000    0.000    0.000 computer_action_param.py:25(Click)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:98(ComputerCallOutput)
+        1    0.000    0.000    0.000    0.000 chat_completion_message_custom_tool_call_param.py:10(Custom)
+        1    0.000    0.000    0.000    0.000 inline_skill_param.py:12(InlineSkillParam)
+        1    0.000    0.000    0.000    0.000 computer_use_preview_tool_param.py:10(ComputerUsePreviewToolParam)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:418(McpListToolsTool)
+        1    0.000    0.000    0.000    0.000 response_output_text_param.py:105(Logprob)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call_param.py:76(ActionDragPath)
+        1    0.000    0.000    0.000    0.000 computer_action_list_param.py:110(Move)
+        1    0.000    0.000    0.000    0.000 computer_action_list_param.py:158(Type)
+        1    0.000    0.000    0.000    0.000 response_function_web_search_param.py:20(ActionSearchSource)
+        1    0.000    0.000    0.000    0.000 response_function_web_search_param.py:46(ActionOpenPage)
+        1    0.000    0.000    0.000    0.000 response_code_interpreter_tool_call_param.py:11(OutputLogs)
+        1    0.000    0.000    0.000    0.000 web_search_tool_param.py:26(UserLocation)
+        1    0.000    0.000    0.000    0.000 streams.py:117(FlowControlMixin)
+        1    0.000    0.000    0.000    0.000 unix_events.py:1107(FastChildWatcher)
+        1    0.000    0.000    0.000    0.000 exceptions.py:29(IncompleteReadError)
+        1    0.000    0.000    0.000    0.000 locks.py:24(Lock)
+        1    0.000    0.000    0.000    0.000 locks.py:219(Condition)
+        1    0.000    0.000    0.000    0.000 lexer.py:665(RegexLexer)
+        1    0.000    0.000    0.000    0.000 filter.py:41(Filter)
+        1    0.000    0.000    0.000    0.000 _make.py:89(_CacheHashWrapper)
+        1    0.000    0.000    0.000    0.000 _compat.py:35(_AnnotationExtractor)
+        1    0.000    0.000    0.000    0.000 table.py:143(_Cell)
+        1    0.000    0.000    0.000    0.000 mock.py:15(MockSSLObject)
+        1    0.000    0.000    0.000    0.000 _base.py:111(_AllCompletedWaiter)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:691(ResourceGuard)
+        1    0.000    0.000    0.000    0.000 memory.py:24(MemoryObjectStreamStatistics)
+        1    0.000    0.000    0.000    0.000 _utils.py:291(Timer)
+        1    0.000    0.000    0.000    0.000 _config.py:256(as_dict)
+        1    0.000    0.000    0.000    0.000 default.py:110(ResponseStream)
+        1    0.000    0.000    0.000    0.000 _models.py:167(Origin)
+        1    0.000    0.000    0.000    0.000 _adapters.py:114(OrphanPath)
+        1    0.000    0.000    0.000    0.000 _meta.py:32(SimplePath)
+        1    0.000    0.000    0.000    0.000 _client.py:136(BoundAsyncStream)
+        1    0.000    0.000    0.000    0.000 client.py:1481(IncompleteRead)
+        1    0.000    0.000    0.000    0.000 request.py:1531(FTPHandler)
+        1    0.000    0.000    0.000    0.000 request.py:1641(DataHandler)
+        1    0.000    0.000    0.000    0.000 _multipart.py:39(DataField)
+        2    0.000    0.000    0.000    0.000 calendar.py:57(__init__)
+        1    0.000    0.000    0.000    0.000 __init__.py:507(PackagePath)
+        1    0.000    0.000    0.000    0.000 __init__.py:130(Lt)
+        1    0.000    0.000    0.000    0.000 __init__.py:141(Le)
+        1    0.000    0.000    0.000    0.000 __init__.py:299(Unit)
+        1    0.000    0.000    0.000    0.000 types.py:3044(FailFast)
+        1    0.000    0.000    0.000    0.000 _generics.py:44(LimitedDict)
+        1    0.000    0.000    0.000    0.000 functional_validators.py:515(ModelWrapValidatorWithoutInfo)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:1456(NoDefaultType)
+        1    0.000    0.000    0.000    0.000 core_schema.py:875(BytesSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2665(LaxOrStrictSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2786(TypedDictField)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1727(FrozenSetSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2351(WithDefaultSchema)
+        1    0.000    0.000    0.000    0.000 _decorators.py:49(FieldValidatorDecoratorInfo)
+        1    0.000    0.000    0.000    0.000 __future__.py:81(_Feature)
+        1    0.000    0.000    0.000    0.000 __init__.py:347(YAMLObjectMetaclass)
+        1    0.000    0.000    0.000    0.000 error.py:4(Mark)
+        1    0.000    0.000    0.000    0.000 cyaml.py:68(CSafeDumper)
+        1    0.000    0.000    0.000    0.000 pathlib.py:379(_RecursiveWildcardSelector)
+        1    0.000    0.000    0.000    0.000 parse.py:136(_ResultMixinStr)
+        1    0.000    0.000    0.000    0.000 pathlib.py:835(PurePosixPath)
+        1    0.000    0.000    0.000    0.000 pathlib.py:423(_PathParents)
+        2    0.000    0.000    0.000    0.000 parse.py:108(_noop)
+        1    0.000    0.000    0.000    0.000 parse.py:220(_NetlocResultMixinBytes)
+        1    0.000    0.000    0.000    0.000 exceptions.py:34(TIMEOUT)
+        1    0.000    0.000    0.000    0.000 shutil.py:77(RegistryError)
+        1    0.000    0.000    0.000    0.000 shutil.py:81(_GiveupOnFastCopy)
+        1    0.000    0.000    0.000    0.000 _monitor.py:274(_set_theme)
+        1    0.000    0.000    0.000    0.000 tools.py:155(Password)
+        1    0.000    0.000    0.000    0.000 _matrix.py:25(set_canvas_area)
+        1    0.000    0.000    0.000    0.000 exceptions.py:45(DynamicApiError)
+        1    0.000    0.000    0.000    0.000 ws_client.py:43(_IgnoredIO)
+        1    0.000    0.000    0.000    0.000 ws_client.py:323(_Socket)
+        1    0.000    0.000    0.000    0.000 watch.py:41(SimpleNamespace)
+        1    0.000    0.000    0.000    0.000 resource_api.py:27(ResourceApi)
+        1    0.000    0.000    0.000    0.000 scheduling_api.py:27(SchedulingApi)
+        1    0.000    0.000    0.000    0.000 pydoc.py:393(ErrorDuringImport)
+        1    0.000    0.000    0.000    0.000 batch_api.py:27(BatchApi)
+        1    0.000    0.000    0.000    0.000 core_api.py:27(CoreApi)
+        1    0.000    0.000    0.000    0.000 networking_api.py:27(NetworkingApi)
+        1    0.000    0.000    0.000    0.000 node_api.py:27(NodeApi)
+        1    0.000    0.000    0.000    0.000 admissionregistration_api.py:27(AdmissionregistrationApi)
+        1    0.000    0.000    0.000    0.000 signer.py:15(SigningAlgorithm)
+        1    0.000    0.000    0.000    0.000 blueprints.py:34(BlueprintSetupState)
+        1    0.000    0.000    0.000    0.000 context.py:233(__init__)
+        1    0.000    0.000    0.000    0.000 util.py:368(ForkAwareThreadLock)
+        1    0.000    0.000    0.000    0.000 rest.py:34(RESTResponse)
+        1    0.000    0.000    0.000    0.000 exceptions.py:49(RequestPath)
+        1    0.000    0.000    0.000    0.000 local.py:351(_ProxyIOp)
+        1    0.000    0.000    0.000    0.000 exceptions.py:28(RequestRedirect)
+        1    0.000    0.000    0.000    0.000 rules.py:181(Submount)
+        1    0.000    0.000    0.000    0.000 tag.py:133(TagTuple)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:410(BaseRule)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:525(TreeRule)
+        1    0.000    0.000    0.000    0.000 credentials.py:873(AssumeRoleWithWebIdentityCredentialFetcher)
+        1    0.000    0.000    0.000    0.000 discovery.py:224(EndpointDiscoveryHandler)
+        1    0.000    0.000    0.000    0.000 model.py:284(ContextParameter)
+        1    0.000    0.000    0.000    0.000 paginate.py:697(ResultKeyIterator)
+        1    0.000    0.000    0.000    0.000 _factories.py:8(_TzSingleton)
+        1    0.000    0.000    0.000    0.000 isoparser.py:43(__init__)
+        1    0.000    0.000    0.000    0.000 visitor.py:307(GraphvizVisitor)
+        1    0.000    0.000    0.000    0.000 utils.py:1474(lru_cache_weakref)
+        1    0.000    0.000    0.000    0.000 example.py:194(RequestExampleDocumenter)
+        1    0.000    0.000    0.000    0.000 utils.py:1144(CachedProperty)
+        1    0.000    0.000    0.000    0.000 waiter.py:312(Waiter)
+        1    0.000    0.000    0.000    0.000 configprovider.py:757(ScopedConfigProvider)
+        1    0.000    0.000    0.000    0.000 loaders.py:507(ExtrasProcessor)
+        1    0.000    0.000    0.000    0.000 handlers.py:961(__init__)
+        1    0.000    0.000    0.000    0.000 monitoring.py:192(APICallEvent)
+        1    0.000    0.000    0.000    0.000 configprovider.py:657(ChainProvider)
+        1    0.000    0.000    0.000    0.000 base.py:16(BaseDocumenter)
+        1    0.000    0.000    0.000    0.000 exceptions.py:632(_RetryAfter)
+        1    0.000    0.000    0.000    0.000 action.py:28(ServiceAction)
+        1    0.000    0.000    0.000    0.000 base.py:69(ServiceResource)
+        1    0.000    0.000    0.000    0.000 accept.py:262(LanguageAccept)
+        1    0.000    0.000    0.000    0.000 mixins.py:115(ImmutableMultiDictMixin)
+        1    0.000    0.000    0.000    0.000 multipart.py:29(File)
+        1    0.000    0.000    0.000    0.000 security.py:12()
+        1    0.000    0.000    0.000    0.000 serialize.py:672(RestJSONSerializer)
+        1    0.000    0.000    0.000    0.000 params.py:207(RequestParamsDocumenter)
+        1    0.000    0.000    0.000    0.000 utils.py:93(DocumentedShape)
+        1    0.000    0.000    0.000    0.000 parsers.py:1008(RestJSONParser)
+        1    0.000    0.000    0.000    0.000 validate.py:90(ValidationErrors)
+        1    0.000    0.000    0.000    0.000 history.py:24(HistoryRecorder)
+        1    0.000    0.000    0.000    0.000 auth.py:537(S3ExpressAuth)
+        1    0.000    0.000    0.000    0.000 auth.py:707(SigV4QueryAuth)
+        1    0.000    0.000    0.000    0.000 auth.py:1029(HmacV1QueryAuth)
+        1    0.000    0.000    0.000    0.000 simple_server.py:42(WSGIServer)
+        1    0.000    0.000    0.000    0.000 utils.py:78(OAuthClientAuthHandler)
+        1    0.000    0.000    0.000    0.000 backend_application.py:13(BackendApplicationClient)
+        1    0.000    0.000    0.000    0.000 tokens.py:280(BearerToken)
+        1    0.000    0.000    0.000    0.000 model.py:354(ProtocolBufferModel)
+        1    0.000    0.000    0.000    0.000 pprint.py:80(_safe_key)
+        1    0.000    0.000    0.000    0.000 multipart.py:13(MIMEMultipart)
+        1    0.000    0.000    0.000    0.000 base.py:15(MIMEBase)
+        1    0.000    0.000    0.000    0.000 unicode.py:135(BasicMultilingualPlane)
+        1    0.000    0.000    0.000    0.000 core.py:2356(Token)
+        1    0.000    0.000    0.000    0.000 core.py:2368(NoMatch)
+        1    0.000    0.000    0.000    0.000 cookies.py:103(MockResponse)
+        1    0.000    0.000    0.000    0.000 discovery.py:134(APICoreVersionError)
+        1    0.000    0.000    0.000    0.000 structures.py:83(LookupDict)
+        1    0.000    0.000    0.000    0.000 _base_connection.py:19(_ResponseOptions)
+        1    0.000    0.000    0.000    0.000 _collections.py:158(HTTPHeaderDictItemView)
+        1    0.000    0.000    0.000    0.000 _oid.py:166(SubjectInformationAccessOID)
+        1    0.000    0.000    0.000    0.000 base.py:251(_AEADDecryptionContext)
+        1    0.000    0.000    0.000    0.000 extensions.py:86(DuplicateExtension)
+        1    0.000    0.000    0.000    0.000 __init__.py:21(Python37DeprecationWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:40(UserAccessTokenError)
+        1    0.000    0.000    0.000    0.000 hashes.py:196(SHAKE256)
+        1    0.000    0.000    0.000    0.000 hashes.py:220(BLAKE2b)
+        1    0.000    0.000    0.000    0.000 _exponential_backoff.py:139(AsyncExponentialBackoff)
+        1    0.000    0.000    0.000    0.000 padding.py:77(MGF)
+        1    0.000    0.000    0.000    0.000 _serialization.py:62(BestAvailableEncryption)
+        1    0.000    0.000    0.000    0.000 modes.py:172(CFB)
+        1    0.000    0.000    0.000    0.000 algorithms.py:51(AES256)
+        1    0.000    0.000    0.000    0.000 base.py:63(AEADEncryptionContext)
+        1    0.000    0.000    0.000    0.000 api_handler.py:6(__init__)
+        1    0.000    0.000    0.000    0.000 forms.py:5(Forms)
+        1    0.000    0.000    0.000    0.000 prompt.py:15(InvalidResponse)
+        1    0.000    0.000    0.000    0.000 exceptions.py:53(ClientCertError)
+        1    0.000    0.000    0.000    0.000 _http_client.py:53(Request)
+        1    0.000    0.000    0.000    0.000 credentials.py:248(CredentialsWithQuotaProject)
+        1    0.000    0.000    0.000    0.000 html_blocks.py:1()
+        1    0.000    0.000    0.000    0.000 questions.py:189(Path)
+        1    0.000    0.000    0.000    0.000 _argparse.py:531(RawDescriptionRichHelpFormatter)
+        1    0.000    0.000    0.000    0.000 errors.py:1(ValidationError)
+        1    0.000    0.000    0.000    0.000 sequences.py:143(SequenceTextWrapper)
+        1    0.000    0.000    0.000    0.000 utils.py:36(PresetType)
+        1    0.000    0.000    0.000    0.000 markdown.py:218(HorizontalRule)
+        1    0.000    0.000    0.000    0.000 aws.py:2168(Preload)
+        1    0.000    0.000    0.000    0.000 aws.py:2228(Entrypoint)
+        1    0.000    0.000    0.000    0.000 __init__.py:64(UNSIGNED)
+        1    0.000    0.000    0.000    0.000 exceptions.py:31(BotoCoreError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:472(WaiterError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:81(HostChangedError)
+        1    0.000    0.000    0.000    0.000 deployment_affinity_check.py:28(DeploymentAffinityCacheValue)
+        1    0.000    0.000    0.000    0.000 model_rate_limit_check.py:31(RoutingArgs)
+        1    0.000    0.000    0.000    0.000 assistants.py:25(__init__)
+        1    0.000    0.000    0.000    0.000 handler.py:179(AsyncSAPStreamIterator)
+        1    0.000    0.000    0.000    0.000 handler.py:18(GenAIHubOrchestrationError)
+        1    0.000    0.000    0.000    0.000 common_utils.py:6(OpenAILikeError)
+        1    0.000    0.000    0.000    0.000 transformation.py:318(GroqChatCompletionStreamingHandler)
+        1    0.000    0.000    0.000    0.000 handler.py:81(__init__)
+        1    0.000    0.000    0.000    0.000 gemini.py:72(BidiGenerateContentServerMessage)
+        1    0.000    0.000    0.000    0.000 openai.py:327(OpenAIChatCompletionResponseIterator)
+        1    0.000    0.000    0.000    0.000 ollama.py:17(OllamaToolCallFunction)
+        1    0.000    0.000    0.000    0.000 gemini.py:111(AutomaticActivityDetection)
+        1    0.000    0.000    0.000    0.000 openai.py:2132(__init__)
+        1    0.000    0.000    0.000    0.000 vector_store_files.py:20(VectorStoreFileStaticChunkingConfig)
+        1    0.000    0.000    0.000    0.000 bedrock.py:802(AmazonNovaCanvasInpaintingParams)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:496(Instance)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:330(SafetyRatings)
+        1    0.000    0.000    0.000    0.000 bedrock.py:65(ToolUseBlock)
+        1    0.000    0.000    0.000    0.000 bedrock.py:250(ToolChoiceValuesBlock)
+        1    0.000    0.000    0.000    0.000 bedrock.py:667(NovaAsyncInvokeRequest)
+        1    0.000    0.000    0.000    0.000 traceloop.py:6(TraceloopLogger)
+        1    0.000    0.000    0.000    0.000 langsmith.py:37(LangsmithQueueObject)
+        1    0.000    0.000    0.000    0.000 runtime.py:991(DebugUndefined)
+        1    0.000    0.000    0.000    0.000 base_aws_llm.py:46(AwsAuthError)
+        1    0.000    0.000    0.000    0.000 dd_tracing.py:18(NullSpan)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        2    0.000    0.000    0.000    0.000 _itertools.py:118()
+        1    0.000    0.000    0.000    0.000 __init__.py:506(_discover_resolvers)
+        1    0.000    0.000    0.000    0.000 overlay.py:28(HashableNamespace)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :29(__init__)
+        1    0.000    0.000    0.000    0.000 tracing.py:311(TraceRequestHeadersSentParams)
+        1    0.000    0.000    0.000    0.000 __init__.py:138(_EntryPointMatch)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:366(Group)
+        1    0.000    0.000    0.000    0.000 http_exceptions.py:81(LineTooLong)
+        1    0.000    0.000    0.000    0.000 netrc.py:66(netrc)
+        1    0.000    0.000    0.000    0.000 compression_utils.py:92(__init__)
+        1    0.000    0.000    0.000    0.000 helpers.py:635(BaseTimerContext)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:219(EncodedWord)
+        1    0.000    0.000    0.000    0.000 compression_utils.py:85(CompressObjArgs)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:600(LocalPart)
+        1    0.000    0.000    0.000    0.000 payload.py:104(__init__)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 http_writer.py:39(HttpVersion)
+        1    0.000    0.000    0.000    0.000 streams.py:587(__init__)
+        1    0.000    0.000    0.000    0.000 router.py:656(RouterRateLimitErrorBasic)
+        1    0.000    0.000    0.000    0.000 router.py:670(RouterRateLimitError)
+        1    0.000    0.000    0.000    0.000 nodes.py:539(Name)
+        1    0.000    0.000    0.000    0.000 nodes.py:1041(ExtensionAttribute)
+        1    0.000    0.000    0.000    0.000 nodes.py:1065(InternalName)
+        1    0.000    0.000    0.000    0.000 open_inference.py:270(DocumentAttributes)
+        1    0.000    0.000    0.000    0.000 _types.py:3819(CurrentItemRateLimit)
+        1    0.000    0.000    0.000    0.000 custom_logger.py:69(__init__)
+        1    0.000    0.000    0.000    0.000 anthropic.py:387(ContentTextBlockDelta)
+        1    0.000    0.000    0.000    0.000 openai.py:1909(OpenAIRealtimeStreamResponseBaseObject)
+        1    0.000    0.000    0.000    0.000 supervised_hyperparameters_param.py:11(SupervisedHyperparametersParam)
+        1    0.000    0.000    0.000    0.000 assistant_create_params.py:143(ToolResourcesFileSearchVectorStoreChunkingStrategyAuto)
+        1    0.000    0.000    0.000    0.000 assistant_update_params.py:179(ToolResourcesFileSearch)
+        1    0.000    0.000    0.000    0.000 thread_create_and_run_params.py:220(ThreadToolResourcesCodeInterpreter)
+        1    0.000    0.000    0.000    0.000 thread_create_and_run_params.py:185(ThreadMessageAttachment)
+        1    0.000    0.000    0.000    0.000 thread_create_and_run_params.py:239(ThreadToolResourcesFileSearchVectorStoreChunkingStrategyStaticStatic)
+        1    0.000    0.000    0.000    0.000 thread_create_and_run_params.py:254(ThreadToolResourcesFileSearchVectorStoreChunkingStrategyStatic)
+        1    0.000    0.000    0.000    0.000 thread_create_and_run_params.py:311(ThreadToolResources)
+        1    0.000    0.000    0.000    0.000 thread_create_and_run_params.py:405(ThreadCreateAndRunParamsNonStreaming)
+        1    0.000    0.000    0.000    0.000 queue.py:242(LifoQueue)
+        1    0.000    0.000    0.000    0.000 openai.py:585(ChatCompletionAnnotationURLCitation)
+        1    0.000    0.000    0.000    0.000 openai.py:186(OpenAICreateThreadParamsToolResources)
+        1    0.000    0.000    0.000    0.000 thread_create_and_run_params.py:383(TruncationStrategy)
+        1    0.000    0.000    0.000    0.000 image_url_param.py:10(ImageURLParam)
+        1    0.000    0.000    0.000    0.000 run_create_params.py:191(AdditionalMessageAttachmentToolFileSearch)
+        1    0.000    0.000    0.000    0.000 thread_create_and_run_params.py:193(ThreadMessage)
+        1    0.000    0.000    0.000    0.000 image_url_content_block_param.py:12(ImageURLContentBlockParam)
+        1    0.000    0.000    0.000    0.000 message_create_params.py:42(AttachmentToolFileSearch)
+        1    0.000    0.000    0.000    0.000 run_submit_tool_outputs_params.py:16(RunSubmitToolOutputsParamsBase)
+        1    0.000    0.000    0.000    0.000 message_update_params.py:13(MessageUpdateParams)
+        1    0.000    0.000    0.000    0.000 thread_update_params.py:34(ToolResourcesCodeInterpreter)
+        1    0.000    0.000    0.000    0.000 _response.py:493(BinaryAPIResponse)
+        1    0.000    0.000    0.000    0.000 _response.py:560(AsyncStreamedBinaryAPIResponse)
+        1    0.000    0.000    0.000    0.000 azure.py:45(MutuallyExclusiveAuthError)
+        1    0.000    0.000    0.000    0.000 function_tool_param.py:12(FunctionToolParam)
+        1    0.000    0.000    0.000    0.000 thread_create_params.py:56(MessageAttachmentToolFileSearch)
+        1    0.000    0.000    0.000    0.000 image_input_reference_param.py:10(ImageInputReferenceParam)
+        1    0.000    0.000    0.000    0.000 static_file_chunking_strategy_param.py:10(StaticFileChunkingStrategyParam)
+        1    0.000    0.000    0.000    0.000 _base_client.py:1386(_DefaultAsyncHttpxClient)
+        1    0.000    0.000    0.000    0.000 tool_choice_allowed_param.py:11(ToolChoiceAllowedParam)
+        1    0.000    0.000    0.000    0.000 grader_inputs_param.py:19(GraderInputsParamItemOutputText)
+        1    0.000    0.000    0.000    0.000 grader_inputs_param.py:29(GraderInputsParamItemInputImage)
+        1    0.000    0.000    0.000    0.000 file_create_params.py:13(FileCreateParams)
+        1    0.000    0.000    0.000    0.000 upload_create_params.py:41(ExpiresAfter)
+        1    0.000    0.000    0.000    0.000 moderation_text_input_param.py:10(ModerationTextInputParam)
+        1    0.000    0.000    0.000    0.000 tool_choice_types_param.py:10(ToolChoiceTypesParam)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:392(ApplyPatchCallOutput)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:365(ApplyPatchCall)
+        1    0.000    0.000    0.000    0.000 string_check_grader_param.py:10(StringCheckGraderParam)
+        1    0.000    0.000    0.000    0.000 text_similarity_grader_param.py:10(TextSimilarityGraderParam)
+        1    0.000    0.000    0.000    0.000 vector_store_search_params.py:15(VectorStoreSearchParams)
+        1    0.000    0.000    0.000    0.000 computer_action_param.py:135(Scroll)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:127(FunctionCallOutput)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:153(ToolSearchCall)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call_param.py:186(ActionWait)
+        1    0.000    0.000    0.000    0.000 response_input_image_content_param.py:11(ResponseInputImageContentParam)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:265(ShellCall)
+        1    0.000    0.000    0.000    0.000 chat_completion_message_custom_tool_call_param.py:20(ChatCompletionMessageCustomToolCallParam)
+        1    0.000    0.000    0.000    0.000 chat_completion_stream_options_param.py:10(ChatCompletionStreamOptionsParam)
+        1    0.000    0.000    0.000    0.000 container_network_policy_domain_secret_param.py:10(ContainerNetworkPolicyDomainSecretParam)
+        1    0.000    0.000    0.000    0.000 dd_tracing.py:37(NullTracer)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:231(LocalShellCallOutput)
+        1    0.000    0.000    0.000    0.000 chat_completion_named_tool_choice_param.py:15(ChatCompletionNamedToolChoiceParam)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:247(ShellCallAction)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:325(ApplyPatchCallOperationCreateFile)
+        1    0.000    0.000    0.000    0.000 response_output_text_param.py:77(AnnotationFilePath)
+        1    0.000    0.000    0.000    0.000 response_reasoning_item_param.py:21(Content)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call_param.py:60(ActionDoubleClick)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call_param.py:86(ActionDrag)
+        1    0.000    0.000    0.000    0.000 response_computer_tool_call_param.py:173(ActionType)
+        1    0.000    0.000    0.000    0.000 computer_action_list_param.py:45(DoubleClick)
+        1    0.000    0.000    0.000    0.000 computer_action_list_param.py:61(DragPath)
+        1    0.000    0.000    0.000    0.000 response_function_shell_call_output_content_param.py:31(ResponseFunctionShellCallOutputContentParam)
+        1    0.000    0.000    0.000    0.000 response_prompt_param.py:17(ResponsePromptParam)
+        1    0.000    0.000    0.000    0.000 utils.py:143(SearchContextCostPerQuery)
+        1    0.000    0.000    0.000    0.000 container_auto_param.py:21(ContainerAutoParam)
+        1    0.000    0.000    0.000    0.000 web_search_preview_tool_param.py:11(UserLocation)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:128(FunctionCallOutput)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:366(ApplyPatchCall)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:212(LocalShellCall)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:393(ApplyPatchCallOutput)
+        1    0.000    0.000    0.000    0.000 chat_completion_assistant_message_param.py:46(ChatCompletionAssistantMessageParam)
+        1    0.000    0.000    0.000    0.000 batch_list_params.py:10(BatchListParams)
+        1    0.000    0.000    0.000    0.000 tool_param.py:191(CodeInterpreterContainerCodeInterpreterToolAuto)
+        1    0.000    0.000    0.000    0.000 web_search_tool_param.py:51(WebSearchToolParam)
+        1    0.000    0.000    0.000    0.000 unix_events.py:980(BaseChildWatcher)
+        1    0.000    0.000    0.000    0.000 base_subprocess.py:255(WriteSubprocessPipeProto)
+        1    0.000    0.000    0.000    0.000 transports.py:46(ReadTransport)
+        1    0.000    0.000    0.000    0.000 locks.py:13(_ContextManagerMixin)
+        1    0.000    0.000    0.000    0.000 queues.py:234(LifoQueue)
+        1    0.000    0.000    0.000    0.000 protocols.py:66(Protocol)
+        1    0.000    0.000    0.000    0.000 locks.py:158(Event)
+        1    0.000    0.000    0.000    0.000 locks.py:331(Semaphore)
+        1    0.000    0.000    0.000    0.000 events.py:610(AbstractEventLoopPolicy)
+        1    0.000    0.000    0.000    0.000 transports.py:197(SubprocessTransport)
+        1    0.000    0.000    0.000    0.000 locks.py:421(BoundedSemaphore)
+        1    0.000    0.000    0.000    0.000 file_list_params.py:10(FileListParams)
+        1    0.000    0.000    0.000    0.000 eval_create_params.py:38(EvalCreateParams)
+        1    0.000    0.000    0.000    0.000 response_format_json_schema.py:11(JSONSchema)
+        1    0.000    0.000    0.000    0.000 eval_create_params.py:67(DataSourceConfigCustom)
+        1    0.000    0.000    0.000    0.000 reasoning.py:13(Reasoning)
+        1    0.000    0.000    0.000    0.000 comparison_filter.py:13(ComparisonFilter)
+        1    0.000    0.000    0.000    0.000 eval_create_params.py:189(TestingCriterionLabelModel)
+        1    0.000    0.000    0.000    0.000 idna.py:144(Codec)
+        1    0.000    0.000    0.000    0.000 region.py:4(Region)
+        1    0.000    0.000    0.000    0.000 lexer.py:345(combined)
+        1    0.000    0.000    0.000    0.000 progress.py:928(ProgressSample)
+        1    0.000    0.000    0.000    0.000 utils.py:2764(StandardLoggingPayloadStatusFields)
+        1    0.000    0.000    0.000    0.000 filter.py:54(FunctionFilter)
+        1    0.000    0.000    0.000    0.000 __init__.py:65(CodeTagFilter)
+        1    0.000    0.000    0.000    0.000 control.py:22()
+        1    0.000    0.000    0.000    0.000 _make.py:2744(Factory)
+        1    0.000    0.000    0.000    0.000 exceptions.py:64(UnannotatedAttributeError)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 pager.py:17(SystemPager)
+        1    0.000    0.000    0.000    0.000 __init__.py:81(_make_getattr)
+        1    0.000    0.000    0.000    0.000 configparser.py:361(Interpolation)
+        1    0.000    0.000    0.000    0.000 configparser.py:169(Error)
+        1    0.000    0.000    0.000    0.000 theme.py:87(__init__)
+        1    0.000    0.000    0.000    0.000 console.py:268(ConsoleRenderable)
+        1    0.000    0.000    0.000    0.000 decorators.py:323(argument)
+        1    0.000    0.000    0.000    0.000 types.py:516(IntRange)
+        1    0.000    0.000    0.000    0.000 _headers.py:105(__bool__)
+        1    0.000    0.000    0.000    0.000 _writers.py:85(__init__)
+        1    0.000    0.000    0.000    0.000 _readers.py:123(__init__)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:26(CapacityLimiterStatistics)
+        1    0.000    0.000    0.000    0.000 _base.py:96(_FirstCompletedWaiter)
+        1    0.000    0.000    0.000    0.000 _content.py:32(__init__)
+        1    0.000    0.000    0.000    0.000 _urls.py:612(__bool__)
+        1    0.000    0.000    0.000    0.000 _config.py:283(Limits)
+        1    0.000    0.000    0.000    0.000 default.py:251(AsyncResponseStream)
+        1    0.000    0.000    0.000    0.000 constants.py:636()
+        1    0.000    0.000    0.000    0.000 request.py:1050(HTTPBasicAuthHandler)
+        1    0.000    0.000    0.000    0.000 request.py:1061(ProxyBasicAuthHandler)
+        1    0.000    0.000    0.000    0.000 _auth.py:113(FunctionAuth)
+        1    0.000    0.000    0.000    0.000 parser.py:16(Parser)
+        1    0.000    0.000    0.000    0.000 request.py:605(BaseHandler)
+        1    0.000    0.000    0.000    0.000 request.py:1226(HTTPDigestAuthHandler)
+        1    0.000    0.000    0.000    0.000 request.py:1244(ProxyDigestAuthHandler)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:258(HTTPStatusError)
+        1    0.000    0.000    0.000    0.000 response.py:37(addclosehook)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:309(StreamConsumed)
+        1    0.000    0.000    0.000    0.000 _decoders.py:18(ContentDecoder)
+        1    0.000    0.000    0.000    0.000 zipfile.py:2008(PyZipFile)
+        1    0.000    0.000    0.000    0.000 zipfile.py:2289(FastLookup)
+        1    0.000    0.000    0.000    0.000 _collections.py:5(FreezableDefaultDict)
+        1    0.000    0.000    0.000    0.000 abc.py:276(SourceLoader)
+        1    0.000    0.000    0.000    0.000 __init__.py:826(Lookup)
+        1    0.000    0.000    0.000    0.000 __init__.py:73(SupportsGe)
+        1    0.000    0.000    0.000    0.000 __init__.py:78(SupportsLt)
+        1    0.000    0.000    0.000    0.000 __init__.py:88(SupportsMod)
+        1    0.000    0.000    0.000    0.000 _std_types_schema.py:161(DequeValidator)
+        1    0.000    0.000    0.000    0.000 csv.py:130(DictWriter)
+        1    0.000    0.000    0.000    0.000 csv.py:165(Sniffer)
+        1    0.000    0.000    0.000    0.000 zipfile.py:785(_Tellable)
+        1    0.000    0.000    0.000    0.000 _generics.py:77(DeepChainMap)
+        1    0.000    0.000    0.000    0.000 _generics.py:109(PydanticGenericMetadata)
+        1    0.000    0.000    0.000    0.000 _mock_val_ser.py:70(MockValSer)
+        1    0.000    0.000    0.000    0.000 __init__.py:72(BaseValidateHandlerProtocol)
+        1    0.000    0.000    0.000    0.000 __init__.py:132(ValidateJsonHandlerProtocol)
+        1    0.000    0.000    0.000    0.000 _schema_validator.py:53(PluggableSchemaValidator)
+        1    0.000    0.000    0.000    0.000 functional_validators.py:579(FreeModelBeforeValidator)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:2400(TypeVarTuple)
+        1    0.000    0.000    0.000    0.000 __init__.py:108(ErrorTypeInfo)
+        1    0.000    0.000    0.000    0.000 core_schema.py:3434(CallSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:266(PlainSerializerFunctionSerSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1300(IsInstanceSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1418(UuidSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1786(GeneratorSchema)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:2602(dataclass_transform)
+        1    0.000    0.000    0.000    0.000 errors.py:72(PydanticErrorMixin)
+        1    0.000    0.000    0.000    0.000 core_schema.py:438(ComputedField)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1453(ListSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1604(TupleSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1668(SetSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2913(ModelField)
+        1    0.000    0.000    0.000    0.000 _decorators.py:72(RootValidatorDecoratorInfo)
+        1    0.000    0.000    0.000    0.000 representer.py:272(Representer)
+        1    0.000    0.000    0.000    0.000 __init__.py:790(Filterer)
+        1    0.000    0.000    0.000    0.000 __init__.py:1237(_StderrHandler)
+        1    0.000    0.000    0.000    0.000 parse.py:323(DefragResult)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:20(AddressValueError)
+        1    0.000    0.000    0.000    0.000 decoder.py:20(JSONDecodeError)
+        1    0.000    0.000    0.000    0.000 argparse.py:118(_AttributeHolder)
+        1    0.000    0.000    0.000    0.000 threading.py:1145(name)
+        1    0.000    0.000    0.000    0.000 pathlib.py:348(_WildcardSelector)
+        1    0.000    0.000    0.000    0.000 exceptions.py:29(EOF)
+        1    0.000    0.000    0.000    0.000 util.py:70(PtyProcessError)
+        1    0.000    0.000    0.000    0.000 shutil.py:64(SameFileError)
+        1    0.000    0.000    0.000    0.000 shutil.py:71(ExecError)
+        2    0.000    0.000    0.000    0.000 dataclasses.py:179(__repr__)
+        1    0.000    0.000    0.000    0.000 {built-in method sys.getfilesystemencoding}
+        1    0.000    0.000    0.000    0.000 _utils.py:24(NoLock)
+        1    0.000    0.000    0.000    0.000 _handshake.py:48(handshake_response)
+        1    0.000    0.000    0.000    0.000 _socket.py:55(sock_opt)
+        1    0.000    0.000    0.000    0.000 _figure.py:54(_set_interactive)
+        1    0.000    0.000    0.000    0.000 duration.py:35(DurationError)
+        1    0.000    0.000    0.000    0.000 _utility.py:315(memorize)
+        1    0.000    0.000    0.000    0.000 rbac_authorization_api.py:27(RbacAuthorizationApi)
+        1    0.000    0.000    0.000    0.000 storage_api.py:27(StorageApi)
+        1    0.000    0.000    0.000    0.000 storagemigration_api.py:27(StoragemigrationApi)
+        1    0.000    0.000    0.000    0.000 autoscaling_api.py:27(AutoscalingApi)
+        1    0.000    0.000    0.000    0.000 certificates_api.py:27(CertificatesApi)
+        1    0.000    0.000    0.000    0.000 discovery_api.py:27(DiscoveryApi)
+        1    0.000    0.000    0.000    0.000 events_api.py:27(EventsApi)
+        1    0.000    0.000    0.000    0.000 flowcontrol_apiserver_api.py:27(FlowcontrolApiserverApi)
+        1    0.000    0.000    0.000    0.000 logs_api.py:27(LogsApi)
+        1    0.000    0.000    0.000    0.000 internal_apiserver_api.py:27(InternalApiserverApi)
+        1    0.000    0.000    0.000    0.000 openid_api.py:27(OpenidApi)
+        1    0.000    0.000    0.000    0.000 exceptions.py:20(ApiTypeError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:84(ApiException)
+        1    0.000    0.000    0.000    0.000 apiextensions_api.py:27(ApiextensionsApi)
+        1    0.000    0.000    0.000    0.000 apis_api.py:27(ApisApi)
+        1    0.000    0.000    0.000    0.000 authorization_api.py:27(AuthorizationApi)
+        1    0.000    0.000    0.000    0.000 exc.py:22(BadSignature)
+        1    0.000    0.000    0.000    0.000 exc.py:92(BadPayload)
+        1    0.000    0.000    0.000    0.000 serializer.py:26(_PDataSerializer)
+        1    0.000    0.000    0.000    0.000 tag.py:147(PassList)
+        1    0.000    0.000    0.000    0.000 tag.py:191(TagUUID)
+        1    0.000    0.000    0.000    0.000 pool.py:57(RemoteTraceback)
+        1    0.000    0.000    0.000    0.000 context.py:295(ForkServerProcess)
+        1    0.000    0.000    0.000    0.000 context.py:310(ForkServerContext)
+        1    0.000    0.000    0.000    0.000 util.py:385(ForkAwareLocal)
+        1    0.000    0.000    0.000    0.000 converters.py:230(UUIDConverter)
+        1    0.000    0.000    0.000    0.000 converters.py:48(UnicodeConverter)
+        1    0.000    0.000    0.000    0.000 converters.py:85(AnyConverter)
+        1    0.000    0.000    0.000    0.000 rules.py:20(Weighting)
+        1    0.000    0.000    0.000    0.000 rules.py:138(RuleFactory)
+        1    0.000    0.000    0.000    0.000 rules.py:150(Subdomain)
+        1    0.000    0.000    0.000    0.000 templating.py:39(Environment)
+        1    0.000    0.000    0.000    0.000 matcher.py:16(SlashRequired)
+        1    0.000    0.000    0.000    0.000 history.py:25(__init__)
+        1    0.000    0.000    0.000    0.000 httpchecksum.py:99(CrtCrc32cChecksum)
+        1    0.000    0.000    0.000    0.000 auth.py:107(BaseSigner)
+        1    0.000    0.000    0.000    0.000 hooks.py:29(NodeList)
+        1    0.000    0.000    0.000    0.000 credentials.py:1215(OriginalEC2Provider)
+        1    0.000    0.000    0.000    0.000 model.py:289(ClientContextParameter)
+        1    0.000    0.000    0.000    0.000 credentials.py:1060(InstanceMetadataProvider)
+        1    0.000    0.000    0.000    0.000 model.py:931(ShapeNameGenerator)
+        1    0.000    0.000    0.000    0.000 paginate.py:173(PaginatorModel)
+        1    0.000    0.000    0.000    0.000 bucket.py:9(Clock)
+        1    0.000    0.000    0.000    0.000 standard.py:106(RetryEventAdapter)
+        1    0.000    0.000    0.000    0.000 discovery.py:29(EndpointDiscoveryRequired)
+        1    0.000    0.000    0.000    0.000 credentials.py:1250(SharedCredentialProvider)
+        1    0.000    0.000    0.000    0.000 docstringparser.py:99(Node)
+        1    0.000    0.000    0.000    0.000 session.py:1219(SubsetChainConfigFactory)
+        1    0.000    0.000    0.000    0.000 _parser.py:661(_result)
+        1    0.000    0.000    0.000    0.000 utils.py:368(BadIMDSRequestError)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:37(AWSHTTPResponse)
+        1    0.000    0.000    0.000    0.000 utils.py:3316(FileWebIdentityTokenLoader)
+        1    0.000    0.000    0.000    0.000 waiter.py:86(NormalizedOperationMethod)
+        1    0.000    0.000    0.000    0.000 parser.py:501(ParsedResult)
+        1    0.000    0.000    0.000    0.000 visitor.py:59(Options)
+        1    0.000    0.000    0.000    0.000 functions.py:45(FunctionRegistry)
+        1    0.000    0.000    0.000    0.000 standard.py:342(ThrottledRetryableChecker)
+        1    0.000    0.000    0.000    0.000 standard.py:386(ModeledRetryErrorDetector)
+        1    0.000    0.000    0.000    0.000 standard.py:423(ThrottlingErrorDetector)
+        1    0.000    0.000    0.000    0.000 retryhandler.py:173(RetryHandler)
+        1    0.000    0.000    0.000    0.000 retryhandler.py:214(BaseChecker)
+        1    0.000    0.000    0.000    0.000 monitoring.py:164(BaseMonitorEvent)
+        1    0.000    0.000    0.000    0.000 monitoring.py:546(SocketPublisher)
+        1    0.000    0.000    0.000    0.000 errorfactory.py:57(ClientExceptionsFactory)
+        1    0.000    0.000    0.000    0.000 utils.py:82(LazyLoadedWaiterModel)
+        1    0.000    0.000    0.000    0.000 tools.py:250(Parser)
+        1    0.000    0.000    0.000    0.000 monitoring.py:252(APICallAttemptEvent)
+        1    0.000    0.000    0.000    0.000 docstring.py:30(ActionDocstring)
+        1    0.000    0.000    0.000    0.000 client.py:16(Boto3ClientDocumenter)
+        1    0.000    0.000    0.000    0.000 model.py:47(Action)
+        1    0.000    0.000    0.000    0.000 waiter.py:27(WaiterResourceDocumenter)
+        1    0.000    0.000    0.000    0.000 action.py:220(CustomModeledAction)
+        1    0.000    0.000    0.000    0.000 model.py:33(Identifier)
+        1    0.000    0.000    0.000    0.000 model.py:139(Request)
+        1    0.000    0.000    0.000    0.000 model.py:154(Waiter)
+        1    0.000    0.000    0.000    0.000 model.py:222(Collection)
+        1    0.000    0.000    0.000    0.000 response.py:158(ResourceHandler)
+        1    0.000    0.000    0.000    0.000 exceptions.py:711(InternalServerError)
+        1    0.000    0.000    0.000    0.000 serving.py:866(ThreadedWSGIServer)
+        1    0.000    0.000    0.000    0.000 exceptions.py:832(Aborter)
+        1    0.000    0.000    0.000    0.000 structures.py:92(ImmutableTypeConversionDict)
+        1    0.000    0.000    0.000    0.000 structures.py:789(ImmutableDict)
+        1    0.000    0.000    0.000    0.000 multipart.py:18(Preamble)
+        1    0.000    0.000    0.000    0.000 multipart.py:23(Field)
+        1    0.000    0.000    0.000    0.000 multipart.py:36(Data)
+        1    0.000    0.000    0.000    0.000 multipart.py:42(Epilogue)
+        1    0.000    0.000    0.000    0.000 multipart.py:285(MultipartEncoder)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:491(AWSPreparedRequest)
+        1    0.000    0.000    0.000    0.000 utils.py:122(AutoPopulatedParam)
+        1    0.000    0.000    0.000    0.000 params.py:157(ResponseParamsDocumenter)
+        1    0.000    0.000    0.000    0.000 parsers.py:138(ResponseParserFactory)
+        1    0.000    0.000    0.000    0.000 serialize.py:315(EC2Serializer)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:591(_HeaderKey)
+        1    0.000    0.000    0.000    0.000 parsers.py:754(BaseEventStreamParser)
+        1    0.000    0.000    0.000    0.000 parsers.py:849(JSONParser)
+        1    0.000    0.000    0.000    0.000 exceptions.py:131(LocationParseError)
+        1    0.000    0.000    0.000    0.000 resource_owner_password_credentials.py:14(ResourceOwnerPasswordCredentialsGrant)
+        1    0.000    0.000    0.000    0.000 pre_configured.py:184(BackendApplicationServer)
+        1    0.000    0.000    0.000    0.000 version_header.py:1()
+        1    0.000    0.000    0.000    0.000 simple_server.py:28(ServerHandler)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:285(Mozilla)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:295(Netscape)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:316(Chrome)
+        1    0.000    0.000    0.000    0.000 socketserver.py:777(StreamRequestHandler)
+        1    0.000    0.000    0.000    0.000 socketserver.py:822(_SocketWriter)
+        1    0.000    0.000    0.000    0.000 utils.py:17(filter_params)
+        1    0.000    0.000    0.000    0.000 signature_only.py:17(SignatureOnlyEndpoint)
+        1    0.000    0.000    0.000    0.000 request_token.py:21(RequestTokenEndpoint)
+        1    0.000    0.000    0.000    0.000 http.py:1641(RequestMockBuilder)
+        1    0.000    0.000    0.000    0.000 universe.py:22(EmptyUniverseError)
+        1    0.000    0.000    0.000    0.000 model.py:314(RawModel)
+        1    0.000    0.000    0.000    0.000 model.py:334(MediaModel)
+        1    0.000    0.000    0.000    0.000 http.py:232(MediaUploadProgress)
+        1    0.000    0.000    0.000    0.000 http.py:783(_StreamSlice)
+        1    0.000    0.000    0.000    0.000 model.py:54(Model)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:405(Grail)
+        1    0.000    0.000    0.000    0.000 generator.py:460(DecodedGenerator)
+        1    0.000    0.000    0.000    0.000 socks.py:67(Socks5Error)
+        1    0.000    0.000    0.000    0.000 unicode.py:213(Chinese)
+        1    0.000    0.000    0.000    0.000 unicode.py:282(Hangul)
+        1    0.000    0.000    0.000    0.000 unicode.py:307(Thai)
+        1    0.000    0.000    0.000    0.000 results.py:100(List)
+        1    0.000    0.000    0.000    0.000 core.py:3962(_ErrorStop)
+        1    0.000    0.000    0.000    0.000 core.py:5780(Dict)
+        1    0.000    0.000    0.000    0.000 exceptions.py:12(RequestException)
+        1    0.000    0.000    0.000    0.000 exceptions.py:31(JSONDecodeError)
+        1    0.000    0.000    0.000    0.000 auth.py:69(AuthBase)
+        1    0.000    0.000    0.000    0.000 sync_handler.py:6(__init__)
+        1    0.000    0.000    0.000    0.000 retry.py:33(RequestHistory)
+        1    0.000    0.000    0.000    0.000 exceptions.py:85(MaxRetryError)
+        1    0.000    0.000    0.000    0.000 response.py:70(ContentDecoder)
+        1    0.000    0.000    0.000    0.000 _request_methods.py:51(__init__)
+        1    0.000    0.000    0.000    0.000 ssl_match_hostname.py:20(CertificateError)
+        1    0.000    0.000    0.000    0.000 extensions.py:92(ExtensionNotFound)
+        1    0.000    0.000    0.000    0.000 exceptions.py:31(TransportError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:35(RefreshError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:44(DefaultCredentialsError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:61(OAuthError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:99(OSError)
+        1    0.000    0.000    0.000    0.000 credentials.py:270(CredentialsWithTokenUri)
+        1    0.000    0.000    0.000    0.000 exceptions.py:47(NotYetFinalized)
+        1    0.000    0.000    0.000    0.000 padding.py:20(_MaxLength)
+        1    0.000    0.000    0.000    0.000 padding.py:28(_DigestLength)
+        1    0.000    0.000    0.000    0.000 __init__.py:10(Render)
+        1    0.000    0.000    0.000    0.000 _confirm.py:7(Confirm)
+        1    0.000    0.000    0.000    0.000 questions.py:116(Text)
+        1    0.000    0.000    0.000    0.000 api_handler.py:5(APIHandler)
+        1    0.000    0.000    0.000    0.000 import_export_handler.py:8(ImportExportHandler)
+        1    0.000    0.000    0.000    0.000 ai_handler.py:13(__init__)
+        1    0.000    0.000    0.000    0.000 prompt.py:11(PromptError)
+        1    0.000    0.000    0.000    0.000 questions.py:166(Checkbox)
+        1    0.000    0.000    0.000    0.000 exceptions.py:1(ConnpyError)
+        1    0.000    0.000    0.000    0.000 _argparse.py:545(ArgumentDefaultsRichHelpFormatter)
+        1    0.000    0.000    0.000    0.000 config_handler.py:8(__init__)
+        1    0.000    0.000    0.000    0.000 _argparse.py:538(RawTextRichHelpFormatter)
+        1    0.000    0.000    0.000    0.000 themes.py:84(Default)
+        1    0.000    0.000    0.000    0.000 formatters.py:51(ParameterizingString)
+        1    0.000    0.000    0.000    0.000 formatters.py:237(FormattingOtherString)
+        1    0.000    0.000    0.000    0.000 colorspace.py:28(RGBColor)
+        1    0.000    0.000    0.000    0.000 table_vs16.py:1()
+        1    0.000    0.000    0.000    0.000 parse_link_destination.py:8(_Result)
+        1    0.000    0.000    0.000    0.000 exceptions.py:420(AliasConflictParameterError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:14(PoolError)
+        1    0.000    0.000    0.000    0.000 __init__.py:22(NullHandler)
+        1    0.000    0.000    0.000    0.000 transformation.py:104(OVHCloudChatCompletionStreamingHandler)
+        1    0.000    0.000    0.000    0.000 vertex_ai_non_gemini.py:16(VertexAIError)
+        1    0.000    0.000    0.000    0.000 main.py:19(VertexAIError)
+        1    0.000    0.000    0.000    0.000 handler.py:15(VLLMError)
+        1    0.000    0.000    0.000    0.000 transformation.py:17(HerokuError)
+        1    0.000    0.000    0.000    0.000 handler.py:82(__init__)
+        1    0.000    0.000    0.000    0.000 handler.py:40(CohereError)
+        1    0.000    0.000    0.000    0.000 gemini.py:119(BidiGenerateContentRealtimeInputConfig)
+        1    0.000    0.000    0.000    0.000 gemini.py:159(GeminiImageGenerationInstance)
+        1    0.000    0.000    0.000    0.000 gemini.py:213(GeminiGeneratedImage)
+        1    0.000    0.000    0.000    0.000 gemini.py:233(GeminiVideoGenerationInstance)
+        1    0.000    0.000    0.000    0.000 ollama.py:24(OllamaToolCall)
+        1    0.000    0.000    0.000    0.000 cohere.py:21(ToolCallObject)
+        1    0.000    0.000    0.000    0.000 cohere.py:97(CohereV2ChatResponse)
+        1    0.000    0.000    0.000    0.000 bedrock.py:279(ToolUseBlockStartEvent)
+        1    0.000    0.000    0.000    0.000 bedrock.py:326(OutputConfigBlock)
+        1    0.000    0.000    0.000    0.000 bedrock.py:491(TwelveLabsS3Location)
+        1    0.000    0.000    0.000    0.000 bedrock.py:496(TwelveLabsMediaSource)
+        1    0.000    0.000    0.000    0.000 bedrock.py:576(NovaSourceObject)
+        1    0.000    0.000    0.000    0.000 bedrock.py:612(NovaTextParamsWithSegmentation)
+        1    0.000    0.000    0.000    0.000 bedrock.py:868(BedrockRerankBedrockRerankingConfiguration)
+        1    0.000    0.000    0.000    0.000 bedrock.py:878(BedrockRerankTextDocument)
+        1    0.000    0.000    0.000    0.000 bedrock.py:913(BedrockS3InputDataConfig)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:338(Date)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:368(LogprobsCandidate)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:646(VertexAIBatchPredictionJob)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:344(Citation)
+        1    0.000    0.000    0.000    0.000 common_utils.py:15(CohereError)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:20(FileDataType)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:41(HttpxFunctionCall)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:46(HttpxExecutableCode)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:124(Retrieval)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:197(SpeechConfig)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:485(InstanceVideo)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:549(VertexAITextEmbeddingsResponseObject)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:592(OutputConfig)
+        1    0.000    0.000    0.000    0.000 posthog.py:14(PostHogCredentialsObject)
+        1    0.000    0.000    0.000    0.000 supabase.py:12(Supabase)
+        1    0.000    0.000    0.000    0.000 bedrock.py:81(BedrockConverseReasoningContentBlockDelta)
+        1    0.000    0.000    0.000    0.000 bedrock.py:474(AmazonTitanMultimodalEmbeddingRequest)
+        1    0.000    0.000    0.000    0.000 bedrock.py:528(TwelveLabsAsyncInvokeRequest)
+        1    0.000    0.000    0.000    0.000 bedrock.py:76(BedrockConverseReasoningContentBlock)
+        1    0.000    0.000    0.000    0.000 bedrock.py:97(CitationWebLocationBlock)
+        1    0.000    0.000    0.000    0.000 bedrock.py:117(CitationReferenceBlock)
+        1    0.000    0.000    0.000    0.000 bedrock.py:176(ConverseMetricsBlock)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 __init__.py:862(Lookup)
+        1    0.000    0.000    0.000    0.000 tracing.py:283(TraceDnsResolveHostStartParams)
+        1    0.000    0.000    0.000    0.000 pickle.py:73(PickleError)
+        1    0.000    0.000    0.000    0.000 pickle.py:77(PicklingError)
+        1    0.000    0.000    0.000    0.000 pickle.py:97(_Stop)
+        1    0.000    0.000    0.000    0.000 payload.py:62(LookupError)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:349(GroupList)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:61(ClientError)
+        1    0.000    0.000    0.000    0.000 netrc.py:22(_netrclex)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:823(ContentType)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:484(InvalidMailbox)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:915(WhiteSpaceTerminal)
+        1    0.000    0.000    0.000    0.000 cookies.py:582(SimpleCookie)
+        1    0.000    0.000    0.000    0.000 router.py:545(SearchToolInfoTypedDict)
+        1    0.000    0.000    0.000    0.000 search.py:76(AvailableSearchProvider)
+        1    0.000    0.000    0.000    0.000 nodes.py:407(Include)
+        1    0.000    0.000    0.000    0.000 nodes.py:416(Import)
+        1    0.000    0.000    0.000    0.000 nodes.py:450(Assign)
+        1    0.000    0.000    0.000    0.000 nodes.py:556(NSRef)
+        1    0.000    0.000    0.000    0.000 nodes.py:939(Operand)
+        1    0.000    0.000    0.000    0.000 utils.py:720(Joiner)
+        1    0.000    0.000    0.000    0.000 nodes.py:1032(EnvironmentAttribute)
+        1    0.000    0.000    0.000    0.000 nodes.py:804(Test)
+        1    0.000    0.000    0.000    0.000 open_inference.py:321(EmbeddingAttributes)
+        1    0.000    0.000    0.000    0.000 open_inference.py:336(ToolCallAttributes)
+        1    0.000    0.000    0.000    0.000 gzip.py:117(BadGzipFile)
+        1    0.000    0.000    0.000    0.000 anthropic.py:255(CitationsObject)
+        1    0.000    0.000    0.000    0.000 anthropic.py:339(AnthropicMetadata)
+        1    0.000    0.000    0.000    0.000 anthropic.py:401(ContentJsonBlockDelta)
+        1    0.000    0.000    0.000    0.000 rerank.py:50(RerankResponseDocument)
+        1    0.000    0.000    0.000    0.000 enkryptai.py:90(EnkryptAIResponse)
+        1    0.000    0.000    0.000    0.000 utils.py:3332(ProviderSpecificHeader)
+        1    0.000    0.000    0.000    0.000 transcription_create_params.py:119(ChunkingStrategyVadConfig)
+        1    0.000    0.000    0.000    0.000 agents.py:119(AgentInterface)
+        1    0.000    0.000    0.000    0.000 openai.py:1121(ContextManagementEntry)
+        1    0.000    0.000    0.000    0.000 job_create_params.py:102(Hyperparameters)
+        1    0.000    0.000    0.000    0.000 job_create_params.py:128(IntegrationWandb)
+        1    0.000    0.000    0.000    0.000 dpo_method_param.py:12(DpoMethodParam)
+        1    0.000    0.000    0.000    0.000 job_create_params.py:161(Integration)
+        1    0.000    0.000    0.000    0.000 assistant_update_params.py:169(ToolResourcesCodeInterpreter)
+        1    0.000    0.000    0.000    0.000 thread_create_and_run_params.py:229(ThreadToolResourcesFileSearchVectorStoreChunkingStrategyAuto)
+        1    0.000    0.000    0.000    0.000 thread_create_and_run_params.py:177(ThreadMessageAttachmentToolFileSearch)
+        1    0.000    0.000    0.000    0.000 thread_create_and_run_params.py:293(ThreadToolResourcesFileSearch)
+        1    0.000    0.000    0.000    0.000 thread_create_and_run_params.py:353(ToolResourcesCodeInterpreter)
+        1    0.000    0.000    0.000    0.000 thread_create_and_run_params.py:362(ToolResourcesFileSearch)
+        1    0.000    0.000    0.000    0.000 thread_create_and_run_params.py:372(ToolResources)
+        1    0.000    0.000    0.000    0.000 queue.py:23(Full)
+        1    0.000    0.000    0.000    0.000 openai.py:762(ChatCompletionSystemMessage)
+        1    0.000    0.000    0.000    0.000 openai.py:888(ChatCompletionToolParam)
+        1    0.000    0.000    0.000    0.000 openai.py:2121(OpenAIBatchResult)
+        1    0.000    0.000    0.000    0.000 step_retrieve_params.py:13(StepRetrieveParams)
+        1    0.000    0.000    0.000    0.000 image_file_param.py:10(ImageFileParam)
+        1    0.000    0.000    0.000    0.000 message_create_params.py:50(Attachment)
+        1    0.000    0.000    0.000    0.000 run_submit_tool_outputs_params.py:34(RunSubmitToolOutputsParamsNonStreaming)
+        1    0.000    0.000    0.000    0.000 run_submit_tool_outputs_params.py:43(RunSubmitToolOutputsParamsStreaming)
+        1    0.000    0.000    0.000    0.000 thread_update_params.py:43(ToolResourcesFileSearch)
+        1    0.000    0.000    0.000    0.000 _base_client.py:2019(ForceMultipartDict)
+        1    0.000    0.000    0.000    0.000 _response.py:577(MissingStreamClassError)
+        1    0.000    0.000    0.000    0.000 _legacy_response.py:348(MissingStreamClassError)
+        1    0.000    0.000    0.000    0.000 code_interpreter_tool_param.py:10(CodeInterpreterToolParam)
+        1    0.000    0.000    0.000    0.000 run_create_params.py:265(RunCreateParamsStreaming)
+        1    0.000    0.000    0.000    0.000 image_generate_params.py:125(ImageGenerateParamsNonStreaming)
+        1    0.000    0.000    0.000    0.000 completion_create_params.py:165(CompletionCreateParamsNonStreaming)
+        1    0.000    0.000    0.000    0.000 moderation_create_params.py:15(ModerationCreateParams)
+        1    0.000    0.000    0.000    0.000 _base_client.py:1398(_DefaultAioHttpClient)
+        1    0.000    0.000    0.000    0.000 auto_file_chunking_strategy_param.py:10(AutoFileChunkingStrategyParam)
+        1    0.000    0.000    0.000    0.000 video_create_character_params.py:12(VideoCreateCharacterParams)
+        1    0.000    0.000    0.000    0.000 video_download_content_params.py:10(VideoDownloadContentParams)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:94(APIConnectionError)
+        1    0.000    0.000    0.000    0.000 _streaming.py:388(SSEBytesDecoder)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:173(ImageGenerationCall)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:230(LocalShellCallOutput)
+        1    0.000    0.000    0.000    0.000 tool_choice_custom_param.py:10(ToolChoiceCustomParam)
+        1    0.000    0.000    0.000    0.000 response_text_config_param.py:13(ResponseTextConfigParam)
+        1    0.000    0.000    0.000    0.000 tool_choice_function_param.py:10(ToolChoiceFunctionParam)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:85(ComputerCallOutputAcknowledgedSafetyCheck)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:324(ApplyPatchCallOperationCreateFile)
+        1    0.000    0.000    0.000    0.000 response_retrieve_params.py:13(ResponseRetrieveParamsBase)
+        1    0.000    0.000    0.000    0.000 label_model_grader_param.py:16(InputContentOutputText)
+        1    0.000    0.000    0.000    0.000 label_model_grader_param.py:26(InputContentInputImage)
+        1    0.000    0.000    0.000    0.000 label_model_grader_param.py:52(Input)
+        1    0.000    0.000    0.000    0.000 score_model_grader_param.py:23(InputContentOutputText)
+        1    0.000    0.000    0.000    0.000 score_model_grader_param.py:33(InputContentInputImage)
+        1    0.000    0.000    0.000    0.000 score_model_grader_param.py:59(Input)
+        1    0.000    0.000    0.000    0.000 batch_create_params.py:69(OutputExpiresAfter)
+        1    0.000    0.000    0.000    0.000 video_extend_params.py:14(VideoExtendParams)
+        1    0.000    0.000    0.000    0.000 moderation_image_url_input_param.py:17(ModerationImageURLInputParam)
+        1    0.000    0.000    0.000    0.000 vector_store_create_params.py:53(ExpiresAfter)
+        1    0.000    0.000    0.000    0.000 tool_choice_shell_param.py:10(ToolChoiceShellParam)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:211(LocalShellCall)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:471(McpApprovalResponse)
+        1    0.000    0.000    0.000    0.000 video_create_params.py:17(VideoCreateParams)
+        1    0.000    0.000    0.000    0.000 vector_store_list_params.py:10(VectorStoreListParams)
+        1    0.000    0.000    0.000    0.000 response_input_audio_param.py:18(ResponseInputAudioParam)
+        1    0.000    0.000    0.000    0.000 response_compact_params.py:13(ResponseCompactParams)
+        1    0.000    0.000    0.000    0.000 computer_action_list_param.py:171(Wait)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:189(LocalShellCallAction)
+        1    0.000    0.000    0.000    0.000 tool_param.py:213(CodeInterpreter)
+        1    0.000    0.000    0.000    0.000 completion_create_params.py:356(Function)
+        1    0.000    0.000    0.000    0.000 chat_completion_audio_param.py:23(ChatCompletionAudioParam)
+        1    0.000    0.000    0.000    0.000 chat_completion_tool_message_param.py:13(ChatCompletionToolMessageParam)
+        1    0.000    0.000    0.000    0.000 chat_completion_system_message_param.py:13(ChatCompletionSystemMessageParam)
+        1    0.000    0.000    0.000    0.000 chat_completion_content_part_param.py:15(FileFile)
+        1    0.000    0.000    0.000    0.000 chat_completion_function_message_param.py:11(ChatCompletionFunctionMessageParam)
+        1    0.000    0.000    0.000    0.000 chat_completion_assistant_message_param.py:28(FunctionCall)
+        1    0.000    0.000    0.000    0.000 chat_completion_message_function_tool_call_param.py:10(Function)
+        1    0.000    0.000    0.000    0.000 chat_completion_message_function_tool_call_param.py:25(ChatCompletionMessageFunctionToolCallParam)
+        1    0.000    0.000    0.000    0.000 chat_completion_developer_message_param.py:13(ChatCompletionDeveloperMessageParam)
+        1    0.000    0.000    0.000    0.000 chat_completion_prediction_content_param.py:13(ChatCompletionPredictionContentParam)
+        1    0.000    0.000    0.000    0.000 chat_completion_allowed_tools_param.py:11(ChatCompletionAllowedToolsParam)
+        1    0.000    0.000    0.000    0.000 file_search_tool_param.py:17(RankingOptionsHybridSearch)
+        1    0.000    0.000    0.000    0.000 file_search_tool_param.py:29(RankingOptions)
+        1    0.000    0.000    0.000    0.000 inline_skill_source_param.py:10(InlineSkillSourceParam)
+        1    0.000    0.000    0.000    0.000 local_skill_param.py:10(LocalSkillParam)
+        1    0.000    0.000    0.000    0.000 chat_completion_audio_param.py:11(VoiceID)
+        1    0.000    0.000    0.000    0.000 completion_create_params.py:385(WebSearchOptionsUserLocationApproximate)
+        1    0.000    0.000    0.000    0.000 tool_search_tool_param.py:11(ToolSearchToolParam)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:174(ImageGenerationCall)
+        1    0.000    0.000    0.000    0.000 chat_completion_content_part_refusal_param.py:10(ChatCompletionContentPartRefusalParam)
+        1    0.000    0.000    0.000    0.000 chat_completion_custom_tool_param.py:18(CustomFormatText)
+        1    0.000    0.000    0.000    0.000 chat_completion_function_tool_param.py:12(ChatCompletionFunctionToolParam)
+        1    0.000    0.000    0.000    0.000 local_environment_param.py:13(LocalEnvironmentParam)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:86(ComputerCallOutputAcknowledgedSafetyCheck)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:529(ItemReference)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:348(ApplyPatchCallOperationUpdateFile)
+        1    0.000    0.000    0.000    0.000 response_input_param.py:338(ApplyPatchCallOperationDeleteFile)
+        1    0.000    0.000    0.000    0.000 response_function_web_search_param.py:56(ActionFind)
+        1    0.000    0.000    0.000    0.000 response_input_text_content_param.py:10(ResponseInputTextContentParam)
+        1    0.000    0.000    0.000    0.000 response_code_interpreter_tool_call_param.py:21(OutputImage)
+        1    0.000    0.000    0.000    0.000 response_function_shell_call_output_content_param.py:18(OutcomeExit)
+        1    0.000    0.000    0.000    0.000 computer_action_param.py:60(DragPath)
+        1    0.000    0.000    0.000    0.000 computer_action_param.py:70(Drag)
+        1    0.000    0.000    0.000    0.000 computer_action_param.py:109(Move)
+        1    0.000    0.000    0.000    0.000 image_edit_params.py:123(ImageEditParamsNonStreaming)
+        1    0.000    0.000    0.000    0.000 video_edit_params.py:13(VideoEditParams)
+        1    0.000    0.000    0.000    0.000 eval_create_params.py:217(TestingCriterionTextSimilarity)
+        1    0.000    0.000    0.000    0.000 eval_create_params.py:114(TestingCriterionLabelModelInputSimpleInputMessage)
+        1    0.000    0.000    0.000    0.000 eval_create_params.py:231(TestingCriterionScoreModel)
+        1    0.000    0.000    0.000    0.000 mixins.py:9(_LoopBoundMixin)
+        1    0.000    0.000    0.000    0.000 protocols.py:109(BufferedProtocol)
+        1    0.000    0.000    0.000    0.000 protocols.py:177(SubprocessProtocol)
+        1    0.000    0.000    0.000    0.000 _models.py:96(_ConfigProtocol)
+        1    0.000    0.000    0.000    0.000 _types.py:162(Omit)
+        1    0.000    0.000    0.000    0.000 _types.py:245(_GenericAlias)
+        1    0.000    0.000    0.000    0.000 __init__.py:271(_AzureModuleClient)
+        1    0.000    0.000    0.000    0.000 _types.py:202(HeadersLikeProtocol)
+        1    0.000    0.000    0.000    0.000 function_definition.py:13(FunctionDefinition)
+        1    0.000    0.000    0.000    0.000 multi_grader_param.py:21(MultiGraderParam)
+        1    0.000    0.000    0.000    0.000 eval_create_params.py:132(TestingCriterionLabelModelInputEvalItemContentInputImage)
+        1    0.000    0.000    0.000    0.000 eval_create_params.py:158(TestingCriterionLabelModelInputEvalItem)
+        1    0.000    0.000    0.000    0.000 custom_tool_input_format.py:18(Grammar)
+        1    0.000    0.000    0.000    0.000 progress.py:690(TimeElapsedColumn)
+        1    0.000    0.000    0.000    0.000 lexer.py:37(LexerMeta)
+        1    0.000    0.000    0.000    0.000 lexer.py:935(ProfilingRegexLexer)
+        1    0.000    0.000    0.000    0.000 __init__.py:868(GobbleFilter)
+        1    0.000    0.000    0.000    0.000 _make.py:284(_Attributes)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 configparser.py:1243(SafeConfigParser)
+        1    0.000    0.000    0.000    0.000 types.py:245(__init__)
+        1    0.000    0.000    0.000    0.000 types.py:508(IntParamType)
+        1    0.000    0.000    0.000    0.000 types.py:542(FloatParamType)
+        1    0.000    0.000    0.000    0.000 exceptions.py:278(Exit)
+        1    0.000    0.000    0.000    0.000 util.py:30(ClassNotFound)
+        1    0.000    0.000    0.000    0.000 _export_format.py:1()
+        1    0.000    0.000    0.000    0.000 _writers.py:84(ContentLengthWriter)
+        1    0.000    0.000    0.000    0.000 _streams.py:16(create_memory_object_stream)
+        1    0.000    0.000    0.000    0.000 _events.py:175(InformationalResponse)
+        1    0.000    0.000    0.000    0.000 _writers.py:101(ChunkedWriter)
+        1    0.000    0.000    0.000    0.000 mock.py:15(MockTransport)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:44(LockStatistics)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:24(BusyResourceError)
+        1    0.000    0.000    0.000    0.000 _sockets.py:29(_NullAsyncContextManager)
+        1    0.000    0.000    0.000    0.000 _sockets.py:175(UNIXDatagramSocket)
+        1    0.000    0.000    0.000    0.000 __init__.py:11(HTTP2Connection)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:80(WriteError)
+        1    0.000    0.000    0.000    0.000 _streams.py:91(ObjectSendStream)
+        1    0.000    0.000    0.000    0.000 _typedattr.py:18(TypedAttributeSet)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:17(EventStatistics)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:58(ConditionStatistics)
+        1    0.000    0.000    0.000    0.000 lowlevel.py:71(_TokenWrapper)
+        1    0.000    0.000    0.000    0.000 lowlevel.py:81(RunvarToken)
+        1    0.000    0.000    0.000    0.000 from_thread.py:137(_BlockingPortalTaskStatus)
+        1    0.000    0.000    0.000    0.000 _tasks.py:12(_IgnoredTaskStatus)
+        1    0.000    0.000    0.000    0.000 _base.py:59(_Waiter)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:232(RemoteProtocolError)
+        1    0.000    0.000    0.000    0.000 _models.py:525(elapsed)
+        1    0.000    0.000    0.000    0.000 _models.py:1201(__init__)
+        1    0.000    0.000    0.000    0.000 _decoders.py:90(BrotliDecoder)
+        1    0.000    0.000    0.000    0.000 _decoders.py:143(ZStandardDecoder)
+        1    0.000    0.000    0.000    0.000 _decoders.py:245(TextChunker)
+        1    0.000    0.000    0.000    0.000 _decoders.py:299(LineDecoder)
+        1    0.000    0.000    0.000    0.000 asgi.py:50(ASGITransport)
+        1    0.000    0.000    0.000    0.000 request.py:641(HTTPDefaultErrorHandler)
+        1    0.000    0.000    0.000    0.000 _client.py:705()
+        1    0.000    0.000    0.000    0.000 request.py:360(data)
+        1    0.000    0.000    0.000    0.000 parser.py:79(BytesParser)
+        1    0.000    0.000    0.000    0.000 feedparser.py:532(BytesFeedParser)
+        1    0.000    0.000    0.000    0.000 error.py:19(URLError)
+        1    0.000    0.000    0.000    0.000 client.py:176(HTTPMessage)
+        1    0.000    0.000    0.000    0.000 client.py:1470(UnknownProtocol)
+        1    0.000    0.000    0.000    0.000 client.py:1507(BadStatusLine)
+        1    0.000    0.000    0.000    0.000 response.py:57(addinfo)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:1859(LWPCookieJar)
+        1    0.000    0.000    0.000    0.000 _content.py:42(IteratorByteStream)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:44(_debug)
+        1    0.000    0.000    0.000    0.000 calendar.py:594(LocaleHTMLCalendar)
+        1    0.000    0.000    0.000    0.000 calendar.py:548(different_locale)
+        1    0.000    0.000    0.000    0.000 errors.py:37(MessageDefect)
+        1    0.000    0.000    0.000    0.000 abc.py:75(MetaPathFinder)
+        1    0.000    0.000    0.000    0.000 _adapters.py:7(SpecLoaderAdapter)
+        1    0.000    0.000    0.000    0.000 __init__.py:523(FileHash)
+        1    0.000    0.000    0.000    0.000 calendar.py:26(IllegalMonthError)
+        1    0.000    0.000    0.000    0.000 calendar.py:33(IllegalWeekdayError)
+        1    0.000    0.000    0.000    0.000 __init__.py:83(SupportsLe)
+        1    0.000    0.000    0.000    0.000 __init__.py:93(SupportsDiv)
+        1    0.000    0.000    0.000    0.000 csv.py:54(excel)
+        1    0.000    0.000    0.000    0.000 csv.py:69(unix_dialect)
+        1    0.000    0.000    0.000    0.000 zipfile.py:745(_SharedFile)
+        1    0.000    0.000    0.000    0.000 __init__.py:107(ValidatePythonHandlerProtocol)
+        1    0.000    0.000    0.000    0.000 uuid.py:78(SafeUUID)
+        1    0.000    0.000    0.000    0.000 functional_validators.py:532(ModelWrapValidator)
+        1    0.000    0.000    0.000    0.000 functional_validators.py:563(ModelBeforeValidatorWithoutInfo)
+        1    0.000    0.000    0.000    0.000 functional_validators.py:593(ModelBeforeValidator)
+        1    0.000    0.000    0.000    0.000 warnings.py:49(PydanticDeprecatedSince20)
+        1    0.000    0.000    0.000    0.000 __init__.py:27(SchemaTypePath)
+        1    0.000    0.000    0.000    0.000 __init__.py:1786(RootLogger)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:1486(_DefaultMixin)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1343(IsSubclassSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2163(WrapValidatorFunctionSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2417(NullableSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:307(SerializerFunctionWrapHandler)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2136(ValidatorFunctionWrapHandler)
+        1    0.000    0.000    0.000    0.000 __init__.py:94(InitErrorDetails)
+        1    0.000    0.000    0.000    0.000 core_schema.py:521(BoolSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:755(ComplexSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1940(_ValidatorFunctionSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2623(ChainSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:3742(DefinitionsSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:411(ModelSerSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:463(AnySchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:492(NoneSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1846(IncExDictSerSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:3338(ArgumentsParameter)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2145(NoInfoWrapValidatorFunctionSchema)
+        1    0.000    0.000    0.000    0.000 _decorators.py:655(_serializer_info_arg)
+        1    0.000    0.000    0.000    0.000 _decorators.py:128(ModelValidatorDecoratorInfo)
+        1    0.000    0.000    0.000    0.000 argparse.py:795(Action)
+        1    0.000    0.000    0.000    0.000 argparse.py:964(_StoreConstAction)
+        1    0.000    0.000    0.000    0.000 argparse.py:1109(_HelpAction)
+        1    0.000    0.000    0.000    0.000 argparse.py:1128(_VersionAction)
+        1    0.000    0.000    0.000    0.000 argparse.py:1692(_MutuallyExclusiveGroup)
+        1    0.000    0.000    0.000    0.000 __init__.py:1152(FileHandler)
+        1    0.000    0.000    0.000    0.000 argparse.py:216(_Section)
+        1    0.000    0.000    0.000    0.000 argparse.py:1265(FileType)
+        1    0.000    0.000    0.000    0.000 argparse.py:1320(Namespace)
+        1    0.000    0.000    0.000    0.000 pathlib.py:1392(PosixPath)
+        1    0.000    0.000    0.000    0.000 parse.py:331(SplitResult)
+        1    0.000    0.000    0.000    0.000 parse.py:342(DefragResultBytes)
+        1    0.000    0.000    0.000    0.000 printer.py:256(_ErrConsoleProxy)
+        1    0.000    0.000    0.000    0.000 printer.py:250(_ConsoleProxy)
+        1    0.000    0.000    0.000    0.000 printer.py:266(_ThemeProxy)
+        1    0.000    0.000    0.000    0.000 tokens.py:17(DirectiveToken)
+        1    0.000    0.000    0.000    0.000 error.py:48(MarkedYAMLError)
+        1    0.000    0.000    0.000    0.000 tokens.py:2(Token)
+        1    0.000    0.000    0.000    0.000 reader.py:24(ReaderError)
+        1    0.000    0.000    0.000    0.000 loader.py:11(BaseLoader)
+        1    0.000    0.000    0.000    0.000 pathlib.py:332(_PreciseSelector)
+        1    0.000    0.000    0.000    0.000 pathlib.py:845(PureWindowsPath)
+        1    0.000    0.000    0.000    0.000 parse.py:144(_ResultMixinBytes)
+        1    0.000    0.000    0.000    0.000 subprocess.py:123(SubprocessError)
+        1    0.000    0.000    0.000    0.000 connapp.py:462(_store_type)
+        1    0.000    0.000    0.000    0.000 shutil.py:61(Error)
+        1    0.000    0.000    0.000    0.000 shutil.py:67(SpecialFileError)
+        1    0.000    0.000    0.000    0.000 shutil.py:74(ReadError)
+        1    0.000    0.000    0.000    0.000 inspect.py:729(getmro)
+        1    0.000    0.000    0.000    0.000 {method 'keys' of 'collections.OrderedDict' objects}
+        1    0.000    0.000    0.000    0.000 {function socket.detach at 0xff4ed1860ea0}
+        1    0.000    0.000    0.000    0.000 discovery.py:398(ResourceGroup)
+        1    0.000    0.000    0.000    0.000 create_from_yaml.py:309(FailToCreateError)
+        1    0.000    0.000    0.000    0.000 _doc_utils.py:170(__init__)
+        1    0.000    0.000    0.000    0.000 _doc_utils.py:102(output_class)
+        1    0.000    0.000    0.000    0.000 _doc_utils.py:233(parameter_types)
+        1    0.000    0.000    0.000    0.000 _build.py:6(build_class)
+        1    0.000    0.000    0.000    0.000 kube_config.py:146(CommandTokenSource)
+        1    0.000    0.000    0.000    0.000 exceptions.py:101(UnprocessibleEntityError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:49(ApiValueError)
+        1    0.000    0.000    0.000    0.000 config_exception.py:16(ConfigException)
+        1    0.000    0.000    0.000    0.000 signer.py:31(NoneAlgorithm)
+        1    0.000    0.000    0.000    0.000 tag.py:205(TagDateTime)
+        1    0.000    0.000    0.000    0.000 reduction.py:211(_C)
+        1    0.000    0.000    0.000    0.000 pool.py:63(ExceptionWithTraceback)
+        1    0.000    0.000    0.000    0.000 pool.py:794(MapResult)
+        1    0.000    0.000    0.000    0.000 converters.py:112(PathConverter)
+        1    0.000    0.000    0.000    0.000 exceptions.py:147(NoMatch)
+        1    0.000    0.000    0.000    0.000 exceptions.py:20(RoutingException)
+        1    0.000    0.000    0.000    0.000 cli.py:37(NoAppException)
+        1    0.000    0.000    0.000    0.000 rules.py:232(RuleTemplate)
+        1    0.000    0.000    0.000    0.000 exc.py:36(BadTimeSignature)
+        1    0.000    0.000    0.000    0.000 httpchecksum.py:112(Sha1Checksum)
+        1    0.000    0.000    0.000    0.000 auth.py:186(SigV3Auth)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:507(ErrorRule)
+        1    0.000    0.000    0.000    0.000 signers.py:554(S3PostPresigner)
+        1    0.000    0.000    0.000    0.000 useragent.py:104(RawStringUserAgentComponent)
+        1    0.000    0.000    0.000    0.000 tokens.py:159(TokenProviderChain)
+        1    0.000    0.000    0.000    0.000 model.py:768(UnresolvableShapeMap)
+        1    0.000    0.000    0.000    0.000 standard.py:70(RetryHandler)
+        1    0.000    0.000    0.000    0.000 standard.py:240(RetryPolicy)
+        1    0.000    0.000    0.000    0.000 exceptions.py:88(VariadictArityError)
+        1    0.000    0.000    0.000    0.000 docstring.py:85(ClientMethodDocstring)
+        1    0.000    0.000    0.000    0.000 tz.py:373(_tzfile)
+        1    0.000    0.000    0.000    0.000 _factories.py:25(_TzOffsetFactory)
+        1    0.000    0.000    0.000    0.000 _factories.py:55(_TzStrFactory)
+        1    0.000    0.000    0.000    0.000 _factories.py:19(_TzFactory)
+        1    0.000    0.000    0.000    0.000 example.py:182(ResponseExampleDocumenter)
+        1    0.000    0.000    0.000    0.000 utils.py:2079(InvalidArnException)
+        1    0.000    0.000    0.000    0.000 utils.py:362(_RetriesExceededError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:31(IncompleteExpressionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:115(EmptyExpressionError)
+        1    0.000    0.000    0.000    0.000 visitor.py:74(_Expression)
+        1    0.000    0.000    0.000    0.000 visitor.py:83(Visitor)
+        1    0.000    0.000    0.000    0.000 standard.py:281(MaxAttemptsChecker)
+        1    0.000    0.000    0.000    0.000 standard.py:373(ModeledRetryableChecker)
+        1    0.000    0.000    0.000    0.000 standard.py:438(StandardRetryConditions)
+        1    0.000    0.000    0.000    0.000 special.py:30(RetryDDBChecksumError)
+        1    0.000    0.000    0.000    0.000 retryhandler.py:323(HTTPStatusCodeChecker)
+        1    0.000    0.000    0.000    0.000 configprovider.py:726(InstanceVarProvider)
+        1    0.000    0.000    0.000    0.000 configprovider.py:793(EnvironmentProvider)
+        1    0.000    0.000    0.000    0.000 configprovider.py:884(ConstantProvider)
+        1    0.000    0.000    0.000    0.000 docstring.py:40(SubResourceDocstring)
+        1    0.000    0.000    0.000    0.000 action.py:48(ActionDocumenter)
+        1    0.000    0.000    0.000    0.000 subresource.py:28(SubResourceDocumenter)
+        1    0.000    0.000    0.000    0.000 action.py:95(BatchAction)
+        1    0.000    0.000    0.000    0.000 collection.py:28(CollectionDocumenter)
+        1    0.000    0.000    0.000    0.000 utils.py:87(DocumentModifiedShape)
+        1    0.000    0.000    0.000    0.000 action.py:171(WaiterAction)
+        1    0.000    0.000    0.000    0.000 response.py:127(RawHandler)
+        1    0.000    0.000    0.000    0.000 exceptions.py:561(ImATeapot)
+        1    0.000    0.000    0.000    0.000 structures.py:47(TypeConversionDict)
+        1    0.000    0.000    0.000    0.000 structures.py:442(_omd_bucket)
+        1    0.000    0.000    0.000    0.000 test.py:767(ClientRedirectError)
+        1    0.000    0.000    0.000    0.000 structures.py:826(ImmutableOrderedMultiDict)
+        1    0.000    0.000    0.000    0.000 file_storage.py:162(FileMultiDict)
+        1    0.000    0.000    0.000    0.000 utils.py:123(environ_property)
+        1    0.000    0.000    0.000    0.000 utils.py:155(HideParamFromOperations)
+        1    0.000    0.000    0.000    0.000 parsers.py:608(EC2QueryParser)
+        1    0.000    0.000    0.000    0.000 capture.py:4(Parser)
+        1    0.000    0.000    0.000    0.000 pre_configured.py:147(LegacyApplicationServer)
+        1    0.000    0.000    0.000    0.000 base.py:538(Namespace)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:306(Galeon)
+        1    0.000    0.000    0.000    0.000 server.py:130(HTTPServer)
+        1    0.000    0.000    0.000    0.000 socketserver.py:729(ThreadingUnixDatagramServer)
+        1    0.000    0.000    0.000    0.000 socketserver.py:661(_NoThreads)
+        1    0.000    0.000    0.000    0.000 socketserver.py:724(UnixDatagramServer)
+        1    0.000    0.000    0.000    0.000 utils.py:58(ClientAuthentication)
+        1    0.000    0.000    0.000    0.000 oauth1_session.py:37(TokenMissing)
+        1    0.000    0.000    0.000    0.000 errors.py:115(TokenExpiredError)
+        1    0.000    0.000    0.000    0.000 errors.py:129(MissingCodeError)
+        1    0.000    0.000    0.000    0.000 pre_configured.py:20(Server)
+        1    0.000    0.000    0.000    0.000 http.py:1765(HttpMockSequence)
+        1    0.000    0.000    0.000    0.000 google_auth_httplib2.py:60(Request)
+        1    0.000    0.000    0.000    0.000 universe.py:28(UniverseMismatchError)
+        1    0.000    0.000    0.000    0.000 http.py:1609(HttpRequestMock)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:159(GenericBrowser)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:187(BackgroundBrowser)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:352(Konqueror)
+        1    0.000    0.000    0.000    0.000 core.py:4886(Located)
+        1    0.000    0.000    0.000    0.000 error.py:23(FailedToDecompressContent)
+        1    0.000    0.000    0.000    0.000 errors.py:113(UnknownFileType)
+        1    0.000    0.000    0.000    0.000 unicode.py:8(_lazyclassproperty)
+        1    0.000    0.000    0.000    0.000 error.py:8(HttpLib2ErrorWithResponse)
+        1    0.000    0.000    0.000    0.000 error.py:2(HttpLib2Error)
+        1    0.000    0.000    0.000    0.000 util.py:168(UnboundedMemo)
+        1    0.000    0.000    0.000    0.000 unicode.py:148(LatinA)
+        1    0.000    0.000    0.000    0.000 unicode.py:160(Greek)
+        1    0.000    0.000    0.000    0.000 unicode.py:239(Kanji)
+        1    0.000    0.000    0.000    0.000 unicode.py:246(Hiragana)
+        1    0.000    0.000    0.000    0.000 unicode.py:258(Katakana)
+        1    0.000    0.000    0.000    0.000 results.py:16()
+        1    0.000    0.000    0.000    0.000 core.py:2453(_SingleCharLiteral)
+        1    0.000    0.000    0.000    0.000 connection.py:825(_WrappedAndVerifiedSocket)
+        1    0.000    0.000    0.000    0.000 exceptions.py:131(RetryError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:150(RequestsDependencyWarning)
+        1    0.000    0.000    0.000    0.000 models.py:206(RequestHooksMixin)
+        1    0.000    0.000    0.000    0.000 core.py:202(_should_enable_warnings)
+        1    0.000    0.000    0.000    0.000 nonmultipart.py:14(MIMENonMultipart)
+        1    0.000    0.000    0.000    0.000 exceptions.py:182(LocationParseError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:192(URLSchemeUnknown)
+        1    0.000    0.000    0.000    0.000 exceptions.py:202(ResponseError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:269(InvalidChunkLength)
+        1    0.000    0.000    0.000    0.000 exceptions.py:289(ProxySchemeUnknown)
+        1    0.000    0.000    0.000    0.000 exceptions.py:310(HeaderParsingError)
+        1    0.000    0.000    0.000    0.000 request.py:184(ChunksAndContentLength)
+        1    0.000    0.000    0.000    0.000 response.py:78(DeflateDecoder)
+        1    0.000    0.000    0.000    0.000 response.py:110(GzipDecoderState)
+        1    0.000    0.000    0.000    0.000 response.py:116(GzipDecoder)
+        1    0.000    0.000    0.000    0.000 binding.py:191(_verify_openssl_version)
+        1    0.000    0.000    0.000    0.000 modes.py:152(ECB)
+        1    0.000    0.000    0.000    0.000 __init__.py:35(Python37DeprecationWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:75(ReauthSamlChallengeFailError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:79(MalformedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:83(InvalidResource)
+        1    0.000    0.000    0.000    0.000 exceptions.py:87(InvalidOperation)
+        1    0.000    0.000    0.000    0.000 exceptions.py:91(InvalidValue)
+        1    0.000    0.000    0.000    0.000 exceptions.py:95(InvalidType)
+        1    0.000    0.000    0.000    0.000 exceptions.py:103(TimeoutError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:43(AlreadyUpdated)
+        1    0.000    0.000    0.000    0.000 utils.py:86(_DeprecatedValue)
+        1    0.000    0.000    0.000    0.000 hashes.py:142(SHA384)
+        1    0.000    0.000    0.000    0.000 padding.py:24(_Auto)
+        1    0.000    0.000    0.000    0.000 _serialization.py:70(NoEncryption)
+        1    0.000    0.000    0.000    0.000 errors.py:12(EndOfInput)
+        1    0.000    0.000    0.000    0.000 events.py:17(KeyEventGenerator)
+        1    0.000    0.000    0.000    0.000 _password.py:4(Password)
+        1    0.000    0.000    0.000    0.000 questions.py:138(Confirm)
+        1    0.000    0.000    0.000    0.000 prompt.py:316(IntPrompt)
+        1    0.000    0.000    0.000    0.000 plugin_handler.py:6(PluginHandler)
+        1    0.000    0.000    0.000    0.000 run_handler.py:10(__init__)
+        1    0.000    0.000    0.000    0.000 prompt.py:304(Prompt)
+        1    0.000    0.000    0.000    0.000 questions.py:145(List)
+        1    0.000    0.000    0.000    0.000 context_handler.py:6(ContextHandler)
+        1    0.000    0.000    0.000    0.000 exceptions.py:9(NodeAlreadyExistsError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:13(ProfileNotFoundError)
+        1    0.000    0.000    0.000    0.000 _argparse.py:549(MetavarTypeRichHelpFormatter)
+        1    0.000    0.000    0.000    0.000 themes.py:72(Theme)
+        1    0.000    0.000    0.000    0.000 errors.py:18(ThemeError)
+        1    0.000    0.000    0.000    0.000 errors.py:8(UnknownQuestionTypeError)
+        1    0.000    0.000    0.000    0.000 themes.py:103(GreenPassion)
+        1    0.000    0.000    0.000    0.000 formatters.py:175(FormattingString)
+        1    0.000    0.000    0.000    0.000 events.py:8(KeyPressed)
+        1    0.000    0.000    0.000    0.000 rag.py:25(RAGIngestOCROptions)
+        1    0.000    0.000    0.000    0.000 exceptions.py:90(ContentDecodingError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:66(URLRequired)
+        1    0.000    0.000    0.000    0.000 exceptions.py:104(DynamoDBNeedsConditionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:4(HTTPError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:74(RetriesExceededError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:25(RequestError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:49(DataNotFoundError)
+        1    0.000    0.000    0.000    0.000 utils.py:27(ServiceContext)
+        1    0.000    0.000    0.000    0.000 exceptions.py:188(PartialCredentialsError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:745(MissingServiceIdError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:717(InfiniteLoopConfigError)
+        1    0.000    0.000    0.000    0.000 prompt_caching_cache.py:27(PromptCachingCacheValue)
+        1    0.000    0.000    0.000    0.000 common_utils.py:12(BlackForestLabsError)
+        1    0.000    0.000    0.000    0.000 handler.py:60(__init__)
+        1    0.000    0.000    0.000    0.000 gemini.py:44(BidiGenerateContentTranscription)
+        1    0.000    0.000    0.000    0.000 ElementPath.py:350(_SelectorContext)
+        1    0.000    0.000    0.000    0.000 sandbox.py:428(SandboxedEscapeFormatter)
+        1    0.000    0.000    0.000    0.000 cohere.py:86(CohereV2ChatResponseUsage)
+        1    0.000    0.000    0.000    0.000 bedrock.py:372(Document)
+        1    0.000    0.000    0.000    0.000 bedrock.py:461(AmazonTitanG1EmbeddingRequest)
+        1    0.000    0.000    0.000    0.000 bedrock.py:520(TwelveLabsS3OutputDataConfig)
+        1    0.000    0.000    0.000    0.000 bedrock.py:572(NovaSourceS3Location)
+        1    0.000    0.000    0.000    0.000 bedrock.py:604(NovaTextSegmentationConfig)
+        1    0.000    0.000    0.000    0.000 bedrock.py:608(NovaMediaSegmentationConfig)
+        1    0.000    0.000    0.000    0.000 bedrock.py:616(NovaVideoParamsWithSegmentation)
+        1    0.000    0.000    0.000    0.000 bedrock.py:620(NovaAudioParamsWithSegmentation)
+        1    0.000    0.000    0.000    0.000 bedrock.py:659(NovaS3OutputDataConfig)
+        1    0.000    0.000    0.000    0.000 bedrock.py:919(BedrockInputDataConfig)
+        1    0.000    0.000    0.000    0.000 bedrock.py:932(BedrockOutputDataConfig)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:694(VertexVideoOutput)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:56(HttpxBlobType)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:184(GeminiImageConfig)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:189(PrebuiltVoiceConfig)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:193(VoiceConfig)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:247(ToolConfig)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:383(UrlMetadata)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:522(VertexAICachedContentResponseObject)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:572(GeminiEmbedContentResponseObject)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:583(InputConfig)
+        1    0.000    0.000    0.000    0.000 prompt_layer.py:11(PromptLayerLogger)
+        1    0.000    0.000    0.000    0.000 aleph_alpha.py:12(AlephAlphaError)
+        1    0.000    0.000    0.000    0.000 types.py:36(TextEmbeddingFineTunedInput)
+        1    0.000    0.000    0.000    0.000 bedrock.py:87(GuardrailConverseTextBlock)
+        1    0.000    0.000    0.000    0.000 bedrock.py:91(GuardrailConverseContentBlock)
+        1    0.000    0.000    0.000    0.000 bedrock.py:246(SpecificToolChoiceBlock)
+        1    0.000    0.000    0.000    0.000 bedrock.py:275(ToolBlockDeltaEvent)
+        1    0.000    0.000    0.000    0.000 version.py:59(InvalidVersion)
+        1    0.000    0.000    0.000    0.000 common_utils.py:16(GeminiError)
+        1    0.000    0.000    0.000    0.000 bedrock.py:718(AmazonNovaCanvasRequestBase)
+        1    0.000    0.000    0.000    0.000 common_utils.py:10(TopazException)
+        1    0.000    0.000    0.000    0.000 common_utils.py:28(BedrockError)
+        1    0.000    0.000    0.000    0.000 nodes.py:973(Sub)
+        1    0.000    0.000    0.000    0.000 compiler.py:293(CompilerExit)
+        1    0.000    0.000    0.000    0.000 loaders.py:587(_TemplateModule)
+        1    0.000    0.000    0.000    0.000 tracing.py:290(TraceDnsResolveHostEndParams)
+        1    0.000    0.000    0.000    0.000 tracing.py:297(TraceDnsCacheHitParams)
+        1    0.000    0.000    0.000    0.000 tracing.py:304(TraceDnsCacheMissParams)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 _adapters.py:9(RawPolicy)
+        1    0.000    0.000    0.000    0.000 py313.py:11(apply)
+        1    0.000    0.000    0.000    0.000 py313.py:20(compose_two)
+        1    0.000    0.000    0.000    0.000 payload.py:1104(StreamReaderPayload)
+        1    0.000    0.000    0.000    0.000 pickle.py:84(UnpicklingError)
+        1    0.000    0.000    0.000    0.000 tracing.py:268(TraceConnectionCreateStartParams)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:253(BareQuotedString)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:152(ClientHttpProxyError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:358(ClientSSLError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:420(WSMessageTypeError)
+        1    0.000    0.000    0.000    0.000 netrc.py:10(NetrcParseError)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:692(Attribute)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:214(Token)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:945(_InvalidEwError)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:935(EWWhiteSpaceTerminal)
+        1    0.000    0.000    0.000    0.000 cookies.py:463(__init__)
+        1    0.000    0.000    0.000    0.000 router.py:23(ConfigurableClientsideParamsCustomAuth)
+        1    0.000    0.000    0.000    0.000 nodes.py:443(ExprStmt)
+        1    0.000    0.000    0.000    0.000 nodes.py:312(Extends)
+        1    0.000    0.000    0.000    0.000 nodes.py:1054(ImportedName)
+        1    0.000    0.000    0.000    0.000 nodes.py:54(NodeType)
+        1    0.000    0.000    0.000    0.000 nodes.py:571(Literal)
+        1    0.000    0.000    0.000    0.000 open_inference.py:240(ImageAttributes)
+        1    0.000    0.000    0.000    0.000 main.py:275(_should_read_secret_from_secret_manager)
+        1    0.000    0.000    0.000    0.000 transformation.py:82(__init__)
+        1    0.000    0.000    0.000    0.000 enkryptai.py:50(EnkryptAIBiasDetail)
+        1    0.000    0.000    0.000    0.000 speech_create_params.py:59(VoiceID)
+        1    0.000    0.000    0.000    0.000 transcription_create_params.py:144(TranscriptionCreateParamsNonStreaming)
+        1    0.000    0.000    0.000    0.000 agents.py:166(AugmentedAgentCard)
+        1    0.000    0.000    0.000    0.000 reinforcement_method_param.py:22(ReinforcementMethodParam)
+        1    0.000    0.000    0.000    0.000 utils.py:2591(StandardLoggingAdditionalHeaders)
+        1    0.000    0.000    0.000    0.000 job_create_params.py:177(Method)
+        1    0.000    0.000    0.000    0.000 job_list_events_params.py:10(JobListEventsParams)
+        1    0.000    0.000    0.000    0.000 functional_serializers.py:219(field_serializer)
+        1    0.000    0.000    0.000    0.000 thread_create_and_run_params.py:414(ThreadCreateAndRunParamsStreaming)
+        1    0.000    0.000    0.000    0.000 openai.py:434(LiteLLMBatchCreateRequest)
+        1    0.000    0.000    0.000    0.000 openai.py:612(ChatCompletionTextObject)
+        1    0.000    0.000    0.000    0.000 openai.py:649(CitationsObject)
+        1    0.000    0.000    0.000    0.000 openai.py:860(ChatCompletionToolChoiceFunctionParam)
+        1    0.000    0.000    0.000    0.000 _base_client.py:1428(AsyncHttpxClientWrapper)
+        1    0.000    0.000    0.000    0.000 file_search_tool_param.py:31(FileSearch)
+        1    0.000    0.000    0.000    0.000 _old_api.py:21(APIRemovedInV1)
+        1    0.000    0.000    0.000    0.000 file_search_tool_param.py:58(FileSearchToolParam)
+        1    0.000    0.000    0.000    0.000 video_remix_params.py:10(VideoRemixParams)
+        1    0.000    0.000    0.000    0.000 skill_create_params.py:13(SkillCreateParams)
+        1    0.000    0.000    0.000    0.000 moderation_image_url_input_param.py:10(ImageURL)
+        1    0.000    0.000    0.000    0.000 static_file_chunking_strategy_object_param.py:12(StaticFileChunkingStrategyObjectParam)
+        1    0.000    0.000    0.000    0.000 vector_store_search_params.py:38(RankingOptions)
+        1    0.000    0.000    0.000    0.000 _qs.py:27(__init__)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:104(BadRequestError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:116(NotFoundError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:120(ConflictError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:153(ContentFilterFinishReasonError)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:417(McpListToolsTool)
+        1    0.000    0.000    0.000    0.000 response_create_params.py:287(ContextManagement)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:528(ItemReference)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:347(ApplyPatchCallOperationUpdateFile)
+        1    0.000    0.000    0.000    0.000 input_token_count_params.py:103(Text)
+        1    0.000    0.000    0.000    0.000 container_create_params.py:37(ExpiresAfter)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:433(McpListTools)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:452(McpApprovalRequest)
+        1    0.000    0.000    0.000    0.000 response_input_audio_param.py:10(InputAudio)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:293(ShellCallOutput)
+        1    0.000    0.000    0.000    0.000 response_function_shell_call_output_content_param.py:11(OutcomeTimeout)
+        1    0.000    0.000    0.000    0.000 computer_action_param.py:170(Wait)
+        1    0.000    0.000    0.000    0.000 response_create_params.py:325(ResponseCreateParamsNonStreaming)
+        1    0.000    0.000    0.000    0.000 completion_create_params.py:417(WebSearchOptions)
+        1    0.000    0.000    0.000    0.000 chat_completion_user_message_param.py:13(ChatCompletionUserMessageParam)
+        1    0.000    0.000    0.000    0.000 chat_completion_custom_tool_param.py:25(CustomFormatGrammarGrammar)
+        1    0.000    0.000    0.000    0.000 chat_completion_custom_tool_param.py:48(Custom)
+        1    0.000    0.000    0.000    0.000 function_shell_tool_param.py:17(FunctionShellToolParam)
+        1    0.000    0.000    0.000    0.000 skill_reference_param.py:10(SkillReferenceParam)
+        1    0.000    0.000    0.000    0.000 container_network_policy_allowlist_param.py:14(ContainerNetworkPolicyAllowlistParam)
+        1    0.000    0.000    0.000    0.000 tool_param.py:304(LocalShell)
+        1    0.000    0.000    0.000    0.000 completion_create_params.py:447(CompletionCreateParamsStreaming)
+        1    0.000    0.000    0.000    0.000 chat_completion_content_part_image_param.py:10(ImageURL)
+        1    0.000    0.000    0.000    0.000 chat_completion_content_part_input_audio_param.py:10(InputAudio)
+        1    0.000    0.000    0.000    0.000 chat_completion_content_part_image_param.py:22(ChatCompletionContentPartImageParam)
+        1    0.000    0.000    0.000    0.000 chat_completion_content_part_input_audio_param.py:18(ChatCompletionContentPartInputAudioParam)
+        1    0.000    0.000    0.000    0.000 web_search_preview_tool_param.py:36(WebSearchPreviewToolParam)
+        1    0.000    0.000    0.000    0.000 chat_completion_named_tool_choice_param.py:10(Function)
+        1    0.000    0.000    0.000    0.000 chat_completion_function_call_option_param.py:10(ChatCompletionFunctionCallOptionParam)
+        1    0.000    0.000    0.000    0.000 chat_completion_named_tool_choice_custom_param.py:15(ChatCompletionNamedToolChoiceCustomParam)
+        1    0.000    0.000    0.000    0.000 completion_update_params.py:13(CompletionUpdateParams)
+        1    0.000    0.000    0.000    0.000 computer_tool_param.py:10(ComputerToolParam)
+        1    0.000    0.000    0.000    0.000 apply_patch_tool_param.py:10(ApplyPatchToolParam)
+        1    0.000    0.000    0.000    0.000 container_network_policy_disabled_param.py:10(ContainerNetworkPolicyDisabledParam)
+        1    0.000    0.000    0.000    0.000 computer_action_param.py:44(DoubleClick)
+        1    0.000    0.000    0.000    0.000 computer_action_param.py:93(Keypress)
+        1    0.000    0.000    0.000    0.000 video_edit_params.py:21(VideoVideoReferenceInputParam)
+        1    0.000    0.000    0.000    0.000 custom_tool_input_format.py:11(Text)
+        1    0.000    0.000    0.000    0.000 tool_param.py:66(McpRequireApprovalMcpToolApprovalFilterAlways)
+        1    0.000    0.000    0.000    0.000 tool_param.py:96(McpRequireApprovalMcpToolApprovalFilter)
+        1    0.000    0.000    0.000    0.000 transports.py:172(DatagramTransport)
+        1    0.000    0.000    0.000    0.000 events.py:709(_RunningLoop)
+        1    0.000    0.000    0.000    0.000 exceptions.py:10(CancelledError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:17(InvalidStateError)
+        1    0.000    0.000    0.000    0.000 _utils.py:328(coerce_boolean)
+        1    0.000    0.000    0.000    0.000 protocols.py:162(DatagramProtocol)
+        1    0.000    0.000    0.000    0.000 _models.py:628(CachedDiscriminatorType)
+        1    0.000    0.000    0.000    0.000 _types.py:234(InheritsGeneric)
+        1    0.000    0.000    0.000    0.000 video_list_params.py:10(VideoListParams)
+        1    0.000    0.000    0.000    0.000 eval_create_params.py:88(DataSourceConfigLogs)
+        1    0.000    0.000    0.000    0.000 eval_create_params.py:101(DataSourceConfigStoredCompletions)
+        1    0.000    0.000    0.000    0.000 compound_filter.py:15(CompoundFilter)
+        1    0.000    0.000    0.000    0.000 idna.py:216(IncrementalEncoder)
+        1    0.000    0.000    0.000    0.000 progress.py:916(TransferSpeedColumn)
+        1    0.000    0.000    0.000    0.000 progress.py:822(FileSizeColumn)
+        1    0.000    0.000    0.000    0.000 progress.py:831(TotalFileSizeColumn)
+        1    0.000    0.000    0.000    0.000 lexer.py:289(DelegatingLexer)
+        1    0.000    0.000    0.000    0.000 lexer.py:411(_This)
+        1    0.000    0.000    0.000    0.000 lexer.py:777(ExtendedRegexLexer)
+        1    0.000    0.000    0.000    0.000 highlighter.py:143(ISO8601Highlighter)
+        1    0.000    0.000    0.000    0.000 __init__.py:37(AttrsInstance)
+        1    0.000    0.000    0.000    0.000 validators.py:292(_IsCallableValidator)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 highlighter.py:50(NullHighlighter)
+        1    0.000    0.000    0.000    0.000 configparser.py:217(DuplicateOptionError)
+        1    0.000    0.000    0.000    0.000 repr.py:23(ReprError)
+        1    0.000    0.000    0.000    0.000 configparser.py:182(NoSectionError)
+        1    0.000    0.000    0.000    0.000 configparser.py:255(InterpolationError)
+        1    0.000    0.000    0.000    0.000 text.py:420(spans)
+        1    0.000    0.000    0.000    0.000 __init__.py:343(_automodule)
+        1    0.000    0.000    0.000    0.000 exceptions.py:248(BadArgumentUsage)
+        1    0.000    0.000    0.000    0.000 console.py:288(CaptureError)
+        1    0.000    0.000    0.000    0.000 errors.py:13(MissingStyle)
+        1    0.000    0.000    0.000    0.000 errors.py:17(StyleStackError)
+        1    0.000    0.000    0.000    0.000 color.py:288(ColorParseError)
+        1    0.000    0.000    0.000    0.000 _events.py:217(Response)
+        1    0.000    0.000    0.000    0.000 _writers.py:116(Http10Writer)
+        1    0.000    0.000    0.000    0.000 _state.py:143(IDLE)
+        1    0.000    0.000    0.000    0.000 wsgi.py:44(WSGITransport)
+        1    0.000    0.000    0.000    0.000 __init__.py:23(AsyncSOCKSProxy)
+        1    0.000    0.000    0.000    0.000 __init__.py:23(SOCKSProxy)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:18(ConnectionNotAvailable)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:26(UnsupportedProtocol)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:10(BrokenResourceError)
+        1    0.000    0.000    0.000    0.000 _streams.py:84(ObjectReceiveStream)
+        1    0.000    0.000    0.000    0.000 _synchronization.py:70(SemaphoreStatistics)
+        1    0.000    0.000    0.000    0.000 _base.py:45(Error)
+        1    0.000    0.000    0.000    0.000 _base.py:651(BrokenExecutor)
+        1    0.000    0.000    0.000    0.000 _models.py:540(request)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:1774(LoadError)
+        1    0.000    0.000    0.000    0.000 _decoders.py:38(DeflateDecoder)
+        1    0.000    0.000    0.000    0.000 _decoders.py:284(TextDecoder)
+        1    0.000    0.000    0.000    0.000 _decoders.py:26(IdentityDecoder)
+        1    0.000    0.000    0.000    0.000 asgi.py:42(ASGIResponseStream)
+        1    0.000    0.000    0.000    0.000 core.py:26(InvalidCodepoint)
+        1    0.000    0.000    0.000    0.000 __init__.py:67(TrioBackend)
+        1    0.000    0.000    0.000    0.000 __init__.py:11(AsyncHTTP2Connection)
+        1    0.000    0.000    0.000    0.000 _client.py:233(timeout)
+        1    0.000    0.000    0.000    0.000 request.py:898(HTTPPasswordMgrWithDefaultRealm)
+        1    0.000    0.000    0.000    0.000 request.py:1416(UnknownHandler)
+        1    0.000    0.000    0.000    0.000 _client.py:564(_set_timeout)
+        1    0.000    0.000    0.000    0.000 parser.py:71(HeaderParser)
+        1    0.000    0.000    0.000    0.000 parser.py:126(BytesHeaderParser)
+        1    0.000    0.000    0.000    0.000 client.py:1514(LineTooLong)
+        1    0.000    0.000    0.000    0.000 client.py:1519(RemoteDisconnected)
+        1    0.000    0.000    0.000    0.000 error.py:70(ContentTooShortError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:181(WriteError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:271(InvalidURL)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:327(StreamClosed)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:1982(MozillaCookieJar)
+        1    0.000    0.000    0.000    0.000 _content.py:31(ByteStream)
+        1    0.000    0.000    0.000    0.000 _content.py:67(AsyncIteratorByteStream)
+        1    0.000    0.000    0.000    0.000 _content.py:92(UnattachedStream)
+        1    0.000    0.000    0.000    0.000 ssl.py:1150(_check_connected)
+        1    0.000    0.000    0.000    0.000 csv.py:64(excel_tab)
+        1    0.000    0.000    0.000    0.000 errors.py:8(MessageError)
+        1    0.000    0.000    0.000    0.000 zipfile.py:44(BadZipFile)
+        1    0.000    0.000    0.000    0.000 socket.py:211(_GiveupOnSendfile)
+        1    0.000    0.000    0.000    0.000 calendar.py:162(setfirstweekday)
+        1    0.000    0.000    0.000    0.000 errors.py:85(HeaderDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:97(NonPrintableDefect)
+        1    0.000    0.000    0.000    0.000 _adapters.py:20(TraversableResourcesLoader)
+        1    0.000    0.000    0.000    0.000 zipfile.py:644(LZMADecompressor)
+        1    0.000    0.000    0.000    0.000 message.py:1195(EmailMessage)
+        1    0.000    0.000    0.000    0.000 fields.py:87(_FieldInfoInputs)
+        1    0.000    0.000    0.000    0.000 _mock_val_ser.py:142()
+        1    0.000    0.000    0.000    0.000 __init__.py:37(PydanticPluginProtocol)
+        1    0.000    0.000    0.000    0.000 __init__.py:158(ValidateStringsHandlerProtocol)
+        1    0.000    0.000    0.000    0.000 json_schema.py:124(PydanticJsonSchemaWarning)
+        1    0.000    0.000    0.000    0.000 _decorators.py:109(ModelSerializerDecoratorInfo)
+        1    0.000    0.000    0.000    0.000 warnings.py:70(GenericBeforeBaseModelWarning)
+        1    0.000    0.000    0.000    0.000 warnings.py:56(PydanticDeprecatedSince26)
+        1    0.000    0.000    0.000    0.000 _utils.py:285(ClassAttribute)
+        1    0.000    0.000    0.000    0.000 _common.py:163(ZoneInfoNotFoundError)
+        1    0.000    0.000    0.000    0.000 _fields.py:32(PydanticMetadata)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:1494(_TypeVarLikeMeta)
+        1    0.000    0.000    0.000    0.000 errors.py:124(PydanticImportError)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:3112(_NamedTupleMeta)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:3258(Buffer)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1198(LiteralSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2267(PlainValidatorFunctionSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:3773(DefinitionReferenceSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1389(CallableSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2154(WithInfoWrapValidatorFunctionSchema)
+        1    0.000    0.000    0.000    0.000 errors.py:146(PydanticInvalidForJsonSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:161(FieldSerializationInfo)
+        1    0.000    0.000    0.000    0.000 core_schema.py:226(SimpleSerSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:392(ToStringSerSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1948(BeforeValidatorFunctionSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:2043(AfterValidatorFunctionSchema)
+        1    0.000    0.000    0.000    0.000 numbers.py:12(Number)
+        1    0.000    0.000    0.000    0.000 argparse.py:929(_StoreAction)
+        1    0.000    0.000    0.000    0.000 argparse.py:692(RawTextHelpFormatter)
+        1    0.000    0.000    0.000    0.000 argparse.py:703(ArgumentDefaultsHelpFormatter)
+        1    0.000    0.000    0.000    0.000 argparse.py:987(_StoreTrueAction)
+        1    0.000    0.000    0.000    0.000 __init__.py:1261(PlaceHolder)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:145(_Sentinel)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:1449(NoDefaultTypeMeta)
+        1    0.000    0.000    0.000    0.000 pathlib.py:326(_TerminatingSelector)
+        1    0.000    0.000    0.000    0.000 parse.py:336(ParseResult)
+        1    0.000    0.000    0.000    0.000 parse.py:350(SplitResultBytes)
+        1    0.000    0.000    0.000    0.000 parse.py:355(ParseResultBytes)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:24(NetmaskValueError)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:1131(_BaseConstants)
+        1    0.000    0.000    0.000    0.000 pathlib.py:1399(WindowsPath)
+        1    0.000    0.000    0.000    0.000 events.py:15(NodeEvent)
+        1    0.000    0.000    0.000    0.000 tokens.py:82(AnchorToken)
+        1    0.000    0.000    0.000    0.000 cyaml.py:16(CBaseLoader)
+        1    0.000    0.000    0.000    0.000 nodes.py:2(Node)
+        1    0.000    0.000    0.000    0.000 nodes.py:25(ScalarNode)
+        1    0.000    0.000    0.000    0.000 dumper.py:9(BaseDumper)
+        1    0.000    0.000    0.000    0.000 dumper.py:45(Dumper)
+        1    0.000    0.000    0.000    0.000 cyaml.py:51(CBaseDumper)
+        1    0.000    0.000    0.000    0.000 scanner.py:35(SimpleKey)
+        1    0.000    0.000    0.000    0.000 scanner.py:32(ScannerError)
+        1    0.000    0.000    0.000    0.000 parser.py:69(ParserError)
+        1    0.000    0.000    0.000    0.000 cyaml.py:23(CSafeLoader)
+        1    0.000    0.000    0.000    0.000 emitter.py:14(EmitterError)
+        1    0.000    0.000    0.000    0.000 emitter.py:17(ScalarAnalysis)
+        1    0.000    0.000    0.000    0.000 serializer.py:8(SerializerError)
+        1    0.000    0.000    0.000    0.000 representer.py:10(RepresenterError)
+        1    0.000    0.000    0.000    0.000 configfile.py:16(NoAliasDumper)
+        1    0.000    0.000    0.000    0.000 {method 'values' of 'collections.OrderedDict' objects}
+        1    0.000    0.000    0.000    0.000 {method '__getitem__' of 'dict' objects}
+        1    0.000    0.000    0.000    0.000 {built-in method _elementtree._set_factories}
+        1    0.000    0.000    0.000    0.000 _argparse.py:151(_render_actions)
+        1    0.000    0.000    0.000    0.000 backend.py:270(activate_osrandom_engine)
+        1    0.000    0.000    0.000    0.000 tools.py:274(Entrypoint)
+        1    0.000    0.000    0.000    0.000 _matrix.py:36()
+        1    0.000    0.000    0.000    0.000 _matrix.py:39()
+        1    0.000    0.000    0.000    0.000 _exceptions.py:21(WebSocketException)
+        1    0.000    0.000    0.000    0.000 _http.py:45(ProxyError)
+        1    0.000    0.000    0.000    0.000 _cookiejar.py:25(__init__)
+        1    0.000    0.000    0.000    0.000 _http.py:48(ProxyTimeoutError)
+        1    0.000    0.000    0.000    0.000 _http.py:51(ProxyConnectionError)
+        1    0.000    0.000    0.000    0.000 _matrix.py:22(set_axes_color)
+        1    0.000    0.000    0.000    0.000 client.py:49(meta_request)
+        1    0.000    0.000    0.000    0.000 exceptions.py:87(BadRequestError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:91(ForbiddenError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:93(NotFoundError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:97(ConflictError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:107(ServiceUnavailableError)
+        1    0.000    0.000    0.000    0.000 policy_api.py:27(PolicyApi)
+        1    0.000    0.000    0.000    0.000 exceptions.py:67(ApiKeyError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:16(OpenApiException)
+        1    0.000    0.000    0.000    0.000 url_safe.py:72(URLSafeSerializer)
+        1    0.000    0.000    0.000    0.000 exc.py:60(SignatureExpired)
+        1    0.000    0.000    0.000    0.000 context.py:14(ProcessError)
+        1    0.000    0.000    0.000    0.000 context.py:20(TimeoutError)
+        1    0.000    0.000    0.000    0.000 context.py:302(ForkContext)
+        1    0.000    0.000    0.000    0.000 context.py:306(SpawnContext)
+        1    0.000    0.000    0.000    0.000 pool.py:906(IMapUnorderedIterator)
+        1    0.000    0.000    0.000    0.000 connection.py:786(XmlListener)
+        1    0.000    0.000    0.000    0.000 connection.py:764(ConnectionWrapper)
+        1    0.000    0.000    0.000    0.000 converters.py:12(ValidationError)
+        1    0.000    0.000    0.000    0.000 converters.py:173(IntegerConverter)
+        1    0.000    0.000    0.000    0.000 :1(__create_fn__)
+        1    0.000    0.000    0.000    0.000 rules.py:207(EndpointPrefix)
+        1    0.000    0.000    0.000    0.000 exc.py:66(BadHeader)
+        1    0.000    0.000    0.000    0.000 validate.py:369(ParamValidationDecorator)
+        1    0.000    0.000    0.000    0.000 httpchecksum.py:123(Sha256Checksum)
+        1    0.000    0.000    0.000    0.000 auth.py:115(TokenSigner)
+        1    0.000    0.000    0.000    0.000 auth.py:788(S3SigV4QueryAuth)
+        1    0.000    0.000    0.000    0.000 auth.py:558(S3ExpressPostAuth)
+        1    0.000    0.000    0.000    0.000 model.py:29(NoShapeFoundError)
+        1    0.000    0.000    0.000    0.000 model.py:37(OperationNotFoundError)
+        1    0.000    0.000    0.000    0.000 model.py:45(ServiceId)
+        1    0.000    0.000    0.000    0.000 exceptions.py:121(UnknownFunctionError)
+        1    0.000    0.000    0.000    0.000 docstring.py:95(PaginatorDocstring)
+        1    0.000    0.000    0.000    0.000 exceptions.py:4(JMESPathError)
+        1    0.000    0.000    0.000    0.000 discovery.py:25(EndpointDiscoveryException)
+        1    0.000    0.000    0.000    0.000 docstring.py:90(WaiterDocstring)
+        1    0.000    0.000    0.000    0.000 __init__.py:11(DeprecatedTzFormatWarning)
+        1    0.000    0.000    0.000    0.000 _parser.py:1608(UnknownTimezoneWarning)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:235(AWSHTTPConnection)
+        1    0.000    0.000    0.000    0.000 _parser.py:1378(_attr)
+        1    0.000    0.000    0.000    0.000 exceptions.py:47(LexerError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:99(JMESPathTypeError)
+        1    0.000    0.000    0.000    0.000 standard.py:471(OrRetryChecker)
+        1    0.000    0.000    0.000    0.000 retryhandler.py:338(ServiceErrorCodeChecker)
+        1    0.000    0.000    0.000    0.000 retryhandler.py:371(CRC32Checker)
+        1    0.000    0.000    0.000    0.000 retryhandler.py:401(ExceptionRaiser)
+        1    0.000    0.000    0.000    0.000 configprovider.py:645(BaseProvider)
+        1    0.000    0.000    0.000    0.000 attr.py:18(ResourceShapeDocumenter)
+        1    0.000    0.000    0.000    0.000 docstring.py:35(LoadReloadDocstring)
+        1    0.000    0.000    0.000    0.000 docstring.py:55(ReferenceDocstring)
+        1    0.000    0.000    0.000    0.000 docstring.py:45(AttributeDocstring)
+        1    0.000    0.000    0.000    0.000 docstring.py:50(IdentifierDocstring)
+        1    0.000    0.000    0.000    0.000 docstring.py:60(CollectionDocstring)
+        1    0.000    0.000    0.000    0.000 docstring.py:65(CollectionMethodDocstring)
+        1    0.000    0.000    0.000    0.000 docstring.py:70(BatchActionDocstring)
+        1    0.000    0.000    0.000    0.000 docstring.py:75(ResourceWaiterDocstring)
+        1    0.000    0.000    0.000    0.000 model.py:106(Parameter)
+        1    0.000    0.000    0.000    0.000 exceptions.py:574(UnprocessableEntity)
+        1    0.000    0.000    0.000    0.000 exceptions.py:613(PreconditionRequired)
+        1    0.000    0.000    0.000    0.000 exceptions.py:667(TooManyRequests)
+        1    0.000    0.000    0.000    0.000 exceptions.py:688(RequestHeaderFieldsTooLarge)
+        1    0.000    0.000    0.000    0.000 exceptions.py:752(BadGateway)
+        1    0.000    0.000    0.000    0.000 exceptions.py:766(ServiceUnavailable)
+        1    0.000    0.000    0.000    0.000 exceptions.py:788(GatewayTimeout)
+        1    0.000    0.000    0.000    0.000 exceptions.py:799(HTTPVersionNotSupported)
+        1    0.000    0.000    0.000    0.000 accept.py:316(CharsetAccept)
+        1    0.000    0.000    0.000    0.000 structures.py:35(ImmutableList)
+        1    0.000    0.000    0.000    0.000 structures.py:809(ImmutableMultiDict)
+        1    0.000    0.000    0.000    0.000 structures.py:846(CallbackDict)
+        1    0.000    0.000    0.000    0.000 utils.py:150(header_property)
+        1    0.000    0.000    0.000    0.000 multipart.py:14(Event)
+        1    0.000    0.000    0.000    0.000 multipart.py:47(NeedData)
+        1    0.000    0.000    0.000    0.000 utils.py:194(AppendParamDocumentation)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:247(AWSHTTPSConnectionPool)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:243(AWSHTTPConnectionPool)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:239(AWSHTTPSConnection)
+        1    0.000    0.000    0.000    0.000 history.py:19(BaseHistoryHandler)
+        1    0.000    0.000    0.000    0.000 _utilities.py:32(__init__)
+        1    0.000    0.000    0.000    0.000 exceptions.py:104(ReadTimeoutError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:121(ClosedPoolError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:111(ConnectTimeoutError)
+        1    0.000    0.000    0.000    0.000 pre_configured.py:73(WebApplicationServer)
+        1    0.000    0.000    0.000    0.000 pre_configured.py:112(MobileApplicationServer)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:15(Error)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:328(Opera)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:338(Elinks)
+        1    0.000    0.000    0.000    0.000 server.py:142(ThreadingHTTPServer)
+        1    0.000    0.000    0.000    0.000 socketserver.py:713(ForkingUDPServer)
+        1    0.000    0.000    0.000    0.000 socketserver.py:716(ThreadingUDPServer)
+        1    0.000    0.000    0.000    0.000 socketserver.py:717(ThreadingTCPServer)
+        1    0.000    0.000    0.000    0.000 handlers.py:483(BaseCGIHandler)
+        1    0.000    0.000    0.000    0.000 oauth1_session.py:43(VerifierMissing)
+        1    0.000    0.000    0.000    0.000 socketserver.py:721(UnixStreamServer)
+        1    0.000    0.000    0.000    0.000 socketserver.py:841(DatagramRequestHandler)
+        1    0.000    0.000    0.000    0.000 handlers.py:507(CGIHandler)
+        1    0.000    0.000    0.000    0.000 handlers.py:537(IISCGIHandler)
+        1    0.000    0.000    0.000    0.000 errors.py:62(InsecureTransportError)
+        1    0.000    0.000    0.000    0.000 errors.py:75(InvalidClientError)
+        1    0.000    0.000    0.000    0.000 pre_configured.py:7(WebApplicationServer)
+        1    0.000    0.000    0.000    0.000 errors.py:119(InsecureTransportError)
+        1    0.000    0.000    0.000    0.000 errors.py:124(MismatchingStateError)
+        1    0.000    0.000    0.000    0.000 errors.py:133(MissingTokenError)
+        1    0.000    0.000    0.000    0.000 errors.py:137(MissingTokenTypeError)
+        1    0.000    0.000    0.000    0.000 errors.py:141(FatalClientError)
+        1    0.000    0.000    0.000    0.000 errors.py:156(InvalidRequestFatalError)
+        1    0.000    0.000    0.000    0.000 errors.py:190(UnexpectedBodyError)
+        1    0.000    0.000    0.000    0.000 http.py:259(MediaDownloadProgress)
+        1    0.000    0.000    0.000    0.000 core.py:5047(OneOrMore)
+        1    0.000    0.000    0.000    0.000 error.py:19(RedirectLimit)
+        1    0.000    0.000    0.000    0.000 error.py:27(UnimplementedDigestAuthOptionError)
+        1    0.000    0.000    0.000    0.000 errors.py:29(Error)
+        1    0.000    0.000    0.000    0.000 errors.py:107(InvalidJsonError)
+        1    0.000    0.000    0.000    0.000 errors.py:125(UnknownApiNameOrVersion)
+        1    0.000    0.000    0.000    0.000 errors.py:143(ResumableUploadError)
+        1    0.000    0.000    0.000    0.000 socks.py:55(ProxyError)
+        1    0.000    0.000    0.000    0.000 socks.py:59(GeneralProxyError)
+        1    0.000    0.000    0.000    0.000 socks.py:71(Socks4Error)
+        1    0.000    0.000    0.000    0.000 util.py:101(_FifoCache)
+        1    0.000    0.000    0.000    0.000 exceptions.py:17(_ExceptionWordUnicodeSet)
+        1    0.000    0.000    0.000    0.000 unicode.py:304(CJK)
+        1    0.000    0.000    0.000    0.000 unicode.py:141(Latin1)
+        1    0.000    0.000    0.000    0.000 unicode.py:154(LatinB)
+        1    0.000    0.000    0.000    0.000 unicode.py:200(Cyrillic)
+        1    0.000    0.000    0.000    0.000 unicode.py:314(Arabic)
+        1    0.000    0.000    0.000    0.000 unicode.py:322(Hebrew)
+        1    0.000    0.000    0.000    0.000 unicode.py:336(Devanagari)
+        1    0.000    0.000    0.000    0.000 exceptions.py:71(Timeout)
+        1    0.000    0.000    0.000    0.000 exceptions.py:95(TooManyRedirects)
+        1    0.000    0.000    0.000    0.000 exceptions.py:99(MissingSchema)
+        1    0.000    0.000    0.000    0.000 exceptions.py:111(InvalidHeader)
+        1    0.000    0.000    0.000    0.000 exceptions.py:123(ContentDecodingError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:135(UnrewindableBodyError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:142(RequestsWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:146(FileModeWarning)
+        1    0.000    0.000    0.000    0.000 cookies.py:170(CookieConflictError)
+        1    0.000    0.000    0.000    0.000 auth.py:99(HTTPProxyAuth)
+        1    0.000    0.000    0.000    0.000 challenges.py:91(name)
+        1    0.000    0.000    0.000    0.000 exceptions.py:18(HTTPError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:22(HTTPWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:70(DecodeError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:74(ProtocolError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:121(TimeoutError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:129(ReadTimeoutError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:174(ClosedPoolError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:209(SecurityWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:213(InsecureRequestWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:217(NotOpenSSLWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:221(SystemTimeWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:229(DependencyWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:285(InvalidHeader)
+        1    0.000    0.000    0.000    0.000 exceptions.py:306(ProxySchemeUnsupported)
+        1    0.000    0.000    0.000    0.000 exceptions.py:63(ProxyError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:106(HostChangedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:158(NameResolutionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:55(HTTPError)
+        1    0.000    0.000    0.000    0.000 connection.py:1015(DummyConnection)
+        1    0.000    0.000    0.000    0.000 _conditional.py:14(cryptography_has_ssl3_method)
+        1    0.000    0.000    0.000    0.000 _conditional.py:33(cryptography_has_ssl_st)
+        1    0.000    0.000    0.000    0.000 _conditional.py:115(cryptography_has_fips)
+        1    0.000    0.000    0.000    0.000 ec.py:266(BrainpoolP256R1)
+        1    0.000    0.000    0.000    0.000 general_name.py:23(UnsupportedGeneralNameType)
+        1    0.000    0.000    0.000    0.000 backend.py:131(_RC2)
+        1    0.000    0.000    0.000    0.000 exceptions.py:48(MutualTLSChannelError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:107(ResponseError)
+        1    0.000    0.000    0.000    0.000 credentials.py:285(CredentialsWithUniverseDomain)
+        1    0.000    0.000    0.000    0.000 exceptions.py:27(InvalidJSONError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:39(AlreadyFinalized)
+        1    0.000    0.000    0.000    0.000 exceptions.py:67(InvalidKey)
+        1    0.000    0.000    0.000    0.000 utils.py:17(CryptographyDeprecationWarning)
+        1    0.000    0.000    0.000    0.000 hashes.py:61(ExtendableOutputFunction)
+        1    0.000    0.000    0.000    0.000 hashes.py:112(SHA1)
+        1    0.000    0.000    0.000    0.000 hashes.py:118(SHA512_224)
+        1    0.000    0.000    0.000    0.000 hashes.py:124(SHA512_256)
+        1    0.000    0.000    0.000    0.000 hashes.py:130(SHA224)
+        1    0.000    0.000    0.000    0.000 hashes.py:136(SHA256)
+        1    0.000    0.000    0.000    0.000 hashes.py:148(SHA512)
+        1    0.000    0.000    0.000    0.000 hashes.py:154(SHA3_224)
+        1    0.000    0.000    0.000    0.000 hashes.py:172(SHA3_512)
+        1    0.000    0.000    0.000    0.000 hashes.py:214(MD5)
+        1    0.000    0.000    0.000    0.000 hashes.py:256(SM3)
+        1    0.000    0.000    0.000    0.000 _serialization.py:58(KeySerializationEncryption)
+        1    0.000    0.000    0.000    0.000 ec.py:186(SECT571R1)
+        1    0.000    0.000    0.000    0.000 ec.py:191(SECT409R1)
+        1    0.000    0.000    0.000    0.000 ec.py:196(SECT283R1)
+        1    0.000    0.000    0.000    0.000 ec.py:201(SECT233R1)
+        1    0.000    0.000    0.000    0.000 ec.py:206(SECT163R2)
+        1    0.000    0.000    0.000    0.000 ec.py:216(SECT409K1)
+        1    0.000    0.000    0.000    0.000 ec.py:221(SECT283K1)
+        1    0.000    0.000    0.000    0.000 ec.py:231(SECT163K1)
+        1    0.000    0.000    0.000    0.000 ec.py:236(SECP521R1)
+        1    0.000    0.000    0.000    0.000 ec.py:241(SECP384R1)
+        1    0.000    0.000    0.000    0.000 ec.py:251(SECP256K1)
+        1    0.000    0.000    0.000    0.000 ec.py:261(SECP192R1)
+        1    0.000    0.000    0.000    0.000 questions.py:126(Password)
+        1    0.000    0.000    0.000    0.000 prompt.py:328(FloatPrompt)
+        1    0.000    0.000    0.000    0.000 exceptions.py:5(NodeNotFoundError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:17(ProfileAlreadyExistsError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:21(ExecutionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:25(InvalidConfigurationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:29(ReservedNameError)
+        1    0.000    0.000    0.000    0.000 formatters.py:116(ParameterizingProxyString)
+        1    0.000    0.000    0.000    0.000 formatters.py:276(NullCallableString)
+        1    0.000    0.000    0.000    0.000 unicode_versions.py:1()
+        1    0.000    0.000    0.000    0.000 questions.py:134(Editor)
+        1    0.000    0.000    0.000    0.000 events.py:13(Repaint)
+        1    0.000    0.000    0.000    0.000 _other.py:1(OtherChoice)
+        1    0.000    0.000    0.000    0.000 ruler.py:60(RuleOptionsType)
+        1    0.000    0.000    0.000    0.000 rag.py:31(RAGIngestEmbeddingOptions)
+        1    0.000    0.000    0.000    0.000 __init__.py:106(NullHandler)
+        1    0.000    0.000    0.000    0.000 exceptions.py:98(RetryError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:815(UnknownEndpointResolutionBuiltInName)
+        1    0.000    0.000    0.000    0.000 exceptions.py:809(EndpointResolutionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:803(EndpointProviderError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:70(TooManyRedirects)
+        1    0.000    0.000    0.000    0.000 exceptions.py:82(InvalidURL)
+        1    0.000    0.000    0.000    0.000 exceptions.py:74(MissingSchema)
+        1    0.000    0.000    0.000    0.000 exceptions.py:84(S3UploadFailedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:19(Boto3Error)
+        1    0.000    0.000    0.000    0.000 exceptions.py:23(ResourceLoadException)
+        1    0.000    0.000    0.000    0.000 exceptions.py:38(UnknownAPIVersionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:120(PythonDeprecationWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:51(ResourceNotExistsError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:36(SSLError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:46(DecodeError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:51(ProtocolError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:8(HTTPWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:364(UnknownKeyError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:496(UnknownCredentialError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:632(UnsupportedS3AccesspointConfigurationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:502(WaiterConfigError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:449(OperationNotPageableError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:653(InvalidRetryConfigurationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:571(InvalidDNSNameError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:304(ConfigParseError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:379(RangeError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:357(ParamValidationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:626(UnsupportedS3ConfigurationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:435(UnknownServiceStyle)
+        1    0.000    0.000    0.000    0.000 exceptions.py:410(InvalidRegionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:482(IncompleteReadError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:62(MaxRetryError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:141(ResponseError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:233(BaseEndpointResolverError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:264(UnknownEndpointError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:199(CredentialRetrievalError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:160(NoCredentialsError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:168(NoAuthTokenError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:59(UnknownServiceError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:156(ResponseStreamingError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:133(ConnectionClosedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:110(ConnectionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:713(InvalidConfigError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:699(StubResponseError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:690(InvalidSTSRegionalEndpointsConfigError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:757(SSOError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:764(SSOTokenLoadError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:741(UndefinedModelAttributeError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:725(RefreshWithMFAUnsupportedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:729(MD5UnavailableError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:737(MetadataRetrievalError)
+        1    0.000    0.000    0.000    0.000 utils.py:4(OVHCloudException)
+        1    0.000    0.000    0.000    0.000 common_utils.py:20(DatabricksException)
+        1    0.000    0.000    0.000    0.000 cohere.py:81(CohereV2ChatResponseUsageTokens)
+        1    0.000    0.000    0.000    0.000 vector_stores.py:177(VectorStoreCreateRequest)
+        1    0.000    0.000    0.000    0.000 dall_e_3_transformation.py:4(AzureDallE3ImageGenerationConfig)
+        1    0.000    0.000    0.000    0.000 gpt_transformation.py:4(AzureGPTImageGenerationConfig)
+        1    0.000    0.000    0.000    0.000 bedrock.py:524(TwelveLabsOutputDataConfig)
+        1    0.000    0.000    0.000    0.000 bedrock.py:663(NovaOutputDataConfig)
+        1    0.000    0.000    0.000    0.000 bedrock.py:854(BedrockRerankTextQuery)
+        1    0.000    0.000    0.000    0.000 common_utils.py:131(get_ca_regions)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:51(HttpxCodeExecutionResult)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:588(GcsDestination)
+        1    0.000    0.000    0.000    0.000 vertex_ai.py:666(VertexVideoImage)
+        1    0.000    0.000    0.000    0.000 bedrock.py:109(CitationLocationBlock)
+        1    0.000    0.000    0.000    0.000 common_utils.py:134(get_us_regions)
+        1    0.000    0.000    0.000    0.000 transformation.py:29(__init__)
+        1    0.000    0.000    0.000    0.000 nodes.py:979(Mod)
+        1    0.000    0.000    0.000    0.000 nodes.py:985(Pow)
+        1    0.000    0.000    0.000    0.000 nodes.py:1011(Not)
+        1    0.000    0.000    0.000    0.000 nodes.py:1134(DerivedContextReference)
+        1    0.000    0.000    0.000    0.000 nodes.py:1143(Continue)
+        1    0.000    0.000    0.000    0.000 nodes.py:1147(Break)
+        1    0.000    0.000    0.000    0.000 compiler.py:248(VisitorExit)
+        1    0.000    0.000    0.000    0.000 exceptions.py:139(TemplateAssertionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:157(SecurityError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:163(FilterArgumentError)
+        1    0.000    0.000    0.000    0.000 _functools.py:84()
+        1    0.000    0.000    0.000    0.000 multipart.py:77(BadContentDispositionHeader)
+        1    0.000    0.000    0.000    0.000 multipart.py:81(BadContentDispositionParam)
+        1    0.000    0.000    0.000    0.000 tracing.py:258(TraceConnectionQueuedStartParams)
+        1    0.000    0.000    0.000    0.000 tracing.py:263(TraceConnectionQueuedEndParams)
+        1    0.000    0.000    0.000    0.000 tracing.py:273(TraceConnectionCreateEndParams)
+        1    0.000    0.000    0.000    0.000 tracing.py:278(TraceConnectionReuseconnParams)
+        1    0.000    0.000    0.000    0.000 http_exceptions.py:61(PayloadEncodingError)
+        1    0.000    0.000    0.000    0.000 http_exceptions.py:77(DecompressSizeError)
+        1    0.000    0.000    0.000    0.000 http_exceptions.py:115(InvalidURLError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:165(ClientConnectionError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:169(ClientConnectionResetError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:215(ClientConnectorDNSError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:269(ServerTimeoutError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:277(SocketTimeoutError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:346(NonHttpUrlClientError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:382(ClientConnectorSSLError)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:448(ObsRoute)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:652(MIMEVersion)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:708(Value)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:809(ParameterizedHeaderValue)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:847(MsgID)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:202(Word)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:210(Atom)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:509(DotAtomText)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:702(Section)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:842(HeaderLabel)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:856(MessageID)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:925(ValueTerminal)
+        1    0.000    0.000    0.000    0.000 streams.py:36(EofStream)
+        1    0.000    0.000    0.000    0.000 cookies.py:145(CookieError)
+        1    0.000    0.000    0.000    0.000 models.py:83(WSHandshakeError)
+        1    0.000    0.000    0.000    0.000 nodes.py:50(Impossible)
+        1    0.000    0.000    0.000    0.000 nodes.py:282(Stmt)
+        1    0.000    0.000    0.000    0.000 nodes.py:288(Helper)
+        1    0.000    0.000    0.000    0.000 nodes.py:959(FloorDiv)
+        1    0.000    0.000    0.000    0.000 nodes.py:967(Add)
+        1    0.000    0.000    0.000    0.000 open_inference.py:356(ToolAttributes)
+        1    0.000    0.000    0.000    0.000 transcription_create_params.py:158(TranscriptionCreateParamsStreaming)
+        1    0.000    0.000    0.000    0.000 supervised_method_param.py:12(SupervisedMethodParam)
+        1    0.000    0.000    0.000    0.000 thread.py:112(BrokenThreadPool)
+        1    0.000    0.000    0.000    0.000 openai.py:639(ChatCompletionAudioObject)
+        1    0.000    0.000    0.000    0.000 openai.py:766(ChatCompletionDeveloperMessage)
+        1    0.000    0.000    0.000    0.000 skill_update_params.py:10(SkillUpdateParams)
+        1    0.000    0.000    0.000    0.000 video_extend_params.py:28(VideoVideoReferenceInputParam)
+        1    0.000    0.000    0.000    0.000 image_generate_params.py:135(ImageGenerateParamsStreaming)
+        1    0.000    0.000    0.000    0.000 completion_create_params.py:177(CompletionCreateParamsStreaming)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:31(OpenAIError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:132(InternalServerError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:136(LengthFinishReasonError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:99(APITimeoutError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:108(AuthenticationError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:112(PermissionDeniedError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:124(UnprocessableEntityError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:128(RateLimitError)
+        1    0.000    0.000    0.000    0.000 response_create_params.py:298(StreamOptions)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:246(ShellCallAction)
+        1    0.000    0.000    0.000    0.000 response_input_item_param.py:337(ApplyPatchCallOperationDeleteFile)
+        1    0.000    0.000    0.000    0.000 response_create_params.py:337(ResponseCreateParamsStreaming)
+        1    0.000    0.000    0.000    0.000 tool_choice_apply_patch_param.py:10(ToolChoiceApplyPatchParam)
+        1    0.000    0.000    0.000    0.000 response_conversation_param_param.py:10(ResponseConversationParamParam)
+        1    0.000    0.000    0.000    0.000 response_retrieve_params.py:35(ResponseRetrieveParamsNonStreaming)
+        1    0.000    0.000    0.000    0.000 response_retrieve_params.py:47(ResponseRetrieveParamsStreaming)
+        1    0.000    0.000    0.000    0.000 computer_action_param.py:125(Screenshot)
+        1    0.000    0.000    0.000    0.000 tool_param.py:227(ImageGenerationInputImageMask)
+        1    0.000    0.000    0.000    0.000 completion_create_params.py:407(WebSearchOptionsUserLocation)
+        1    0.000    0.000    0.000    0.000 chat_completion_custom_tool_param.py:35(CustomFormatGrammar)
+        1    0.000    0.000    0.000    0.000 chat_completion_custom_tool_param.py:61(ChatCompletionCustomToolParam)
+        1    0.000    0.000    0.000    0.000 chat_completion_allowed_tool_choice_param.py:12(ChatCompletionAllowedToolChoiceParam)
+        1    0.000    0.000    0.000    0.000 completion_create_params.py:433(CompletionCreateParamsNonStreaming)
+        1    0.000    0.000    0.000    0.000 chat_completion_content_part_param.py:29(File)
+        1    0.000    0.000    0.000    0.000 chat_completion_assistant_message_param.py:15(Audio)
+        1    0.000    0.000    0.000    0.000 chat_completion_named_tool_choice_custom_param.py:10(Custom)
+        1    0.000    0.000    0.000    0.000 container_reference_param.py:10(ContainerReferenceParam)
+        1    0.000    0.000    0.000    0.000 image_edit_params.py:133(ImageEditParamsStreaming)
+        1    0.000    0.000    0.000    0.000 eval_create_params.py:224(TestingCriterionPython)
+        1    0.000    0.000    0.000    0.000 tool_param.py:48(McpAllowedToolsMcpToolFilter)
+        1    0.000    0.000    0.000    0.000 tool_param.py:81(McpRequireApprovalMcpToolApprovalFilterNever)
+        1    0.000    0.000    0.000    0.000 queues.py:11(QueueEmpty)
+        1    0.000    0.000    0.000    0.000 queues.py:16(QueueFull)
+        1    0.000    0.000    0.000    0.000 unix_events.py:799(_UnixSubprocessTransport)
+        1    0.000    0.000    0.000    0.000 events.py:659(_Local)
+        1    0.000    0.000    0.000    0.000 transports.py:148(Transport)
+        1    0.000    0.000    0.000    0.000 exceptions.py:47(LimitOverrunError)
+        1    0.000    0.000    0.000    0.000 _types.py:249(HttpxSendArgs)
+        1    0.000    0.000    0.000    0.000 base_subprocess.py:281(ReadSubprocessPipeProto)
+        1    0.000    0.000    0.000    0.000 eval_create_params.py:122(TestingCriterionLabelModelInputEvalItemContentOutputText)
+        1    0.000    0.000    0.000    0.000 response_format_json_schema.py:43(ResponseFormatJSONSchema)
+        1    0.000    0.000    0.000    0.000 idna.py:251(IncrementalDecoder)
+        1    0.000    0.000    0.000    0.000 idna.py:293(StreamReader)
+        1    0.000    0.000    0.000    0.000 lexer.py:328(include)
+        1    0.000    0.000    0.000    0.000 lexer.py:335(_inherit)
+        1    0.000    0.000    0.000    0.000 lexer.py:913(ProfilingRegexLexerMeta)
+        1    0.000    0.000    0.000    0.000 __init__.py:756(ErrorToken)
+        1    0.000    0.000    0.000    0.000 lexer.py:482(words)
+        1    0.000    0.000    0.000    0.000 lexer.py:762(LexerContext)
+        1    0.000    0.000    0.000    0.000 __init__.py:715(NameHighlightFilter)
+        1    0.000    0.000    0.000    0.000 __init__.py:789(VisibleWhitespaceFilter)
+        1    0.000    0.000    0.000    0.000 __init__.py:907(TokenMergeFilter)
+        1    0.000    0.000    0.000    0.000 emoji.py:23(NoEmoji)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :12(__init__)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :12(__init__)
+        1    0.000    0.000    0.000    0.000 configparser.py:191(DuplicateSectionError)
+        1    0.000    0.000    0.000    0.000 configparser.py:244(NoOptionError)
+        1    0.000    0.000    0.000    0.000 configparser.py:265(InterpolationMissingOptionError)
+        1    0.000    0.000    0.000    0.000 configparser.py:277(InterpolationSyntaxError)
+        1    0.000    0.000    0.000    0.000 configparser.py:285(InterpolationDepthError)
+        1    0.000    0.000    0.000    0.000 configparser.py:341(MissingSectionHeaderError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:274(Abort)
+        1    0.000    0.000    0.000    0.000 console.py:346(get)
+        1    0.000    0.000    0.000    0.000 console.py:85(NoChange)
+        1    0.000    0.000    0.000    0.000 util.py:265(Future)
+        1    0.000    0.000    0.000    0.000 getpass.py:26(GetPassWarning)
+        1    0.000    0.000    0.000    0.000 errors.py:1(ConsoleError)
+        1    0.000    0.000    0.000    0.000 errors.py:5(StyleError)
+        1    0.000    0.000    0.000    0.000 errors.py:9(StyleSyntaxError)
+        1    0.000    0.000    0.000    0.000 errors.py:33(NoAltScreen)
+        1    0.000    0.000    0.000    0.000 theme.py:76(ThemeStackError)
+        1    0.000    0.000    0.000    0.000 connection_pool.py:270()
+        1    0.000    0.000    0.000    0.000 _connection.py:40(NEED_DATA)
+        1    0.000    0.000    0.000    0.000 _events.py:32(Event)
+        1    0.000    0.000    0.000    0.000 connection_pool.py:265()
+        1    0.000    0.000    0.000    0.000 _state.py:159(MUST_CLOSE)
+        1    0.000    0.000    0.000    0.000 _state.py:163(CLOSED)
+        1    0.000    0.000    0.000    0.000 _state.py:172(MIGHT_SWITCH_PROTOCOL)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:38(DelimiterNotFound)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:57(IncompleteRead)
+        1    0.000    0.000    0.000    0.000 _sockets.py:152(UDPSocket)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:22(ProxyError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:30(ProtocolError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:49(PoolTimeout)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:53(ConnectTimeout)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:61(WriteTimeout)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:72(ConnectError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:51(EndOfStream)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:78(WouldBlock)
+        1    0.000    0.000    0.000    0.000 _sockets.py:95(SocketStream)
+        1    0.000    0.000    0.000    0.000 _sockets.py:167(ConnectedUDPSocket)
+        1    0.000    0.000    0.000    0.000 _sockets.py:189(ConnectedUNIXDatagramSocket)
+        1    0.000    0.000    0.000    0.000 _streams.py:75(UnreliableObjectStream)
+        1    0.000    0.000    0.000    0.000 _base.py:49(CancelledError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:193(CloseError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:216(ProtocolError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:249(TooManyRedirects)
+        1    0.000    0.000    0.000    0.000 _impl.py:11(_ThreadLocal)
+        1    0.000    0.000    0.000    0.000 _decoders.py:67(GZipDecoder)
+        1    0.000    0.000    0.000    0.000 _decoders.py:181(MultiDecoder)
+        1    0.000    0.000    0.000    0.000 package_data.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:14(IDNAError)
+        1    0.000    0.000    0.000    0.000 core.py:32(InvalidCodepointContext)
+        1    0.000    0.000    0.000    0.000 request.py:337(full_url)
+        1    0.000    0.000    0.000    0.000 _client.py:309(params)
+        1    0.000    0.000    0.000    0.000 _config.py:42(UnsetType)
+        1    0.000    0.000    0.000    0.000 client.py:1467(InvalidURL)
+        1    0.000    0.000    0.000    0.000 client.py:1495(ImproperConnectionState)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:132(TimeoutException)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:140(ConnectTimeout)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:152(WriteTimeout)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:158(PoolTimeout)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:280(CookieConflict)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:297(StreamError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:340(ResponseNotRead)
+        1    0.000    0.000    0.000    0.000 _urlparse.py:125(copy_with)
+        1    0.000    0.000    0.000    0.000 errors.py:12(MessageParseError)
+        1    0.000    0.000    0.000    0.000 errors.py:16(HeaderParseError)
+        1    0.000    0.000    0.000    0.000 errors.py:20(BoundaryError)
+        1    0.000    0.000    0.000    0.000 errors.py:45(NoBoundaryInMultipartDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:54(FirstHeaderLineIsContinuationDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:57(MisplacedEnvelopeHeaderDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:68(InvalidMultipartContentTransferEncodingDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:71(UndecodableBytesDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:74(InvalidBase64PaddingDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:111(NonASCIILocalPartDefect)
+        1    0.000    0.000    0.000    0.000 zipfile.py:48(LargeZipFile)
+        1    0.000    0.000    0.000    0.000 __init__.py:870(__init__)
+        1    0.000    0.000    0.000    0.000 _generate_schema.py:586(CollectedInvalid)
+        1    0.000    0.000    0.000    0.000 fields.py:646(_EmptyKwargs)
+        1    0.000    0.000    0.000    0.000 warnings.py:63(PydanticDeprecatedSince29)
+        1    0.000    0.000    0.000    0.000 _repr.py:20(PlainRepr)
+        1    0.000    0.000    0.000    0.000 _tzpath.py:170(InvalidTZPathWarning)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:2341(_UnpackSpecialForm)
+        1    0.000    0.000    0.000    0.000 __init__.py:127(MultiHostHost)
+        1    0.000    0.000    0.000    0.000 core_schema.py:3556(JsonSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:372(FormatSerSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1440(IncExSeqSerSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1931(WithInfoValidatorFunctionSchema)
+        1    0.000    0.000    0.000    0.000 core_schema.py:1922(NoInfoValidatorFunctionSchema)
+        1    0.000    0.000    0.000    0.000 argparse.py:1021(_AppendAction)
+        1    0.000    0.000    0.000    0.000 argparse.py:1059(_AppendConstAction)
+        1    0.000    0.000    0.000    0.000 argparse.py:1086(_CountAction)
+        1    0.000    0.000    0.000    0.000 argparse.py:681(RawDescriptionHelpFormatter)
+        1    0.000    0.000    0.000    0.000 argparse.py:1254(_ExtendAction)
+        1    0.000    0.000    0.000    0.000 argparse.py:732(MetavarTypeHelpFormatter)
+        1    0.000    0.000    0.000    0.000 argparse.py:766(ArgumentError)
+        1    0.000    0.000    0.000    0.000 argparse.py:1156(_ChoicesPseudoAction)
+        1    0.000    0.000    0.000    0.000 __init__.py:753(Filter)
+        1    0.000    0.000    0.000    0.000 typing_extensions.py:210(_ExtensionsSpecialForm)
+        1    0.000    0.000    0.000    0.000 tokens.py:28(DocumentEndToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:45(BlockMappingStartToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:51(FlowSequenceStartToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:54(FlowMappingStartToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:57(FlowSequenceEndToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:60(FlowMappingEndToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:66(ValueToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:69(BlockEntryToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:75(AliasToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:89(TagToken)
+        1    0.000    0.000    0.000    0.000 events.py:31(CollectionEndEvent)
+        1    0.000    0.000    0.000    0.000 events.py:42(StreamEndEvent)
+        1    0.000    0.000    0.000    0.000 events.py:64(ScalarEvent)
+        1    0.000    0.000    0.000    0.000 events.py:75(SequenceStartEvent)
+        1    0.000    0.000    0.000    0.000 tokens.py:31(StreamStartToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:96(ScalarToken)
+        1    0.000    0.000    0.000    0.000 events.py:21(CollectionStartEvent)
+        1    0.000    0.000    0.000    0.000 events.py:45(DocumentStartEvent)
+        1    0.000    0.000    0.000    0.000 events.py:54(DocumentEndEvent)
+        1    0.000    0.000    0.000    0.000 dumper.py:27(SafeDumper)
+        1    0.000    0.000    0.000    0.000 cyaml.py:85(CDumper)
+        1    0.000    0.000    0.000    0.000 composer.py:8(ComposerError)
+        1    0.000    0.000    0.000    0.000 constructor.py:16(ConstructorError)
+        1    0.000    0.000    0.000    0.000 cyaml.py:30(CFullLoader)
+        1    0.000    0.000    0.000    0.000 cyaml.py:44(CLoader)
+        1    0.000    0.000    0.000    0.000 random.py:814(seed)
+        1    0.000    0.000    0.000    0.000 _multipart.py:25(get_multipart_boundary_from_content_type)
+        1    0.000    0.000    0.000    0.000 _matrix.py:37()
+        1    0.000    0.000    0.000    0.000 _matrix.py:40()
+        1    0.000    0.000    0.000    0.000 _exceptions.py:29(WebSocketProtocolException)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:37(WebSocketPayloadException)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:45(WebSocketConnectionClosedException)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:54(WebSocketTimeoutException)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:62(WebSocketProxyException)
+        1    0.000    0.000    0.000    0.000 _http.py:55(proxy_info)
+        1    0.000    0.000    0.000    0.000 _matrix.py:29(set_canvas_color)
+        1    0.000    0.000    0.000    0.000 client.py:34(VersionNotSupportedError)
+        1    0.000    0.000    0.000    0.000 discovery.py:412(CacheEncoder)
+        1    0.000    0.000    0.000    0.000 exceptions.py:78(ResourceNotFoundError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:80(ResourceNotUniqueError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:83(KubernetesValidateMissing)
+        1    0.000    0.000    0.000    0.000 exceptions.py:89(UnauthorizedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:95(MethodNotAllowedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:103(TooManyRequestsError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:105(InternalServerError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:109(ServerTimeoutError)
+        1    0.000    0.000    0.000    0.000 context.py:17(BufferTooShort)
+        1    0.000    0.000    0.000    0.000 exceptions.py:141(WebsocketMismatch)
+        1    0.000    0.000    0.000    0.000 auth.py:812(S3SigV4PostAuth)
+        1    0.000    0.000    0.000    0.000 auth.py:1082(HmacV1PostAuth)
+        1    0.000    0.000    0.000    0.000 auth.py:1122(BearerAuth)
+        1    0.000    0.000    0.000    0.000 discovery.py:35(EndpointDiscoveryRefreshFailed)
+        1    0.000    0.000    0.000    0.000 model.py:33(InvalidShapeError)
+        1    0.000    0.000    0.000    0.000 model.py:41(InvalidShapeReferenceError)
+        1    0.000    0.000    0.000    0.000 compat.py:37(HTTPHeaders)
+        1    0.000    0.000    0.000    0.000 tz.py:1156(_tzicalvtzcomp)
+        1    0.000    0.000    0.000    0.000 parsers.py:184(ResponseParserError)
+        1    0.000    0.000    0.000    0.000 retryhandler.py:357(MultiChecker)
+        1    0.000    0.000    0.000    0.000 exceptions.py:700(UnavailableForLegalReasons)
+        1    0.000    0.000    0.000    0.000 exceptions.py:741(NotImplemented)
+        1    0.000    0.000    0.000    0.000 parsers.py:842(EventStreamXMLParser)
+        1    0.000    0.000    0.000    0.000 parsers.py:837(EventStreamJSONParser)
+        1    0.000    0.000    0.000    0.000 exceptions.py:126(LocationValueError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:116(EmptyPoolError)
+        1    0.000    0.000    0.000    0.000 socketserver.py:714(ForkingTCPServer)
+        1    0.000    0.000    0.000    0.000 socketserver.py:727(ThreadingUnixStreamServer)
+        1    0.000    0.000    0.000    0.000 errors.py:71(InvalidRequestError)
+        1    0.000    0.000    0.000    0.000 error.py:31(UnimplementedHmacDigestAuthOptionError)
+        1    0.000    0.000    0.000    0.000 error.py:35(MalformedHeader)
+        1    0.000    0.000    0.000    0.000 error.py:39(RelativeURIError)
+        1    0.000    0.000    0.000    0.000 error.py:43(ServerNotFoundError)
+        1    0.000    0.000    0.000    0.000 error.py:47(ProxiesUnavailableError)
+        1    0.000    0.000    0.000    0.000 errors.py:119(UnknownLinkType)
+        1    0.000    0.000    0.000    0.000 errors.py:137(MediaUploadSizeError)
+        1    0.000    0.000    0.000    0.000 errors.py:149(InvalidChunkSizeError)
+        1    0.000    0.000    0.000    0.000 errors.py:155(InvalidNotificationError)
+        1    0.000    0.000    0.000    0.000 socks.py:63(Socks5AuthError)
+        1    0.000    0.000    0.000    0.000 socks.py:75(HTTPError)
+        1    0.000    0.000    0.000    0.000 error.py:15(RedirectMissingLocation)
+        1    0.000    0.000    0.000    0.000 exceptions.py:67(SSLError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:80(ConnectTimeout)
+        1    0.000    0.000    0.000    0.000 exceptions.py:87(ReadTimeout)
+        1    0.000    0.000    0.000    0.000 exceptions.py:103(InvalidSchema)
+        1    0.000    0.000    0.000    0.000 exceptions.py:107(InvalidURL)
+        1    0.000    0.000    0.000    0.000 exceptions.py:115(InvalidProxyURL)
+        1    0.000    0.000    0.000    0.000 exceptions.py:119(ChunkedEncodingError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:127(StreamConsumedError)
+        1    0.000    0.000    0.000    0.000 __init__.py:848(AllHosts)
+        1    0.000    0.000    0.000    0.000 challenges.py:110(name)
+        1    0.000    0.000    0.000    0.000 challenges.py:263(name)
+        1    0.000    0.000    0.000    0.000 exceptions.py:55(SSLError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:117(TimeoutStateError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:135(ConnectTimeoutError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:166(EmptyPoolError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:170(FullPoolError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:178(LocationValueError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:225(InsecurePlatformWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:236(ResponseNotChunked)
+        1    0.000    0.000    0.000    0.000 exceptions.py:240(BodyNotHttplibCompatible)
+        1    0.000    0.000    0.000    0.000 exceptions.py:320(UnrewindableBodyError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:59(ConnectionError)
+        1    0.000    0.000    0.000    0.000 ec.py:271(BrainpoolP384R1)
+        1    0.000    0.000    0.000    0.000 ec.py:276(BrainpoolP512R1)
+        1    0.000    0.000    0.000    0.000 ec.py:489(ECDH)
+        1    0.000    0.000    0.000    0.000 exceptions.py:51(InvalidTag)
+        1    0.000    0.000    0.000    0.000 utils.py:49(InterfaceNotImplemented)
+        1    0.000    0.000    0.000    0.000 hashes.py:160(SHA3_256)
+        1    0.000    0.000    0.000    0.000 hashes.py:166(SHA3_384)
+        1    0.000    0.000    0.000    0.000 ec.py:211(SECT571K1)
+        1    0.000    0.000    0.000    0.000 ec.py:226(SECT233K1)
+        1    0.000    0.000    0.000    0.000 ec.py:246(SECP256R1)
+        1    0.000    0.000    0.000    0.000 ec.py:256(SECP224R1)
+        1    0.000    0.000    0.000    0.000 themes.py:116(BlueComposure)
+        1    0.000    0.000    0.000    0.000 _path.py:4(Path)
+        1    0.000    0.000    0.000    0.000 transformation.py:187(__init__)
+        1    0.000    0.000    0.000    0.000 exceptions.py:94(StreamConsumedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:799(InvalidEndpointConfigurationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:795(FlexibleChecksumError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:86(ChunkedEncodingError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:78(InvalidSchema)
+        1    0.000    0.000    0.000    0.000 exceptions.py:62(ReadTimeout)
+        1    0.000    0.000    0.000    0.000 exceptions.py:29(NoVersionFound)
+        1    0.000    0.000    0.000    0.000 exceptions.py:80(S3TransferFailedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:88(DynamoDBOperationNotSupportedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:41(ProxyError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:95(TimeoutError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:90(TimeoutStateError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:561(UnsupportedTLSVersionWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:508(UnknownClientMethodError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:567(ImminentRemovalWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:638(InvalidEndpointDiscoveryConfigurationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:592(UnsupportedS3ArnError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:557(EventStreamError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:647(UnsupportedS3ControlConfigurationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:453(ChecksumError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:293(ProfileNotFound)
+        1    0.000    0.000    0.000    0.000 exceptions.py:490(InvalidExpressionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:395(UnknownParameterError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:324(MissingParametersError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:342(ValidationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:445(PaginationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:314(ConfigNotFound)
+        1    0.000    0.000    0.000    0.000 exceptions.py:514(UnsupportedSignatureVersionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:463(UnseekableStreamError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:243(NoRegionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:222(ServiceNotInRegionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:249(EndpointVariantError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:152(ProxyConnectionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:176(TokenRetrievalError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:72(UnknownRegionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:82(ApiVersionNotFoundError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:125(EndpointConnectionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:140(ReadTimeoutError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:148(ConnectTimeoutError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:118(InvalidIMDSEndpointModeError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:129(SSLError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:680(InvalidS3UsEast1RegionalEndpointConfigError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:671(InvalidRetryModeError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:662(InvalidMaxRetryAttemptsError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:791(AwsChunkedWrapperError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:784(InvalidDefaultsMode)
+        1    0.000    0.000    0.000    0.000 exceptions.py:780(InvalidProxiesConfigError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:776(CapacityNotAvailableError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:705(StubAssertionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:768(UnauthorizedSSOTokenError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:709(UnStubbedResponseError)
+        1    0.000    0.000    0.000    0.000 main.py:33(__init__)
+        1    0.000    0.000    0.000    0.000 ElementTree.py:106(ParseError)
+        1    0.000    0.000    0.000    0.000 dall_e_2_transformation.py:4(AzureDallE2ImageGenerationConfig)
+        1    0.000    0.000    0.000    0.000 common_utils.py:74(__init__)
+        1    0.000    0.000    0.000    0.000 common_utils.py:113(get_sa_regions)
+        1    0.000    0.000    0.000    0.000 common_utils.py:99(get_ap_regions)
+        1    0.000    0.000    0.000    0.000 common_utils.py:116(get_eu_regions)
+        1    0.000    0.000    0.000    0.000 nodes.py:1017(Neg)
+        1    0.000    0.000    0.000    0.000 nodes.py:1023(Pos)
+        1    0.000    0.000    0.000    0.000 nodes.py:1116(ContextReference)
+        1    0.000    0.000    0.000    0.000 exceptions.py:147(TemplateRuntimeError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:153(UndefinedError)
+        1    0.000    0.000    0.000    0.000 http_exceptions.py:55(HttpBadRequest)
+        1    0.000    0.000    0.000    0.000 http_exceptions.py:65(ContentEncodingError)
+        1    0.000    0.000    0.000    0.000 http_exceptions.py:73(ContentLengthError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:144(ContentTypeError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:148(WSServerHandshakeError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:161(TooManyRedirects)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:173(ClientOSError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:223(ClientProxyConnectionError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:254(ServerConnectionError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:273(ConnectionTimeoutError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:297(ClientPayloadError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:338(InvalidUrlClientError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:342(RedirectClientError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:350(InvalidUrlRedirectClientError)
+        1    0.000    0.000    0.000    0.000 client_exceptions.py:354(NonHttpUrlRedirectClientError)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:830(ContentDisposition)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:195(UnstructuredTokenList)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:206(CFWSList)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:505(DotAtom)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:514(NoFoldLiteral)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:552(ObsLocalPart)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:687(InvalidParameter)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:860(InvalidMessageID)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:864(Header)
+        1    0.000    0.000    0.000    0.000 nodes.py:947(Mul)
+        1    0.000    0.000    0.000    0.000 nodes.py:953(Div)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:160(InvalidWebhookSignatureError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:21(SendfileNotAvailableError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:61(BrokenBarrierError)
+        1    0.000    0.000    0.000    0.000 idna.py:290(StreamWriter)
+        1    0.000    0.000    0.000    0.000 lexer.py:470(default)
+        1    0.000    0.000    0.000    0.000 __init__.py:760(RaiseOnErrorTokenFilter)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 console.py:588(detect_legacy_windows)
+        1    0.000    0.000    0.000    0.000 util.py:34(OptionError)
+        1    0.000    0.000    0.000    0.000 util.py:321(UnclosingTextIOWrapper)
+        1    0.000    0.000    0.000    0.000 errors.py:21(NotRenderableError)
+        1    0.000    0.000    0.000    0.000 errors.py:25(MarkupError)
+        1    0.000    0.000    0.000    0.000 errors.py:29(LiveError)
+        1    0.000    0.000    0.000    0.000 _connection.py:44(PAUSED)
+        1    0.000    0.000    0.000    0.000 connection_pool.py:31(wait_for_connection)
+        1    0.000    0.000    0.000    0.000 _state.py:134(CLIENT)
+        1    0.000    0.000    0.000    0.000 _state.py:138(SERVER)
+        1    0.000    0.000    0.000    0.000 _state.py:151(SEND_BODY)
+        1    0.000    0.000    0.000    0.000 _state.py:155(DONE)
+        1    0.000    0.000    0.000    0.000 _state.py:167(ERROR)
+        1    0.000    0.000    0.000    0.000 _state.py:176(SWITCHED_PROTOCOL)
+        1    0.000    0.000    0.000    0.000 _state.py:180(_SWITCH_UPGRADE)
+        1    0.000    0.000    0.000    0.000 connection_pool.py:315(__enter__)
+        1    0.000    0.000    0.000    0.000 connection_pool.py:39(is_queued)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:34(RemoteProtocolError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:38(LocalProtocolError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:45(TimeoutException)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:57(ReadTimeout)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:68(NetworkError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:76(ReadError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:17(BrokenWorkerProcess)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:34(ClosedResourceError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:71(TypedAttributeLookupError)
+        1    0.000    0.000    0.000    0.000 _base.py:55(InvalidStateError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:202(ProxyError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:208(UnsupportedProtocol)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:222(LocalProtocolError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:243(DecodingError)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:1244(Absent)
+        1    0.000    0.000    0.000    0.000 _impl.py:21(AsyncLibraryNotFoundError)
+        1    0.000    0.000    0.000    0.000 _urls.py:217(port)
+        1    0.000    0.000    0.000    0.000 core.py:20(IDNABidiError)
+        1    0.000    0.000    0.000    0.000 _client.py:278(headers)
+        1    0.000    0.000    0.000    0.000 _client.py:218()
+        1    0.000    0.000    0.000    0.000 client.py:1459(HTTPException)
+        1    0.000    0.000    0.000    0.000 client.py:1464(NotConnected)
+        1    0.000    0.000    0.000    0.000 client.py:1475(UnknownTransferEncoding)
+        1    0.000    0.000    0.000    0.000 client.py:1478(UnimplementedFileMode)
+        1    0.000    0.000    0.000    0.000 client.py:1498(CannotSendRequest)
+        1    0.000    0.000    0.000    0.000 client.py:1501(CannotSendHeader)
+        1    0.000    0.000    0.000    0.000 client.py:1504(ResponseNotReady)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:123(TransportError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:146(ReadTimeout)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:167(NetworkError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:175(ReadError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:187(ConnectError)
+        1    0.000    0.000    0.000    0.000 _models.py:529(request)
+        1    0.000    0.000    0.000    0.000 errors.py:24(MultipartConversionError)
+        1    0.000    0.000    0.000    0.000 errors.py:28(CharsetError)
+        1    0.000    0.000    0.000    0.000 errors.py:32(HeaderWriteError)
+        1    0.000    0.000    0.000    0.000 errors.py:48(StartBoundaryNotFoundDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:51(CloseBoundaryNotFoundDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:60(MissingHeaderBodySeparatorDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:65(MultipartInvariantViolationDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:80(InvalidBase64LengthDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:91(InvalidHeaderDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:94(HeaderMissingRequiredValue)
+        1    0.000    0.000    0.000    0.000 errors.py:108(ObsoleteHeaderDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:116(InvalidDateDefect)
+        1    0.000    0.000    0.000    0.000 abc.py:267(FileLoader)
+        1    0.000    0.000    0.000    0.000 _common.py:101(_)
+        1    0.000    0.000    0.000    0.000 warnings.py:74(PydanticExperimentalWarning)
+        1    0.000    0.000    0.000    0.000 errors.py:91(PydanticUserError)
+        1    0.000    0.000    0.000    0.000 argparse.py:786(ArgumentTypeError)
+        1    0.000    0.000    0.000    0.000 parser.py:65(Error)
+        1    0.000    0.000    0.000    0.000 tokens.py:25(DocumentStartToken)
+        1    0.000    0.000    0.000    0.000 nodes.py:35(CollectionNode)
+        1    0.000    0.000    0.000    0.000 error.py:45(YAMLError)
+        1    0.000    0.000    0.000    0.000 tokens.py:39(StreamEndToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:42(BlockSequenceStartToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:63(KeyToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:72(FlowEntryToken)
+        1    0.000    0.000    0.000    0.000 events.py:36(StreamStartEvent)
+        1    0.000    0.000    0.000    0.000 events.py:61(AliasEvent)
+        1    0.000    0.000    0.000    0.000 events.py:78(SequenceEndEvent)
+        1    0.000    0.000    0.000    0.000 nodes.py:44(SequenceNode)
+        1    0.000    0.000    0.000    0.000 nodes.py:47(MappingNode)
+        1    0.000    0.000    0.000    0.000 loader.py:21(FullLoader)
+        1    0.000    0.000    0.000    0.000 loader.py:41(Loader)
+        1    0.000    0.000    0.000    0.000 loader.py:55(UnsafeLoader)
+        1    0.000    0.000    0.000    0.000 resolver.py:9(ResolverError)
+        1    0.000    0.000    0.000    0.000 constructor.py:747(Constructor)
+        1    0.000    0.000    0.000    0.000 resolver.py:167(Resolver)
+        1    0.000    0.000    0.000    0.000 cyaml.py:37(CUnsafeLoader)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:89(WebSocketAddressException)
+        1    0.000    0.000    0.000    0.000 exceptions.py:99(GoneError)
+        1    0.000    0.000    0.000    0.000 context.py:23(AuthenticationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:588(Locked)
+        1    0.000    0.000    0.000    0.000 exceptions.py:598(FailedDependency)
+        1    0.000    0.000    0.000    0.000 compat.py:14(with_repr_method)
+        1    0.000    0.000    0.000    0.000 errors.py:67(InvalidSignatureMethodError)
+        1    0.000    0.000    0.000    0.000 errors.py:165(InvalidRedirectURIError)
+        1    0.000    0.000    0.000    0.000 errors.py:131(UnacceptableMimeTypeError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:91(URLRequired)
+        1    0.000    0.000    0.000    0.000 exceptions.py:55(InvalidSignature)
+        1    0.000    0.000    0.000    0.000 exceptions.py:116(DynamoDBNeedsKeyConditionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:616(UnsupportedOutpostResourceError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:601(UnsupportedS3ControlArnError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:607(InvalidHostLabelError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:583(InvalidS3AddressingStyleError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:212(UnknownSignatureVersionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:278(UnknownFIPSEndpointError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:114(InvalidIMDSEndpointError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:733(MissingDependencyException)
+        1    0.000    0.000    0.000    0.000 transformation.py:124(__init__)
+        1    0.000    0.000    0.000    0.000 main.py:47(__init__)
+        1    0.000    0.000    0.000    0.000 http_exceptions.py:69(TransferEncodingError)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:836(ContentTransferEncoding)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:199(Phrase)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 _state.py:147(SEND_RESPONSE)
+        1    0.000    0.000    0.000    0.000 _state.py:184(_SWITCH_CONNECT)
+        1    0.000    0.000    0.000    0.000 errors.py:77(InvalidBase64CharactersDefect)
+        1    0.000    0.000    0.000    0.000 tokens.py:48(BlockEndToken)
+        1    0.000    0.000    0.000    0.000 events.py:81(MappingStartEvent)
+        1    0.000    0.000    0.000    0.000 events.py:84(MappingEndEvent)
+
+
diff --git a/test2.txt b/test2.txt
new file mode 100644
index 0000000..0b6aefc
--- /dev/null
+++ b/test2.txt
@@ -0,0 +1,7465 @@
+──────────────────────────────────────────────── OUTPUT ────────────────────────────────────────────────
+╭──────────────────────────── qro1pe1@ctx — ✓ PASS ────────────────────────────╮
+│                                                                              │
+│ RP/0/RP0/CPU0:KE.MXQRO01.RT01#show ver                                       │
+│ Mon Apr 20 09:05:49.978 CST                                                  │
+│ Cisco IOS XR Software, Version 24.1.2                                        │
+│ Copyright (c) 2013-2024 by Cisco Systems, Inc.                               │
+│                                                                              │
+│ Build Information:                                                           │
+│  Built By     : swtools                                                      │
+│  Built On     : Tue Jun  4 18:20:38 PDT 2024                                 │
+│  Built Host   : iox-ucs-046                                                  │
+│  Workspace    : /auto/srcarchive16/prod/24.1.2/ncs5500/ws                    │
+│  Version      : 24.1.2                                                       │
+│  Location     : /opt/cisco/XR/packages/                                      │
+│  Label        : 24.1.2                                                       │
+│                                                                              │
+│ cisco NCS-5500 () processor                                                  │
+│ System uptime is 1 week 3 days 14 hours 59 minutes                           │
+│                                                                              │
+│ RP/0/RP0/CPU0:KE.MXQRO01.RT01#                                               │
+│                                                                              │
+╰──────────────────────────────────────────────────────────────────────────────╯
+         1083145 function calls (1051009 primitive calls) in 6.564 seconds
+
+   Ordered by: cumulative time
+
+   ncalls  tottime  percall  cumtime  percall filename:lineno(function)
+   1872/1    0.015    0.000    6.566    6.566 {built-in method builtins.exec}
+        1    0.000    0.000    6.565    6.565 :1()
+        1    0.000    0.000    6.565    6.565 :201(run_module)
+        1    0.000    0.000    6.017    6.017 :65(_run_code)
+        1    0.000    0.000    6.017    6.017 __main__.py:1()
+        1    0.000    0.000    6.017    6.017 __main__.py:5(main)
+        1    0.000    0.000    5.181    5.181 connapp.py:424(start)
+      143    0.006    0.000    4.793    0.034 __init__.py:1()
+     10/7    0.000    0.000    4.189    0.598 hooks.py:17(__call__)
+        1    0.000    0.000    4.142    4.142 run_handler.py:13(dispatch)
+        1    0.000    0.000    4.142    4.142 run_handler.py:19(node_run)
+        1    0.000    0.000    4.142    4.142 execution_service.py:11(run_commands)
+        1    0.000    0.000    4.130    4.130 core.py:740(run)
+        7    4.130    0.590    4.130    0.590 {method 'acquire' of '_thread.lock' objects}
+        1    0.000    0.000    4.129    4.129 threading.py:1080(join)
+        1    0.000    0.000    4.129    4.129 threading.py:1118(_wait_for_tstate_lock)
+  1887/13    0.017    0.000    2.039    0.157 :1167(_find_and_load)
+  1886/13    0.015    0.000    2.038    0.157 :1122(_find_and_load_unlocked)
+  1777/11    0.006    0.000    2.038    0.185 :934(exec_module)
+  1825/13    0.013    0.000    2.035    0.157 :666(_load_unlocked)
+  3949/20    0.007    0.000    2.034    0.102 :233(_call_with_frames_removed)
+   250/58    0.001    0.000    1.702    0.029 {built-in method builtins.__import__}
+  779/329    0.003    0.000    1.272    0.004 :1209(_handle_fromlist)
+        1    0.000    0.000    1.037    1.037 connapp.py:201(get_parser)
+        2    0.002    0.001    0.973    0.486 plugins.py:138(_import_plugins_to_argparse)
+        3    0.000    0.000    0.899    0.300 plugins.py:131(_import_from_path)
+        1    0.000    0.000    0.895    0.895 aws.py:1()
+        1    0.000    0.000    0.620    0.620 connapp.py:53(__init__)
+        1    0.000    0.000    0.583    0.583 provider.py:13(__init__)
+        1    0.000    0.000    0.583    0.583 provider.py:25(_init_local)
+        1    0.000    0.000    0.580    0.580 sync_service.py:1()
+      2/1    0.000    0.000    0.548    0.548 :105(_get_module_details)
+     2699    0.009    0.000    0.468    0.000 __init__.py:272(_compile)
+      806    0.002    0.000    0.460    0.001 __init__.py:225(compile)
+      329    0.003    0.000    0.448    0.001 _compiler.py:738(compile)
+        1    0.000    0.000    0.416    0.416 connapp.py:1()
+3772/3729    0.047    0.000    0.343    0.000 {built-in method builtins.__build_class__}
+        1    0.000    0.000    0.340    0.340 well_known_api.py:1()
+        1    0.000    0.000    0.339    0.339 api_client.py:1()
+     1778    0.019    0.000    0.323    0.000 :1007(get_code)
+        1    0.000    0.000    0.311    0.311 ai.py:1()
+        1    0.000    0.000    0.308    0.308 markdown.py:1()
+     1866    0.027    0.000    0.302    0.000 :1056(_find_spec)
+      329    0.002    0.000    0.273    0.001 _parser.py:970(parse)
+ 1099/329    0.019    0.000    0.268    0.001 _parser.py:447(_parse_sub)
+ 1781/469    0.072    0.000    0.263    0.001 _parser.py:507(_parse)
+        2    0.000    0.000    0.261    0.131 app.py:1()
+        2    0.000    0.000    0.247    0.123 session.py:1()
+        1    0.000    0.000    0.232    0.232 requests.py:1()
+     1843    0.004    0.000    0.219    0.000 :1496(find_spec)
+      3/2    0.000    0.000    0.216    0.108 hooks.py:69(__call__)
+        1    0.000    0.000    0.216    0.216 configfile.py:46(__init__)
+     1843    0.012    0.000    0.215    0.000 :1464(_get_spec)
+        1    0.000    0.000    0.213    0.213 RSA.py:781(import_key)
+        1    0.000    0.000    0.204    0.204 RSA.py:739(_import_keyDER)
+        1    0.000    0.000    0.204    0.204 RSA.py:683(_import_pkcs1_private)
+        1    0.000    0.000    0.200    0.200 RSA.py:539(construct)
+        2    0.000    0.000    0.199    0.099 Primality.py:222(test_probable_prime)
+     2278    0.038    0.000    0.187    0.000 :1604(find_spec)
+        2    0.033    0.016    0.187    0.093 Primality.py:119(lucas_test)
+      329    0.002    0.000    0.169    0.001 _compiler.py:571(_code)
+        3    0.000    0.000    0.161    0.054 credentials.py:1()
+        5    0.000    0.000    0.159    0.032 core.py:1()
+        5    0.000    0.000    0.154    0.031 client.py:1()
+        3    0.000    0.000    0.148    0.049 discovery.py:1()
+3561/3329    0.006    0.000    0.147    0.000 typing.py:338(inner)
+ 2859/329    0.043    0.000    0.141    0.000 _compiler.py:37(_compile)
+     1778    0.010    0.000    0.137    0.000 :727(_compile_bytecode)
+        1    0.000    0.000    0.132    0.132 main.py:1()
+        1    0.000    0.000    0.128    0.128 reauth.py:1()
+1828/1819    0.008    0.000    0.123    0.000 :566(module_from_spec)
+     1778    0.123    0.000    0.123    0.000 {built-in method marshal.loads}
+        1    0.000    0.000    0.122    0.122 _client.py:1()
+    13242    0.038    0.000    0.108    0.000 :126(_path_join)
+        4    0.000    0.000    0.105    0.026 auth.py:1()
+       20    0.001    0.000    0.103    0.005 exceptions.py:1()
+110616/110609    0.086    0.000    0.100    0.000 {built-in method builtins.isinstance}
+        2    0.000    0.000    0.100    0.050 _core.py:1()
+     1828    0.018    0.000    0.098    0.000 :493(_init_module_attrs)
+        4    0.000    0.000    0.098    0.025 compat.py:1()
+        1    0.000    0.000    0.096    0.096 jwt.py:1()
+     3556    0.023    0.000    0.095    0.000 :437(cache_from_source)
+        1    0.000    0.000    0.094    0.094 _service_account_info.py:1()
+        3    0.000    0.000    0.093    0.031 rsa.py:1()
+        1    0.000    0.000    0.092    0.092 _cryptography_rsa.py:1()
+        1    0.000    0.000    0.088    0.088 templating.py:1()
+       20    0.001    0.000    0.086    0.004 utils.py:1()
+        1    0.000    0.000    0.086    0.086 node_handler.py:1()
+        2    0.000    0.000    0.083    0.042 prompt.py:1()
+        3    0.000    0.000    0.082    0.027 waiter.py:1()
+        2    0.000    0.000    0.080    0.040 service.py:1()
+        1    0.000    0.000    0.080    0.080 environment.py:1()
+        1    0.000    0.000    0.076    0.076 _base_connection.py:1()
+  676/448    0.001    0.000    0.076    0.000 typing.py:461(__getitem__)
+        1    0.000    0.000    0.067    0.067 ssl_.py:1()
+     1002    0.012    0.000    0.066    0.000 typing.py:1333(__init__)
+        1    0.000    0.000    0.066    0.066 url.py:1()
+      442    0.004    0.000    0.065    0.000 typing.py:638(Union)
+        2    0.000    0.000    0.065    0.033 globals.py:1()
+      156    0.001    0.000    0.065    0.000 _doc_utils.py:215(_add_function)
+        3    0.000    0.000    0.063    0.021 lexer.py:1()
+       44    0.001    0.000    0.062    0.001 argparse.py:1742(__init__)
+     1778    0.009    0.000    0.062    0.000 :1127(get_data)
+     3578    0.005    0.000    0.061    0.000 :392(cached)
+        1    0.000    0.000    0.061    0.061 console.py:1()
+    13242    0.037    0.000    0.059    0.000 :128()
+       15    0.000    0.000    0.058    0.004 base.py:1()
+        2    0.000    0.000    0.058    0.029 themes.py:1()
+        1    0.000    0.000    0.057    0.057 syntax.py:1()
+     1801    0.006    0.000    0.056    0.000 :567(_get_cached)
+        2    0.000    0.000    0.054    0.027 table.py:1()
+       40    0.000    0.000    0.053    0.001 argparse.py:1189(add_parser)
+        4    0.000    0.000    0.052    0.013 helpers.py:1()
+    19813    0.033    0.000    0.050    0.000 _parser.py:252(get)
+        4    0.000    0.000    0.050    0.013 api.py:1()
+        1    0.000    0.000    0.050    0.050 restdoc.py:1()
+    19609    0.033    0.000    0.049    0.000 _parser.py:162(__getitem__)
+      140    0.000    0.000    0.047    0.000 gettext.py:619(gettext)
+     2046    0.005    0.000    0.047    0.000 _IntegerGMP.py:625(get_bit)
+      140    0.000    0.000    0.047    0.000 gettext.py:581(dgettext)
+      140    0.001    0.000    0.046    0.000 gettext.py:522(translation)
+        1    0.000    0.000    0.046    0.046 RSA.py:1()
+      140    0.004    0.000    0.046    0.000 gettext.py:467(find)
+48119/44873    0.040    0.000    0.045    0.000 {built-in method builtins.len}
+     2158    0.015    0.000    0.044    0.000 typing.py:168(_type_check)
+        1    0.000    0.000    0.044    0.044 Numbers.py:1()
+        1    0.000    0.000    0.044    0.044 _IntegerGMP.py:1()
+     1177    0.030    0.000    0.043    0.000 _compiler.py:241(_optimize_charset)
+        7    0.000    0.000    0.043    0.006 context_service.py:81(filter_node_list)
+     2062    0.005    0.000    0.043    0.000 _IntegerGMP.py:344(__lt__)
+        2    0.000    0.000    0.042    0.021 node_service.py:13(list_nodes)
+        7    0.003    0.000    0.042    0.006 context_service.py:83()
+        1    0.000    0.000    0.041    0.041 parser_block.py:1()
+        1    0.000    0.000    0.041    0.041 configfile.py:1()
+        1    0.000    0.000    0.041    0.041 interactive.py:1()
+        1    0.000    0.000    0.041    0.041 flow.py:1()
+        2    0.000    0.000    0.041    0.020 sessions.py:1()
+      228    0.001    0.000    0.040    0.000 typing.py:678(Optional)
+    54727    0.040    0.000    0.040    0.000 {method 'append' of 'list' objects}
+     2891    0.007    0.000    0.039    0.000 context_service.py:77(_match_any)
+        1    0.000    0.000    0.039    0.039 cookiejar.py:1()
+     1780    0.039    0.000    0.039    0.000 {method 'read' of '_io.BufferedReader' objects}
+        1    0.000    0.000    0.038    0.038 plugin.py:1()
+        1    0.000    0.000    0.037    0.037 parse_link_label.py:1()
+     7297    0.014    0.000    0.037    0.000 typing.py:1277(__setattr__)
+     1886    0.006    0.000    0.037    0.000 :169(__enter__)
+     2192    0.006    0.000    0.037    0.000 _IntegerGMP.py:329(_apply_and_return)
+        1    0.000    0.000    0.037    0.037 serving.py:1()
+        2    0.000    0.000    0.036    0.018 nodes.py:1()
+     6579    0.010    0.000    0.035    0.000 :140(_path_stat)
+        1    0.000    0.000    0.034    0.034 adapters.py:1()
+3275/3093    0.028    0.000    0.034    0.000 {built-in method __new__ of type object at 0x942fc8}
+       13    0.000    0.000    0.033    0.003 _raw_api.py:184(load_lib)
+    14614    0.022    0.000    0.033    0.000 py3compat.py:157(is_native_int)
+     3102    0.013    0.000    0.032    0.000 {built-in method builtins.any}
+        1    0.000    0.000    0.031    0.031 aws.py:1972(__init__)
+      156    0.001    0.000    0.031    0.000 _doc_utils.py:140(get_doc)
+        1    0.000    0.000    0.031    0.031 urls.py:1()
+        1    0.000    0.000    0.030    0.030 extensions.py:1()
+        1    0.000    0.000    0.030    0.030 _figure.py:1()
+        3    0.000    0.000    0.030    0.010 events.py:1()
+     3559    0.009    0.000    0.030    0.000 :132(_path_split)
+      264    0.029    0.000    0.029    0.000 {built-in method builtins.compile}
+      312    0.002    0.000    0.029    0.000 typing.py:1531(__getitem__)
+        1    0.000    0.000    0.028    0.028 loader.py:1()
+        1    0.000    0.000    0.028    0.028 _figure.py:16(_figure_class)
+        2    0.000    0.000    0.027    0.014 __init__.py:1001(version)
+     7755    0.027    0.000    0.027    0.000 {built-in method posix.stat}
+        1    0.027    0.027    0.027    0.027 {method 'load_verify_locations' of '_ssl._SSLContext' objects}
+        1    0.000    0.000    0.027    0.027 terminal.py:124(__init__)
+      329    0.004    0.000    0.026    0.000 _compiler.py:509(_compile_info)
+     2294    0.010    0.000    0.026    0.000 _IntegerGMP.py:161(__init__)
+      416    0.001    0.000    0.026    0.000 typing.py:1540(copy_with)
+        2    0.000    0.000    0.026    0.013 _adapters.py:1()
+     6138    0.013    0.000    0.026    0.000 _IntegerGMP.py:529(__imul__)
+       22    0.000    0.000    0.026    0.001 dataclasses.py:1209(wrap)
+        6    0.000    0.000    0.026    0.004 parser.py:1()
+       22    0.002    0.000    0.026    0.001 dataclasses.py:884(_process_class)
+        3    0.000    0.000    0.025    0.008 plugins.py:36(verify_script)
+    34579    0.025    0.000    0.025    0.000 {method 'rstrip' of 'str' objects}
+     7851    0.015    0.000    0.025    0.000 typing.py:1226(_is_dunder)
+        1    0.000    0.000    0.025    0.025 terminal.py:270(__init__capabilities)
+     1778    0.011    0.000    0.025    0.000 :675(_validate_timestamp_pyc)
+        1    0.000    0.000    0.025    0.025 pretty.py:1()
+        1    0.000    0.000    0.025    0.025 _exponential_backoff.py:1()
+        2    0.000    0.000    0.025    0.012 __init__.py:7(default_backend)
+  239/229    0.002    0.000    0.024    0.000 inspect.py:2426(_signature_from_callable)
+     1002    0.004    0.000    0.024    0.000 typing.py:1238(__init__)
+        6    0.000    0.000    0.024    0.004 ast.py:33(parse)
+        3    0.000    0.000    0.024    0.008 configfile.py:475(_getallnodes)
+        1    0.000    0.000    0.024    0.024 html_block.py:1()
+     1799    0.006    0.000    0.024    0.000 :1599(_get_spec)
+        1    0.000    0.000    0.024    0.024 test.py:1()
+        2    0.000    0.000    0.024    0.012 common.py:1()
+        1    0.000    0.000    0.024    0.024 message.py:1()
+     2121    0.007    0.000    0.024    0.000 _utility.py:381(colorize)
+      156    0.001    0.000    0.023    0.000 _doc_utils.py:89(get_doc)
+    26575    0.023    0.000    0.023    0.000 _parser.py:231(__next)
+    21297    0.022    0.000    0.023    0.000 {built-in method builtins.getattr}
+        1    0.000    0.000    0.023    0.023 backend.py:1()
+      156    0.001    0.000    0.023    0.000 _doc_utils.py:156(get_parameters)
+     2237    0.010    0.000    0.023    0.000 :179(_get_module_lock)
+     4554    0.010    0.000    0.022    0.000 {built-in method builtins.max}
+     7465    0.012    0.000    0.022    0.000 :1028(__enter__)
+        2    0.000    0.000    0.022    0.011 _default.py:1()
+      156    0.004    0.000    0.022    0.000 inspect.py:1336(getfullargspec)
+     5334    0.013    0.000    0.022    0.000 :84(_unpack_uint32)
+     2246    0.004    0.000    0.022    0.000 :159(_path_isfile)
+      378    0.000    0.000    0.021    0.000 {built-in method builtins.next}
+        1    0.000    0.000    0.021    0.021 connectionpool.py:1()
+      172    0.002    0.000    0.021    0.000 argparse.py:1424(add_argument)
+        1    0.000    0.000    0.021    0.021 parse_link_destination.py:1()
+        1    0.000    0.000    0.021    0.021 common.py:8(pyparsing_common)
+        2    0.000    0.000    0.021    0.010 __init__.py:975(distribution)
+        2    0.000    0.000    0.021    0.010 __init__.py:549(from_name)
+     1442    0.002    0.000    0.021    0.000 typing.py:670()
+      156    0.001    0.000    0.021    0.000 _doc_utils.py:90()
+ 3259/761    0.014    0.000    0.021    0.000 _parser.py:172(getwidth)
+        1    0.000    0.000    0.021    0.021 example.py:1()
+       14    0.000    0.000    0.020    0.001 __init__.py:914()
+     9494    0.014    0.000    0.020    0.000 context_service.py:78()
+       12    0.000    0.000    0.020    0.002 __init__.py:812(search)
+      492    0.003    0.000    0.020    0.000 _doc_utils.py:59(get_doc)
+       69    0.001    0.000    0.020    0.000 nodes.py:59(__new__)
+       17    0.000    0.000    0.020    0.001 _functools.py:75(wrapper)
+        1    0.000    0.000    0.020    0.020 align.py:1()
+     8184    0.014    0.000    0.020    0.000 _IntegerGMP.py:695(set)
+18689/18612    0.017    0.000    0.020    0.000 {method 'join' of 'str' objects}
+        8    0.000    0.000    0.020    0.002 __init__.py:821(lookup)
+        8    0.002    0.000    0.020    0.002 __init__.py:827(__init__)
+      229    0.004    0.000    0.020    0.000 inspect.py:2331(_signature_from_function)
+       13    0.000    0.000    0.019    0.001 enum.py:896(_convert_)
+        1    0.000    0.000    0.019    0.019 oauth2_auth.py:1()
+     1228    0.010    0.000    0.019    0.000 :71(join)
+        1    0.000    0.000    0.019    0.019 _request_methods.py:1()
+     6138    0.014    0.000    0.019    0.000 _IntegerGMP.py:548(__imod__)
+        1    0.000    0.000    0.019    0.019 constrain.py:1()
+        1    0.000    0.000    0.019    0.019 shape.py:1()
+        2    0.000    0.000    0.018    0.009 types.py:1()
+     2386    0.005    0.000    0.018    0.000 :150(_path_is_mode_type)
+     3069    0.009    0.000    0.018    0.000 _IntegerGMP.py:673(multiply_accumulate)
+        1    0.000    0.000    0.018    0.018 _doc.py:1()
+        1    0.000    0.000    0.017    0.017 docstringparser.py:1()
+        1    0.000    0.000    0.017    0.017 terminal.py:1()
+     7465    0.011    0.000    0.017    0.000 :1032(__exit__)
+        1    0.000    0.000    0.017    0.017 jupyter.py:1()
+    21579    0.017    0.000    0.017    0.000 {method 'startswith' of 'str' objects}
+        1    0.000    0.000    0.017    0.017 general_name.py:1()
+     6363    0.011    0.000    0.017    0.000 _utility.py:397(apply_ansi)
+        3    0.000    0.000    0.017    0.006 http.py:1()
+        2    0.000    0.000    0.017    0.008 multipart.py:1()
+     1802    0.008    0.000    0.017    0.000 :778(spec_from_file_location)
+    11576    0.017    0.000    0.017    0.000 {built-in method _imp.acquire_lock}
+        7    0.000    0.000    0.016    0.002 response.py:1()
+        1    0.000    0.000    0.016    0.016 segment.py:1()
+    10829    0.012    0.000    0.016    0.000 _parser.py:247(match)
+        1    0.000    0.000    0.016    0.016 name.py:1()
+        1    0.000    0.000    0.016    0.016 platform.py:1()
+        1    0.000    0.000    0.016    0.016 normalize_url.py:1()
+        1    0.000    0.000    0.016    0.016 base_events.py:1()
+    19292    0.016    0.000    0.016    0.000 {method 'get' of 'dict' objects}
+     1778    0.006    0.000    0.015    0.000 :642(_classify_pyc)
+     1778    0.015    0.000    0.015    0.000 {built-in method io.open_code}
+     6439    0.010    0.000    0.015    0.000 _parser.py:158(__len__)
+        1    0.000    0.000    0.015    0.015 resolver.py:1()
+     1886    0.004    0.000    0.015    0.000 :173(__exit__)
+        2    0.000    0.000    0.015    0.007 text.py:1()
+        4    0.000    0.000    0.015    0.004 __init__.py:108(import_module)
+       20    0.005    0.000    0.015    0.001 enum.py:1646(convert_class)
+        4    0.000    0.000    0.015    0.004 :1194(_gcd_import)
+        7    0.000    0.000    0.015    0.002 util.py:1()
+     5455    0.010    0.000    0.014    0.000 _parser.py:170(append)
+      104    0.001    0.000    0.014    0.000 typing.py:1615(__getitem__)
+10588/10580    0.010    0.000    0.014    0.000 {built-in method builtins.hasattr}
+      188    0.001    0.000    0.014    0.000 typing.py:1586(__getitem__)
+        4    0.000    0.000    0.014    0.003 urls.py:29(_make_unquote_part)
+        1    0.000    0.000    0.014    0.014 pty_spawn.py:1()
+     3204    0.005    0.000    0.014    0.000 :117(__instancecheck__)
+        1    0.000    0.000    0.013    0.013 compat.py:18(_resolve_char_detection)
+        1    0.000    0.000    0.013    0.013 name.py:362(_RFC4514NameParser)
+        1    0.000    0.000    0.013    0.013 ssl.py:1()
+     3041    0.006    0.000    0.013    0.000 _IntegerGMP.py:493(__iadd__)
+        1    0.000    0.000    0.013    0.013 args.py:1()
+       10    0.000    0.000    0.013    0.001 core.py:2787(__init__)
+       29    0.005    0.000    0.013    0.000 util.py:186(_collapse_string_to_ranges)
+        1    0.000    0.000    0.013    0.013 accept.py:1()
+       61    0.002    0.000    0.013    0.000 enum.py:488(__new__)
+       11    0.000    0.000    0.013    0.001 core.py:5705(__init__)
+    32/10    0.000    0.000    0.013    0.001 core.py:4587(leave_whitespace)
+        1    0.000    0.000    0.013    0.013 platform.py:646(architecture)
+        1    0.000    0.000    0.013    0.013 platform.py:602(_syscmd_file)
+    14374    0.013    0.000    0.013    0.000 :244(_verbose_message)
+     2237    0.009    0.000    0.012    0.000 :125(release)
+      280    0.003    0.000    0.012    0.000 gettext.py:216(_expand_lang)
+     7118    0.009    0.000    0.012    0.000 :134()
+     1874    0.007    0.000    0.012    0.000 :198(cb)
+       22    0.000    0.000    0.012    0.001 dataclasses.py:1192(dataclass)
+        2    0.000    0.000    0.012    0.006 Primality.py:45(miller_rabin_test)
+     2237    0.009    0.000    0.012    0.000 :100(acquire)
+        2    0.000    0.000    0.012    0.006 structures.py:1()
+      466    0.001    0.000    0.012    0.000 core.py:521(copy)
+     1778    0.003    0.000    0.012    0.000 :1146(path_stats)
+      220    0.000    0.000    0.012    0.000 __init__.py:795(joinpath)
+        1    0.000    0.000    0.012    0.012 stream.py:1()
+      224    0.000    0.000    0.011    0.000 pathlib.py:869(__new__)
+     2453    0.003    0.000    0.011    0.000 :1421(_path_importer_cache)
+    23/20    0.000    0.000    0.011    0.001 :1231(create_module)
+        1    0.000    0.000    0.011    0.011 html_inline.py:1()
+        1    0.000    0.000    0.011    0.011 pathlib.py:1()
+    23/20    0.006    0.000    0.011    0.001 {built-in method _imp.create_dynamic}
+        1    0.000    0.000    0.011    0.011 typing.py:1()
+        1    0.000    0.000    0.011    0.011 emphasis.py:1()
+        1    0.000    0.000    0.011    0.011 ws_client.py:1()
+      224    0.001    0.000    0.011    0.000 pathlib.py:505(_from_parts)
+      469    0.003    0.000    0.011    0.000 copy.py:66(copy)
+       94    0.001    0.000    0.011    0.000 typing.py:1600(__getitem_inner__)
+        1    0.000    0.000    0.011    0.011 html_re.py:1()
+       33    0.002    0.000    0.011    0.000 typing.py:2815(__new__)
+      427    0.001    0.000    0.011    0.000 _parser.py:94(closegroup)
+        1    0.000    0.000    0.011    0.011 map.py:1()
+      126    0.000    0.000    0.011    0.000 argparse.py:2592(_get_formatter)
+        1    0.000    0.000    0.011    0.011 subprocess.py:417(check_output)
+     1031    0.004    0.000    0.011    0.000 typing.py:245(_collect_parameters)
+        1    0.000    0.000    0.011    0.011 subprocess.py:506(run)
+    12668    0.011    0.000    0.011    0.000 {method 'rpartition' of 'str' objects}
+        1    0.000    0.000    0.011    0.011 defaults.py:1()
+        1    0.000    0.000    0.010    0.010 state_inline.py:1()
+        4    0.000    0.000    0.010    0.003 request.py:1()
+        1    0.000    0.000    0.010    0.010 tools.py:251(__init__)
+     1210    0.003    0.000    0.010    0.000 _compiler.py:396(_simple)
+        1    0.000    0.000    0.010    0.010 socket.py:1()
+      226    0.002    0.000    0.010    0.000 pathlib.py:485(_parse_args)
+        1    0.000    0.000    0.010    0.010 matcher.py:1()
+    63/10    0.000    0.000    0.010    0.001 core.py:3812(leave_whitespace)
+       13    0.002    0.000    0.010    0.001 enum.py:913()
+        3    0.000    0.000    0.010    0.003 style.py:1()
+       73    0.000    0.000    0.010    0.000 inspect.py:3277(signature)
+        2    0.000    0.000    0.010    0.005 handlers.py:1()
+        1    0.000    0.000    0.010    0.010 _raw_api.py:1()
+       73    0.000    0.000    0.010    0.000 inspect.py:3023(from_callable)
+        1    0.000    0.000    0.010    0.010 oauth1_auth.py:1()
+        1    0.000    0.000    0.010    0.010 ssh.py:1()
+       64    0.001    0.000    0.010    0.000 util.py:240(replaced_by_pep8)
+        1    0.002    0.002    0.010    0.010 packages.py:1()
+   132/63    0.000    0.000    0.009    0.000 core.py:3904(copy)
+       35    0.000    0.000    0.009    0.000 typing.py:2795(_make_nmtuple)
+        2    0.000    0.000    0.009    0.005 filters.py:1()
+        1    0.000    0.000    0.009    0.009 cd.py:1()
+6567/6563    0.008    0.000    0.009    0.000 {built-in method builtins.setattr}
+        1    0.000    0.000    0.009    0.009 factory.py:1()
+     2410    0.004    0.000    0.009    0.000 _IntegerGMP.py:138(new_mpz)
+       67    0.004    0.000    0.009    0.000 __init__.py:348(namedtuple)
+      442    0.003    0.000    0.009    0.000 typing.py:301(_remove_dups_flatten)
+        1    0.000    0.000    0.009    0.009 rules.py:1()
+     2308    0.004    0.000    0.009    0.000 typing.py:159(_type_convert)
+     3921    0.006    0.000    0.009    0.000 _parser.py:284(tell)
+        1    0.000    0.000    0.009    0.009 theme.py:1()
+        1    0.000    0.000    0.009    0.009 parser_core.py:1()
+    11576    0.009    0.000    0.009    0.000 {built-in method _imp.release_lock}
+       15    0.000    0.000    0.009    0.001 _make.py:1415(wrap)
+     3204    0.003    0.000    0.009    0.000 {built-in method _abc._abc_instancecheck}
+     1177    0.005    0.000    0.009    0.000 _compiler.py:214(_compile_charset)
+        3    0.000    0.000    0.009    0.003 argparse.py:1822(add_subparsers)
+     3931    0.006    0.000    0.009    0.000 typing.py:1345(__eq__)
+       90    0.001    0.000    0.009    0.000 dataclasses.py:413(_create_fn)
+       27    0.005    0.000    0.008    0.000 configfile.py:487()
+    11077    0.008    0.000    0.008    0.000 {method 'endswith' of 'str' objects}
+      400    0.005    0.000    0.008    0.000 functools.py:35(update_wrapper)
+        2    0.000    0.000    0.008    0.004 cookies.py:1()
+        1    0.000    0.000    0.008    0.008 _ratio.py:1()
+        2    0.000    0.000    0.008    0.004 entities.py:1()
+      284    0.002    0.000    0.008    0.000 locale.py:396(normalize)
+     1844    0.003    0.000    0.008    0.000 :922(find_spec)
+      144    0.002    0.000    0.008    0.000 argparse.py:1342(__init__)
+        1    0.000    0.000    0.008    0.008 core.py:393(ParserElement)
+      137    0.001    0.000    0.008    0.000 :1408(_path_hooks)
+     3683    0.006    0.000    0.008    0.000 :405(parent)
+     1874    0.005    0.000    0.008    0.000 :71(__init__)
+      156    0.003    0.000    0.008    0.000 _utility.py:389(uncolorize)
+        1    0.000    0.000    0.008    0.008 subprocess.py:1163(communicate)
+2131/1145    0.003    0.000    0.008    0.000 typing.py:1351(__hash__)
+       94    0.000    0.000    0.008    0.000 typing.py:1581(copy_with)
+        2    0.000    0.000    0.008    0.004 validators.py:1()
+      682    0.001    0.000    0.008    0.000 typing.py:1536()
+        1    0.000    0.000    0.008    0.008 policy.py:1()
+        1    0.000    0.000    0.008    0.008 _global.py:1()
+      2/1    0.000    0.000    0.008    0.008 _figure.py:18(__init__)
+    10583    0.008    0.000    0.008    0.000 {built-in method builtins.ord}
+  472/469    0.002    0.000    0.008    0.000 copy.py:259(_reconstruct)
+1782/1779    0.004    0.000    0.008    0.000 :599(_check_name_wrapper)
+      326    0.002    0.000    0.008    0.000 enum.py:356(__setitem__)
+   132/63    0.000    0.000    0.008    0.000 core.py:3907()
+        1    0.000    0.000    0.008    0.008 configparser.py:1()
+      380    0.001    0.000    0.008    0.000 :105(__new__)
+        2    0.000    0.000    0.008    0.004 converters.py:1()
+      775    0.004    0.000    0.007    0.000 inspect.py:2683(__init__)
+      226    0.003    0.000    0.007    0.000 pathlib.py:55(parse_parts)
+     1094    0.002    0.000    0.007    0.000 __init__.py:173(search)
+        1    0.000    0.000    0.007    0.007 fractions.py:1()
+      993    0.002    0.000    0.007    0.000 :674(__getitem__)
+        1    0.000    0.000    0.007    0.007 binding.py:1()
+       63    0.000    0.000    0.007    0.000 core.py:3820()
+     7248    0.007    0.000    0.007    0.000 {method 'match' of 're.Pattern' objects}
+     2976    0.005    0.000    0.007    0.000 util.py:189(is_consecutive)
+        1    0.000    0.000    0.007    0.007 parse.py:1()
+ 1684/152    0.002    0.000    0.007    0.000 :121(__subclasscheck__)
+        1    0.000    0.000    0.007    0.007 _app.py:1()
+      715    0.003    0.000    0.007    0.000 _parser.py:307(_class_escape)
+3455/1685    0.003    0.000    0.007    0.000 {built-in method builtins.hash}
+      126    0.001    0.000    0.007    0.000 argparse.py:173(__init__)
+       54    0.000    0.000    0.007    0.000 _argparse.py:81(__init__)
+     1789    0.006    0.000    0.006    0.000 {method '__exit__' of '_io._IOBase' objects}
+      180    0.003    0.000    0.006    0.000 enum.py:237(__set_name__)
+      351    0.001    0.000    0.006    0.000 :216(_lock_unlock_module)
+     6970    0.006    0.000    0.006    0.000 {built-in method builtins.min}
+        1    0.000    0.000    0.006    0.006 PEM.py:1()
+ 1684/152    0.004    0.000    0.006    0.000 {built-in method _abc._abc_subclasscheck}
+        1    0.000    0.000    0.006    0.006 __init__.py:629(version)
+        1    0.000    0.000    0.006    0.006 __init__.py:602(metadata)
+        1    0.001    0.001    0.006    0.006 configfile.py:491()
+  780/463    0.002    0.000    0.006    0.000 typing.py:1637(__hash__)
+       90    0.002    0.000    0.006    0.000 {built-in method builtins.sorted}
+     1866    0.004    0.000    0.006    0.000 __init__.py:101(find_spec)
+       93    0.000    0.000    0.006    0.000 argparse.py:1475(add_argument_group)
+      137    0.000    0.000    0.006    0.000 :1696(path_hook_for_FileFinder)
+  219/163    0.000    0.000    0.006    0.000 core.py:1914(name)
+      100    0.001    0.000    0.006    0.000 argparse.py:1652(__init__)
+        1    0.000    0.000    0.006    0.006 ptyprocess.py:1()
+        2    0.000    0.000    0.006    0.003 color.py:1()
+     10/3    0.000    0.000    0.006    0.002 unicode.py:14(__get__)
+      462    0.002    0.000    0.006    0.000 _doc_utils.py:35(correct_doc)
+     6363    0.006    0.000    0.006    0.000 _utility.py:319(__call__)
+       13    0.000    0.000    0.006    0.000 {built-in method builtins.pow}
+      156    0.001    0.000    0.006    0.000 _doc_utils.py:107(get_doc)
+        1    0.000    0.000    0.006    0.006 compiler.py:1()
+      658    0.003    0.000    0.006    0.000 enum.py:1504(__and__)
+        1    0.000    0.000    0.006    0.006 __init__.py:32(message_from_string)
+     1684    0.003    0.000    0.006    0.000 typing.py:1632(__eq__)
+       13    0.000    0.000    0.006    0.000 _IntegerGMP.py:466(__pow__)
+        1    0.000    0.000    0.006    0.006 metadata.py:1()
+        1    0.000    0.000    0.006    0.006 helpers.py:603(make_html_tags)
+        1    0.000    0.000    0.006    0.006 helpers.py:545(_makeTags)
+       13    0.006    0.000    0.006    0.000 _IntegerGMP.py:427(inplace_pow)
+   149/98    0.000    0.000    0.006    0.000 core.py:1877(default_name)
+        1    0.000    0.000    0.006    0.006 _make.py:1()
+        2    0.000    0.000    0.006    0.003 core.py:5997(srange)
+     7394    0.006    0.000    0.006    0.000 {built-in method posix.fspath}
+      140    0.001    0.000    0.006    0.000 locale.py:362(_replace_encoding)
+      593    0.001    0.000    0.005    0.000 :771(get)
+1664/1649    0.002    0.000    0.005    0.000 {method 'extend' of 'list' objects}
+        1    0.000    0.000    0.005    0.005 constructor.py:1()
+        1    0.000    0.000    0.005    0.005 _parse.py:1()
+        1    0.000    0.000    0.005    0.005 text.py:118(Text)
+        1    0.000    0.000    0.005    0.005 core.py:6134()
+        1    0.000    0.000    0.005    0.005 _identifier.py:1()
+     4097    0.005    0.000    0.005    0.000 _IntegerGMP.py:595(__irshift__)
+      124    0.002    0.000    0.005    0.000 dataclasses.py:723(_get_field)
+        1    0.000    0.000    0.005    0.005 sequences.py:1()
+        2    0.000    0.000    0.005    0.003 unicode.py:55(_chars_for_ranges)
+        1    0.000    0.000    0.005    0.005 headerregistry.py:1()
+     5356    0.004    0.000    0.005    0.000 {built-in method from_bytes}
+        2    0.000    0.000    0.005    0.003 core.py:1134(parse_string)
+        1    0.000    0.000    0.005    0.005 challenges.py:1()
+        1    0.001    0.001    0.005    0.005 ipaddress.py:1()
+        1    0.000    0.000    0.005    0.005 watch.py:1()
+     1132    0.003    0.000    0.005    0.000 :16(exists)
+        1    0.000    0.000    0.005    0.005 regions.py:1()
+     1939    0.003    0.000    0.005    0.000 :180(_path_isabs)
+        2    0.000    0.000    0.005    0.003 models.py:1()
+        1    0.000    0.000    0.005    0.005 configparser.py:570(RawConfigParser)
+       61    0.000    0.000    0.005    0.000 core.py:1416(__add__)
+        1    0.000    0.000    0.005    0.005 binding.py:186(init_static_locks)
+        2    0.000    0.000    0.005    0.002 binding.py:160(_ensure_ffi_initialized)
+     1462    0.003    0.000    0.005    0.000 enum.py:691(__call__)
+        1    0.000    0.000    0.005    0.005 reader.py:1()
+        1    0.000    0.000    0.005    0.005 unicode.py:80(alphanums)
+     2410    0.005    0.000    0.005    0.000 {built-in method _ctypes.byref}
+        1    0.000    0.000    0.005    0.005 reader.py:45(Reader)
+      686    0.002    0.000    0.005    0.000 __init__.py:178(sub)
+      451    0.002    0.000    0.005    0.000 typing.py:287(_deduplicate)
+        1    0.000    0.000    0.005    0.005 __init__.py:454(StrFormatStyle)
+        3    0.000    0.000    0.005    0.002 connection.py:1()
+        1    0.000    0.000    0.005    0.005 unicode.py:70(alphas)
+       27    0.002    0.000    0.005    0.000 configfile.py:483()
+      328    0.001    0.000    0.005    0.000 typing.py:1624()
+       22    0.000    0.000    0.005    0.000 dataclasses.py:528(_init_fn)
+        1    0.000    0.000    0.005    0.005 constructor.py:171(SafeConstructor)
+        1    0.002    0.002    0.005    0.005 binding.py:102(build_conditional_library)
+      153    0.000    0.000    0.005    0.000 _doc_utils.py:184(_add_parameter)
+        2    0.000    0.000    0.005    0.002 node_service.py:64(list_folders)
+        1    0.000    0.000    0.005    0.005 webauthn_handler_factory.py:1()
+       11    0.000    0.000    0.005    0.000 core.py:2905(_generateDefaultName)
+        1    0.000    0.000    0.005    0.005 simple_server.py:1()
+       15    0.000    0.000    0.005    0.000 _make.py:778(build_class)
+       14    0.000    0.000    0.005    0.000 core.py:2906(charsAsStr)
+      137    0.001    0.000    0.005    0.000 :1655(_fill_cache)
+        1    0.000    0.000    0.005    0.005 kube_config.py:1()
+        1    0.000    0.000    0.005    0.005 bccache.py:1()
+       35    0.000    0.000    0.005    0.000 typing.py:2797()
+      137    0.002    0.000    0.005    0.000 :1559(__init__)
+        2    0.000    0.000    0.004    0.002 duration.py:1()
+     2031    0.003    0.000    0.004    0.000 typing.py:868(__eq__)
+        1    0.002    0.002    0.004    0.004 entities.py:4()
+        1    0.000    0.000    0.004    0.004 keyboard.py:1()
+        2    0.000    0.000    0.004    0.002 _date.py:6(__init__)
+       95    0.000    0.000    0.004    0.000 _doc_utils.py:173(_add_method)
+        1    0.000    0.000    0.004    0.004 _header_value_parser.py:1()
+        2    0.000    0.000    0.004    0.002 _date.py:17(set_time0)
+        2    0.000    0.000    0.004    0.002 _date.py:44(string_to_time)
+        2    0.000    0.000    0.004    0.002 {built-in method strptime}
+        1    0.000    0.000    0.004    0.004 _encode.py:1()
+     1772    0.003    0.000    0.004    0.000 argparse.py:1395(register)
+       27    0.002    0.000    0.004    0.000 configfile.py:485()
+      153    0.000    0.000    0.004    0.000 _doc_utils.py:134(add_parameter)
+      997    0.003    0.000    0.004    0.000 :756(encode)
+        1    0.000    0.000    0.004    0.004 ruler.py:1()
+        1    0.000    0.000    0.004    0.004 webauthn_handler.py:1()
+      427    0.002    0.000    0.004    0.000 _parser.py:82(opengroup)
+      140    0.002    0.000    0.004    0.000 __init__.py:43(normalize_encoding)
+     4092    0.004    0.000    0.004    0.000 _IntegerGMP.py:639(is_odd)
+       62    0.001    0.000    0.004    0.000 core.py:3970(__init__)
+        1    0.000    0.000    0.004    0.004 autolink.py:1()
+        1    0.000    0.000    0.004    0.004 environment.py:144(Environment)
+        2    0.000    0.000    0.004    0.002 configfile.py:540(_getallfolders)
+      108    0.000    0.000    0.004    0.000 __init__.py:2081(getLogger)
+        3    0.000    0.000    0.004    0.001 abc.py:1()
+        1    0.000    0.000    0.004    0.004 replacements.py:1()
+      153    0.000    0.000    0.004    0.000 _doc_utils.py:81(add)
+      388    0.002    0.000    0.004    0.000 _compiler.py:384(_mk_bitmap)
+      147    0.004    0.000    0.004    0.000 {built-in method posix.listdir}
+        1    0.000    0.000    0.004    0.004 cElementTree.py:1()
+      755    0.002    0.000    0.004    0.000 _parser.py:367(_escape)
+        8    0.000    0.000    0.004    0.000 _IntegerBase.py:345(random_range)
+        1    0.000    0.000    0.004    0.004 emoji.py:1()
+       18    0.001    0.000    0.004    0.000 configfile.py:546()
+        1    0.000    0.000    0.004    0.004 webauthn_types.py:1()
+       95    0.000    0.000    0.004    0.000 _doc_utils.py:116(__init__)
+        1    0.000    0.000    0.004    0.004 core.py:2012(Parameter)
+        1    0.000    0.000    0.004    0.004 pydoc.py:1()
+        1    0.000    0.000    0.004    0.004 cli.py:1()
+        3    0.000    0.000    0.004    0.001 token.py:1()
+     1694    0.002    0.000    0.004    0.000 unicode.py:63()
+     1520    0.003    0.000    0.004    0.000 _parser.py:79(groups)
+        1    0.000    0.000    0.004    0.004 decorators.py:1()
+        3    0.000    0.000    0.004    0.001 _compat.py:1()
+     4038    0.004    0.000    0.004    0.000 {method 'find' of 'bytearray' objects}
+        1    0.000    0.000    0.004    0.004 string.py:1()
+        1    0.000    0.000    0.004    0.004 _editor.py:1()
+        1    0.000    0.000    0.004    0.004 _mtls_helper.py:1()
+      108    0.001    0.000    0.004    0.000 __init__.py:1327(getLogger)
+        1    0.000    0.000    0.004    0.004 console.py:593(Console)
+      232    0.001    0.000    0.004    0.000 typing.py:818(__init__)
+     4484    0.003    0.000    0.003    0.000 {method '__exit__' of '_thread.lock' objects}
+     4477    0.003    0.000    0.003    0.000 {built-in method _thread.get_ident}
+      239    0.001    0.000    0.003    0.000 inspect.py:2969(__init__)
+    102/2    0.001    0.000    0.003    0.002 core.py:810(_parseNoCache)
+        1    0.000    0.000    0.003    0.003 staggered.py:1()
+     10/2    0.000    0.000    0.003    0.002 core.py:4055(parseImpl)
+    333/3    0.001    0.000    0.003    0.001 copy.py:128(deepcopy)
+        1    0.000    0.000    0.003    0.003 signal.py:1()
+        1    0.000    0.000    0.003    0.003 _figure.py:40(_set_master)
+     3884    0.003    0.000    0.003    0.000 {method 'rfind' of 'str' objects}
+        1    0.000    0.000    0.003    0.003 string.py:69(__init_subclass__)
+        1    0.000    0.000    0.003    0.003 pickle.py:1()
+        1    0.000    0.000    0.003    0.003 httpsession.py:1()
+        1    0.000    0.000    0.003    0.003 ElementTree.py:1()
+        1    0.000    0.000    0.003    0.003 shutil.py:1()
+        1    0.000    0.000    0.003    0.003 _policybase.py:1()
+      6/3    0.000    0.000    0.003    0.001 copy.py:227(_deepcopy_dict)
+       93    0.003    0.000    0.003    0.000 {built-in method builtins.eval}
+        1    0.000    0.000    0.003    0.003 _handshake.py:1()
+        1    0.000    0.000    0.003    0.003 asn1.py:588(decode)
+      153    0.001    0.000    0.003    0.000 _doc_utils.py:43(__init__)
+     10/1    0.000    0.000    0.003    0.003 asn1.py:213(decode)
+        1    0.000    0.000    0.003    0.003 backend_application.py:1()
+        1    0.000    0.000    0.003    0.003 _doc_utils.py:1()
+        1    0.000    0.000    0.003    0.003 asn1.py:617(_decodeFromStream)
+        1    0.000    0.000    0.003    0.003 dateutil.py:1()
+        1    0.000    0.000    0.003    0.003 _monitor.py:20(copy)
+        1    0.002    0.002    0.003    0.003 helpers.py:647()
+     3764    0.003    0.000    0.003    0.000 {built-in method _thread.allocate_lock}
+        2    0.000    0.000    0.003    0.002 subprocess.py:807(__init__)
+        4    0.000    0.000    0.003    0.001 resource.py:1()
+      554    0.001    0.000    0.003    0.000 typing.py:1267(__getattr__)
+        1    0.000    0.000    0.003    0.003 filepost.py:1()
+        1    0.000    0.000    0.003    0.003 PKCS1_OAEP.py:1()
+        1    0.000    0.000    0.003    0.003 util.py:338(find_library)
+        1    0.000    0.000    0.003    0.003 util.py:270(_findSoname_ldconfig)
+       33    0.000    0.000    0.003    0.000 typing.py:1773(__class_getitem__)
+     2980    0.003    0.000    0.003    0.000 {method 'setter' of 'property' objects}
+        1    0.000    0.000    0.003    0.003 _parser.py:1()
+        1    0.000    0.000    0.003    0.003 wcwidth.py:1()
+        2    0.000    0.000    0.003    0.001 subprocess.py:1740(_execute_child)
+      127    0.001    0.000    0.003    0.000 shutil.py:1387(get_terminal_size)
+        1    0.000    0.000    0.003    0.003 pool.py:1()
+     1317    0.002    0.000    0.003    0.000 :41(_get_sep)
+        2    0.000    0.000    0.003    0.001 dsa.py:1()
+        2    0.000    0.000    0.003    0.001 action.py:1()
+      840    0.002    0.000    0.003    0.000 _parser.py:444(_uniq)
+        1    0.000    0.000    0.003    0.003 constant.py:1()
+        1    0.000    0.000    0.003    0.003 pathlib.py:111(_WindowsFlavour)
+     16/2    0.000    0.000    0.003    0.001 core.py:4573(parseImpl)
+     2286    0.003    0.000    0.003    0.000 _IntegerGMP.py:790(__del__)
+        2    0.000    0.000    0.003    0.001 subprocess.py:1()
+        1    0.000    0.000    0.003    0.003 decoder.py:1()
+        2    0.000    0.000    0.003    0.001 core.py:4993(parseImpl)
+        1    0.000    0.000    0.003    0.003 parser.py:59(parsestr)
+      134    0.001    0.000    0.003    0.000 _doc_utils.py:200(_add_past_parameter)
+        1    0.000    0.000    0.003    0.003 utils.py:2111(S3ArnParamHandler)
+       86    0.001    0.000    0.003    0.000 typing.py:992(__init__)
+        1    0.000    0.000    0.003    0.003 parser.py:41(parse)
+        1    0.000    0.000    0.003    0.003 runtime.py:1()
+        1    0.000    0.000    0.003    0.003 termui.py:1()
+       22    0.000    0.000    0.003    0.000 dataclasses.py:588(_repr_fn)
+        1    0.001    0.001    0.003    0.003 colorspace.py:1()
+        1    0.000    0.000    0.003    0.003 _markupbase.py:1()
+     20/8    0.000    0.000    0.003    0.000 core.py:4303(parseImpl)
+        1    0.000    0.000    0.003    0.003 _argparse.py:261(format_help)
+        1    0.000    0.000    0.003    0.003 :977(exec_module)
+        1    0.000    0.000    0.003    0.003 :1()
+      638    0.002    0.000    0.003    0.000 enum.py:78(_is_private)
+     1592    0.003    0.000    0.003    0.000 {method 'replace' of 'str' objects}
+        1    0.000    0.000    0.003    0.003 feedparser.py:173(feed)
+        2    0.000    0.000    0.003    0.001 config.py:1()
+       26    0.000    0.000    0.003    0.000 _make.py:212(_compile_and_eval)
+       82    0.001    0.000    0.003    0.000 core.py:3778(__init__)
+     3192    0.003    0.000    0.003    0.000 _parser.py:109(__init__)
+        2    0.000    0.000    0.003    0.001 feedparser.py:178(_call_parse)
+        1    0.000    0.000    0.003    0.003 _argparse.py:215(add_usage)
+        9    0.000    0.000    0.003    0.000 asn1.py:322(decode)
+        2    0.001    0.000    0.003    0.001 feedparser.py:218(_parsegen)
+      190    0.000    0.000    0.003    0.000 _doc_utils.py:125(set_doc)
+      111    0.000    0.000    0.003    0.000 __init__.py:163(match)
+        1    0.000    0.000    0.003    0.003 console.py:1629(print)
+        1    0.000    0.000    0.003    0.003 header.py:1()
+      222    0.001    0.000    0.003    0.000 __init__.py:877(normalize)
+        3    0.000    0.000    0.003    0.001 _common.py:45(_strip_codes)
+        2    0.000    0.000    0.003    0.001 readers.py:1()
+      9/2    0.000    0.000    0.003    0.001 core.py:4005(streamline)
+        2    0.000    0.000    0.003    0.001 blueprints.py:1()
+        9    0.002    0.000    0.003    0.000 asn1.py:335(_decodeFromStream)
+        1    0.000    0.000    0.003    0.003 adaptive.py:1()
+        1    0.000    0.000    0.003    0.003 _lazy_rich.py:44(__getattr__)
+      218    0.001    0.000    0.003    0.000 style.py:122(__init__)
+      229    0.001    0.000    0.003    0.000 inspect.py:167(get_annotations)
+        1    0.000    0.000    0.003    0.003 _serialization.py:1()
+      494    0.001    0.000    0.002    0.000 enum.py:37(_is_descriptor)
+        1    0.000    0.000    0.002    0.002 _abnf.py:1()
+        1    0.000    0.000    0.002    0.002 markup.py:1()
+        2    0.001    0.000    0.002    0.001 six.py:1()
+        2    0.000    0.000    0.002    0.001 core.py:21(where)
+        1    0.000    0.000    0.002    0.002 configfile.py:159(_loadconfig)
+        1    0.000    0.000    0.002    0.002 extensions.py:1414(GeneralNames)
+      371    0.001    0.000    0.002    0.000 _parser.py:256(getwhile)
+      172    0.000    0.000    0.002    0.000 argparse.py:1853(_add_action)
+        1    0.000    0.000    0.002    0.002 __init__.py:274(load)
+     16/3    0.000    0.000    0.002    0.001 core.py:3852(streamline)
+        2    0.000    0.000    0.002    0.001 parameters.py:1()
+        1    0.000    0.000    0.002    0.002 _python_package_support.py:202(check_dependency_versions)
+        1    0.000    0.000    0.002    0.002 _python_package_support.py:104(warn_deprecation_for_versions_less_than)
+        1    0.000    0.000    0.002    0.002 _python_package_support.py:76(get_dependency_version)
+       14    0.001    0.000    0.002    0.000 _make.py:838(_create_slots_class)
+        1    0.000    0.000    0.002    0.002 ai_handler.py:1()
+        1    0.000    0.000    0.002    0.002 charset.py:1()
+        2    0.000    0.000    0.002    0.001 authorization.py:1()
+     1320    0.001    0.000    0.002    0.000 _parser.py:166(__setitem__)
+      190    0.001    0.000    0.002    0.000 argparse.py:1674(_add_action)
+        1    0.000    0.000    0.002    0.002 sslproto.py:1()
+      290    0.001    0.000    0.002    0.000 _doc_utils.py:190(_get_method)
+       41    0.000    0.000    0.002    0.000 enum.py:473(__prepare__)
+        2    0.000    0.000    0.002    0.001 _collections.py:1()
+       12    0.000    0.000    0.002    0.000 _raw_api.py:293(load_pycryptodome_raw_lib)
+        1    0.000    0.000    0.002    0.002 core.py:1781(Group)
+        3    0.000    0.000    0.002    0.001 model.py:1()
+      174    0.001    0.000    0.002    0.000 dataclasses.py:664(_is_type)
+       74    0.000    0.000    0.002    0.000 functools.py:518(decorating_function)
+     2977    0.002    0.000    0.002    0.000 typing.py:1338()
+        1    0.000    0.000    0.002    0.002 _common.py:17(files)
+     1866    0.002    0.000    0.002    0.000 :748(find_spec)
+        1    0.000    0.000    0.002    0.002 KDF.py:1()
+       15    0.000    0.000    0.002    0.000 _make.py:760(_eval_snippets)
+  390/309    0.001    0.000    0.002    0.000 _compiler.py:434(_get_literal_prefix)
+        1    0.000    0.000    0.002    0.002 feedparser.py:1()
+        2    0.000    0.000    0.002    0.001 linkify.py:1()
+        1    0.000    0.000    0.002    0.002 _http.py:1()
+        1    0.000    0.000    0.002    0.002 endpoint_provider.py:1()
+        1    0.000    0.000    0.002    0.002 _common.py:59(from_package)
+        1    0.000    0.000    0.002    0.002 formatting.py:1()
+        1    0.000    0.000    0.002    0.002 core.py:160(Context)
+        1    0.000    0.000    0.002    0.002 __init__.py:421(PercentStyle)
+        1    0.000    0.000    0.002    0.002 __init__.py:299(loads)
+        1    0.000    0.000    0.002    0.002 capture.py:5(__init__)
+        1    0.000    0.000    0.002    0.002 _adapters.py:28(get_resource_reader)
+        1    0.000    0.000    0.002    0.002 decoder.py:332(decode)
+        1    0.000    0.000    0.002    0.002 _adapters.py:151(_native)
+        1    0.000    0.000    0.002    0.002 endpoint.py:1()
+        1    0.000    0.000    0.002    0.002 default_styles.py:1()
+        1    0.000    0.000    0.002    0.002 _adapters.py:146(_reader)
+        1    0.002    0.002    0.002    0.002 decoder.py:343(raw_decode)
+        1    0.000    0.000    0.002    0.002 _python_package_support.py:1()
+       32    0.000    0.000    0.002    0.000 _IntegerGMP.py:376(__sub__)
+        1    0.000    0.000    0.002    0.002 :1136(get_resource_reader)
+        1    0.000    0.000    0.002    0.002 ElementPath.py:1()
+     1874    0.002    0.000    0.002    0.000 :357(__init__)
+        1    0.000    0.000    0.002    0.002 ansi.py:1()
+        1    0.000    0.000    0.002    0.002 ipaddress.py:2314(_IPv6Constants)
+      119    0.000    0.000    0.002    0.000 _doc_utils.py:128(set_output)
+        2    0.000    0.000    0.002    0.001 loaders.py:1()
+        1    0.000    0.000    0.002    0.002 entity.py:1()
+        1    0.000    0.000    0.002    0.002 tz.py:1()
+       34    0.000    0.000    0.002    0.000 ipaddress.py:2238(__init__)
+       23    0.000    0.000    0.002    0.000 :1239(exec_module)
+     1462    0.001    0.000    0.002    0.000 enum.py:1096(__new__)
+     1780    0.002    0.000    0.002    0.000 :48(_new_module)
+        1    0.000    0.000    0.002    0.002 ipaddress.py:1569(_IPv4Constants)
+        1    0.000    0.000    0.002    0.002 formatters.py:1()
+        1    0.000    0.000    0.002    0.002 core.py:1472(MultiCommand)
+        1    0.000    0.000    0.002    0.002 fields.py:1()
+     1004    0.001    0.000    0.002    0.000 inspect.py:3018()
+       21    0.000    0.000    0.002    0.000 ipaddress.py:1502(__init__)
+        1    0.000    0.000    0.002    0.002 pkcs12.py:1()
+     2418    0.002    0.000    0.002    0.000 {method 'pop' of 'dict' objects}
+        1    0.000    0.000    0.002    0.002 request.py:939(AbstractBasicAuthHandler)
+       67    0.000    0.000    0.002    0.000 core.py:4547(__init__)
+     1095    0.001    0.000    0.002    0.000 {method 'update' of 'dict' objects}
+        1    0.000    0.000    0.002    0.002 pydoc.py:469(Doc)
+       23    0.002    0.000    0.002    0.000 {built-in method _imp.exec_dynamic}
+     2204    0.002    0.000    0.002    0.000 {method 'lower' of 'str' objects}
+        1    0.001    0.001    0.002    0.002 formatters.py:19(_make_colors)
+      2/1    0.000    0.000    0.002    0.002 sysconfig.py:657(get_path)
+      2/1    0.000    0.000    0.002    0.002 sysconfig.py:645(get_paths)
+        1    0.000    0.000    0.002    0.002 _internal_utils.py:1()
+      2/1    0.000    0.000    0.002    0.002 sysconfig.py:285(_expand_vars)
+     2478    0.002    0.000    0.002    0.000 {method 'setdefault' of 'dict' objects}
+      119    0.000    0.000    0.002    0.000 _doc_utils.py:103(__init__)
+       86    0.000    0.000    0.002    0.000 typing.py:918(__init__)
+        1    0.000    0.000    0.002    0.002 variable.py:1()
+        2    0.000    0.000    0.002    0.001 scanner.py:1()
+      130    0.000    0.000    0.002    0.000 _doc_utils.py:84(get_title)
+        1    0.000    0.000    0.002    0.002 pkcs7.py:1()
+        1    0.000    0.000    0.002    0.002 poolmanager.py:1()
+      9/3    0.000    0.000    0.002    0.001 console.py:1281(render)
+      604    0.001    0.000    0.002    0.000 enum.py:831(__setattr__)
+        1    0.000    0.000    0.002    0.002 compat.py:98(filter_ssl_warnings)
+        1    0.000    0.000    0.002    0.002 tools.py:1()
+        1    0.000    0.000    0.002    0.002 warnings.py:130(filterwarnings)
+        1    0.000    0.000    0.002    0.002 authorization_code.py:1()
+      723    0.001    0.000    0.002    0.000 enum.py:47(_is_dunder)
+        1    0.000    0.000    0.002    0.002 unix_events.py:1()
+        3    0.000    0.000    0.002    0.001 _argparse.py:184(__rich_console__)
+      4/2    0.000    0.000    0.002    0.001 argparse.py:1880(parse_known_args)
+        1    0.000    0.000    0.002    0.002 hashlib.py:1()
+       15    0.000    0.000    0.002    0.000 _make.py:226(_linecache_and_compile)
+      236    0.001    0.000    0.002    0.000 core.py:460(__init__)
+        1    0.000    0.000    0.002    0.002 modeline.py:1()
+        1    0.000    0.000    0.002    0.002 _strptime.py:1()
+        1    0.000    0.000    0.002    0.002 locks.py:1()
+        1    0.000    0.000    0.002    0.002 compiler.py:300(CodeGenerator)
+     1844    0.002    0.000    0.002    0.000 {built-in method _imp.find_frozen}
+     2278    0.002    0.000    0.002    0.000 :71(_relax_case)
+        1    0.000    0.000    0.002    0.002 pickle.py:197()
+       22    0.000    0.000    0.002    0.000 dataclasses.py:624(_cmp_fn)
+        2    0.000    0.000    0.002    0.001 _url.py:1()
+       15    0.000    0.000    0.002    0.000 _make.py:650(__init__)
+        2    0.000    0.000    0.002    0.001 signals.py:1()
+        2    0.000    0.000    0.002    0.001 _strptime.py:565(_strptime_datetime)
+        1    0.000    0.000    0.002    0.002 asn1.py:1()
+      4/2    0.000    0.000    0.002    0.001 argparse.py:1918(_parse_known_args)
+        1    0.000    0.000    0.002    0.002 __init__.py:149(EntryPoint)
+      233    0.001    0.000    0.002    0.000 _compiler.py:465(_get_charset_prefix)
+     12/3    0.000    0.000    0.002    0.001 core.py:4613(streamline)
+        1    0.000    0.000    0.002    0.002 _strptime.py:173(__init__)
+     1886    0.002    0.000    0.002    0.000 :165(__init__)
+     2256    0.002    0.000    0.002    0.000 {built-in method builtins.chr}
+        2    0.000    0.000    0.002    0.001 _strptime.py:309(_strptime)
+        1    0.000    0.000    0.002    0.002 scaffold.py:1()
+        1    0.000    0.000    0.002    0.002 style.py:30(Style)
+      190    0.001    0.000    0.002    0.000 argparse.py:1485(_add_action)
+        1    0.000    0.000    0.002    0.002 monitoring.py:1()
+      138    0.001    0.000    0.002    0.000 argparse.py:1565(_get_optional_kwargs)
+      331    0.001    0.000    0.002    0.000 _parser.py:222(__init__)
+        4    0.000    0.000    0.002    0.000 _common.py:1()
+        1    0.000    0.000    0.002    0.002 _app.py:159(WebSocketApp)
+     1854    0.002    0.000    0.002    0.000 {method 'index' of 'str' objects}
+     1779    0.002    0.000    0.002    0.000 :1097(__init__)
+       36    0.000    0.000    0.002    0.000 core.py:3086(parseImpl)
+        1    0.000    0.000    0.002    0.002 decimal.py:1()
+        1    0.001    0.001    0.002    0.002 _utility.py:1()
+      658    0.001    0.000    0.002    0.000 _compiler.py:568(isstring)
+        1    0.000    0.000    0.002    0.002 tempfile.py:1()
+        1    0.000    0.000    0.002    0.002 _strptime.py:261(compile)
+     2101    0.002    0.000    0.002    0.000 {method 'add' of 'set' objects}
+      4/2    0.000    0.000    0.002    0.001 argparse.py:2067(consume_positionals)
+        1    0.000    0.000    0.002    0.002 encoder.py:1()
+        2    0.000    0.000    0.002    0.001 certs.py:1()
+        1    0.000    0.000    0.002    0.002 syntax.py:227(Syntax)
+      638    0.001    0.000    0.002    0.000 enum.py:58(_is_sunder)
+        1    0.000    0.000    0.002    0.002 dumper.py:1()
+        1    0.000    0.000    0.002    0.002 monitoring.py:322(CSMSerializer)
+       82    0.000    0.000    0.002    0.000 enum.py:945(_get_mixins_)
+       88    0.000    0.000    0.002    0.000 _IntegerGMP.py:334(__eq__)
+        1    0.000    0.000    0.002    0.002 ssl_.py:223(create_urllib3_context)
+        4    0.000    0.000    0.002    0.000 segment.py:249(split_lines)
+        1    0.000    0.000    0.002    0.002 _python_version_support.py:1()
+        2    0.000    0.000    0.001    0.001 ec.py:1()
+       95    0.000    0.000    0.001    0.000 _doc_utils.py:181(_set_doc)
+        2    0.000    0.000    0.001    0.001 visitor.py:1()
+       97    0.001    0.000    0.001    0.000 _parser.py:265(getuntil)
+      418    0.001    0.000    0.001    0.000 :760(decode)
+      407    0.001    0.000    0.001    0.000 socket.py:78()
+     1887    0.001    0.000    0.001    0.000 {built-in method sys.intern}
+        1    0.000    0.000    0.001    0.001 nodes.py:105(Node)
+        1    0.000    0.000    0.001    0.001 unicode.py:1()
+        1    0.000    0.000    0.001    0.001 repr.py:1()
+        5    0.000    0.000    0.001    0.000 types.py:799(__init__)
+        1    0.000    0.000    0.001    0.001 handlers.py:94(BaseHandler)
+        1    0.000    0.000    0.001    0.001 external_account_authorized_user.py:1()
+     1778    0.001    0.000    0.001    0.000 {built-in method _imp._fix_co_filename}
+        1    0.000    0.000    0.001    0.001 handlers.py:34(read_environ)
+        1    0.000    0.000    0.001    0.001 box.py:1()
+      3/1    0.000    0.000    0.001    0.001 sysconfig.py:665(get_config_vars)
+        1    0.000    0.000    0.001    0.001 client_options.py:1()
+     1828    0.001    0.000    0.001    0.000 :413(has_location)
+      388    0.001    0.000    0.001    0.000 _compiler.py:386()
+     1663    0.001    0.000    0.001    0.000 {method 'pop' of 'list' objects}
+      472    0.001    0.000    0.001    0.000 copyreg.py:104(__newobj__)
+      242    0.001    0.000    0.001    0.000 _collections.py:20(__missing__)
+     1781    0.001    0.000    0.001    0.000 :1122(get_filename)
+        1    0.000    0.000    0.001    0.001 cookiejar.py:1246(CookieJar)
+      446    0.001    0.000    0.001    0.000 pathlib.py:240(splitroot)
+        3    0.000    0.000    0.001    0.000 _argparse.py:176(__rich_console__)
+        1    0.000    0.000    0.001    0.001 context.py:1()
+        2    0.000    0.000    0.001    0.001 serializer.py:1()
+        1    0.000    0.000    0.001    0.001 modes.py:1()
+        1    0.000    0.000    0.001    0.001 _parseaddr.py:1()
+        1    0.000    0.000    0.001    0.001 PEM.py:106(decode)
+        3    0.000    0.000    0.001    0.000 _argparse.py:137(_render_items)
+        1    0.000    0.000    0.001    0.001 segment.py:63(Segment)
+     1443    0.001    0.000    0.001    0.000 {built-in method builtins.issubclass}
+        1    0.000    0.000    0.001    0.001 terminal.py:306(__init__keycodes)
+        1    0.000    0.000    0.001    0.001 idtracking.py:1()
+        1    0.000    0.000    0.001    0.001 status_codes.py:1()
+      410    0.001    0.000    0.001    0.000 socket.py:93()
+        8    0.000    0.000    0.001    0.000 dataclasses.py:599(_frozen_get_del_attr)
+        2    0.000    0.000    0.001    0.001 keyboard.py:71(get_curses_keycodes)
+      408    0.001    0.000    0.001    0.000 socket.py:83()
+        1    0.000    0.000    0.001    0.001 status_codes.py:109(_init)
+       31    0.000    0.000    0.001    0.000 ipaddress.py:1286(__init__)
+        1    0.000    0.000    0.001    0.001 _argparse.py:1()
+       31    0.000    0.000    0.001    0.000 core.py:5681(__init__)
+     1777    0.001    0.000    0.001    0.000 :931(create_module)
+      469    0.001    0.000    0.001    0.000 typing.py:877(__hash__)
+       15    0.000    0.000    0.001    0.000 _make.py:375(_transform_attrs)
+        1    0.000    0.000    0.001    0.001 local.py:1()
+        1    0.000    0.000    0.001    0.001 __init__.py:29(Markup)
+      137    0.001    0.000    0.001    0.000 :64(__init__)
+      123    0.001    0.000    0.001    0.000 argparse.py:606(_format_args)
+       16    0.000    0.000    0.001    0.000 core.py:617(set_parse_action)
+        1    0.000    0.000    0.001    0.001 threading.py:938(start)
+        3    0.000    0.000    0.001    0.000 text.py:689(__rich_console__)
+        1    0.000    0.000    0.001    0.001 _emoji_replace.py:1()
+      530    0.001    0.000    0.001    0.000 inspect.py:378(isfunction)
+        6    0.000    0.000    0.001    0.000 errors.py:1()
+        1    0.000    0.000    0.001    0.001 cells.py:1()
+        1    0.000    0.000    0.001    0.001 _palettes.py:1()
+      380    0.001    0.000    0.001    0.000 {built-in method _abc._abc_init}
+        1    0.000    0.000    0.001    0.001 ssl.py:492(__new__)
+        1    0.000    0.000    0.001    0.001 table.py:154(Table)
+      409    0.001    0.000    0.001    0.000 socket.py:88()
+       24    0.000    0.000    0.001    0.000 _file_system.py:34(pycryptodome_filename)
+        1    0.000    0.000    0.001    0.001 constant_time.py:1()
+      105    0.001    0.000    0.001    0.000 __init__.py:1378(_fixupParents)
+      6/3    0.000    0.000    0.001    0.000 functools.py:981(__get__)
+        1    0.000    0.000    0.001    0.001 standard.py:1()
+     1790    0.001    0.000    0.001    0.000 {method 'isupper' of 'str' objects}
+        3    0.000    0.000    0.001    0.000 core.py:5114(__init__)
+       83    0.001    0.000    0.001    0.000 inspect.py:735(unwrap)
+       17    0.000    0.000    0.001    0.000 core.py:1568(__or__)
+        3    0.000    0.000    0.001    0.000 core.py:3074(re_match)
+        1    0.000    0.000    0.001    0.001 v1beta1_counter_set.py:1()
+        1    0.000    0.000    0.001    0.001 __init__.py:12(__getattr__)
+        1    0.000    0.000    0.001    0.001 parser.py:48(Parser)
+        1    0.000    0.000    0.001    0.001 _monitor.py:1()
+     1096    0.001    0.000    0.001    0.000 :1565()
+        1    0.000    0.000    0.001    0.001 style.py:60(__new__)
+        1    0.000    0.000    0.001    0.001 datetime.py:1()
+     1098    0.001    0.000    0.001    0.000 {method 'search' of 're.Pattern' objects}
+        1    0.000    0.000    0.001    0.001 certificate_transparency.py:1()
+        4    0.000    0.000    0.001    0.000 theme.py:18(__init__)
+        3    0.000    0.000    0.001    0.000 core.py:3064(re)
+        1    0.000    0.000    0.001    0.001 pty.py:1()
+   137/81    0.000    0.000    0.001    0.000 core.py:1923(__str__)
+      362    0.001    0.000    0.001    0.000 {built-in method builtins.delattr}
+        1    0.000    0.000    0.001    0.001 console.py:124(ConsoleOptions)
+      191    0.000    0.000    0.001    0.000 feedparser.py:128(__next__)
+        1    0.000    0.000    0.001    0.001 isoparser.py:1()
+    70/58    0.000    0.000    0.001    0.000 copy.py:201(_deepcopy_list)
+        1    0.001    0.001    0.001    0.001 v1beta1_counter_set.py:21(V1beta1CounterSet)
+        1    0.000    0.000    0.001    0.001 threading.py:604(wait)
+        4    0.000    0.000    0.001    0.000 theme.py:24()
+       21    0.000    0.000    0.001    0.000 core.py:266(_trim_arity)
+       35    0.000    0.000    0.001    0.000 hooks.py:11(__init__)
+     1419    0.001    0.000    0.001    0.000 {method 'isidentifier' of 'str' objects}
+      175    0.000    0.000    0.001    0.000 argparse.py:1599(_pop_action_class)
+        1    0.000    0.000    0.001    0.001 _punycode.py:1()
+      840    0.001    0.000    0.001    0.000 {built-in method fromkeys}
+        1    0.000    0.000    0.001    0.001 threading.py:288(wait)
+       39    0.000    0.000    0.001    0.000 core.py:2415(__init__)
+      129    0.000    0.000    0.001    0.000 core.py:1983(__eq__)
+       22    0.000    0.000    0.001    0.000 ipaddress.py:1187(_ip_int_from_string)
+        1    0.000    0.000    0.001    0.001 helpers.py:1035()
+       16    0.000    0.000    0.001    0.000 core.py:698()
+        6    0.000    0.000    0.001    0.000 core.py:1485(__mul__)
+        1    0.000    0.000    0.001    0.001 isoparser.py:42(isoparser)
+        4    0.000    0.000    0.001    0.000 argparse.py:2218(_match_arguments_partial)
+        3    0.000    0.000    0.001    0.000 typing.py:2891(__new__)
+     1005    0.001    0.000    0.001    0.000 _utility.py:390()
+        1    0.000    0.000    0.001    0.001 results.py:1()
+      140    0.000    0.000    0.001    0.000 :164(_path_isdir)
+        1    0.000    0.000    0.001    0.001 serialize.py:1()
+        2    0.001    0.001    0.001    0.001 {built-in method _posixsubprocess.fork_exec}
+      290    0.001    0.000    0.001    0.000 _doc_utils.py:191()
+        1    0.000    0.000    0.001    0.001 server.py:1()
+        2    0.000    0.000    0.001    0.001 pre_configured.py:1()
+     1284    0.001    0.000    0.001    0.000 {method 'get' of 'mappingproxy' objects}
+        1    0.000    0.000    0.001    0.001 handlers.py:974(HeaderToHostHoister)
+        1    0.000    0.000    0.001    0.001 cyaml.py:1()
+        2    0.000    0.000    0.001    0.001 padding.py:1()
+        7    0.000    0.000    0.001    0.000 context_service.py:73(get_active_regexes)
+        1    0.000    0.000    0.001    0.001 client_options.py:57(ClientOptions)
+        9    0.000    0.000    0.001    0.000 typing.py:467(__getitem__)
+      132    0.000    0.000    0.001    0.000 :697(__iter__)
+       50    0.000    0.000    0.001    0.000 ipaddress.py:1923(__init__)
+        2    0.000    0.000    0.001    0.000 util.py:260(_inner)
+        1    0.000    0.000    0.001    0.001 glob.py:1()
+      363    0.001    0.000    0.001    0.000 argparse.py:1399(_registry_get)
+        1    0.000    0.000    0.001    0.001 functions.py:1()
+     1373    0.001    0.000    0.001    0.000 inspect.py:2736(name)
+        1    0.000    0.000    0.001    0.001 environment.py:1133(Template)
+      334    0.001    0.000    0.001    0.000 typing.py:266(_check_generic)
+        2    0.000    0.000    0.001    0.000 method.py:1()
+        1    0.000    0.000    0.001    0.001 mimetypes.py:1()
+        1    0.000    0.000    0.001    0.001 random.py:1()
+        1    0.000    0.000    0.001    0.001 containers.py:1()
+      156    0.001    0.000    0.001    0.000 :1()
+        1    0.000    0.000    0.001    0.001 measure.py:1()
+        1    0.000    0.000    0.001    0.001 bz2.py:1()
+       17    0.000    0.000    0.001    0.000 core.py:4279(__init__)
+       14    0.000    0.000    0.001    0.000 __init__.py:342(__init__)
+     1035    0.001    0.000    0.001    0.000 {built-in method _sre.unicode_iscased}
+     1176    0.001    0.000    0.001    0.000 {method 'encode' of 'str' objects}
+        9    0.000    0.000    0.001    0.000 typing.py:687(Literal)
+       43    0.000    0.000    0.001    0.000 scaffold.py:42(setupmethod)
+        3    0.000    0.000    0.001    0.000 hooks.py:1()
+        1    0.000    0.000    0.001    0.001 generator.py:1()
+        4    0.000    0.000    0.001    0.000 _make.py:1821(_add_repr)
+        1    0.000    0.000    0.001    0.001 palette.py:1()
+      4/2    0.000    0.000    0.001    0.000 argparse.py:1965(take_action)
+        7    0.000    0.000    0.001    0.000 context_service.py:75()
+       67    0.000    0.000    0.001    0.000 :859(__iter__)
+       39    0.000    0.000    0.001    0.000 :110(register)
+      701    0.001    0.000    0.001    0.000 {method 'sub' of 're.Pattern' objects}
+      307    0.001    0.000    0.001    0.000 enum.py:192(__get__)
+      472    0.001    0.000    0.001    0.000 {method '__reduce_ex__' of 'object' objects}
+        1    0.000    0.000    0.001    0.001 node_service.py:1()
+        1    0.000    0.000    0.001    0.001 access_token.py:1()
+        1    0.000    0.000    0.001    0.001 uuid.py:1()
+       88    0.000    0.000    0.001    0.000 ipaddress.py:1213(_parse_octet)
+        1    0.000    0.000    0.001    0.001 idna.py:1()
+       43    0.000    0.000    0.001    0.000 typing.py:1820(__init_subclass__)
+      329    0.001    0.000    0.001    0.000 _parser.py:954(fix_flags)
+        1    0.000    0.000    0.001    0.001 sysconfig.py:563(_init_posix)
+     1096    0.001    0.000    0.001    0.000 {method '__contains__' of 'frozenset' objects}
+        8    0.000    0.000    0.001    0.000 inspect.py:3231(__str__)
+     1236    0.001    0.000    0.001    0.000 py3compat.py:130(bord)
+        1    0.000    0.000    0.001    0.001 models.py:225(CharsetMatches)
+        1    0.000    0.000    0.001    0.001 queue.py:1()
+       65    0.000    0.000    0.001    0.000 :835(__iter__)
+      611    0.001    0.000    0.001    0.000 {method 'format' of 'str' objects}
+        1    0.000    0.000    0.001    0.001 extensions.py:835(PolicyInformation)
+        1    0.000    0.000    0.001    0.001 backend.py:135(Backend)
+        1    0.000    0.000    0.001    0.001 keyboard.py:85(get_keyboard_codes)
+       39    0.000    0.000    0.001    0.000 {built-in method _abc._abc_register}
+        1    0.000    0.000    0.001    0.001 parsers.py:1()
+        1    0.000    0.000    0.001    0.001 _version_info.py:1()
+        1    0.000    0.000    0.001    0.001 connapp.py:49(connapp)
+        1    0.000    0.000    0.001    0.001 functions.py:46(__init__)
+      166    0.000    0.000    0.001    0.000 style.py:146(_make_color)
+        1    0.000    0.000    0.001    0.001 functions.py:50(_populate_function_table)
+     12/2    0.000    0.000    0.001    0.000 core.py:1545(makeOptionalList)
+      979    0.001    0.000    0.001    0.000 {method 'split' of 'str' objects}
+        2    0.000    0.000    0.001    0.000 keyboard.py:80()
+        2    0.000    0.000    0.001    0.000 argparse.py:1222(__call__)
+        2    0.000    0.000    0.001    0.000 hmac.py:1()
+       26    0.000    0.000    0.001    0.000 style.py:496(parse)
+      9/3    0.000    0.000    0.001    0.000 core.py:4287(streamline)
+      134    0.000    0.000    0.001    0.000 _doc_utils.py:149(get_parameter)
+        2    0.000    0.000    0.001    0.000 hashes.py:1()
+       13    0.000    0.000    0.001    0.000 core.py:5898(__init__)
+      191    0.001    0.000    0.001    0.000 feedparser.py:78(readline)
+      164    0.000    0.000    0.001    0.000 :806(fsencode)
+        1    0.000    0.000    0.001    0.001 _log_render.py:1()
+       28    0.000    0.000    0.001    0.000 enum.py:1494(__or__)
+       87    0.000    0.000    0.001    0.000 core.py:2361(__init__)
+       42    0.000    0.000    0.001    0.000 traceback.py:316(line)
+       15    0.000    0.000    0.001    0.000 core.py:2512(__init__)
+       15    0.000    0.000    0.001    0.000 _make.py:1058(add_init)
+        1    0.000    0.000    0.001    0.001 calendar.py:1()
+        1    0.000    0.000    0.001    0.001 traceback.py:220(extract_stack)
+      424    0.001    0.000    0.001    0.000 {method 'decode' of 'bytes' objects}
+        1    0.000    0.000    0.001    0.001 sts.py:1()
+        1    0.000    0.000    0.001    0.001 blockquote.py:1()
+        1    0.000    0.000    0.001    0.001 streams.py:1()
+        1    0.000    0.000    0.001    0.001 traceback.py:375(extract)
+      106    0.000    0.000    0.001    0.000 __init__.py:1447(__init__)
+        3    0.000    0.000    0.001    0.000 error.py:1()
+        1    0.000    0.000    0.001    0.001 _checkbox.py:1()
+        1    0.000    0.000    0.001    0.001 traceback.py:397(_extract_from_extended_frame_gen)
+      312    0.001    0.000    0.001    0.000 types.py:164(__init__)
+        1    0.000    0.000    0.001    0.001 text.py:1202(wrap)
+        1    0.000    0.000    0.001    0.001 v1_component_status.py:1()
+      199    0.000    0.000    0.001    0.000 typing.py:1609()
+       49    0.000    0.000    0.001    0.000 argparse.py:1699(_add_action)
+       13    0.000    0.000    0.001    0.000 _IntegerBase.py:297(random)
+    22/21    0.000    0.000    0.001    0.000 :772(create_module)
+        3    0.000    0.000    0.001    0.000 typing.py:2914()
+        4    0.000    0.000    0.001    0.000 _strptime.py:238(pattern)
+        1    0.000    0.000    0.001    0.001 difflib.py:1()
+        1    0.000    0.000    0.001    0.001 _utils.py:1()
+      326    0.000    0.000    0.001    0.000 enum.py:69(_is_internal_class)
+        1    0.000    0.000    0.001    0.001 AES.py:1()
+        1    0.000    0.000    0.001    0.001 pyopenssl.py:1()
+       82    0.000    0.000    0.001    0.000 enum.py:981(_find_data_type_)
+     1002    0.001    0.000    0.001    0.000 {built-in method builtins.callable}
+        1    0.000    0.000    0.001    0.001 rest.py:1()
+        1    0.000    0.000    0.001    0.001 wsgi.py:1()
+        1    0.000    0.000    0.001    0.001 v1_service_status.py:1()
+        1    0.000    0.000    0.001    0.001 common.py:432()
+        8    0.000    0.000    0.001    0.000 dataclasses.py:845(_hash_add)
+       58    0.000    0.000    0.001    0.000 _make.py:2430(__init__)
+      878    0.001    0.000    0.001    0.000 {method 'find' of 'str' objects}
+       15    0.000    0.000    0.001    0.000 _make.py:1937(_make_init_script)
+        1    0.000    0.000    0.001    0.001 extensions.py:180(AuthorityKeyIdentifier)
+       41    0.000    0.000    0.001    0.000 enum.py:1009(_find_new_)
+        1    0.001    0.001    0.001    0.001 v1_service_status.py:21(V1ServiceStatus)
+        1    0.001    0.001    0.001    0.001 client.py:210(ClientExceptionsDocumenter)
+       10    0.000    0.000    0.001    0.000 _IntegerGMP.py:364(__add__)
+       28    0.000    0.000    0.001    0.000 subprocess.py:1829()
+      124    0.001    0.000    0.001    0.000 dataclasses.py:449(_field_init)
+      104    0.000    0.000    0.001    0.000 dataclasses.py:827(_set_new_attribute)
+       22    0.000    0.000    0.001    0.000 dataclasses.py:228(_recursive_repr)
+        1    0.000    0.000    0.001    0.001 service_account.py:1()
+        2    0.000    0.000    0.001    0.000 linecache.py:26(getline)
+        1    0.000    0.000    0.001    0.001 utils.py:106(LazyFile)
+        1    0.000    0.000    0.001    0.001 _log_render.py:14(LogRender)
+       35    0.000    0.000    0.001    0.000 compat.py:17(get_methods)
+      4/1    0.000    0.000    0.001    0.001 typing.py:1360(__getitem__)
+        2    0.000    0.000    0.001    0.000 linecache.py:36(getlines)
+        1    0.001    0.001    0.001    0.001 configparser.py:1243(SafeConfigParser)
+      673    0.001    0.000    0.001    0.000 {method 'isascii' of 'str' objects}
+        8    0.000    0.000    0.001    0.000 __init__.py:798(children)
+        9    0.000    0.000    0.001    0.000 core.py:4098(_generateDefaultName)
+      996    0.001    0.000    0.001    0.000 inspect.py:2740(default)
+        3    0.000    0.000    0.001    0.000 tokens.py:1()
+        1    0.000    0.000    0.001    0.001 pss.py:1()
+        1    0.000    0.000    0.001    0.001 linecache.py:80(updatecache)
+      123    0.000    0.000    0.001    0.000 enum.py:935(_check_for_existing_members_)
+       27    0.000    0.000    0.001    0.000 contextlib.py:260(contextmanager)
+        1    0.000    0.000    0.001    0.001 _meta.py:1()
+        1    0.000    0.000    0.001    0.001 argparse.py:1()
+        1    0.000    0.000    0.001    0.001 connapp.py:159(_apply_app_theme)
+    22/21    0.000    0.000    0.001    0.000 {built-in method _imp.create_builtin}
+        7    0.000    0.000    0.001    0.000 {method 'read' of '_io.TextIOWrapper' objects}
+        1    0.000    0.000    0.001    0.001 inspect.py:592(getmembers)
+        3    0.000    0.000    0.001    0.000 rules.py:300(_prefix_names)
+        1    0.000    0.000    0.001    0.001 url_safe.py:1()
+        1    0.000    0.000    0.001    0.001 printer.py:61(apply_theme)
+        1    0.000    0.000    0.001    0.001 inspect.py:550(_getmembers)
+        1    0.000    0.000    0.001    0.001 _null_file.py:1()
+        8    0.000    0.000    0.001    0.000 dataclasses.py:638(_hash_fn)
+      329    0.001    0.000    0.001    0.000 {built-in method _sre.compile}
+        1    0.000    0.000    0.001    0.001 retry.py:1()
+        1    0.000    0.000    0.001    0.001 _parser.py:58(_timelex)
+        1    0.000    0.000    0.001    0.001 timeout.py:1()
+        1    0.000    0.000    0.001    0.001 configfile.py:20(configfile)
+        1    0.000    0.000    0.001    0.001 pkcs7.py:57(PKCS7SignatureBuilder)
+        1    0.000    0.000    0.001    0.001 tty.py:1()
+      720    0.001    0.000    0.001    0.000 {method 'isalnum' of 'str' objects}
+        1    0.000    0.000    0.001    0.001 base.py:310(CertificateRevocationList)
+        1    0.000    0.000    0.001    0.001 scope.py:1()
+        1    0.000    0.000    0.001    0.001 timeouts.py:1()
+        1    0.000    0.000    0.001    0.001 app.py:59(App)
+      132    0.000    0.000    0.001    0.000 {built-in method builtins.all}
+        1    0.000    0.000    0.001    0.001 httpchecksum.py:1()
+        1    0.000    0.000    0.001    0.001 _strptime.py:49(__init__)
+        1    0.000    0.000    0.001    0.001 text.py:47(Span)
+        1    0.001    0.001    0.001    0.001 calendar.py:150(Calendar)
+       31    0.000    0.000    0.001    0.000 _IntegerGMP.py:112(__getattr__)
+       11    0.000    0.000    0.001    0.000 decorators.py:372(decorator)
+        1    0.000    0.000    0.001    0.001 v2_container_resource_metric_status.py:1()
+      287    0.000    0.000    0.001    0.000 _doc_utils.py:78(append)
+        1    0.000    0.000    0.001    0.001 configfile.py:377(getitems)
+        2    0.000    0.000    0.001    0.000 typing.py:2850(NamedTuple)
+        3    0.000    0.000    0.001    0.000 {method 'readlines' of '_io._IOBase' objects}
+        1    0.000    0.000    0.001    0.001 containers.py:66(Lines)
+       14    0.001    0.000    0.001    0.000 {built-in method _ctypes.dlopen}
+       20    0.000    0.000    0.001    0.000 compiler.py:45(optimizeconst)
+        1    0.000    0.000    0.001    0.001 _null_file.py:5(NullFile)
+      128    0.000    0.000    0.001    0.000 ssl.py:145()
+      134    0.000    0.000    0.001    0.000 _doc_utils.py:93(get_parameter)
+       13    0.000    0.000    0.001    0.000 enum.py:1379(_missing_)
+      561    0.001    0.000    0.001    0.000 _compiler.py:31(_combine_flags)
+        1    0.000    0.000    0.001    0.001 async_utils.py:1()
+       55    0.000    0.000    0.001    0.000 ipaddress.py:533(_split_addr_prefix)
+        1    0.000    0.000    0.001    0.001 _auth.py:1()
+       34    0.000    0.000    0.001    0.000 core.py:4099()
+      675    0.001    0.000    0.001    0.000 {built-in method _sre.unicode_tolower}
+        1    0.000    0.000    0.001    0.001 configfile.py:291(getitem)
+        1    0.001    0.001    0.001    0.001 v2_container_resource_metric_status.py:21(V2ContainerResourceMetricStatus)
+       84    0.000    0.000    0.001    0.000 _make.py:1235(_determine_attrib_eq_order)
+        1    0.000    0.000    0.001    0.001 unicode.py:85(identchars)
+        2    0.000    0.000    0.001    0.000 socks.py:1()
+       30    0.000    0.000    0.001    0.000 core.py:3018(__init__)
+        1    0.000    0.000    0.001    0.001 HMAC.py:1()
+        1    0.000    0.000    0.001    0.001 actions.py:1()
+        1    0.000    0.000    0.001    0.001 console.py:978(options)
+        1    0.000    0.000    0.001    0.001 prompt.py:30(PromptBase)
+        1    0.001    0.001    0.001    0.001 streams.py:181(StreamReaderProtocol)
+        1    0.000    0.000    0.001    0.001 control.py:1()
+        1    0.000    0.000    0.001    0.001 loaders.py:431(FunctionLoader)
+        1    0.000    0.000    0.001    0.001 relativedelta.py:1()
+        1    0.000    0.000    0.001    0.001 core.py:1160(Command)
+       32    0.000    0.000    0.001    0.000 :397(abspath)
+        1    0.000    0.000    0.001    0.001 runtime.py:392(LoopContext)
+        1    0.000    0.000    0.001    0.001 _meta.py:7(PackageMetadata)
+        1    0.000    0.000    0.001    0.001 core.py:455(DebugActions)
+        4    0.000    0.000    0.001    0.000 ssl.py:461(__new__)
+       34    0.000    0.000    0.001    0.000 ipaddress.py:1651(_ip_int_from_string)
+        1    0.000    0.000    0.001    0.001 legacy.py:1()
+      219    0.001    0.000    0.001    0.000 {function FreezableDefaultDict.__missing__ at 0xff1298f46ac0}
+      156    0.000    0.000    0.001    0.000 _doc_utils.py:146(get_parameters)
+       24    0.000    0.000    0.001    0.000 _IntegerGMP.py:353(__ge__)
+        1    0.000    0.000    0.001    0.001 runtime.py:589(AsyncLoopContext)
+        1    0.000    0.000    0.001    0.001 setters.py:1()
+       79    0.000    0.000    0.001    0.000 token.py:34(__getattr__)
+        1    0.000    0.000    0.001    0.001 local.py:388(LocalProxy)
+        1    0.000    0.000    0.001    0.001 name.py:267(Name)
+       42    0.000    0.000    0.001    0.000 {method 'sort' of 'list' objects}
+       15    0.000    0.000    0.001    0.000 core.py:2088(__init__)
+        1    0.000    0.000    0.001    0.001 _internal.py:1()
+        1    0.000    0.000    0.001    0.001 number.py:1()
+        6    0.000    0.000    0.001    0.000 core.py:5903(__add__)
+      138    0.000    0.000    0.001    0.000 __init__.py:228(_acquireLock)
+        1    0.000    0.000    0.001    0.001 algorithms.py:1()
+        4    0.001    0.000    0.001    0.000 {built-in method _ssl.txt2obj}
+       69    0.000    0.000    0.001    0.000 status_codes.py:122()
+       33    0.000    0.000    0.001    0.000 inspect.py:2770(__str__)
+       19    0.000    0.000    0.001    0.000 asn1.py:236(_decodeFromStream)
+        1    0.000    0.000    0.001    0.001 lzma.py:1()
+       19    0.000    0.000    0.001    0.000 __init__.py:19(_simple_escaping_wrapper)
+        1    0.000    0.000    0.001    0.001 runners.py:1()
+       31    0.000    0.000    0.001    0.000 color.py:431(parse)
+      690    0.001    0.000    0.001    0.000 {method 'items' of 'dict' objects}
+        1    0.000    0.000    0.001    0.001 _loop.py:1()
+       80    0.000    0.000    0.001    0.000 token.py:15(split)
+       34    0.000    0.000    0.001    0.000 ast.py:380(walk)
+        1    0.000    0.000    0.001    0.001 normalize.py:1()
+      344    0.000    0.000    0.000    0.000 enum.py:750(__delattr__)
+      623    0.000    0.000    0.000    0.000 _compiler.py:426(_get_iscased)
+       82    0.000    0.000    0.000    0.000 results.py:150(__new__)
+        1    0.000    0.000    0.000    0.000 template.py:1()
+        1    0.000    0.000    0.000    0.000 _socket.py:1()
+        1    0.000    0.000    0.000    0.000 pkcs12.py:78(PKCS12KeyAndCertificates)
+       12    0.000    0.000    0.000    0.000 datetime.py:592(__new__)
+      166    0.000    0.000    0.000    0.000 core.py:2399(__new__)
+        2    0.000    0.000    0.000    0.000 _itertools.py:1()
+       13    0.000    0.000    0.000    0.000 _IntegerGMP.py:296(from_bytes)
+        1    0.000    0.000    0.000    0.000 themes.py:85(__init__)
+        1    0.000    0.000    0.000    0.000 text.py:1063(split)
+        1    0.000    0.000    0.000    0.000 segment.py:35(ControlType)
+       14    0.000    0.000    0.000    0.000 __init__.py:882(__init__)
+        5    0.000    0.000    0.000    0.000 core.py:1452(__radd__)
+        1    0.000    0.000    0.000    0.000 useragent.py:1()
+      684    0.000    0.000    0.000    0.000 inspect.py:2748(kind)
+        1    0.000    0.000    0.000    0.000 regions.py:424(EndpointResolverBuiltins)
+       21    0.000    0.000    0.000    0.000 _helpers.py:110(positional_decorator)
+      134    0.000    0.000    0.000    0.000 _doc_utils.py:131(append_parameter)
+        6    0.000    0.000    0.000    0.000 typing.py:597(ClassVar)
+       15    0.000    0.000    0.000    0.000 _make.py:2094(_attrs_to_init_script)
+        1    0.000    0.000    0.000    0.000 scaffold.py:52(Scaffold)
+      663    0.000    0.000    0.000    0.000 {built-in method builtins.id}
+      144    0.000    0.000    0.000    0.000 argparse.py:1603(_get_handler)
+        1    0.000    0.000    0.000    0.000 runtime.py:144(Context)
+        1    0.000    0.000    0.000    0.000 unicode.py:99(identbodychars)
+        1    0.000    0.000    0.000    0.000 extensions.py:579(DistributionPoint)
+        3    0.000    0.000    0.000    0.000 console.py:991(size)
+      4/1    0.000    0.000    0.000    0.000 typing.py:1392(_determine_new_args)
+        1    0.000    0.000    0.000    0.000 color.py:302(Color)
+       16    0.000    0.000    0.000    0.000 {built-in method io.open}
+       17    0.000    0.000    0.000    0.000 _make.py:1556(_make_hash_script)
+        1    0.000    0.000    0.000    0.000 configparser.py:523(LegacyInterpolation)
+      124    0.000    0.000    0.000    0.000 dataclasses.py:368(field)
+        1    0.000    0.000    0.000    0.000 constants.py:1()
+      116    0.000    0.000    0.000    0.000 __init__.py:253(escape)
+        1    0.000    0.000    0.000    0.000 feedparser.py:471(_parse_headers)
+        2    0.000    0.000    0.000    0.000 keyboard.py:82()
+        1    0.000    0.000    0.000    0.000 utils.py:2603(S3ControlEndpointSetter)
+       35    0.000    0.000    0.000    0.000 __init__.py:386(__getattr__)
+       12    0.000    0.000    0.000    0.000 _IntegerGMP.py:645(size_in_bits)
+        1    0.000    0.000    0.000    0.000 loaders.py:152(FileSystemLoader)
+        3    0.000    0.000    0.000    0.000 printer.py:251(__getattr__)
+        1    0.000    0.000    0.000    0.000 encoding.py:1()
+        1    0.000    0.000    0.000    0.000 cells.py:21()
+        1    0.000    0.000    0.000    0.000 text.py:1107(divide)
+        1    0.000    0.000    0.000    0.000 configprovider.py:1()
+        3    0.000    0.000    0.000    0.000 printer.py:25(_get_console)
+       22    0.000    0.000    0.000    0.000 core.py:5228(__init__)
+        1    0.000    0.000    0.000    0.000 _wrap.py:1()
+        1    0.000    0.000    0.000    0.000 context_service.py:1()
+        1    0.000    0.000    0.000    0.000 idtracking.py:30(Symbols)
+      123    0.000    0.000    0.000    0.000 typing.py:2530(overload)
+        1    0.000    0.000    0.000    0.000 platform.py:590(_follow_symlinks)
+       68    0.000    0.000    0.000    0.000 status_codes.py:116(doc)
+       77    0.000    0.000    0.000    0.000 signal.py:9()
+        1    0.000    0.000    0.000    0.000 backticks.py:1()
+        4    0.000    0.000    0.000    0.000 _make.py:1747(_add_eq)
+        1    0.000    0.000    0.000    0.000 message.py:135(Message)
+        1    0.000    0.000    0.000    0.000 _encoded_words.py:1()
+        2    0.000    0.000    0.000    0.000 textwrap.py:419(dedent)
+      587    0.000    0.000    0.000    0.000 {method 'reverse' of 'list' objects}
+        1    0.000    0.000    0.000    0.000 themes.py:73(__init__)
+        1    0.000    0.000    0.000    0.000 core.py:2449(Option)
+       10    0.000    0.000    0.000    0.000 inspect.py:2037(_signature_bound_method)
+       23    0.000    0.000    0.000    0.000 :229(expanduser)
+       15    0.000    0.000    0.000    0.000 _make.py:431()
+        1    0.000    0.000    0.000    0.000 core.py:21(node)
+       24    0.000    0.000    0.000    0.000 _doc_utils.py:187(_set_output)
+        4    0.000    0.000    0.000    0.000 __init__.py:581()
+      251    0.000    0.000    0.000    0.000 core.py:3791()
+        2    0.000    0.000    0.000    0.000 :73(find_spec)
+      176    0.000    0.000    0.000    0.000 six.py:146(__init__)
+        1    0.000    0.000    0.000    0.000 ssh.py:172(_FragList)
+       83    0.000    0.000    0.000    0.000 enum.py:775(__getattr__)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:1()
+        2    0.000    0.000    0.000    0.000 _config.py:1()
+      388    0.000    0.000    0.000    0.000 {method 'translate' of 'bytearray' objects}
+        1    0.000    0.000    0.000    0.000 _parser.py:1371(_tzparser)
+       66    0.000    0.000    0.000    0.000 handlers.py:30(_needs_transcode)
+        1    0.000    0.000    0.000    0.000 block.py:1()
+        1    0.000    0.000    0.000    0.000 request.py:31(Request)
+      492    0.000    0.000    0.000    0.000 _doc_utils.py:63()
+       14    0.000    0.000    0.000    0.000 _make.py:890()
+      586    0.000    0.000    0.000    0.000 {method 'upper' of 'str' objects}
+       33    0.000    0.000    0.000    0.000 {method 'extend' of 'collections.deque' objects}
+        1    0.000    0.000    0.000    0.000 execution_service.py:1()
+      588    0.000    0.000    0.000    0.000 {method 'strip' of 'str' objects}
+       13    0.000    0.000    0.000    0.000 enum.py:1441()
+       76    0.000    0.000    0.000    0.000 _compiler.py:405(_generate_overlap_table)
+        2    0.000    0.000    0.000    0.000 params.py:1()
+        1    0.000    0.000    0.000    0.000 multipart.py:54(State)
+        1    0.000    0.000    0.000    0.000 types.py:642(File)
+       38    0.000    0.000    0.000    0.000 typing.py:1674(__hash__)
+        7    0.000    0.000    0.000    0.000 argparse.py:1480(add_mutually_exclusive_group)
+        1    0.000    0.000    0.000    0.000 pretty.py:493(_Line)
+       22    0.000    0.000    0.000    0.000 :780(exec_module)
+        1    0.000    0.000    0.000    0.000 _cloud_sdk.py:1()
+       88    0.000    0.000    0.000    0.000 typing.py:1924(_caller)
+        1    0.000    0.000    0.000    0.000 configparser.py:377(BasicInterpolation)
+      424    0.000    0.000    0.000    0.000 {method 'index' of 'list' objects}
+      554    0.000    0.000    0.000    0.000 inspect.py:2744(annotation)
+        1    0.000    0.000    0.000    0.000 exceptions.py:18(TemplateNotFound)
+        1    0.000    0.000    0.000    0.000 node_service.py:85(generate_cache)
+        1    0.000    0.000    0.000    0.000 special.py:1()
+        2    0.000    0.000    0.000    0.000 _text.py:1()
+        1    0.000    0.000    0.000    0.000 _make.py:2567()
+        1    0.000    0.000    0.000    0.000 terminal_theme.py:1()
+       11    0.000    0.000    0.000    0.000 core.py:1704(__call__)
+        1    0.000    0.000    0.000    0.000 blueprints.py:119(Blueprint)
+        1    0.000    0.000    0.000    0.000 configfile.py:242(_generate_nodes_cache)
+        1    0.000    0.000    0.000    0.000 utils.py:76(_PassArg)
+        1    0.000    0.000    0.000    0.000 lexer.py:471(Lexer)
+        1    0.000    0.000    0.000    0.000 _password.py:1()
+      155    0.000    0.000    0.000    0.000 _doc_utils.py:49(set_default)
+        1    0.000    0.000    0.000    0.000 exceptions.py:16(_Reasons)
+        1    0.000    0.000    0.000    0.000 pkgutil.py:1()
+        1    0.000    0.000    0.000    0.000 sysconfig.py:1()
+        2    0.000    0.000    0.000    0.000 :1536(find_distributions)
+        1    0.000    0.000    0.000    0.000 execution_service.py:8(ExecutionService)
+        1    0.000    0.000    0.000    0.000 types.py:23(ParamType)
+        7    0.000    0.000    0.000    0.000 argparse.py:1694(__init__)
+        1    0.000    0.000    0.000    0.000 webauthn_types.py:47(GetRequest)
+       26    0.000    0.000    0.000    0.000 _make.py:105(attrib)
+       11    0.000    0.000    0.000    0.000 async_utils.py:13(decorator)
+      128    0.000    0.000    0.000    0.000 ssl.py:135()
+        1    0.000    0.000    0.000    0.000 forms.py:1()
+        1    0.000    0.000    0.000    0.000 _parser.py:1373(_result)
+        1    0.000    0.000    0.000    0.000 context_service.py:7(ContextService)
+        1    0.000    0.000    0.000    0.000 v1_replica_set_list.py:1()
+        1    0.000    0.000    0.000    0.000 contextvars.py:1()
+        1    0.000    0.000    0.000    0.000 sysconfig.py:479(get_makefile_filename)
+        1    0.000    0.000    0.000    0.000 __init__.py:58(Sectioned)
+        1    0.000    0.000    0.000    0.000 orderedset.py:1()
+      329    0.000    0.000    0.000    0.000 _parser.py:73(__init__)
+        1    0.000    0.000    0.000    0.000 _parser.py:569(__init__)
+        1    0.000    0.000    0.000    0.000 core.py:3773(ParseExpression)
+        1    0.000    0.000    0.000    0.000 theme.py:8(Theme)
+        1    0.000    0.000    0.000    0.000 text.py:779(join)
+       15    0.000    0.000    0.000    0.000 core.py:2642(_parse_decls)
+        2    0.000    0.000    0.000    0.000 :164(islink)
+       22    0.000    0.000    0.000    0.000 dataclasses.py:392(_fields_in_init_order)
+        1    0.000    0.000    0.000    0.000 _parser.py:294(__init__)
+        2    0.000    0.000    0.000    0.000 __init__.py:897(find_distributions)
+       61    0.000    0.000    0.000    0.000 core.py:1889(set_name)
+        2    0.000    0.000    0.000    0.000 sysconfig.py:277(_extend_dict)
+        3    0.000    0.000    0.000    0.000 :412(realpath)
+        1    0.000    0.000    0.000    0.000 shlex.py:1()
+       31    0.000    0.000    0.000    0.000 _compiler.py:389(_bytes_to_codes)
+        1    0.000    0.000    0.000    0.000 name.py:18(_ASN1Type)
+        3    0.000    0.000    0.000    0.000 argparse.py:1509(_add_container_actions)
+        1    0.000    0.000    0.000    0.000 response.py:64(Response)
+        3    0.000    0.000    0.000    0.000 core.py:1634(__invert__)
+        1    0.000    0.000    0.000    0.000 configparser.py:449(ExtendedInterpolation)
+      164    0.000    0.000    0.000    0.000 http.py:1216()
+      364    0.000    0.000    0.000    0.000 {method 'group' of 're.Match' objects}
+        5    0.000    0.000    0.000    0.000 core.py:5764(__init__)
+       14    0.000    0.000    0.000    0.000 _make.py:1043(add_hash)
+        1    0.000    0.000    0.000    0.000 configparser.py:1326(ConverterMapping)
+        1    0.000    0.000    0.000    0.000 extensions.py:1923(IssuingDistributionPoint)
+      486    0.000    0.000    0.000    0.000 enum.py:1147(__init__)
+       26    0.000    0.000    0.000    0.000 _make.py:2488(from_counting_attr)
+        3    0.000    0.000    0.000    0.000 _make.py:1628(_add_hash)
+        2    0.000    0.000    0.000    0.000 __init__.py:910(_search_paths)
+        1    0.000    0.000    0.000    0.000 core.py:4542(ParseElementEnhance)
+      138    0.000    0.000    0.000    0.000 __init__.py:237(_releaseLock)
+        1    0.000    0.000    0.000    0.000 exceptions.py:27(ParseBaseException)
+      130    0.000    0.000    0.000    0.000 unicode.py:105()
+       59    0.000    0.000    0.000    0.000 ast.py:267(iter_child_nodes)
+        1    0.000    0.000    0.000    0.000 request.py:39(Request)
+        8    0.000    0.000    0.000    0.000 core.py:6029()
+       37    0.000    0.000    0.000    0.000 :319(decode)
+        1    0.000    0.000    0.000    0.000 idnadata.py:1()
+        1    0.000    0.000    0.000    0.000 lexer.py:465(_Rule)
+        1    0.000    0.000    0.000    0.000 console.py:1043(width)
+        1    0.000    0.000    0.000    0.000 _oid.py:1()
+        2    0.000    0.000    0.000    0.000 headers.py:1()
+        2    0.000    0.000    0.000    0.000 __init__.py:870(__init__)
+        6    0.000    0.000    0.000    0.000 message.py:489(get)
+       15    0.000    0.000    0.000    0.000 typing.py:2011(__init_subclass__)
+        7    0.000    0.000    0.000    0.000 _parser.py:309(_convert)
+        1    0.000    0.000    0.000    0.000 selectors.py:1()
+        1    0.000    0.000    0.000    0.000 ssh.py:437(_SSHFormatEd25519)
+       41    0.000    0.000    0.000    0.000 inspect.py:1441(formatannotation)
+        1    0.000    0.000    0.000    0.000 _adapters.py:8(Message)
+      123    0.000    0.000    0.000    0.000 argparse.py:599(format)
+        6    0.000    0.000    0.000    0.000 core.py:6023()
+        3    0.000    0.000    0.000    0.000 dataclasses.py:1142(_add_slots)
+        8    0.000    0.000    0.000    0.000 core.py:584(_setResultsName)
+      421    0.000    0.000    0.000    0.000 {method 'lstrip' of 'str' objects}
+      156    0.000    0.000    0.000    0.000 urls.py:34()
+        1    0.000    0.000    0.000    0.000 parser.py:253(OptionParser)
+        1    0.000    0.000    0.000    0.000 hashes.py:67(Hash)
+        1    0.000    0.000    0.000    0.000 strxor.py:1()
+       53    0.000    0.000    0.000    0.000 :389(normpath)
+        1    0.000    0.000    0.000    0.000 v1beta2_counter_set.py:1()
+       22    0.000    0.000    0.000    0.000 {built-in method _imp.exec_builtin}
+        1    0.000    0.000    0.000    0.000 color_triplet.py:1()
+      116    0.000    0.000    0.000    0.000 _make.py:1244(decide_callable_or_boolean)
+        1    0.000    0.000    0.000    0.000 v1_replica_set_list.py:21(V1ReplicaSetList)
+        1    0.000    0.000    0.000    0.000 terminal_theme.py:9(TerminalTheme)
+        1    0.000    0.000    0.000    0.000 _base.py:1()
+      112    0.000    0.000    0.000    0.000 dataclasses.py:820(_set_qualname)
+      121    0.000    0.000    0.000    0.000 __init__.py:202(_checkLevel)
+        1    0.000    0.000    0.000    0.000 _legacy.py:1()
+       10    0.000    0.000    0.000    0.000 _text.py:79(__hash__)
+       80    0.000    0.000    0.000    0.000 copy.py:243(_keep_alive)
+      359    0.000    0.000    0.000    0.000 dataclasses.py:425()
+      331    0.000    0.000    0.000    0.000 {built-in method builtins.sum}
+        6    0.000    0.000    0.000    0.000 _strptime.py:219(__seqToRE)
+        1    0.000    0.000    0.000    0.000 cli.py:770(__init__)
+        1    0.000    0.000    0.000    0.000 v1beta2_counter_set.py:21(V1beta2CounterSet)
+       14    0.000    0.000    0.000    0.000 _make.py:1135(add_order)
+        1    0.000    0.000    0.000    0.000 regexopt.py:1()
+       21    0.000    0.000    0.000    0.000 ipaddress.py:1161(_make_netmask)
+        4    0.000    0.000    0.000    0.000 __init__.py:64(xmod)
+        1    0.000    0.000    0.000    0.000 contentmanager.py:1()
+        1    0.000    0.000    0.000    0.000 containers.py:30(Renderables)
+        1    0.000    0.000    0.000    0.000 quoprimime.py:1()
+        1    0.000    0.000    0.000    0.000 _core.py:39(WebSocket)
+        1    0.000    0.000    0.000    0.000 extensions.py:691(ReasonFlags)
+  412/411    0.000    0.000    0.000    0.000 {built-in method builtins.iter}
+      236    0.000    0.000    0.000    0.000 {built-in method builtins.locals}
+        1    0.000    0.000    0.000    0.000 _emoji_codes.py:1()
+        1    0.000    0.000    0.000    0.000 unicode.py:123(pyparsing_unicode)
+        1    0.000    0.000    0.000    0.000 argparse.py:1873(parse_args)
+        1    0.000    0.000    0.000    0.000 name.py:111(NameAttribute)
+      200    0.000    0.000    0.000    0.000 {built-in method _imp.is_builtin}
+        1    0.000    0.000    0.000    0.000 pretty.py:408(Node)
+      406    0.000    0.000    0.000    0.000 _doc_utils.py:178(_last)
+        1    0.000    0.000    0.000    0.000 selector_events.py:1()
+        1    0.000    0.000    0.000    0.000 align.py:23(Align)
+       19    0.000    0.000    0.000    0.000 box.py:33(__init__)
+        1    0.000    0.000    0.000    0.000 socketserver.py:1()
+       26    0.000    0.000    0.000    0.000 :422(spec_from_loader)
+       10    0.000    0.000    0.000    0.000 inspect.py:3039(replace)
+        1    0.000    0.000    0.000    0.000 zipfile.py:1()
+       93    0.000    0.000    0.000    0.000 local.py:273(__init__)
+      4/3    0.000    0.000    0.000    0.000 :421(_joinrealpath)
+        4    0.000    0.000    0.000    0.000 message.py:591(get_content_type)
+        4    0.000    0.000    0.000    0.000 _IntegerGMP.py:203(__int__)
+        1    0.000    0.000    0.000    0.000 traceback.py:1()
+       19    0.000    0.000    0.000    0.000 asn1.py:198(_decodeLen)
+        1    0.000    0.000    0.000    0.000 tasks.py:1()
+        1    0.000    0.000    0.000    0.000 palette.py:11(Palette)
+      190    0.000    0.000    0.000    0.000 argparse.py:1612(_check_conflict)
+        3    0.000    0.000    0.000    0.000 console.py:966(is_dumb_terminal)
+        1    0.000    0.000    0.000    0.000 core.py:4971(_MultipleMatch)
+      393    0.000    0.000    0.000    0.000 typing.py:2214(cast)
+       22    0.000    0.000    0.000    0.000 dataclasses.py:573()
+      156    0.000    0.000    0.000    0.000 _doc_utils.py:147()
+        1    0.000    0.000    0.000    0.000 threading.py:1()
+        1    0.000    0.000    0.000    0.000 _compat_pickle.py:1()
+       34    0.000    0.000    0.000    0.000 ipaddress.py:1631(_make_netmask)
+        8    0.000    0.000    0.000    0.000 {built-in method builtins.dir}
+       29    0.000    0.000    0.000    0.000 enum.py:1369(_iter_member_by_def_)
+        1    0.000    0.000    0.000    0.000 core.py:143(Diagnostics)
+        1    0.000    0.000    0.000    0.000 utils.py:2817(S3ControlArnParamHandler)
+        1    0.000    0.000    0.000    0.000 ssh.py:294(_SSHFormatDSA)
+       92    0.000    0.000    0.000    0.000 six.py:110(__init__)
+        1    0.000    0.000    0.000    0.000 MD5.py:1()
+      128    0.000    0.000    0.000    0.000 ssl.py:125()
+      215    0.000    0.000    0.000    0.000 argparse.py:846(__init__)
+        1    0.000    0.000    0.000    0.000 __init__.py:198(split)
+        1    0.000    0.000    0.000    0.000 core.py:134(ParameterSource)
+        2    0.000    0.000    0.000    0.000 _policybase.py:99(_extend_docstrings)
+        2    0.000    0.000    0.000    0.000 dh.py:1()
+        1    0.000    0.000    0.000    0.000 nodes.py:425(FromImport)
+       52    0.000    0.000    0.000    0.000 dataclasses.py:401(_tuple_str)
+       36    0.000    0.000    0.000    0.000 :60(isabs)
+        1    0.000    0.000    0.000    0.000 variable.py:31(URIVariable)
+      321    0.000    0.000    0.000    0.000 __init__.py:422()
+      312    0.000    0.000    0.000    0.000 enum.py:224(__set_name__)
+      128    0.000    0.000    0.000    0.000 ssl.py:130()
+        1    0.000    0.000    0.000    0.000 base.py:559(CertificateSigningRequestBuilder)
+        1    0.000    0.000    0.000    0.000 _make.py:2593(_CountingAttr)
+      234    0.000    0.000    0.000    0.000 typing.py:440(__repr__)
+       15    0.000    0.000    0.000    0.000 _make.py:261(_make_attr_tuple_class)
+        1    0.000    0.000    0.000    0.000 types.py:949(Tuple)
+        1    0.000    0.000    0.000    0.000 intranges.py:1()
+        1    0.000    0.000    0.000    0.000 csv.py:1()
+      130    0.000    0.000    0.000    0.000 {built-in method posix.get_terminal_size}
+       18    0.000    0.000    0.000    0.000 _make.py:1654(_make_eq_script)
+       14    0.000    0.000    0.000    0.000 hashlib.py:126(__get_openssl_constructor)
+       55    0.000    0.000    0.000    0.000 ipaddress.py:156(_split_optional_netmask)
+      251    0.000    0.000    0.000    0.000 functools.py:65(wraps)
+      128    0.000    0.000    0.000    0.000 ssl.py:150()
+      128    0.000    0.000    0.000    0.000 ssl.py:140()
+        1    0.000    0.000    0.000    0.000 highlighter.py:1()
+        1    0.000    0.000    0.000    0.000 extensions.py:112(Extensions)
+        8    0.000    0.000    0.000    0.000 console.py:930(is_terminal)
+        3    0.000    0.000    0.000    0.000 message.py:615(get_content_maintype)
+       29    0.000    0.000    0.000    0.000 typing.py:1497(__mro_entries__)
+        1    0.000    0.000    0.000    0.000 core.py:1957(CommandCollection)
+        1    0.000    0.000    0.000    0.000 _capabilities.py:1()
+       41    0.000    0.000    0.000    0.000 enum.py:967(_find_data_repr_)
+      293    0.000    0.000    0.000    0.000 enum.py:1248(value)
+       97    0.000    0.000    0.000    0.000 _parser.py:295(checkgroupname)
+       29    0.000    0.000    0.000    0.000 _IntegerGMP.py:347(__le__)
+        1    0.000    0.000    0.000    0.000 numbers.py:1()
+        1    0.000    0.000    0.000    0.000 smartquotes.py:1()
+       37    0.000    0.000    0.000    0.000 {built-in method _codecs.utf_8_decode}
+        1    0.000    0.000    0.000    0.000 _compat.py:454(_AtomicFile)
+        6    0.000    0.000    0.000    0.000 _make.py:1764(_make_repr_script)
+       24    0.000    0.000    0.000    0.000 :100(split)
+        1    0.000    0.000    0.000    0.000 nodes.py:1094(MarkSafeIfAutoescape)
+      169    0.000    0.000    0.000    0.000 enum.py:919()
+        1    0.000    0.000    0.000    0.000 core.py:834(BaseCommand)
+       10    0.000    0.000    0.000    0.000 _make.py:2621()
+        1    0.000    0.000    0.000    0.000 parser_inline.py:1()
+        2    0.000    0.000    0.000    0.000 {built-in method cryptography.hazmat.bindings._openssl.OSSL_PROVIDER_load}
+        5    0.000    0.000    0.000    0.000 _IntegerGMP.py:758(jacobi_symbol)
+        1    0.000    0.000    0.000    0.000 formatting.py:102(HelpFormatter)
+        1    0.000    0.000    0.000    0.000 backend.py:185(__init__)
+       10    0.000    0.000    0.000    0.000 __init__.py:120(method)
+        1    0.000    0.000    0.000    0.000 functools.py:904(wrapper)
+        1    0.000    0.000    0.000    0.000 panel.py:1()
+       41    0.000    0.000    0.000    0.000 argparse.py:1111(__init__)
+        1    0.000    0.000    0.000    0.000 _serialization.py:74(KeySerializationEncryptionBuilder)
+        1    0.000    0.000    0.000    0.000 eventstream.py:1()
+       49    0.000    0.000    0.000    0.000 _strptime.py:234()
+        1    0.000    0.000    0.000    0.000 core.py:5415(Forward)
+        1    0.000    0.000    0.000    0.000 _adapters.py:35(__init__)
+        1    0.000    0.000    0.000    0.000 box.py:16(Box)
+      182    0.000    0.000    0.000    0.000 dataclasses.py:654(_is_initvar)
+        9    0.000    0.000    0.000    0.000 compiler.py:61(_make_binop)
+        1    0.000    0.000    0.000    0.000 _adapters.py:42(_repair_headers)
+        6    0.000    0.000    0.000    0.000 abc.py:32(_register)
+        1    0.000    0.000    0.000    0.000 region.py:1()
+        1    0.000    0.000    0.000    0.000 _strptime.py:80(__calc_weekday)
+        2    0.000    0.000    0.000    0.000 sysconfig.py:209(_safe_realpath)
+      271    0.000    0.000    0.000    0.000 {method 'partition' of 'str' objects}
+      138    0.000    0.000    0.000    0.000 {method 'acquire' of '_thread.RLock' objects}
+      107    0.000    0.000    0.000    0.000 constant.py:397()
+        1    0.000    0.000    0.000    0.000 syntax.py:136(PygmentsSyntaxTheme)
+        1    0.000    0.000    0.000    0.000 functools.py:818(dispatch)
+        1    0.000    0.000    0.000    0.000 core.py:2993(Regex)
+        1    0.000    0.000    0.000    0.000 formparser.py:1()
+        5    0.000    0.000    0.000    0.000 text.py:1092(flatten_spans)
+        1    0.000    0.000    0.000    0.000 base.py:651(CertificateBuilder)
+      127    0.000    0.000    0.000    0.000 {method 'translate' of 'str' objects}
+        1    0.000    0.000    0.000    0.000 exceptions.py:53(TemplatesNotFound)
+       35    0.000    0.000    0.000    0.000 __init__.py:393(__getitem__)
+       60    0.000    0.000    0.000    0.000 functools.py:479(lru_cache)
+        1    0.000    0.000    0.000    0.000 representer.py:1()
+       49    0.000    0.000    0.000    0.000 enum.py:1359(_iter_member_by_value_)
+      220    0.000    0.000    0.000    0.000 {method 'popleft' of 'collections.deque' objects}
+        1    0.000    0.000    0.000    0.000 BLAKE2s.py:1()
+        1    0.000    0.000    0.000    0.000 name.py:214(RelativeDistinguishedName)
+       59    0.000    0.000    0.000    0.000 argparse.py:931(__init__)
+        1    0.000    0.000    0.000    0.000 models.py:10(CharsetMatch)
+        1    0.000    0.000    0.000    0.000 SHA1.py:1()
+        1    0.000    0.000    0.000    0.000 DES3.py:1()
+       31    0.000    0.000    0.000    0.000 _policybase.py:301(header_source_parse)
+      257    0.000    0.000    0.000    0.000 hmac.py:19()
+        1    0.000    0.000    0.000    0.000 parser.py:213(Argument)
+      101    0.000    0.000    0.000    0.000 typing.py:1668(__eq__)
+        3    0.000    0.000    0.000    0.000 plugins.py:103()
+        1    0.000    0.000    0.000    0.000 emoji.py:27(Emoji)
+        1    0.000    0.000    0.000    0.000 utils.py:420(LRUCache)
+       14    0.000    0.000    0.000    0.000 _make.py:1121(add_eq)
+       38    0.000    0.000    0.000    0.000 asn1.py:77(read_byte)
+       97    0.000    0.000    0.000    0.000 core.py:6026()
+        1    0.000    0.000    0.000    0.000 timed.py:1()
+        2    0.000    0.000    0.000    0.000 RSA.py:82(__init__)
+        1    0.000    0.000    0.000    0.000 base.py:167(_CipherContext)
+        1    0.000    0.000    0.000    0.000 heapq.py:1()
+       83    0.000    0.000    0.000    0.000 inspect.py:755(_is_wrapper)
+        1    0.000    0.000    0.000    0.000 console.py:258(RichCast)
+        3    0.000    0.000    0.000    0.000 typing.py:1471(copy_with)
+        1    0.000    0.000    0.000    0.000 loaders.py:476(PrefixLoader)
+        1    0.000    0.000    0.000    0.000 functools.py:774(_find_impl)
+        1    0.000    0.000    0.000    0.000 _abnf.py:295(frame_buffer)
+        1    0.000    0.000    0.000    0.000 _pkcs1_oaep_decode.py:1()
+        1    0.000    0.000    0.000    0.000 __init__.py:260(EscapeFormatter)
+        1    0.000    0.000    0.000    0.000 backend.py:383(_register_default_ciphers)
+        1    0.000    0.000    0.000    0.000 loaders.py:42(BaseLoader)
+        1    0.000    0.000    0.000    0.000 color.py:36(ColorType)
+        1    0.000    0.000    0.000    0.000 lexer.py:319(TokenStream)
+        1    0.000    0.000    0.000    0.000 _strptime.py:88(__calc_month)
+        7    0.000    0.000    0.000    0.000 _legacy.py:15(deprecated)
+        7    0.000    0.000    0.000    0.000 base.py:91(catch_errors_and_unavailability)
+        4    0.000    0.000    0.000    0.000 __init__.py:188(_wrap)
+        7    0.000    0.000    0.000    0.000 core.py:4341(_generateDefaultName)
+        1    0.000    0.000    0.000    0.000 _python_version_support.py:30(PythonVersionStatus)
+        1    0.000    0.000    0.000    0.000 pkcs7.py:48(PKCS7Options)
+        1    0.000    0.000    0.000    0.000 pretty.py:253(Pretty)
+        1    0.000    0.000    0.000    0.000 SHA256.py:1()
+       17    0.000    0.000    0.000    0.000 _make.py:1583(append_hash_computation_lines)
+        1    0.000    0.000    0.000    0.000 __init__.py:218(finditer)
+        1    0.000    0.000    0.000    0.000 types.py:764(Path)
+        1    0.000    0.000    0.000    0.000 _serialization.py:45(PublicFormat)
+        1    0.000    0.000    0.000    0.000 DES.py:1()
+        1    0.000    0.000    0.000    0.000 extensions.py:896(UserNotice)
+        1    0.000    0.000    0.000    0.000 control.py:54(Control)
+        1    0.000    0.000    0.000    0.000 _serialization.py:20(Encoding)
+        1    0.000    0.000    0.000    0.000 typing.py:1629(copy_with)
+        8    0.000    0.000    0.000    0.000 resolver.py:25(add_implicit_resolver)
+        1    0.000    0.000    0.000    0.000 nodes.py:655(Dict)
+        1    0.000    0.000    0.000    0.000 color.py:21(ColorSystem)
+        1    0.000    0.000    0.000    0.000 timeouts.py:18(_State)
+      268    0.000    0.000    0.000    0.000 six.py:93(__init__)
+        1    0.000    0.000    0.000    0.000 struct.py:1()
+        1    0.000    0.000    0.000    0.000 webauthn_handler_factory.py:6(WebauthnHandlerFactory)
+        1    0.000    0.000    0.000    0.000 functools.py:732(_compose_mro)
+        1    0.000    0.000    0.000    0.000 orderedset.py:15(OrderedSet)
+       46    0.000    0.000    0.000    0.000 ipaddress.py:1755(_parse_hextet)
+        1    0.000    0.000    0.000    0.000 v1_weighted_pod_affinity_term.py:1()
+        1    0.000    0.000    0.000    0.000 _serialization.py:29(PrivateFormat)
+        1    0.000    0.000    0.000    0.000 exceptions.py:86(BadParameter)
+      257    0.000    0.000    0.000    0.000 hmac.py:20()
+        1    0.000    0.000    0.000    0.000 _IntegerBase.py:1()
+      182    0.000    0.000    0.000    0.000 dataclasses.py:646(_is_classvar)
+       62    0.000    0.000    0.000    0.000 __init__.py:26(__new__)
+        1    0.000    0.000    0.000    0.000 v1_priority_class.py:1()
+      227    0.000    0.000    0.000    0.000 :7(abstractmethod)
+        1    0.000    0.000    0.000    0.000 _logging.py:1()
+       34    0.000    0.000    0.000    0.000 argparse.py:1549(_get_positional_kwargs)
+       67    0.000    0.000    0.000    0.000 typing.py:1787()
+       12    0.000    0.000    0.000    0.000 __init__.py:848(search)
+        1    0.000    0.000    0.000    0.000 stringprep.py:1()
+        1    0.000    0.000    0.000    0.000 types.py:404(_NumberParamTypeBase)
+        1    0.000    0.000    0.000    0.000 compiler.py:165(Frame)
+        1    0.000    0.000    0.000    0.000 nodes.py:458(AssignBlock)
+       10    0.000    0.000    0.000    0.000 _utility.py:410(ansi)
+       40    0.000    0.000    0.000    0.000 traceback.py:297(__getitem__)
+        1    0.000    0.000    0.000    0.000 __init__.py:930(read_text)
+        1    0.000    0.000    0.000    0.000 credentials.py:512(TokenState)
+        1    0.000    0.000    0.000    0.000 reduction.py:1()
+        1    0.000    0.000    0.000    0.000 terminal.py:75(Terminal)
+       26    0.000    0.000    0.000    0.000 :27(isfile)
+       70    0.000    0.000    0.000    0.000 _make.py:1138()
+        4    0.000    0.000    0.000    0.000 utils.py:119(deprecated)
+        1    0.000    0.000    0.000    0.000 ssltransport.py:1()
+        1    0.000    0.000    0.000    0.000 segment.py:696(SegmentLines)
+      239    0.000    0.000    0.000    0.000 inspect.py:3031(parameters)
+        1    0.000    0.000    0.000    0.000 panel.py:17(Panel)
+        1    0.000    0.000    0.000    0.000 _cpu_features.py:1()
+       18    0.000    0.000    0.000    0.000 core.py:4007()
+        1    0.000    0.000    0.000    0.000 console.py:1487(_collect_renderables)
+        1    0.000    0.000    0.000    0.000 constants.py:31(_SendfileMode)
+       14    0.000    0.000    0.000    0.000 __init__.py:863(_addHandlerRef)
+        2    0.000    0.000    0.000    0.000 mixins.py:1()
+        1    0.000    0.000    0.000    0.000 throttling.py:1()
+        1    0.000    0.000    0.000    0.000 _IntegerGMP.py:728(inverse)
+      244    0.000    0.000    0.000    0.000 copy.py:182(_deepcopy_atomic)
+        1    0.000    0.000    0.000    0.000 sslproto.py:19(SSLProtocolState)
+      7/1    0.000    0.000    0.000    0.000 functools.py:687(_c3_mro)
+       10    0.000    0.000    0.000    0.000 inspect.py:2063(_signature_is_builtin)
+      192    0.000    0.000    0.000    0.000 {method 'values' of 'mappingproxy' objects}
+        1    0.000    0.000    0.000    0.000 results.py:36(ParseResults)
+        1    0.000    0.000    0.000    0.000 dsa.py:32(DSAPrivateKey)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_priority_class.py:21(V1PriorityClass)
+        1    0.000    0.000    0.000    0.000 ssh.py:366(_SSHFormatECDSA)
+        4    0.000    0.000    0.000    0.000 _IntegerGMP.py:412(__mod__)
+      124    0.000    0.000    0.000    0.000 dataclasses.py:287(__init__)
+        1    0.000    0.000    0.000    0.000 extensions.py:804(CertificatePolicies)
+       72    0.000    0.000    0.000    0.000 asn1.py:68(read)
+        1    0.000    0.000    0.000    0.000 ssh.py:224(_SSHFormatRSA)
+        1    0.000    0.000    0.000    0.000 v1_secret.py:1()
+        1    0.000    0.000    0.000    0.000 base_subprocess.py:1()
+      134    0.000    0.000    0.000    0.000 _doc_utils.py:94()
+        1    0.000    0.000    0.000    0.000 _stack.py:1()
+       30    0.000    0.000    0.000    0.000 inspect.py:1945(_signature_get_user_defined_method)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:1()
+        4    0.000    0.000    0.000    0.000 argparse.py:2470(_get_values)
+        1    0.000    0.000    0.000    0.000 _refresh_worker.py:1()
+      182    0.000    0.000    0.000    0.000 dataclasses.py:660(_is_kw_only)
+        2    0.000    0.000    0.000    0.000 docstring.py:1()
+      123    0.000    0.000    0.000    0.000 argparse.py:590(_metavar_formatter)
+       37    0.000    0.000    0.000    0.000 utils.py:78(__init__)
+       45    0.000    0.000    0.000    0.000 argparse.py:966(__init__)
+        1    0.000    0.000    0.000    0.000 es256.py:1()
+        1    0.000    0.000    0.000    0.000 state_block.py:1()
+        1    0.000    0.000    0.000    0.000 results.py:19(_ParseResultsWithOffset)
+        1    0.000    0.000    0.000    0.000 _http_client.py:1()
+        3    0.000    0.000    0.000    0.000 __init__.py:1076(__init__)
+        2    0.000    0.000    0.000    0.000 __init__.py:805(zip_children)
+      156    0.000    0.000    0.000    0.000 _doc_utils.py:159()
+       54    0.000    0.000    0.000    0.000 _argparse.py:125(__init__)
+        1    0.000    0.000    0.000    0.000 jupyter.py:18(JupyterRenderable)
+      207    0.000    0.000    0.000    0.000 typing.py:1663()
+      200    0.000    0.000    0.000    0.000 __init__.py:108()
+       40    0.000    0.000    0.000    0.000 argparse.py:1158(__init__)
+       12    0.000    0.000    0.000    0.000 :150(dirname)
+        1    0.000    0.000    0.000    0.000 base64mime.py:1()
+        6    0.000    0.000    0.000    0.000 __init__.py:912(createLock)
+        2    0.000    0.000    0.000    0.000 collection.py:1()
+      185    0.000    0.000    0.000    0.000 util.py:200(escape_re_range_char)
+        1    0.000    0.000    0.000    0.000 process.py:1()
+        1    0.000    0.000    0.000    0.000 table.py:38(Column)
+        1    0.000    0.000    0.000    0.000 base.py:139(Version)
+        1    0.000    0.000    0.000    0.000 environment.py:1579(TemplateStream)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_spec.py:1()
+        3    0.000    0.000    0.000    0.000 core.py:1594(__xor__)
+       27    0.000    0.000    0.000    0.000 core.py:4342()
+       52    0.000    0.000    0.000    0.000 _make.py:2354(_default_init_alias_for)
+      156    0.000    0.000    0.000    0.000 _doc_utils.py:144()
+        1    0.000    0.000    0.000    0.000 certificate_transparency.py:23(SignatureAlgorithm)
+        1    0.000    0.000    0.000    0.000 _python_version_support.py:59(VersionInfo)
+        1    0.000    0.000    0.000    0.000 extensions.py:324(AuthorityInformationAccess)
+        1    0.000    0.000    0.000    0.000 _abnf.py:106(ABNF)
+      211    0.000    0.000    0.000    0.000 {built-in method builtins.abs}
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_request.py:1()
+        1    0.000    0.000    0.000    0.000 v1_resource_attributes.py:1()
+        1    0.000    0.000    0.000    0.000 client.py:789(HTTPConnection)
+       33    0.000    0.000    0.000    0.000 core.py:3082(_generateDefaultName)
+        1    0.000    0.000    0.000    0.000 webauthn_types.py:105(GetResponse)
+       21    0.000    0.000    0.000    0.000 copyreg.py:113(_slotnames)
+        1    0.000    0.000    0.000    0.000 ctx.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_service_spec.py:1()
+        1    0.000    0.000    0.000    0.000 exceptions.py:814(_find_exceptions)
+        2    0.000    0.000    0.000    0.000 zipfile.py:2393(__init__)
+        1    0.000    0.000    0.000    0.000 _IntegerBase.py:38(IntegerBase)
+        6    0.000    0.000    0.000    0.000 containers.py:69(__init__)
+        1    0.000    0.000    0.000    0.000 loaders.py:241(PackageLoader)
+       16    0.000    0.000    0.000    0.000 sysconfig.py:268(_subst_vars)
+        2    0.000    0.000    0.000    0.000 hashlib.py:82(__get_builtin_constructor)
+        3    0.000    0.000    0.000    0.000 repr.py:114(rich_repr)
+        2    0.000    0.000    0.000    0.000 sysconfig.py:133(_getuserbase)
+        1    0.000    0.000    0.000    0.000 typing.py:1952(__instancecheck__)
+        6    0.000    0.000    0.000    0.000 core.py:4972(__init__)
+        8    0.000    0.000    0.000    0.000 text.py:144(__init__)
+        1    0.000    0.000    0.000    0.000 runtime.py:344(BlockReference)
+        1    0.000    0.000    0.000    0.000 _dict.py:1()
+        1    0.000    0.000    0.000    0.000 oauth1_session.py:1()
+        1    0.000    0.000    0.000    0.000 extensions.py:505(CRLDistributionPoints)
+        1    0.000    0.000    0.000    0.000 locks.py:439(_BarrierState)
+        1    0.000    0.000    0.000    0.000 extensions.py:1047(TLSFeature)
+        1    0.000    0.000    0.000    0.000 padding.py:32(PSS)
+        1    0.000    0.000    0.000    0.000 base.py:77(Cipher)
+      124    0.000    0.000    0.000    0.000 dataclasses.py:509(_init_param)
+       12    0.000    0.000    0.000    0.000 __init__.py:815(mtime)
+       32    0.000    0.000    0.000    0.000 terminal.py:299()
+        1    0.000    0.000    0.000    0.000 _ratio.py:12(Edge)
+        1    0.000    0.000    0.000    0.000 win.py:1()
+      146    0.000    0.000    0.000    0.000 dataclasses.py:396()
+        1    0.000    0.000    0.000    0.000 signer.py:1()
+        1    0.000    0.000    0.000    0.000 console.py:631(__init__)
+        1    0.000    0.000    0.000    0.000 sslproto.py:27(AppProtocolState)
+      194    0.000    0.000    0.000    0.000 status_codes.py:117()
+      120    0.000    0.000    0.000    0.000 __init__.py:795(__init__)
+        1    0.000    0.000    0.000    0.000 csp.py:1()
+        5    0.000    0.000    0.000    0.000 _IntegerGMP.py:339(__ne__)
+        2    0.000    0.000    0.000    0.000 zipfile.py:2269(make)
+        1    0.000    0.000    0.000    0.000 loaders.py:407(DictLoader)
+        3    0.000    0.000    0.000    0.000 repr.py:37(auto)
+        1    0.000    0.000    0.000    0.000 abc.py:56(Traversable)
+        1    0.000    0.000    0.000    0.000 extensions.py:1665(CertificateIssuer)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_list.py:21(V1alpha3ResourceClaimList)
+      132    0.000    0.000    0.000    0.000 {method 'fileno' of '_io.TextIOWrapper' objects}
+      101    0.000    0.000    0.000    0.000 _make.py:1177(_add_method_dunders_unsafe)
+       27    0.000    0.000    0.000    0.000 lexer.py:146()
+        1    0.000    0.000    0.000    0.000 google_auth_httplib2.py:1()
+        1    0.000    0.000    0.000    0.000 http.py:131(COOP)
+        1    0.000    0.000    0.000    0.000 _make.py:61(_Nothing)
+        1    0.000    0.000    0.000    0.000 v1_horizontal_pod_autoscaler.py:1()
+        1    0.000    0.000    0.000    0.000 nodes.py:739(_FilterTestCommon)
+       46    0.000    0.000    0.000    0.000 six.py:194(find_spec)
+        1    0.000    0.000    0.000    0.000 v1_resource_attributes.py:21(V1ResourceAttributes)
+        1    0.000    0.000    0.000    0.000 pathlib.py:1054(read_text)
+        1    0.000    0.000    0.000    0.000 futures.py:1()
+      180    0.000    0.000    0.000    0.000 enum.py:234(__init__)
+        1    0.000    0.000    0.000    0.000 bisect.py:1()
+        1    0.000    0.000    0.000    0.000 {built-in method _thread.start_new_thread}
+        6    0.000    0.000    0.000    0.000 console.py:159(copy)
+        4    0.000    0.000    0.000    0.000 isoparser.py:22(_takes_ascii)
+        1    0.000    0.000    0.000    0.000 datetime.py:573(timedelta)
+      177    0.000    0.000    0.000    0.000 core.py:1741(leave_whitespace)
+       26    0.000    0.000    0.000    0.000 calendar.py:60(__getitem__)
+       15    0.000    0.000    0.000    0.000 _make.py:1089(add_match_args)
+        1    0.000    0.000    0.000    0.000 _adapters.py:49()
+      7/1    0.000    0.000    0.000    0.000 functools.py:725()
+        1    0.000    0.000    0.000    0.000 contentmanager.py:7(ContentManager)
+        1    0.000    0.000    0.000    0.000 tag.py:1()
+      120    0.000    0.000    0.000    0.000 {built-in method builtins.repr}
+        1    0.000    0.000    0.000    0.000 ssl.py:477(Purpose)
+       21    0.000    0.000    0.000    0.000 types.py:999(convert_type)
+       92    0.000    0.000    0.000    0.000 typing.py:1001()
+        3    0.000    0.000    0.000    0.000 core.py:4124(__init__)
+      173    0.000    0.000    0.000    0.000 inspect.py:3035(return_annotation)
+        1    0.000    0.000    0.000    0.000 console.py:376(PagerContext)
+        1    0.000    0.000    0.000    0.000 cache_control.py:1()
+        1    0.000    0.000    0.000    0.000 _pick.py:1()
+        5    0.000    0.000    0.000    0.000 weakref.py:104(__init__)
+        1    0.000    0.000    0.000    0.000 exceptions.py:59(InternalError)
+        1    0.000    0.000    0.000    0.000 _IntegerGMP.py:704(inplace_inverse)
+       23    0.000    0.000    0.000    0.000 {method 'copy' of 'dict' objects}
+       25    0.000    0.000    0.000    0.000 ipaddress.py:474(_prefix_from_prefix_string)
+      124    0.000    0.000    0.000    0.000 dataclasses.py:437(_field_assign)
+       78    0.000    0.000    0.000    0.000 ast.py:255(iter_fields)
+        1    0.000    0.000    0.000    0.000 keyboard.py:148(get_keyboard_sequences)
+        1    0.000    0.000    0.000    0.000 _strptime.py:107(__calc_date_time)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:574(ParameterType)
+        1    0.000    0.000    0.000    0.000 exceptions.py:31(UnsupportedAlgorithm)
+       21    0.000    0.000    0.000    0.000 argparse.py:989(__init__)
+        4    0.000    0.000    0.000    0.000 functools.py:852(register)
+      133    0.000    0.000    0.000    0.000 core.py:1752(set_whitespace_chars)
+        1    0.000    0.000    0.000    0.000 pydoc.py:1810(Helper)
+        1    0.000    0.000    0.000    0.000 model.py:279(StaticContextParameter)
+        1    0.000    0.000    0.000    0.000 v1_pod_spec.py:21(V1PodSpec)
+        6    0.000    0.000    0.000    0.000 help_text.py:3(get_help)
+        1    0.000    0.000    0.000    0.000 questions.py:1()
+      168    0.000    0.000    0.000    0.000 {method 'pop' of 'collections.deque' objects}
+        1    0.000    0.000    0.000    0.000 serializer.py:42(Serializer)
+      126    0.000    0.000    0.000    0.000 argparse.py:218(__init__)
+       60    0.000    0.000    0.000    0.000 core.py:791(preParse)
+        3    0.000    0.000    0.000    0.000 subprocess.py:1257(wait)
+       12    0.000    0.000    0.000    0.000 text.py:402(plain)
+      121    0.000    0.000    0.000    0.000 {built-in method sys._getframe}
+        1    0.000    0.000    0.000    0.000 v1_mutating_webhook.py:1()
+        1    0.000    0.000    0.000    0.000 queues.py:1()
+        1    0.000    0.000    0.000    0.000 schema.py:1()
+       43    0.000    0.000    0.000    0.000 _make.py:1546(_generate_unique_filename)
+       43    0.000    0.000    0.000    0.000 _helpers.py:42(decorator)
+        2    0.000    0.000    0.000    0.000 subprocess.py:1280(_close_pipe_fds)
+        1    0.000    0.000    0.000    0.000 extensions.py:1503(SubjectAlternativeName)
+       14    0.000    0.000    0.000    0.000 typing.py:1621()
+        1    0.000    0.000    0.000    0.000 runners.py:15(_State)
+    82/80    0.000    0.000    0.000    0.000 results.py:173(__init__)
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_persistent_volume_claim_retention_policy.py:1()
+        1    0.000    0.000    0.000    0.000 types.py:422(_NumberRangeBase)
+        8    0.000    0.000    0.000    0.000 six.py:96(__get__)
+        1    0.000    0.000    0.000    0.000 revocation.py:1()
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1alpha1_api.py:1()
+        1    0.000    0.000    0.000    0.000 _make.py:2832(__init__)
+        1    0.000    0.000    0.000    0.000 _strptime.py:84()
+        1    0.000    0.000    0.000    0.000 v1_host_ip.py:1()
+        2    0.000    0.000    0.000    0.000 sysconfig.py:142(joinuser)
+        3    0.000    0.000    0.000    0.000 console.py:232(reset_height)
+        1    0.000    0.000    0.000    0.000 gzip.py:1()
+       16    0.000    0.000    0.000    0.000 argparse.py:2526(_get_value)
+       23    0.000    0.000    0.000    0.000 typing.py:1244(__call__)
+        1    0.000    0.000    0.000    0.000 extensions.py:1584(IssuerAlternativeName)
+        1    0.000    0.000    0.000    0.000 _cipheralgorithm.py:1()
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_status.py:1()
+       15    0.000    0.000    0.000    0.000 inspect.py:867(cleandoc)
+        1    0.000    0.000    0.000    0.000 v1_service_spec.py:21(V1ServiceSpec)
+        1    0.000    0.000    0.000    0.000 v1_replication_controller.py:1()
+        1    0.000    0.000    0.000    0.000 nodes.py:319(For)
+        1    0.000    0.000    0.000    0.000 nodes.py:911(Compare)
+        1    0.000    0.000    0.000    0.000 v1_json_schema_props.py:1()
+      156    0.000    0.000    0.000    0.000 {method 'bit_length' of 'int' objects}
+        1    0.000    0.000    0.000    0.000 tests.py:1()
+        1    0.000    0.000    0.000    0.000 extensions.py:1806(PrecertificateSignedCertificateTimestamps)
+      146    0.000    0.000    0.000    0.000 dataclasses.py:1101()
+        1    0.000    0.000    0.000    0.000 nodes.py:696(CondExpr)
+        1    0.000    0.000    0.000    0.000 csp.py:19(ContentSecurityPolicy)
+        1    0.000    0.000    0.000    0.000 validate.py:1()
+        1    0.000    0.000    0.000    0.000 console.py:304(ScreenUpdate)
+        1    0.000    0.000    0.000    0.000 _adapters.py:42(CompatibilityFiles)
+        1    0.000    0.000    0.000    0.000 renderer.py:1()
+        9    0.000    0.000    0.000    0.000 :778(__contains__)
+        2    0.000    0.000    0.000    0.000 provider.py:1()
+        1    0.000    0.000    0.000    0.000 retryhandler.py:1()
+        1    0.000    0.000    0.000    0.000 nodes.py:337(If)
+       12    0.000    0.000    0.000    0.000 core.py:286(wrapper)
+       11    0.000    0.000    0.000    0.000 control.py:187(strip_control_codes)
+        8    0.000    0.000    0.000    0.000 __init__.py:315(_subx)
+        1    0.000    0.000    0.000    0.000 highlighter.py:17(Highlighter)
+        3    0.000    0.000    0.000    0.000 configfile.py:479()
+        1    0.000    0.000    0.000    0.000 style.py:16(_Bit)
+       14    0.000    0.000    0.000    0.000 _make.py:842()
+        1    0.000    0.000    0.000    0.000 v1beta1_type_checking.py:1()
+        1    0.000    0.000    0.000    0.000 http.py:124(COEP)
+       33    0.000    0.000    0.000    0.000 argparse.py:1405(set_defaults)
+        1    0.000    0.000    0.000    0.000 nodes.py:347(Macro)
+        1    0.000    0.000    0.000    0.000 http.py:823(HttpRequest)
+      106    0.000    0.000    0.000    0.000 six.py:182(_add_module)
+      138    0.000    0.000    0.000    0.000 {method 'release' of '_thread.RLock' objects}
+      163    0.000    0.000    0.000    0.000 {method 'to_bytes' of 'int' objects}
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1_service_reference.py:1()
+        6    0.000    0.000    0.000    0.000 text.py:1130()
+        3    0.000    0.000    0.000    0.000 containers.py:105(extend)
+        4    0.000    0.000    0.000    0.000 functools.py:188(total_ordering)
+        2    0.000    0.000    0.000    0.000 connapp.py:464(__call__)
+        2    0.000    0.000    0.000    0.000 core.py:550(set_results_name)
+        1    0.000    0.000    0.000    0.000 nodes.py:303(Output)
+        1    0.000    0.000    0.000    0.000 extensions.py:98(ExtensionType)
+        1    0.000    0.000    0.000    0.000 helpers.py:658(OpAssoc)
+        1    0.000    0.000    0.000    0.000 padding.py:19(Padding)
+        1    0.000    0.000    0.000    0.000 :44(_get_exports_list)
+        1    0.000    0.000    0.000    0.000 v1_mutating_webhook.py:21(V1MutatingWebhook)
+        1    0.000    0.000    0.000    0.000 v1_volume.py:1()
+        1    0.000    0.000    0.000    0.000 _endian.py:1()
+        1    0.000    0.000    0.000    0.000 loaders.py:539(ChoiceLoader)
+        1    0.000    0.000    0.000    0.000 _collections.py:41(_Sentinel)
+        1    0.000    0.000    0.000    0.000 oauth2_session.py:1()
+        2    0.000    0.000    0.000    0.000 ed25519.py:1()
+       15    0.000    0.000    0.000    0.000 typing.py:2372(get_origin)
+       34    0.000    0.000    0.000    0.000 ipaddress.py:1888(_split_scope_id)
+        1    0.000    0.000    0.000    0.000 core.py:708(__init__)
+        3    0.000    0.000    0.000    0.000 subprocess.py:1965(_wait)
+        1    0.000    0.000    0.000    0.000 console.py:338(__exit__)
+        2    0.000    0.000    0.000    0.000 {method 'update' of 'collections.OrderedDict' objects}
+        1    0.000    0.000    0.000    0.000 core.py:2463(Keyword)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_request.py:1()
+       42    0.000    0.000    0.000    0.000 core.py:2425(_generateDefaultName)
+        1    0.000    0.000    0.000    0.000 server.py:146(BaseHTTPRequestHandler)
+       20    0.000    0.000    0.000    0.000 enum.py:1630(_simple_enum)
+       44    0.000    0.000    0.000    0.000 unicode.py:17()
+        1    0.000    0.000    0.000    0.000 v1_ephemeral_container.py:1()
+        3    0.000    0.000    0.000    0.000 pathlib.py:1112(mkdir)
+        1    0.000    0.000    0.000    0.000 implicit.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_claim.py:1()
+        1    0.000    0.000    0.000    0.000 compiler.py:157(MacroRef)
+        1    0.000    0.000    0.000    0.000 color_triplet.py:4(ColorTriplet)
+        1    0.000    0.000    0.000    0.000 v1_host_ip.py:21(V1HostIP)
+        4    0.000    0.000    0.000    0.000 core.py:5093(__init__)
+       18    0.000    0.000    0.000    0.000 results.py:451(__iadd__)
+       12    0.000    0.000    0.000    0.000 containers.py:75(__iter__)
+        1    0.000    0.000    0.000    0.000 console.py:870(end_capture)
+        1    0.000    0.000    0.000    0.000 paginate.py:1()
+        2    0.000    0.000    0.000    0.000 request_validator.py:1()
+        2    0.000    0.000    0.000    0.000 ed448.py:1()
+        1    0.000    0.000    0.000    0.000 logging.py:1()
+        7    0.000    0.000    0.000    0.000 util.py:251(_inner)
+        6    0.000    0.000    0.000    0.000 __init__.py:127(mutator)
+        1    0.000    0.000    0.000    0.000 _strptime.py:90()
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_persistent_volume_claim_retention_policy.py:21(V1StatefulSetPersistentVolumeClaimRetentionPolicy)
+        1    0.000    0.000    0.000    0.000 introspect.py:1()
+        3    0.000    0.000    0.000    0.000 core.py:4953(__init__)
+        1    0.000    0.000    0.000    0.000 feedparser.py:184(close)
+        1    0.000    0.000    0.000    0.000 extensions.py:979(ExtendedKeyUsage)
+       31    0.000    0.000    0.000    0.000 _adapters.py:43(redent)
+        1    0.000    0.000    0.000    0.000 _strptime.py:83()
+        1    0.000    0.000    0.000    0.000 datetime.py:2297(timezone)
+        6    0.000    0.000    0.000    0.000 __init__.py:256(_register_at_fork_reinit_lock)
+      130    0.000    0.000    0.000    0.000 core.py:3992()
+        2    0.000    0.000    0.000    0.000 x25519.py:1()
+        1    0.000    0.000    0.000    0.000 _compat.py:43(__init__)
+        1    0.000    0.000    0.000    0.000 _monitor.py:12(__init__)
+      123    0.000    0.000    0.000    0.000 {method 'keys' of 'dict' objects}
+      127    0.000    0.000    0.000    0.000 core.py:2412(__getnewargs__)
+        4    0.000    0.000    0.000    0.000 utils.py:1441(instance_cache)
+        1    0.000    0.000    0.000    0.000 keyboard.py:197(get_leading_prefixes)
+        1    0.000    0.000    0.000    0.000 __init__.py:22()
+        1    0.000    0.000    0.000    0.000 v1_replication_controller.py:21(V1ReplicationController)
+       10    0.000    0.000    0.000    0.000 __init__.py:1646(addHandler)
+       14    0.000    0.000    0.000    0.000 calendar.py:79(__getitem__)
+        1    0.000    0.000    0.000    0.000 transports.py:1()
+       38    0.000    0.000    0.000    0.000 {method 'strftime' of 'datetime.date' objects}
+       38    0.000    0.000    0.000    0.000 __init__.py:23()
+        1    0.000    0.000    0.000    0.000 v1_lease_spec.py:1()
+        1    0.000    0.000    0.000    0.000 timeout.py:14(_TYPE_DEFAULT)
+        1    0.000    0.000    0.000    0.000 wrappers.py:1()
+        1    0.000    0.000    0.000    0.000 refresh_token.py:1()
+        1    0.000    0.000    0.000    0.000 client_credentials.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_template.py:1()
+        1    0.000    0.000    0.000    0.000 configfile.py:16(NoAliasDumper)
+        1    0.000    0.000    0.000    0.000 _strptime.py:91()
+        1    0.000    0.000    0.000    0.000 utils.py:3475(JSONFileCache)
+        1    0.000    0.000    0.000    0.000 _serialization.py:15(PBES)
+        1    0.000    0.000    0.000    0.000 keyboard.py:213()
+        1    0.000    0.000    0.000    0.000 v1beta1_cluster_trust_bundle.py:1()
+        1    0.000    0.000    0.000    0.000 resource_owner_password_credentials.py:1()
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_status.py:21(V1StatefulSetStatus)
+        1    0.000    0.000    0.000    0.000 readers.py:16(__init__)
+        1    0.000    0.000    0.000    0.000 v1_daemon_set.py:1()
+        1    0.000    0.000    0.000    0.000 v1_taint.py:1()
+        1    0.000    0.000    0.000    0.000 console.py:556(RenderHook)
+        3    0.000    0.000    0.000    0.000 six.py:882(wrapper)
+        1    0.000    0.000    0.000    0.000 core_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_named_rule_with_operations.py:1()
+        1    0.000    0.000    0.000    0.000 v1_endpoint_slice.py:1()
+        1    0.000    0.000    0.000    0.000 v1_json_schema_props.py:21(V1JSONSchemaProps)
+       19    0.000    0.000    0.000    0.000 asn1.py:87(__init__)
+        1    0.000    0.000    0.000    0.000 threading.py:1402(__init__)
+        1    0.000    0.000    0.000    0.000 core.py:4649(IndentedBlock)
+        1    0.000    0.000    0.000    0.000 v1_flow_schema_condition.py:1()
+       86    0.000    0.000    0.000    0.000 __init__.py:1273(append)
+        2    0.000    0.000    0.000    0.000 __init__.py:305(_compile_repl)
+        1    0.000    0.000    0.000    0.000 runtime.py:794(Undefined)
+       25    0.000    0.000    0.000    0.000 csp.py:6(csp_property)
+        1    0.000    0.000    0.000    0.000 testing.py:1()
+        9    0.000    0.000    0.000    0.000 typing.py:316(_flatten_literal_params)
+        1    0.000    0.000    0.000    0.000 utils.py:53(ClientAuthType)
+        2    0.000    0.000    0.000    0.000 x448.py:1()
+        2    0.000    0.000    0.000    0.000 datetime.py:765(__neg__)
+       12    0.000    0.000    0.000    0.000 core.py:5980()
+        1    0.000    0.000    0.000    0.000 v1_delete_options.py:1()
+        1    0.000    0.000    0.000    0.000 eventstream.py:76(DecodeUtils)
+        1    0.000    0.000    0.000    0.000 functions.py:67(Functions)
+        1    0.000    0.000    0.000    0.000 v1_limited_priority_level_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 taskgroups.py:1()
+        3    0.000    0.000    0.000    0.000 typing.py:1873(_get_protocol_attrs)
+        1    0.000    0.000    0.000    0.000 certificate_transparency.py:14(LogEntryType)
+       31    0.000    0.000    0.000    0.000 sequences.py:39(named_pattern)
+        2    0.000    0.000    0.000    0.000 cli.py:366(with_appcontext)
+        1    0.000    0.000    0.000    0.000 v1_type_checking.py:1()
+        3    0.000    0.000    0.000    0.000 configfile.py:480()
+        1    0.000    0.000    0.000    0.000 exc.py:1()
+        1    0.000    0.000    0.000    0.000 v1_managed_fields_entry.py:1()
+       26    0.000    0.000    0.000    0.000 __init__.py:29(read)
+        1    0.000    0.000    0.000    0.000 tz.py:1470(__get_gettz)
+        1    0.000    0.000    0.000    0.000 validators.py:90(_InstanceOfValidator)
+        1    0.000    0.000    0.000    0.000 representer.py:134(SafeRepresenter)
+        1    0.000    0.000    0.000    0.000 extensions.py:1081(TLSFeatureType)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:1()
+        2    0.000    0.000    0.000    0.000 functools.py:800(singledispatch)
+        1    0.000    0.000    0.000    0.000 v1_downward_api_volume_source.py:1()
+        7    0.000    0.000    0.000    0.000 functools.py:660(_c3_merge)
+        1    0.000    0.000    0.000    0.000 version_info.py:1()
+      116    0.000    0.000    0.000    0.000 {method 'isdigit' of 'str' objects}
+        2    0.000    0.000    0.000    0.000 typing.py:1890(_is_callable_members_only)
+       14    0.000    0.000    0.000    0.000 _make.py:998(_make_getstate_setstate)
+       41    0.000    0.000    0.000    0.000 enum.py:349(__init__)
+       93    0.000    0.000    0.000    0.000 local.py:307(__set_name__)
+       22    0.000    0.000    0.000    0.000 :254(_requires_builtin_wrapper)
+        1    0.000    0.000    0.000    0.000 __init__.py:18()
+        1    0.000    0.000    0.000    0.000 __init__.py:1243(__init__)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_request.py:21(V1beta1DeviceRequest)
+        3    0.000    0.000    0.000    0.000 _IntegerGMP.py:733(gcd)
+        2    0.000    0.000    0.000    0.000 console.py:819(_exit_buffer)
+        1    0.000    0.000    0.000    0.000 v1_storage_os_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 connection.py:114(_has_ipv6)
+        1    0.000    0.000    0.000    0.000 fractions.py:38(Fraction)
+        1    0.000    0.000    0.000    0.000 threading.py:1044(_stop)
+        1    0.000    0.000    0.000    0.000 resource_v1beta1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_sub_request.py:1()
+        1    0.000    0.000    0.000    0.000 v1_volume_device.py:1()
+        1    0.000    0.000    0.000    0.000 v1_horizontal_pod_autoscaler_status.py:1()
+        2    0.000    0.000    0.000    0.000 _doc_utils.py:68(copy)
+        1    0.000    0.000    0.000    0.000 storage_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_claim.py:21(V1beta1DeviceClaim)
+        1    0.000    0.000    0.000    0.000 v1_eviction.py:1()
+        1    0.000    0.000    0.000    0.000 http.py:1165(BatchHttpRequest)
+      110    0.000    0.000    0.000    0.000 ipaddress.py:574(__int__)
+        2    0.000    0.000    0.000    0.000 argparse.py:297(format_help)
+        3    0.000    0.000    0.000    0.000 runtime.py:136(_dict_method_all)
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1_service_reference.py:21(AdmissionregistrationV1ServiceReference)
+        1    0.000    0.000    0.000    0.000 style.py:21(BaseStyle)
+        1    0.000    0.000    0.000    0.000 _sysconfigdata__aarch64-linux-gnu.py:1()
+        1    0.000    0.000    0.000    0.000 request.py:1694(URLopener)
+        1    0.000    0.000    0.000    0.000 signature.py:1()
+       19    0.000    0.000    0.000    0.000 keyboard.py:114()
+        2    0.000    0.000    0.000    0.000 console.py:881(push_theme)
+       10    0.000    0.000    0.000    0.000 :140(basename)
+       31    0.000    0.000    0.000    0.000 {method 'tolist' of 'memoryview' objects}
+        1    0.000    0.000    0.000    0.000 main.py:32(MarkdownIt)
+       15    0.000    0.000    0.000    0.000 _make.py:1304(attrs)
+        1    0.000    0.000    0.000    0.000 v1_iscsi_persistent_volume_source.py:1()
+        4    0.000    0.000    0.000    0.000 hooks.py:62(__init__)
+       79    0.000    0.000    0.000    0.000 {method 'insert' of 'list' objects}
+        1    0.000    0.000    0.000    0.000 v1_validating_webhook_configuration_list.py:1()
+        1    0.000    0.000    0.000    0.000 compress.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_class_list.py:1()
+        1    0.000    0.000    0.000    0.000 composer.py:1()
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_status.py:1()
+        1    0.000    0.000    0.000    0.000 import_export_handler.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_system_info.py:1()
+       16    0.000    0.000    0.000    0.000 utils.py:98(__getattr__)
+        1    0.000    0.000    0.000    0.000 pager.py:1()
+        1    0.000    0.000    0.000    0.000 tokenize.py:392(open)
+        1    0.000    0.000    0.000    0.000 file_storage.py:1()
+        1    0.000    0.000    0.000    0.000 _cipheralgorithm.py:13(CipherAlgorithm)
+        2    0.000    0.000    0.000    0.000 threading.py:849(__init__)
+        3    0.000    0.000    0.000    0.000 _common.py:132(_validate_fromutc_inputs)
+       15    0.000    0.000    0.000    0.000 number.py:475(bytes_to_long)
+        1    0.000    0.000    0.000    0.000 v1_volume.py:21(V1Volume)
+        1    0.000    0.000    0.000    0.000 nodes.py:817(Call)
+        1    0.000    0.000    0.000    0.000 certificate_transparency.py:19(Version)
+        1    0.000    0.000    0.000    0.000 v1_validation_rule.py:1()
+        1    0.000    0.000    0.000    0.000 regions.py:458(EndpointRulesetResolver)
+       26    0.000    0.000    0.000    0.000 _make.py:2671(__init__)
+        1    0.000    0.000    0.000    0.000 core.py:681(nodes)
+        6    0.000    0.000    0.000    0.000 :1311(__iter__)
+        1    0.000    0.000    0.000    0.000 nodes.py:623(Tuple)
+        2    0.000    0.000    0.000    0.000 _parser.py:997(parse_template)
+        1    0.000    0.000    0.000    0.000 _conditional.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device.py:1()
+        3    0.000    0.000    0.000    0.000 :923(is_package)
+        1    0.000    0.000    0.000    0.000 v1beta1_cluster_trust_bundle.py:21(V1beta1ClusterTrustBundle)
+        1    0.000    0.000    0.000    0.000 v1_ingress_tls.py:1()
+        1    0.000    0.000    0.000    0.000 message.py:243(get_payload)
+        1    0.000    0.000    0.000    0.000 loaders.py:225(Loader)
+        1    0.000    0.000    0.000    0.000 v1_delete_options.py:21(V1DeleteOptions)
+       40    0.000    0.000    0.000    0.000 parse.py:827(__getattr__)
+        1    0.000    0.000    0.000    0.000 v1_taint.py:21(V1Taint)
+        4    0.000    0.000    0.000    0.000 core.py:705(add_parse_action)
+       80    0.000    0.000    0.000    0.000 token.py:24(__init__)
+        1    0.000    0.000    0.000    0.000 v1_daemon_set.py:21(V1DaemonSet)
+        7    0.000    0.000    0.000    0.000 local.py:478(__init__)
+        2    0.000    0.000    0.000    0.000 zipfile.py:1245(__init__)
+        1    0.000    0.000    0.000    0.000 config_handler.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:39(__init__)
+        1    0.000    0.000    0.000    0.000 v1_type_checking.py:21(V1TypeChecking)
+        1    0.000    0.000    0.000    0.000 _factories.py:1()
+       52    0.000    0.000    0.000    0.000 dataclasses.py:410()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_toleration.py:1()
+        1    0.000    0.000    0.000    0.000 range.py:1()
+        1    0.000    0.000    0.000    0.000 lexer.py:254(Failure)
+        1    0.000    0.000    0.000    0.000 base.py:119(Attributes)
+        1    0.000    0.000    0.000    0.000 uuid.py:85(UUID)
+        1    0.000    0.000    0.000    0.000 _IntegerGMP.py:155(IntegerGMP)
+       41    0.000    0.000    0.000    0.000 _make.py:1090()
+        1    0.000    0.000    0.000    0.000 v1_csi_storage_capacity.py:1()
+        1    0.000    0.000    0.000    0.000 ssl.py:484(SSLContext)
+       99    0.000    0.000    0.000    0.000 util.py:203(no_escape_re_range_char)
+        1    0.000    0.000    0.000    0.000 v1_horizontal_pod_autoscaler_list.py:1()
+        1    0.000    0.000    0.000    0.000 nodes.py:294(Template)
+       23    0.000    0.000    0.000    0.000 core.py:4295()
+        1    0.000    0.000    0.000    0.000 segment.py:671(Segments)
+       13    0.000    0.000    0.000    0.000 _policybase.py:94(_append_doc)
+       18    0.000    0.000    0.000    0.000 utils.py:89(internalcode)
+        1    0.000    0.000    0.000    0.000 ssl.py:1006(SSLSocket)
+        1    0.000    0.000    0.000    0.000 ansi.py:120(AnsiDecoder)
+        6    0.000    0.000    0.000    0.000 warnings.py:165(simplefilter)
+        1    0.000    0.000    0.000    0.000 typing.py:2019(_proto_hook)
+       95    0.000    0.000    0.000    0.000 _doc_utils.py:75(__init__)
+        1    0.000    0.000    0.000    0.000 v1_managed_fields_entry.py:21(V1ManagedFieldsEntry)
+        1    0.000    0.000    0.000    0.000 v1_lifecycle.py:1()
+        1    0.000    0.000    0.000    0.000 cyaml.py:85(CDumper)
+       21    0.000    0.000    0.000    0.000 _IntegerGMP.py:360(is_negative)
+        1    0.000    0.000    0.000    0.000 __init__.py:97(SymbolFilter)
+        1    0.000    0.000    0.000    0.000 tz.py:1545(__init__)
+       32    0.000    0.000    0.000    0.000 terminal.py:302()
+        1    0.000    0.000    0.000    0.000 v1beta1_named_rule_with_operations.py:21(V1beta1NamedRuleWithOperations)
+        1    0.000    0.000    0.000    0.000 _next_gen.py:1()
+       76    0.000    0.000    0.000    0.000 argparse.py:628()
+        1    0.000    0.000    0.000    0.000 events.py:203(AbstractEventLoop)
+        3    0.000    0.000    0.000    0.000 compiler.py:82(_make_unop)
+        1    0.000    0.000    0.000    0.000 coordination_v1beta1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_condition.py:1()
+       14    0.000    0.000    0.000    0.000 __init__.py:144(_check_size)
+        4    0.000    0.000    0.000    0.000 _IntegerGMP.py:388(__mul__)
+        3    0.000    0.000    0.000    0.000 core.py:2441(__init__)
+       79    0.000    0.000    0.000    0.000 signal.py:21()
+        1    0.000    0.000    0.000    0.000 v1_csi_driver.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_limited_priority_level_configuration.py:21(V1LimitedPriorityLevelConfiguration)
+        3    0.000    0.000    0.000    0.000 __init__.py:576(__init__)
+        1    0.000    0.000    0.000    0.000 v1_token_request_spec.py:1()
+        3    0.000    0.000    0.000    0.000 dataclasses.py:1223(fields)
+       22    0.000    0.000    0.000    0.000 dataclasses.py:548()
+        2    0.000    0.000    0.000    0.000 console.py:2008(_check_buffer)
+       78    0.000    0.000    0.000    0.000 signal.py:16()
+        3    0.000    0.000    0.000    0.000 datetime.py:1677(__new__)
+        1    0.000    0.000    0.000    0.000 v1_job_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_deployment_list.py:1()
+        1    0.000    0.000    0.000    0.000 console.py:206(update_width)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_sub_request.py:21(V1alpha3DeviceSubRequest)
+        2    0.000    0.000    0.000    0.000 argparse.py:2510()
+        9    0.000    0.000    0.000    0.000 asn1.py:291(__init__)
+       10    0.000    0.000    0.000    0.000 inspect.py:2075(_signature_is_functionlike)
+        1    0.000    0.000    0.000    0.000 base.py:36(Client)
+       49    0.000    0.000    0.000    0.000 enum.py:116(_iter_bits_lsb)
+        1    0.000    0.000    0.000    0.000 ai.py:38(ai)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_pool.py:1()
+       13    0.000    0.000    0.000    0.000 local.py:358(__init__)
+       10    0.000    0.000    0.000    0.000 base.py:6(__init__)
+        1    0.000    0.000    0.000    0.000 version_info.py:21(VersionInfo)
+        1    0.000    0.000    0.000    0.000 v2_metric_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_volume_error.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_disruption_budget_status.py:1()
+        2    0.000    0.000    0.000    0.000 subprocess.py:1641(_get_handles)
+        2    0.000    0.000    0.000    0.000 configfile.py:543()
+        1    0.000    0.000    0.000    0.000 core.py:3488(__init__)
+        1    0.000    0.000    0.000    0.000 v1_downward_api_volume_source.py:21(V1DownwardAPIVolumeSource)
+        1    0.000    0.000    0.000    0.000 testing.py:17(pyparsing_test)
+        1    0.000    0.000    0.000    0.000 v1_ephemeral_container.py:21(V1EphemeralContainer)
+        1    0.000    0.000    0.000    0.000 v2_metric_value_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_label_selector.py:1()
+        1    0.000    0.000    0.000    0.000 uri_validate.py:1()
+        1    0.000    0.000    0.000    0.000 v1_object_field_selector.py:1()
+        1    0.000    0.000    0.000    0.000 rbac_v1_subject.py:1()
+       23    0.000    0.000    0.000    0.000 typing.py:1794()
+        4    0.000    0.000    0.000    0.000 enum.py:1748()
+       11    0.000    0.000    0.000    0.000 base.py:541(signal)
+        3    0.000    0.000    0.000    0.000 {built-in method _ctypes.POINTER}
+        1    0.000    0.000    0.000    0.000 _compression.py:1()
+        1    0.000    0.000    0.000    0.000 v1_controller_revision.py:1()
+        1    0.000    0.000    0.000    0.000 utils.py:153(Enum)
+        1    0.000    0.000    0.000    0.000 hr.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_selector.py:1()
+        1    0.000    0.000    0.000    0.000 validators.py:594(_NotValidator)
+        1    0.000    0.000    0.000    0.000 v1_csi_node_driver.py:1()
+        1    0.000    0.000    0.000    0.000 _IntegerGMP.py:400(__floordiv__)
+        1    0.000    0.000    0.000    0.000 v1_nfs_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_list.py:1()
+        3    0.000    0.000    0.000    0.000 __init__.py:36(__deprecate_private_class)
+        1    0.000    0.000    0.000    0.000 base_tasks.py:1()
+        1    0.000    0.000    0.000    0.000 v1_container.py:1()
+       22    0.000    0.000    0.000    0.000 _policybase.py:104()
+        4    0.000    0.000    0.000    0.000 _strptime.py:26(_getlang)
+        1    0.000    0.000    0.000    0.000 v2_metric_status.py:1()
+       31    0.000    0.000    0.000    0.000 message.py:506(set_raw)
+        1    0.000    0.000    0.000    0.000 code.py:1()
+        1    0.000    0.000    0.000    0.000 v1_iscsi_persistent_volume_source.py:21(V1ISCSIPersistentVolumeSource)
+        2    0.000    0.000    0.000    0.000 pathlib.py:758(joinpath)
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_status.py:21(V1DaemonSetStatus)
+        1    0.000    0.000    0.000    0.000 v1_node_system_info.py:21(V1NodeSystemInfo)
+        1    0.000    0.000    0.000    0.000 emitter.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint_rule_list.py:1()
+       86    0.000    0.000    0.000    0.000 :409(__subclasshook__)
+        1    0.000    0.000    0.000    0.000 tokens.py:173(SSOTokenProvider)
+        3    0.000    0.000    0.000    0.000 core.py:3624(__init__)
+        9    0.000    0.000    0.000    0.000 asn1.py:58(set_bookmark)
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy.py:1()
+        1    0.000    0.000    0.000    0.000 v1_job_spec.py:1()
+       26    0.000    0.000    0.000    0.000 lexer.py:146()
+        1    0.000    0.000    0.000    0.000 core.py:5325(__init__)
+        1    0.000    0.000    0.000    0.000 v1_network_policy_peer.py:1()
+        1    0.000    0.000    0.000    0.000 heading.py:1()
+       83    0.000    0.000    0.000    0.000 {built-in method sys.getrecursionlimit}
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_list.py:1()
+        1    0.000    0.000    0.000    0.000 resource_v1beta1_api.py:27(ResourceV1beta1Api)
+        1    0.000    0.000    0.000    0.000 v1beta1_counter.py:1()
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_scale_status.py:1()
+        5    0.000    0.000    0.000    0.000 lexer.py:43(__new__)
+       23    0.000    0.000    0.000    0.000 :146(update_abstractmethods)
+        1    0.000    0.000    0.000    0.000 scrypt.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device.py:21(V1beta2Device)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_attribute.py:1()
+        1    0.000    0.000    0.000    0.000 request_token.py:1()
+        1    0.000    0.000    0.000    0.000 admissionregistration_api.py:1()
+        1    0.000    0.000    0.000    0.000 feedparser.py:101(push)
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_spec.py:1()
+        2    0.000    0.000    0.000    0.000 subprocess.py:1952(_try_wait)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_spec.py:21(V1PersistentVolumeSpec)
+        1    0.000    0.000    0.000    0.000 v1beta1_service_cidr.py:1()
+        1    0.000    0.000    0.000    0.000 service_account.py:89(Credentials)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_slice_list.py:1()
+        1    0.000    0.000    0.000    0.000 base.py:27(Signal)
+        1    0.000    0.000    0.000    0.000 v1_modify_volume_status.py:1()
+       24    0.000    0.000    0.000    0.000 inspect.py:292(isclass)
+       28    0.000    0.000    0.000    0.000 :60(__getattr__)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:699(EndpointProvider)
+        2    0.000    0.000    0.000    0.000 _date.py:11(date_form)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_subresource_scale.py:1()
+       75    0.000    0.000    0.000    0.000 _make.py:1278(_determine_whether_to_implement)
+       53    0.000    0.000    0.000    0.000 {built-in method posix._path_normpath}
+        1    0.000    0.000    0.000    0.000 v1_limit_range.py:1()
+       24    0.000    0.000    0.000    0.000 results.py:212(__getitem__)
+        6    0.000    0.000    0.000    0.000 core.py:3530(__init__)
+        1    0.000    0.000    0.000    0.000 rule.py:1()
+        1    0.000    0.000    0.000    0.000 tasks.py:78(Task)
+        2    0.000    0.000    0.000    0.000 subprocess.py:1090(__exit__)
+        1    0.000    0.000    0.000    0.000 __init__.py:264(_reset_cache)
+        1    0.000    0.000    0.000    0.000 scheduling_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 fence.py:1()
+       38    0.000    0.000    0.000    0.000 enum.py:433()
+        1    0.000    0.000    0.000    0.000 v1_rolling_update_deployment.py:1()
+        1    0.000    0.000    0.000    0.000 console.py:363(__enter__)
+        1    0.000    0.000    0.000    0.000 v1_probe.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_condition.py:1()
+        5    0.000    0.000    0.000    0.000 core.py:4639(_generateDefaultName)
+        1    0.000    0.000    0.000    0.000 request.py:39(_TYPE_FAILEDTELL)
+        1    0.000    0.000    0.000    0.000 v1_cron_job_status.py:1()
+        1    0.000    0.000    0.000    0.000 pprint.py:1()
+        3    0.000    0.000    0.000    0.000 core.py:1724(suppress)
+        1    0.000    0.000    0.000    0.000 _make.py:3030(_AndValidator)
+        1    0.000    0.000    0.000    0.000 v1_validating_webhook.py:1()
+        1    0.000    0.000    0.000    0.000 ipaddress.py:1280(IPv4Address)
+        1    0.000    0.000    0.000    0.000 v1_cluster_role_binding.py:1()
+       85    0.000    0.000    0.000    0.000 _compat_pickle.py:167()
+        1    0.000    0.000    0.000    0.000 name.py:33()
+        2    0.000    0.000    0.000    0.000 console.py:2023(_write_buffer)
+       14    0.000    0.000    0.000    0.000 hooks.py:39(__get__)
+        1    0.000    0.000    0.000    0.000 v1alpha2_lease_candidate_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_spec.py:1()
+        1    0.000    0.000    0.000    0.000 schema.py:71(Schemas)
+       66    0.000    0.000    0.000    0.000 typing.py:2821()
+        1    0.000    0.000    0.000    0.000 model.py:295(ServiceModel)
+        1    0.000    0.000    0.000    0.000 protocols.py:1()
+        2    0.000    0.000    0.000    0.000 pathlib.py:531(_make_child)
+        1    0.000    0.000    0.000    0.000 v1_job_list.py:21(V1JobList)
+        1    0.000    0.000    0.000    0.000 base_subprocess.py:10(BaseSubprocessTransport)
+       85    0.000    0.000    0.000    0.000 terminal.py:384(does_styling)
+        1    0.000    0.000    0.000    0.000 v1_csi_driver.py:21(V1CSIDriver)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_class_list.py:1()
+        6    0.000    0.000    0.000    0.000 platform.py:914(system)
+        3    0.000    0.000    0.000    0.000 functools.py:841(_is_union_type)
+        1    0.000    0.000    0.000    0.000 apiextensions_v1_api.py:1()
+        4    0.000    0.000    0.000    0.000 functools.py:191()
+       25    0.000    0.000    0.000    0.000 _doc_utils.py:276(plural)
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_condition.py:21(V1alpha1StorageVersionCondition)
+        1    0.000    0.000    0.000    0.000 RSA.py:163(u)
+       13    0.000    0.000    0.000    0.000 _raw_api.py:235(c_uint8_ptr)
+        1    0.000    0.000    0.000    0.000 signature_only.py:1()
+        2    0.000    0.000    0.000    0.000 argparse.py:224(format_help)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_selector.py:21(V1beta2DeviceSelector)
+        1    0.000    0.000    0.000    0.000 v1_ingress_tls.py:21(V1IngressTLS)
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request.py:1()
+        1    0.000    0.000    0.000    0.000 authorization.py:18(AuthorizationEndpoint)
+        1    0.000    0.000    0.000    0.000 _serialization.py:54(ParameterFormat)
+        1    0.000    0.000    0.000    0.000 list.py:1()
+        1    0.000    0.000    0.000    0.000 base.py:47(Signer)
+        2    0.000    0.000    0.000    0.000 platform.py:1106(python_implementation)
+        1    0.000    0.000    0.000    0.000 iam.py:1()
+        2    0.000    0.000    0.000    0.000 _helpers.py:1()
+       16    0.000    0.000    0.000    0.000 {built-in method posix.lstat}
+        1    0.000    0.000    0.000    0.000 v1beta1_device_toleration.py:21(V1beta1DeviceToleration)
+        1    0.000    0.000    0.000    0.000 create_from_yaml.py:1()
+        1    0.000    0.000    0.000    0.000 v2_metric_value_status.py:21(V2MetricValueStatus)
+        2    0.000    0.000    0.000    0.000 console.py:2096(_render_buffer)
+        1    0.000    0.000    0.000    0.000 v1alpha1_migration_condition.py:1()
+        1    0.000    0.000    0.000    0.000 core_v1_event_list.py:1()
+       11    0.000    0.000    0.000    0.000 decorators.py:313(_param_memo)
+       34    0.000    0.000    0.000    0.000 {method 'splitlines' of 'str' objects}
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition.py:1()
+        1    0.000    0.000    0.000    0.000 v2_metric_spec.py:21(V2MetricSpec)
+        1    0.000    0.000    0.000    0.000 http.py:664(MediaIoBaseDownload)
+        1    0.000    0.000    0.000    0.000 v1_glusterfs_persistent_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 log.py:1()
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_list.py:21(V1DaemonSetList)
+        1    0.000    0.000    0.000    0.000 server.py:636()
+        1    0.000    0.000    0.000    0.000 v1_token_request_spec.py:21(V1TokenRequestSpec)
+        1    0.000    0.000    0.000    0.000 core.py:717(add_condition)
+        1    0.000    0.000    0.000    0.000 rbac_v1_subject.py:21(RbacV1Subject)
+        4    0.000    0.000    0.000    0.000 core.py:711()
+        1    0.000    0.000    0.000    0.000 ast.py:1()
+        2    0.000    0.000    0.000    0.000 console.py:169(update)
+        1    0.000    0.000    0.000    0.000 history.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_node_driver.py:21(V1CSINodeDriver)
+        2    0.000    0.000    0.000    0.000 _mapping.py:1()
+        4    0.000    0.000    0.000    0.000 locale.py:593(getlocale)
+       61    0.000    0.000    0.000    0.000 {method 'items' of 'mappingproxy' objects}
+        1    0.000    0.000    0.000    0.000 v1_azure_file_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 utils.py:1487(wrapper)
+        1    0.000    0.000    0.000    0.000 credentials.py:2177(SSOProvider)
+        1    0.000    0.000    0.000    0.000 template.py:37(URITemplate)
+        1    0.000    0.000    0.000    0.000 v1_controller_revision.py:21(V1ControllerRevision)
+        1    0.000    0.000    0.000    0.000 v1_role_binding.py:1()
+        1    0.000    0.000    0.000    0.000 unicode.py:31(unicode_set)
+        1    0.000    0.000    0.000    0.000 configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_slice_spec.py:1()
+        6    0.000    0.000    0.000    0.000 :1297(_recalculate)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint_rule_list.py:21(V1alpha3DeviceTaintRuleList)
+        1    0.000    0.000    0.000    0.000 v1_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_self_subject_access_review_spec.py:1()
+        4    0.000    0.000    0.000    0.000 _date.py:41(correct_form)
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_list.py:21(V1beta1ValidatingAdmissionPolicyList)
+       23    0.000    0.000    0.000    0.000 py3compat.py:145(byte_string)
+        7    0.000    0.000    0.000    0.000 warnings.py:181(_add_filter)
+        1    0.000    0.000    0.000    0.000 core.py:3593(__init__)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_consumer_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy.py:21(V1alpha1MutatingAdmissionPolicy)
+        1    0.000    0.000    0.000    0.000 v1_volume_error.py:21(V1VolumeError)
+       60    0.000    0.000    0.000    0.000 _parser.py:160(__delitem__)
+        1    0.000    0.000    0.000    0.000 optimizer.py:1()
+        1    0.000    0.000    0.000    0.000 v1_windows_security_context_options.py:1()
+        1    0.000    0.000    0.000    0.000 coordination_v1beta1_api.py:27(CoordinationV1beta1Api)
+        1    0.000    0.000    0.000    0.000 v1_replication_controller_list.py:1()
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:265(Comment)
+       27    0.000    0.000    0.000    0.000 {built-in method posix.urandom}
+        1    0.000    0.000    0.000    0.000 v1_downward_api_volume_file.py:1()
+        1    0.000    0.000    0.000    0.000 run_handler.py:1()
+        1    0.000    0.000    0.000    0.000 v2_metric_identifier.py:1()
+        1    0.000    0.000    0.000    0.000 probe.py:1()
+        8    0.000    0.000    0.000    0.000 :1293(_get_parent_path)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_slice_list.py:21(V1beta1ResourceSliceList)
+        1    0.000    0.000    0.000    0.000 core_v1_event.py:1()
+        1    0.000    0.000    0.000    0.000 ssl.py:618(options)
+       58    0.000    0.000    0.000    0.000 _make.py:1559()
+        1    0.000    0.000    0.000    0.000 v1_pod_disruption_budget.py:1()
+       27    0.000    0.000    0.000    0.000 dataclasses.py:603()
+        1    0.000    0.000    0.000    0.000 _IntegerGMP.py:563(__and__)
+        1    0.000    0.000    0.000    0.000 v1_scale_status.py:21(V1ScaleStatus)
+        5    0.000    0.000    0.000    0.000 typing.py:1255(__mro_entries__)
+        1    0.000    0.000    0.000    0.000 validators.py:379(_DeepMapping)
+        1    0.000    0.000    0.000    0.000 v1_api_service_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_spec.py:1()
+        1    0.000    0.000    0.000    0.000 utils.py:1617(S3ExpressIdentityCache)
+       20    0.000    0.000    0.000    0.000 parser.py:109(split_opt)
+       56    0.000    0.000    0.000    0.000 backend.py:374(register_cipher_adapter)
+        1    0.000    0.000    0.000    0.000 __init__.py:511(TLRUCache)
+        1    0.000    0.000    0.000    0.000 _list.py:1()
+        1    0.000    0.000    0.000    0.000 profile_handler.py:1()
+        1    0.000    0.000    0.000    0.000 v1_rolling_update_deployment.py:21(V1RollingUpdateDeployment)
+        1    0.000    0.000    0.000    0.000 v1_node_selector_term.py:1()
+        1    0.000    0.000    0.000    0.000 v1_limit_range.py:21(V1LimitRange)
+        1    0.000    0.000    0.000    0.000 serialize.py:207(QuerySerializer)
+        1    0.000    0.000    0.000    0.000 v1beta1_param_ref.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:121(__diag__)
+        1    0.000    0.000    0.000    0.000 v1beta1_type_checking.py:21(V1beta1TypeChecking)
+        4    0.000    0.000    0.000    0.000 uuid.py:139(__init__)
+        2    0.000    0.000    0.000    0.000 _make.py:977(add_repr)
+        1    0.000    0.000    0.000    0.000 v1_pod_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_modify_volume_status.py:21(V1ModifyVolumeStatus)
+        1    0.000    0.000    0.000    0.000 v1alpha1_param_kind.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_subresource_scale.py:21(V1CustomResourceSubresourceScale)
+        1    0.000    0.000    0.000    0.000 lheading.py:1()
+        1    0.000    0.000    0.000    0.000 :619(get_exec_path)
+        4    0.000    0.000    0.000    0.000 {method 'write' of '_io.TextIOWrapper' objects}
+        1    0.000    0.000    0.000    0.000 v1alpha2_lease_candidate_list.py:21(V1alpha2LeaseCandidateList)
+        1    0.000    0.000    0.000    0.000 v1_load_balancer_ingress.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_node_spec.py:1()
+        1    0.000    0.000    0.000    0.000 events_v1_event.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_load_balancer_ingress.py:1()
+       32    0.000    0.000    0.000    0.000 core.py:696()
+        3    0.000    0.000    0.000    0.000 console.py:786(_theme_stack)
+        2    0.000    0.000    0.000    0.000 argparse.py:2519()
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_slice.py:1()
+        1    0.000    0.000    0.000    0.000 v1_job_spec.py:21(V1JobSpec)
+       35    0.000    0.000    0.000    0.000 typing.py:2796()
+       31    0.000    0.000    0.000    0.000 {method 'cast' of 'memoryview' objects}
+        1    0.000    0.000    0.000    0.000 reference.py:1()
+        1    0.000    0.000    0.000    0.000 admissionregistration_api.py:27(AdmissionregistrationApi)
+        1    0.000    0.000    0.000    0.000 revocation.py:19(RevocationEndpoint)
+       41    0.000    0.000    0.000    0.000 _make.py:422()
+        1    0.000    0.000    0.000    0.000 spawnbase.py:1()
+        1    0.000    0.000    0.000    0.000 v1_container.py:21(V1Container)
+        1    0.000    0.000    0.000    0.000 v1beta1_counter.py:21(V1beta1Counter)
+        1    0.000    0.000    0.000    0.000 v1_storage_class.py:1()
+        2    0.000    0.000    0.000    0.000 {built-in method posix.waitpid}
+        1    0.000    0.000    0.000    0.000 utils.py:163(__init__)
+       14    0.000    0.000    0.000    0.000 _make.py:1126(_attach_eq)
+        1    0.000    0.000    0.000    0.000 expect.py:1()
+        7    0.000    0.000    0.000    0.000 typing.py:894(_is_unpacked_typevartuple)
+        1    0.000    0.000    0.000    0.000 v1_pod_condition.py:21(V1PodCondition)
+        1    0.000    0.000    0.000    0.000 v1_stateful_set.py:1()
+       14    0.000    0.000    0.000    0.000 local.py:375(_l_to_r_op)
+        1    0.000    0.000    0.000    0.000 device.py:1()
+        1    0.000    0.000    0.000    0.000 v1_flex_volume_source.py:1()
+       21    0.000    0.000    0.000    0.000 _helpers.py:38(positional)
+        1    0.000    0.000    0.000    0.000 v1_container_status.py:1()
+       14    0.000    0.000    0.000    0.000 _make.py:1691(_make_order)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_volume_mount.py:1()
+        1    0.000    0.000    0.000    0.000 _argparse.py:29(RichHelpFormatter)
+        1    0.000    0.000    0.000    0.000 context_handler.py:1()
+        1    0.000    0.000    0.000    0.000 v1_replication_controller_spec.py:1()
+        1    0.000    0.000    0.000    0.000 plugins.py:1()
+        1    0.000    0.000    0.000    0.000 paragraph.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_spec.py:21(V1beta1ValidatingAdmissionPolicySpec)
+       66    0.000    0.000    0.000    0.000 {method '__contains__' of 'set' objects}
+        1    0.000    0.000    0.000    0.000 tag.py:249(__init__)
+       20    0.000    0.000    0.000    0.000 core.py:2676()
+        1    0.000    0.000    0.000    0.000 unicode.py:75(nums)
+       10    0.000    0.000    0.000    0.000 inspect.py:310(ismethoddescriptor)
+        1    0.000    0.000    0.000    0.000 scheduling_v1_api.py:27(SchedulingV1Api)
+        3    0.000    0.000    0.000    0.000 {built-in method posix.mkdir}
+        1    0.000    0.000    0.000    0.000 _version_info.py:10(VersionInfo)
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_spec.py:1()
+        1    0.000    0.000    0.000    0.000 flowcontrol_v1_subject.py:1()
+       43    0.000    0.000    0.000    0.000 _make.py:1771()
+        1    0.000    0.000    0.000    0.000 v1_probe.py:21(V1Probe)
+        5    0.000    0.000    0.000    0.000 terminal_theme.py:20(__init__)
+       53    0.000    0.000    0.000    0.000 {method 'values' of 'dict' objects}
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request.py:21(V1CertificateSigningRequest)
+        1    0.000    0.000    0.000    0.000 _utility.py:291(terminal_size)
+       15    0.000    0.000    0.000    0.000 _make.py:1074(_attach_init)
+        1    0.000    0.000    0.000    0.000 core_v1_api.py:27(CoreV1Api)
+        1    0.000    0.000    0.000    0.000 signers.py:1()
+       57    0.000    0.000    0.000    0.000 enum.py:801()
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_slice_spec.py:1()
+        1    0.000    0.000    0.000    0.000 base_futures.py:1()
+        1    0.000    0.000    0.000    0.000 quoprimime.py:55()
+        1    0.000    0.000    0.000    0.000 _common.py:47(get_package)
+        1    0.000    0.000    0.000    0.000 parse_link_title.py:1()
+        1    0.000    0.000    0.000    0.000 tokenize.py:299(detect_encoding)
+        3    0.000    0.000    0.000    0.000 decorators.py:216(decorator)
+       19    0.000    0.000    0.000    0.000 enum.py:1150(_generate_next_value_)
+        1    0.000    0.000    0.000    0.000 test.py:178(EnvironBuilder)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_component_status_list.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:325(condition_as_parse_action)
+       20    0.000    0.000    0.000    0.000 asn1.py:65(remaining_data)
+        1    0.000    0.000    0.000    0.000 v1_cluster_role_binding.py:21(V1ClusterRoleBinding)
+        3    0.000    0.000    0.000    0.000 pathlib.py:1246(is_dir)
+        7    0.000    0.000    0.000    0.000 pathlib.py:547(__fspath__)
+        1    0.000    0.000    0.000    0.000 unicode.py:236(Japanese)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition.py:21(V1CustomResourceDefinition)
+        1    0.000    0.000    0.000    0.000 _make.py:2902()
+        2    0.000    0.000    0.000    0.000 decorators.py:27(pass_context)
+        1    0.000    0.000    0.000    0.000 v1_object_meta.py:1()
+        2    0.000    0.000    0.000    0.000 random.py:119(__init__)
+       60    0.000    0.000    0.000    0.000 {built-in method builtins.divmod}
+        1    0.000    0.000    0.000    0.000 api_handler.py:1()
+       10    0.000    0.000    0.000    0.000 asn1.py:157(_convertTag)
+        1    0.000    0.000    0.000    0.000 v1_role_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_endpoint.py:1()
+        1    0.000    0.000    0.000    0.000 v1_api_group_list.py:1()
+        1    0.000    0.000    0.000    0.000 plugin_handler.py:1()
+        1    0.000    0.000    0.000    0.000 pathlib.py:1037(open)
+        1    0.000    0.000    0.000    0.000 _confirm.py:1()
+        1    0.000    0.000    0.000    0.000 config_service.py:1()
+        1    0.000    0.000    0.000    0.000 _utility.py:333()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_class_list.py:21(V1beta2DeviceClassList)
+        3    0.000    0.000    0.000    0.000 platform.py:1002(_sys_version)
+        1    0.000    0.000    0.000    0.000 apiextensions_v1_api.py:27(ApiextensionsV1Api)
+        1    0.000    0.000    0.000    0.000 v1_azure_file_volume_source.py:21(V1AzureFileVolumeSource)
+        1    0.000    0.000    0.000    0.000 bccache.py:103(BytecodeCache)
+        1    0.000    0.000    0.000    0.000 ElementTree.py:125(Element)
+        1    0.000    0.000    0.000    0.000 v1_deployment_strategy.py:1()
+        1    0.000    0.000    0.000    0.000 sync_handler.py:1()
+        1    0.000    0.000    0.000    0.000 service_account.py:519(IDTokenCredentials)
+        1    0.000    0.000    0.000    0.000 v1_self_subject_review.py:1()
+       57    0.000    0.000    0.000    0.000 utils.py:1152(__init__)
+        1    0.000    0.000    0.000    0.000 validators.py:330(_DeepIterable)
+       47    0.000    0.000    0.000    0.000 typing.py:1662(_value_and_type_iter)
+        1    0.000    0.000    0.000    0.000 v1_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_capabilities.py:1()
+        1    0.000    0.000    0.000    0.000 credentials.py:57(Credentials)
+        1    0.000    0.000    0.000    0.000 v1_topology_spread_constraint.py:1()
+        1    0.000    0.000    0.000    0.000 shortcuts.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_address.py:1()
+        1    0.000    0.000    0.000    0.000 cli.py:543(__init__)
+        4    0.000    0.000    0.000    0.000 _utility.py:471(is_style)
+        1    0.000    0.000    0.000    0.000 v1_self_subject_rules_review.py:1()
+        2    0.000    0.000    0.000    0.000 contextlib.py:546(__exit__)
+        1    0.000    0.000    0.000    0.000 v1_volume_projection.py:1()
+        1    0.000    0.000    0.000    0.000 v1_replication_controller_list.py:21(V1ReplicationControllerList)
+        1    0.000    0.000    0.000    0.000 v1beta1_basic_device.py:1()
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_list.py:1()
+        1    0.000    0.000    0.000    0.000 _utilities.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutation.py:1()
+        4    0.000    0.000    0.000    0.000 typing.py:1006(__typing_subst__)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_template.py:1()
+        1    0.000    0.000    0.000    0.000 __init__.py:1792(__init__)
+        2    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_md5}
+       32    0.000    0.000    0.000    0.000 _internal.py:128(__init__)
+        2    0.000    0.000    0.000    0.000 core.py:5822(__init__)
+       56    0.000    0.000    0.000    0.000 keyboard.py:192()
+       22    0.000    0.000    0.000    0.000 dataclasses.py:1017()
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_slice_spec.py:21(V1beta2ResourceSliceSpec)
+        1    0.000    0.000    0.000    0.000 v1_service_account.py:1()
+        1    0.000    0.000    0.000    0.000 v1_quobyte_volume_source.py:1()
+        2    0.000    0.000    0.000    0.000 threading.py:822(_maintain_shutdown_locks)
+        1    0.000    0.000    0.000    0.000 response.py:540(HTTPResponse)
+        1    0.000    0.000    0.000    0.000 _matrix.py:1()
+        1    0.000    0.000    0.000    0.000 __init__.py:779(FastPath)
+        1    0.000    0.000    0.000    0.000 v1_status_details.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_status.py:1()
+        2    0.000    0.000    0.000    0.000 core.py:3428(_generateDefaultName)
+       45    0.000    0.000    0.000    0.000 core.py:1929(streamline)
+        1    0.000    0.000    0.000    0.000 etag.py:1()
+       33    0.000    0.000    0.000    0.000 typing.py:2883(_namedtuple_mro_entries)
+        1    0.000    0.000    0.000    0.000 v1_volume_node_resources.py:1()
+        1    0.000    0.000    0.000    0.000 v1_sleep_action.py:1()
+       50    0.000    0.000    0.000    0.000 core.py:4282()
+        1    0.000    0.000    0.000    0.000 storage_v1_api.py:27(StorageV1Api)
+        1    0.000    0.000    0.000    0.000 v2_metric_identifier.py:21(V2MetricIdentifier)
+        9    0.000    0.000    0.000    0.000 terminal.py:341(__getattr__)
+        2    0.000    0.000    0.000    0.000 __init__.py:567(discover)
+       51    0.000    0.000    0.000    0.000 {method '__init_subclass__' of 'object' objects}
+        1    0.000    0.000    0.000    0.000 v1_pod_security_context.py:1()
+        1    0.000    0.000    0.000    0.000 terminal.py:257(__init__color_capabilities)
+        1    0.000    0.000    0.000    0.000 v1_validation_rule.py:21(V1ValidationRule)
+        5    0.000    0.000    0.000    0.000 datetime.py:515(_check_date_fields)
+        1    0.000    0.000    0.000    0.000 apps_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 _requests_base.py:1()
+       43    0.000    0.000    0.000    0.000 _helpers.py:31(copy_docstring)
+        3    0.000    0.000    0.000    0.000 :117(splitext)
+        1    0.000    0.000    0.000    0.000 v1_iscsi_volume_source.py:1()
+       11    0.000    0.000    0.000    0.000 base.py:516(__init__)
+        1    0.000    0.000    0.000    0.000 model.py:485(OperationModel)
+        1    0.000    0.000    0.000    0.000 sysconfig.py:243(is_python_build)
+       14    0.000    0.000    0.000    0.000 _make.py:1051(attach_hash)
+       22    0.000    0.000    0.000    0.000 dataclasses.py:592()
+        8    0.000    0.000    0.000    0.000 copy.py:264()
+        1    0.000    0.000    0.000    0.000 core.py:3393(__init__)
+       55    0.000    0.000    0.000    0.000 backend.py:2632(__init__)
+       27    0.000    0.000    0.000    0.000 {built-in method _struct.calcsize}
+        1    0.000    0.000    0.000    0.000 v1_node_selector_term.py:21(V1NodeSelectorTerm)
+        8    0.000    0.000    0.000    0.000 pathlib.py:537(__str__)
+        4    0.000    0.000    0.000    0.000 contextlib.py:509(callback)
+        1    0.000    0.000    0.000    0.000 external_account_authorized_user.py:49(Credentials)
+        1    0.000    0.000    0.000    0.000 v1_security_context.py:1()
+        4    0.000    0.000    0.000    0.000 _date.py:42()
+        1    0.000    0.000    0.000    0.000 v1_endpoints_list.py:1()
+       15    0.000    0.000    0.000    0.000 _compat.py:28(_get_annotations)
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_spec.py:21(V1StatefulSetSpec)
+        1    0.000    0.000    0.000    0.000 v1alpha1_variable.py:1()
+        1    0.000    0.000    0.000    0.000 v1_service_port.py:1()
+        1    0.000    0.000    0.000    0.000 v2_cross_version_object_reference.py:1()
+       50    0.000    0.000    0.000    0.000 core.py:4283()
+        1    0.000    0.000    0.000    0.000 v1beta1_cel_device_selector.py:1()
+        1    0.000    0.000    0.000    0.000 screen.py:1()
+        1    0.000    0.000    0.000    0.000 v1_secret_projection.py:1()
+        1    0.000    0.000    0.000    0.000 __init__.py:21(__deprecated_private_func)
+       46    0.000    0.000    0.000    0.000 {method 'issuperset' of 'frozenset' objects}
+        1    0.000    0.000    0.000    0.000 v1_windows_security_context_options.py:21(V1WindowsSecurityContextOptions)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_sub_request.py:1()
+        1    0.000    0.000    0.000    0.000 example.py:194(RequestExampleDocumenter)
+       15    0.000    0.000    0.000    0.000 extensions.py:73(_make_sequence_methods)
+        3    0.000    0.000    0.000    0.000 {method 'close' of '_io.BufferedReader' objects}
+        1    0.000    0.000    0.000    0.000 v1_service.py:1()
+        1    0.000    0.000    0.000    0.000 loaders.py:591(ModuleLoader)
+        3    0.000    0.000    0.000    0.000 :773(getenv)
+        5    0.000    0.000    0.000    0.000 weakref.py:289(update)
+        1    0.000    0.000    0.000    0.000 response.py:39(Response)
+        1    0.000    0.000    0.000    0.000 v1_job_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_api_resource.py:1()
+        3    0.000    0.000    0.000    0.000 __init__.py:435(validate)
+        1    0.000    0.000    0.000    0.000 composer.py:8(ComposerError)
+        1    0.000    0.000    0.000    0.000 __future__.py:1()
+       15    0.000    0.000    0.000    0.000 ssl.py:1000(_sslcopydoc)
+        1    0.000    0.000    0.000    0.000 functools.py:651(cache)
+        1    0.000    0.000    0.000    0.000 printer.py:1()
+        3    0.000    0.000    0.000    0.000 containers.py:111(justify)
+        3    0.000    0.000    0.000    0.000 _utility.py:457(get_style_codes)
+        8    0.000    0.000    0.000    0.000 tag.py:256(register)
+        1    0.000    0.000    0.000    0.000 http.py:285(MediaUpload)
+        1    0.000    0.000    0.000    0.000 fnmatch.py:1()
+        1    0.000    0.000    0.000    0.000 v1_deployment_spec.py:1()
+        4    0.000    0.000    0.000    0.000 six.py:164(_resolve)
+        1    0.000    0.000    0.000    0.000 errors.py:35(HttpError)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_request.py:21(V1alpha3DeviceRequest)
+        1    0.000    0.000    0.000    0.000 v1beta1_allocated_device_status.py:1()
+        2    0.000    0.000    0.000    0.000 __init__.py:72(CFUNCTYPE)
+        1    0.000    0.000    0.000    0.000 capture.py:1()
+        3    0.000    0.000    0.000    0.000 __init__.py:503(PYFUNCTYPE)
+        1    0.000    0.000    0.000    0.000 v1_config_map.py:1()
+        6    0.000    0.000    0.000    0.000 __init__.py:1402(_fixupChildren)
+        1    0.000    0.000    0.000    0.000 _build.py:1()
+        1    0.000    0.000    0.000    0.000 rbac_authorization_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_subject_access_review_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_node_spec.py:21(V1CSINodeSpec)
+        3    0.000    0.000    0.000    0.000 subprocess.py:1133(_get_devnull)
+        1    0.000    0.000    0.000    0.000 v1_flex_persistent_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 universe.py:1()
+        1    0.000    0.000    0.000    0.000 ciphers.py:1()
+       41    0.000    0.000    0.000    0.000 _make.py:459()
+        1    0.000    0.000    0.000    0.000 discovery_api.py:1()
+        1    0.000    0.000    0.000    0.000 terminal.py:1000(number_of_colors)
+        2    0.000    0.000    0.000    0.000 sysconfig.py:347(get_default_scheme)
+        1    0.000    0.000    0.000    0.000 v1_flow_schema_list.py:1()
+        1    0.000    0.000    0.000    0.000 core_v1_event.py:21(CoreV1Event)
+        1    0.000    0.000    0.000    0.000 v1_ingress_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_persistent_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_lease_candidate_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_match_resources.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_attribute.py:1()
+       16    0.000    0.000    0.000    0.000 _IntegerGMP.py:642(is_even)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_request_allocation_result.py:1()
+        1    0.000    0.000    0.000    0.000 v1_scale_io_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 cookies.py:165()
+       41    0.000    0.000    0.000    0.000 enum.py:92(_is_single_bit)
+        8    0.000    0.000    0.000    0.000 _weakrefset.py:85(add)
+        5    0.000    0.000    0.000    0.000 datetime.py:528(_check_time_fields)
+        1    0.000    0.000    0.000    0.000 v1_typed_object_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1_http_get_action.py:1()
+        1    0.000    0.000    0.000    0.000 _doc_utils.py:234(__init__)
+        1    0.000    0.000    0.000    0.000 random.py:128(seed)
+        1    0.000    0.000    0.000    0.000 v1_validation.py:1()
+        8    0.000    0.000    0.000    0.000 six.py:85(_import_module)
+       46    0.000    0.000    0.000    0.000 core.py:806(postParse)
+        4    0.000    0.000    0.000    0.000 _policybase.py:60(clone)
+        1    0.000    0.000    0.000    0.000 v1_scale_io_persistent_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_version.py:1()
+        1    0.000    0.000    0.000    0.000 dh.py:23(DHParameterNumbers)
+       10    0.000    0.000    0.000    0.000 inspect.py:505(isbuiltin)
+        1    0.000    0.000    0.000    0.000 :48()
+        1    0.000    0.000    0.000    0.000 networking_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_list.py:21(V2HorizontalPodAutoscalerList)
+       11    0.000    0.000    0.000    0.000 console.py:758(file)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_service_cidr.py:1()
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_update_strategy.py:1()
+        1    0.000    0.000    0.000    0.000 v1_role_list.py:21(V1RoleList)
+        1    0.000    0.000    0.000    0.000 v1_env_from_source.py:1()
+        1    0.000    0.000    0.000    0.000 jwt.py:319(Credentials)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:1917(IPv6Address)
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment.py:1()
+        1    0.000    0.000    0.000    0.000 RSA.py:423(publickey)
+        1    0.000    0.000    0.000    0.000 functools.py:861()
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_spec.py:1()
+        1    0.000    0.000    0.000    0.000 resource_v1alpha3_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_status.py:21(V1PodStatus)
+        8    0.000    0.000    0.000    0.000 _doc_utils.py:251()
+        1    0.000    0.000    0.000    0.000 v1_storage_os_persistent_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_deployment_status.py:1()
+        1    0.000    0.000    0.000    0.000 validators.py:420(_NumberValidator)
+       13    0.000    0.000    0.000    0.000 enum.py:923()
+        1    0.000    0.000    0.000    0.000 validate.py:181(ParamValidator)
+        1    0.000    0.000    0.000    0.000 events_v1_event.py:21(EventsV1Event)
+        1    0.000    0.000    0.000    0.000 v1_service_account_list.py:1()
+        1    0.000    0.000    0.000    0.000 console.py:791(_detect_color_system)
+        1    0.000    0.000    0.000    0.000 v1_vsphere_virtual_disk_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 serving.py:158(WSGIRequestHandler)
+       22    0.000    0.000    0.000    0.000 dataclasses.py:1043()
+        8    0.000    0.000    0.000    0.000 dataclasses.py:327(__set_name__)
+        2    0.000    0.000    0.000    0.000 _figure.py:111(subplots)
+        1    0.000    0.000    0.000    0.000 v1_env_var_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_fc_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_driver_spec.py:1()
+        1    0.000    0.000    0.000    0.000 _common.py:149(_tzinfo)
+        2    0.000    0.000    0.000    0.000 :682(__setitem__)
+        1    0.000    0.000    0.000    0.000 v1_container_status.py:21(V1ContainerStatus)
+        1    0.000    0.000    0.000    0.000 v1_subject_access_review.py:1()
+        2    0.000    0.000    0.000    0.000 datetime.py:1340(__new__)
+       43    0.000    0.000    0.000    0.000 _compat_pickle.py:165()
+        1    0.000    0.000    0.000    0.000 v1_horizontal_pod_autoscaler_status.py:21(V1HorizontalPodAutoscalerStatus)
+        1    0.000    0.000    0.000    0.000 v1_flex_volume_source.py:21(V1FlexVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_service_cidr_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_flow_schema.py:1()
+        6    0.000    0.000    0.000    0.000 platform.py:825(uname)
+       41    0.000    0.000    0.000    0.000 _make.py:681()
+        1    0.000    0.000    0.000    0.000 v1_toleration.py:1()
+        1    0.000    0.000    0.000    0.000 terminal.py:266(__clear_color_capabilities)
+        4    0.000    0.000    0.000    0.000 locale.py:479(_parse_localename)
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment_spec.py:1()
+        8    0.000    0.000    0.000    0.000 :309(__init__)
+       46    0.000    0.000    0.000    0.000 {built-in method builtins.globals}
+        1    0.000    0.000    0.000    0.000 sync_service.py:23(__init__)
+        1    0.000    0.000    0.000    0.000 v1alpha3_basic_device.py:1()
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_flow_schema_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cron_job_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_class.py:1()
+        1    0.000    0.000    0.000    0.000 v1_service_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_storage_class_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_subject_access_review_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_condition.py:1()
+        1    0.000    0.000    0.000    0.000 http.py:552(MediaFileUpload)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_capacity.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_condition.py:1()
+        1    0.000    0.000    0.000    0.000 state_core.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_slice_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_status_cause.py:1()
+        1    0.000    0.000    0.000    0.000 http.py:629(MediaInMemoryUpload)
+        1    0.000    0.000    0.000    0.000 format_helpers.py:1()
+        1    0.000    0.000    0.000    0.000 _parser.py:568(parser)
+        8    0.000    0.000    0.000    0.000 unicode.py:9(__init__)
+       12    0.000    0.000    0.000    0.000 typing.py:899(_is_typevar_like)
+       22    0.000    0.000    0.000    0.000 dataclasses.py:346(__init__)
+        4    0.000    0.000    0.000    0.000 core.py:3435(parseImpl)
+        1    0.000    0.000    0.000    0.000 v1_validating_webhook.py:21(V1ValidatingWebhook)
+       32    0.000    0.000    0.000    0.000 exceptions.py:46(__init__)
+        1    0.000    0.000    0.000    0.000 http.py:428(MediaIoBaseUpload)
+        9    0.000    0.000    0.000    0.000 __init__.py:163(__new__)
+        2    0.000    0.000    0.000    0.000 sysconfig.py:335(get_preferred_scheme)
+        1    0.000    0.000    0.000    0.000 v1beta1_parent_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_binding_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_endpoint_address.py:1()
+        1    0.000    0.000    0.000    0.000 _make.py:2783()
+        1    0.000    0.000    0.000    0.000 incluster_config.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_allocation_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_status.py:1()
+       40    0.000    0.000    0.000    0.000 _make.py:1003()
+        1    0.000    0.000    0.000    0.000 plugins.py:17(_load_preferences)
+        1    0.000    0.000    0.000    0.000 extensions.py:1260(NameConstraints)
+        1    0.000    0.000    0.000    0.000 tz.py:41(tzutc)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_class_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_named_rule_with_operations.py:1()
+        2    0.000    0.000    0.000    0.000 _IntegerGMP.py:656(is_perfect_square)
+        1    0.000    0.000    0.000    0.000 _matrix.py:4(__init__)
+       25    0.000    0.000    0.000    0.000 ipaddress.py:431(_ip_int_from_prefix)
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy.py:1()
+        1    0.000    0.000    0.000    0.000 v1_volume_mount_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_container_state_terminated.py:1()
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request_spec.py:1()
+        1    0.000    0.000    0.000    0.000 _credentials_base.py:1()
+        1    0.000    0.000    0.000    0.000 filter.py:1()
+        1    0.000    0.000    0.000    0.000 __init__.py:281(DeprecatedList)
+        1    0.000    0.000    0.000    0.000 numbers.py:32(Complex)
+        1    0.000    0.000    0.000    0.000 v1_node_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_glusterfs_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 schema.py:170(_SchemaToStruct)
+        3    0.000    0.000    0.000    0.000 six.py:236(create_module)
+        1    0.000    0.000    0.000    0.000 RSA.py:223(public_key)
+        1    0.000    0.000    0.000    0.000 v1_ingress_load_balancer_status.py:1()
+       33    0.000    0.000    0.000    0.000 typing.py:2833()
+        1    0.000    0.000    0.000    0.000 utils.py:45(OptionsDict)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device.py:1()
+        1    0.000    0.000    0.000    0.000 console.py:862(__exit__)
+        4    0.000    0.000    0.000    0.000 results.py:221(__setitem__)
+        1    0.000    0.000    0.000    0.000 v1_object_meta.py:21(V1ObjectMeta)
+        1    0.000    0.000    0.000    0.000 v1beta1_cluster_trust_bundle_spec.py:1()
+        1    0.000    0.000    0.000    0.000 errors.py:161(BatchError)
+       37    0.000    0.000    0.000    0.000 typing.py:715()
+        1    0.000    0.000    0.000    0.000 v1_gce_persistent_disk_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 token.py:18(TokenEndpoint)
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_spec.py:21(V1ValidatingAdmissionPolicySpec)
+        1    0.000    0.000    0.000    0.000 v1_pod_affinity_term.py:1()
+        1    0.000    0.000    0.000    0.000 service.py:25(ServiceDocumenter)
+        1    0.000    0.000    0.000    0.000 v1_endpoints.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_taint.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha2_lease_candidate_spec.py:1()
+        2    0.000    0.000    0.000    0.000 core.py:5236(parseImpl)
+        1    0.000    0.000    0.000    0.000 threads.py:1()
+       25    0.000    0.000    0.000    0.000 __init__.py:1267(__init__)
+        6    0.000    0.000    0.000    0.000 text.py:791(iter_text)
+        3    0.000    0.000    0.000    0.000 pathlib.py:1009(stat)
+        1    0.000    0.000    0.000    0.000 v1_git_repo_volume_source.py:1()
+        2    0.000    0.000    0.000    0.000 resource.py:17(ResourceEndpoint)
+        1    0.000    0.000    0.000    0.000 tz.py:132(tzoffset)
+        1    0.000    0.000    0.000    0.000 introspect.py:20(IntrospectEndpoint)
+        1    0.000    0.000    0.000    0.000 socket.py:499(close)
+        1    0.000    0.000    0.000    0.000 v1_token_review.py:1()
+        1    0.000    0.000    0.000    0.000 v1_replica_set_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_horizontal_pod_autoscaler_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_names.py:1()
+        1    0.000    0.000    0.000    0.000 dh.py:206(DHPrivateKey)
+        1    0.000    0.000    0.000    0.000 v1_storage_class.py:21(V1StorageClass)
+        1    0.000    0.000    0.000    0.000 v1_service_account_subject.py:1()
+        1    0.000    0.000    0.000    0.000 v1_config_map_key_selector.py:1()
+       25    0.000    0.000    0.000    0.000 constructor.py:159(add_constructor)
+       24    0.000    0.000    0.000    0.000 contextlib.py:434(__exit__)
+        1    0.000    0.000    0.000    0.000 v1_job_condition.py:1()
+        1    0.000    0.000    0.000    0.000 testing.py:126(TestParseResultsAsserts)
+        1    0.000    0.000    0.000    0.000 errors.py:179(UnexpectedMethodError)
+       22    0.000    0.000    0.000    0.000 dataclasses.py:1046()
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_binding.py:1()
+        1    0.000    0.000    0.000    0.000 metadata.py:23(MetadataEndpoint)
+        1    0.000    0.000    0.000    0.000 import_export_service.py:1()
+        2    0.000    0.000    0.000    0.000 charset.py:211(__init__)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_request_allocation_result.py:1()
+        1    0.000    0.000    0.000    0.000 v2_external_metric_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_rbd_persistent_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_endpoint_slice_list.py:1()
+        1    0.000    0.000    0.000    0.000 jwt.py:592(OnDemandCredentials)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_slice.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_port_status.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:2969(Argument)
+        1    0.000    0.000    0.000    0.000 v1_quobyte_volume_source.py:21(V1QuobyteVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_owner_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1_env_var.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_column_definition.py:1()
+        1    0.000    0.000    0.000    0.000 ipaddress.py:1487(IPv4Network)
+        8    0.000    0.000    0.000    0.000 {built-in method posix.close}
+        1    0.000    0.000    0.000    0.000 v1_service_account_token_projection.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_slice_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment_status.py:1()
+        1    0.000    0.000    0.000    0.000 core_v1_endpoint_port.py:1()
+        1    0.000    0.000    0.000    0.000 ssl_match_hostname.py:1()
+        1    0.000    0.000    0.000    0.000 CMAC.py:1()
+        1    0.000    0.000    0.000    0.000 v2_hpa_scaling_rules.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_match_resources.py:1()
+        1    0.000    0.000    0.000    0.000 v1_token_review_status.py:1()
+        1    0.000    0.000    0.000    0.000 events_v1_event_series.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cluster_role_list.py:1()
+        1    0.000    0.000    0.000    0.000 runtime.py:660(Macro)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_replication_controller_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_network_policy_spec.py:1()
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_rbd_volume_source.py:1()
+       13    0.000    0.000    0.000    0.000 hooks.py:45(make_callable)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_toleration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_user_info.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_affinity.py:1()
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_limit_range_item.py:1()
+        1    0.000    0.000    0.000    0.000 v1_http_ingress_path.py:1()
+        8    0.000    0.000    0.000    0.000 relativedelta.py:13()
+        2    0.000    0.000    0.000    0.000 datetime.py:923(__new__)
+        4    0.000    0.000    0.000    0.000 protocol.py:19(rich_cast)
+        1    0.000    0.000    0.000    0.000 v1_namespace_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ephemeral_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_event_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_field_selector_requirement.py:1()
+        3    0.000    0.000    0.000    0.000 core.py:4967(_generateDefaultName)
+       27    0.000    0.000    0.000    0.000 dataclasses.py:1238()
+        1    0.000    0.000    0.000    0.000 _strptime.py:152(__calc_timezone)
+        1    0.000    0.000    0.000    0.000 v1beta1_ip_address.py:1()
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_binding_list.py:1()
+       11    0.000    0.000    0.000    0.000 __init__.py:597()
+        1    0.000    0.000    0.000    0.000 v1_volume_mount.py:21(V1VolumeMount)
+        1    0.000    0.000    0.000    0.000 v1beta1_param_ref.py:21(V1beta1ParamRef)
+        1    0.000    0.000    0.000    0.000 v1_object_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ceph_fs_persistent_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_exact_device_request.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_ip_address_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_named_rule_with_operations.py:1()
+        1    0.000    0.000    0.000    0.000 v1_subject_rules_review_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_policy_rule.py:1()
+        1    0.000    0.000    0.000    0.000 v1_azure_disk_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_selector.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_lease_candidate.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_lease_candidate_list.py:1()
+        1    0.000    0.000    0.000    0.000 v2_external_metric_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_validating_webhook_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_api_service_spec.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:3944(And)
+        7    0.000    0.000    0.000    0.000 argparse.py:1865(_get_positional_actions)
+       22    0.000    0.000    0.000    0.000 dataclasses.py:397()
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_template_list.py:1()
+        1    0.000    0.000    0.000    0.000 Primality.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_sub_request.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_allocated_device_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_list.py:1()
+       22    0.000    0.000    0.000    0.000 dataclasses.py:1052()
+        1    0.000    0.000    0.000    0.000 datetime.py:1669(datetime)
+        1    0.000    0.000    0.000    0.000 _python_version_support.py:188(check_python_version)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume.py:1()
+        1    0.000    0.000    0.000    0.000 bucket.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_network_device_data.py:1()
+        1    0.000    0.000    0.000    0.000 v1_service_backend_port.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_config_status.py:1()
+        2    0.000    0.000    0.000    0.000 core.py:5252(_generateDefaultName)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:92()
+        1    0.000    0.000    0.000    0.000 v1_node_status.py:21(V1NodeStatus)
+        1    0.000    0.000    0.000    0.000 v1_pod_security_context.py:21(V1PodSecurityContext)
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1beta1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_api_group.py:1()
+       12    0.000    0.000    0.000    0.000 core.py:2454(parseImpl)
+        1    0.000    0.000    0.000    0.000 cmac.py:1()
+        1    0.000    0.000    0.000    0.000 app.py:79(Flask)
+        1    0.000    0.000    0.000    0.000 custom_objects_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_cluster_trust_bundle_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_rule_with_operations.py:1()
+        1    0.000    0.000    0.000    0.000 v1_endpoint_subset.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:3664(__init__)
+        7    0.000    0.000    0.000    0.000 context_service.py:10(contexts)
+        1    0.000    0.000    0.000    0.000 ai_service.py:1()
+        1    0.000    0.000    0.000    0.000 getpass.py:1()
+        1    0.000    0.000    0.000    0.000 rbac_authorization_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_ordinals.py:1()
+        1    0.000    0.000    0.000    0.000 v1_runtime_class.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_rule.py:1()
+        1    0.000    0.000    0.000    0.000 v1_exempt_priority_level_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_spec.py:1()
+        1    0.000    0.000    0.000    0.000 handlers.py:877(_add_parameter_aliases)
+        1    0.000    0.000    0.000    0.000 socket.py:495(_real_close)
+        1    0.000    0.000    0.000    0.000 styled.py:1()
+        1    0.000    0.000    0.000    0.000 asn1.py:557(hasOnlyInts)
+        1    0.000    0.000    0.000    0.000 v1_role_binding.py:21(V1RoleBinding)
+        1    0.000    0.000    0.000    0.000 v1_config_map_env_source.py:1()
+        4    0.000    0.000    0.000    0.000 six.py:119(_resolve)
+       38    0.000    0.000    0.000    0.000 {built-in method _ctypes.sizeof}
+        1    0.000    0.000    0.000    0.000 ssltransport.py:22(SSLTransport)
+        1    0.000    0.000    0.000    0.000 v1beta1_cluster_trust_bundle_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_secret_projection.py:21(V1SecretProjection)
+        2    0.000    0.000    0.000    0.000 threading.py:555(__init__)
+       27    0.000    0.000    0.000    0.000 dataclasses.py:1152()
+       17    0.000    0.000    0.000    0.000 {method 'index' of 'tuple' objects}
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_request_allocation_result.py:1()
+        1    0.000    0.000    0.000    0.000 v1_webhook_conversion.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ip_address_list.py:1()
+        1    0.000    0.000    0.000    0.000 __init__.py:531(Formatter)
+        1    0.000    0.000    0.000    0.000 v1_self_subject_review_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_http_header.py:1()
+       20    0.000    0.000    0.000    0.000 {method 'rsplit' of 'str' objects}
+       30    0.000    0.000    0.000    0.000 {method 'startswith' of 'bytes' objects}
+        1    0.000    0.000    0.000    0.000 _make.py:802(_patch_original_class)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_slice_spec.py:21(V1alpha3ResourceSliceSpec)
+        2    0.000    0.000    0.000    0.000 sysconfig.py:303(_get_preferred_schemes)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_pool.py:1()
+        1    0.000    0.000    0.000    0.000 v1_server_address_by_client_cidr.py:1()
+        1    0.000    0.000    0.000    0.000 base.py:888(CertificateRevocationListBuilder)
+        1    0.000    0.000    0.000    0.000 resource_v1beta2_api.py:1()
+        1    0.000    0.000    0.000    0.000 _default.py:31(__init__)
+        1    0.000    0.000    0.000    0.000 v1_node.py:1()
+        1    0.000    0.000    0.000    0.000 v1_endpoint_conditions.py:1()
+        1    0.000    0.000    0.000    0.000 authentication_v1_token_request.py:1()
+        6    0.000    0.000    0.000    0.000 _utility.py:366(is_string_color)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_counter_consumption.py:1()
+        1    0.000    0.000    0.000    0.000 v1_resource_quota.py:1()
+        1    0.000    0.000    0.000    0.000 v1_local_subject_access_review.py:1()
+        1    0.000    0.000    0.000    0.000 v1_mutating_webhook_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_storage_capacity_list.py:1()
+        1    0.000    0.000    0.000    0.000 base64.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy.py:1()
+       11    0.000    0.000    0.000    0.000 utils.py:81(from_obj)
+        1    0.000    0.000    0.000    0.000 numbers.py:294(Integral)
+        1    0.000    0.000    0.000    0.000 v1_status.py:21(V1Status)
+        1    0.000    0.000    0.000    0.000 v1_pod_template.py:1()
+        1    0.000    0.000    0.000    0.000 v1_replica_set_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_match_resources.py:1()
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_downward_api_projection.py:1()
+        1    0.000    0.000    0.000    0.000 v1_api_service.py:1()
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1_webhook_client_config.py:1()
+       30    0.000    0.000    0.000    0.000 typing.py:2016()
+        1    0.000    0.000    0.000    0.000 v1beta2_allocated_device_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_constraint.py:1()
+        1    0.000    0.000    0.000    0.000 v1_variable.py:1()
+        1    0.000    0.000    0.000    0.000 v1_container_port.py:1()
+        2    0.000    0.000    0.000    0.000 types.py:247(coroutine)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_volume_attributes_class.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_volume_attributes_class.py:1()
+        1    0.000    0.000    0.000    0.000 __init__.py:731(DistributionFinder)
+        4    0.000    0.000    0.000    0.000 {built-in method posix.pipe}
+       35    0.000    0.000    0.000    0.000 {built-in method _operator.index}
+        1    0.000    0.000    0.000    0.000 batch_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_volume_resource_requirements.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_subresources.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cron_job.py:1()
+        1    0.000    0.000    0.000    0.000 legacy_application.py:1()
+       32    0.000    0.000    0.000    0.000 terminal.py:295()
+       31    0.000    0.000    0.000    0.000 sequences.py:21(__init__)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim.py:1()
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_claim_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_replica_set.py:1()
+        1    0.000    0.000    0.000    0.000 v1_namespace.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress.py:1()
+        1    0.000    0.000    0.000    0.000 v1_external_documentation.py:1()
+       25    0.000    0.000    0.000    0.000 ipaddress.py:415(_check_int_address)
+        1    0.000    0.000    0.000    0.000 {function Random.seed at 0xff12999cdf80}
+        1    0.000    0.000    0.000    0.000 v1_security_context.py:21(V1SecurityContext)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_toleration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_typed_local_object_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1_self_subject_access_review.py:1()
+        1    0.000    0.000    0.000    0.000 v1_self_subject_rules_review_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_deployment_condition.py:1()
+        1    0.000    0.000    0.000    0.000 decorators.py:75(decorator)
+       10    0.000    0.000    0.000    0.000 _text.py:90(lower)
+        3    0.000    0.000    0.000    0.000 text.py:191(__contains__)
+        1    0.000    0.000    0.000    0.000 v1_ip_address.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ceph_fs_volume_source.py:1()
+        4    0.000    0.000    0.000    0.000 argparse.py:304(_join_parts)
+        3    0.000    0.000    0.000    0.000 :933(clear)
+       26    0.000    0.000    0.000    0.000 {built-in method _sre.ascii_iscased}
+        1    0.000    0.000    0.000    0.000 v1_iscsi_volume_source.py:21(V1ISCSIVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_pod_disruption_budget.py:21(V1PodDisruptionBudget)
+        1    0.000    0.000    0.000    0.000 v1_secret.py:21(V1Secret)
+        1    0.000    0.000    0.000    0.000 v1alpha3_opaque_device_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_template_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_class.py:1()
+        1    0.000    0.000    0.000    0.000 v1_replication_controller_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod.py:1()
+        1    0.000    0.000    0.000    0.000 v1_expression_warning.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_class.py:1()
+        1    0.000    0.000    0.000    0.000 v1_for_node.py:1()
+        1    0.000    0.000    0.000    0.000 plugin_service.py:1()
+       34    0.000    0.000    0.000    0.000 inspect.py:589()
+        1    0.000    0.000    0.000    0.000 v1beta1_expression_warning.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_opaque_device_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim.py:1()
+        1    0.000    0.000    0.000    0.000 v1_container_state.py:1()
+        1    0.000    0.000    0.000    0.000 v1_sysctl.py:1()
+        1    0.000    0.000    0.000    0.000 v1_job.py:1()
+       23    0.000    0.000    0.000    0.000 :1220(__init__)
+        1    0.000    0.000    0.000    0.000 v1_topology_spread_constraint.py:21(V1TopologySpreadConstraint)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_consumer_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim.py:1()
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_config_map_node_config_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_api_service_condition.py:1()
+        1    0.000    0.000    0.000    0.000 profile_service.py:1()
+        1    0.000    0.000    0.000    0.000 v1_empty_dir_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 validators.py:128(_MatchesReValidator)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:1611(_BaseV6)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint_selector.py:1()
+        1    0.000    0.000    0.000    0.000 v1_watch_event.py:1()
+        1    0.000    0.000    0.000    0.000 v1_endpoint_hints.py:1()
+        3    0.000    0.000    0.000    0.000 six.py:219(is_package)
+       29    0.000    0.000    0.000    0.000 asn1.py:40(_is_number)
+       10    0.000    0.000    0.000    0.000 enum.py:1229(__hash__)
+        1    0.000    0.000    0.000    0.000 v1alpha2_lease_candidate.py:1()
+        1    0.000    0.000    0.000    0.000 v1_service_cidr_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cluster_trust_bundle_projection.py:1()
+        1    0.000    0.000    0.000    0.000 v1_controller_revision_list.py:1()
+        1    0.000    0.000    0.000    0.000 mobile_application.py:1()
+        1    0.000    0.000    0.000    0.000 timeouts.py:26(Timeout)
+       14    0.000    0.000    0.000    0.000 {built-in method builtins.round}
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_template_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_allocation_result.py:1()
+        1    0.000    0.000    0.000    0.000 apiextensions_v1_service_reference.py:1()
+        1    0.000    0.000    0.000    0.000 session.py:81(Session)
+        1    0.000    0.000    0.000    0.000 v1_endpoint.py:21(V1Endpoint)
+        1    0.000    0.000    0.000    0.000 v1_job_status.py:21(V1JobStatus)
+        1    0.000    0.000    0.000    0.000 v1beta1_allocation_result.py:1()
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_volume_source.py:1()
+        3    0.000    0.000    0.000    0.000 _compat.py:578(_make_cached_stream_func)
+        1    0.000    0.000    0.000    0.000 web_application.py:1()
+        1    0.000    0.000    0.000    0.000 system_service.py:1()
+        8    0.000    0.000    0.000    0.000 {method 'isatty' of '_io.TextIOWrapper' objects}
+       25    0.000    0.000    0.000    0.000 {built-in method _sre.ascii_tolower}
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_template_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_deployment.py:1()
+        1    0.000    0.000    0.000    0.000 errorfactory.py:1()
+        1    0.000    0.000    0.000    0.000 nonmultipart.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_migration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_class_parameters_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_service_backend.py:1()
+        1    0.000    0.000    0.000    0.000 validators.py:667(_OrValidator)
+        1    0.000    0.000    0.000    0.000 flowcontrol_apiserver_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 policy_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 certificates_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_audit_annotation.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_cluster_trust_bundle.py:1()
+        1    0.000    0.000    0.000    0.000 v1_user_subject.py:1()
+        1    0.000    0.000    0.000    0.000 v1_component_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_api_versions.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cluster_role.py:1()
+        1    0.000    0.000    0.000    0.000 paginator.py:1()
+        1    0.000    0.000    0.000    0.000 certificates_v1beta1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_tcp_socket_action.py:1()
+        1    0.000    0.000    0.000    0.000 v1_scale.py:1()
+        9    0.000    0.000    0.000    0.000 formatters.py:284(__new__)
+        1    0.000    0.000    0.000    0.000 base_events.py:387(BaseEventLoop)
+        1    0.000    0.000    0.000    0.000 networking_v1beta1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_match_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_volume_node_affinity.py:1()
+        1    0.000    0.000    0.000    0.000 v1_priority_class_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_lease.py:1()
+        1    0.000    0.000    0.000    0.000 __init__.py:1432(Logger)
+        1    0.000    0.000    0.000    0.000 v2_metric_target.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_taint.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_slice_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_binding_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cinder_persistent_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 util.py:14(__config_flags)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_topology_selector_label_requirement.py:1()
+        1    0.000    0.000    0.000    0.000 v1_lifecycle_handler.py:1()
+        1    0.000    0.000    0.000    0.000 image.py:1()
+        2    0.000    0.000    0.000    0.000 :1276(__init__)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_behavior.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_attribute.py:1()
+        1    0.000    0.000    0.000    0.000 v1_resource_policy_rule.py:1()
+        1    0.000    0.000    0.000    0.000 v1_resource_rule.py:1()
+        1    0.000    0.000    0.000    0.000 v1_secret_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_host_alias.py:1()
+        1    0.000    0.000    0.000    0.000 v1_field_selector_attributes.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cluster_role_binding_list.py:1()
+       19    0.000    0.000    0.000    0.000 representer.py:65(add_representer)
+        8    0.000    0.000    0.000    0.000 :1283(_find_parent_path_names)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_request.py:1()
+        1    0.000    0.000    0.000    0.000 v2_hpa_scaling_policy.py:1()
+        1    0.000    0.000    0.000    0.000 v1_token_review_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_aws_elastic_block_store_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_app_armor_profile.py:1()
+        1    0.000    0.000    0.000    0.000 service_application.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:5263(SkipTo)
+        5    0.000    0.000    0.000    0.000 core.py:6034(token_map)
+        1    0.000    0.000    0.000    0.000 _common.py:42(resolve)
+        1    0.000    0.000    0.000    0.000 ws_client.py:260(PortForward)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_slice.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_list.py:21(V1alpha1StorageVersionList)
+        1    0.000    0.000    0.000    0.000 v1_pod_resource_claim.py:1()
+        1    0.000    0.000    0.000    0.000 v1_config_map_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 poly1305.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_validation.py:1()
+        1    0.000    0.000    0.000    0.000 v1_limit_range_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_group_version_for_discovery.py:1()
+       17    0.000    0.000    0.000    0.000 enum.py:809(__members__)
+        2    0.000    0.000    0.000    0.000 {built-in method posix.open}
+        1    0.000    0.000    0.000    0.000 v1alpha1_server_storage_version.py:1()
+        1    0.000    0.000    0.000    0.000 v1_token_request_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_uncounted_terminated_pods.py:1()
+        1    0.000    0.000    0.000    0.000 v1_replica_set_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_class_list.py:1()
+        1    0.000    0.000    0.000    0.000 _asymmetric.py:1()
+        1    0.000    0.000    0.000    0.000 threading.py:583(set)
+        1    0.000    0.000    0.000    0.000 v1_scale_io_volume_source.py:21(V1ScaleIOVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_template.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cron_job_list.py:1()
+        2    0.000    0.000    0.000    0.000 six.py:493(Module_six_moves_urllib)
+        1    0.000    0.000    0.000    0.000 v1beta1_service_cidr_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_param_ref.py:1()
+        1    0.000    0.000    0.000    0.000 v1_success_policy_rule.py:1()
+        1    0.000    0.000    0.000    0.000 v1_success_policy.py:1()
+        1    0.000    0.000    0.000    0.000 v1_config_map_list.py:1()
+        1    0.000    0.000    0.000    0.000 events_v1_event_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_binding.py:1()
+        1    0.000    0.000    0.000    0.000 discovery_v1_endpoint_port.py:1()
+        1    0.000    0.000    0.000    0.000 subresource.py:1()
+        1    0.000    0.000    0.000    0.000 attr.py:1()
+        1    0.000    0.000    0.000    0.000 v1_api_resource.py:21(V1APIResource)
+        1    0.000    0.000    0.000    0.000 v1_param_ref.py:1()
+        1    0.000    0.000    0.000    0.000 v1_network_policy_list.py:1()
+        1    0.000    0.000    0.000    0.000 console.py:415(ScreenContext)
+        1    0.000    0.000    0.000    0.000 terminal.py:207(__init__streams)
+        1    0.000    0.000    0.000    0.000 v1beta1_variable.py:1()
+        1    0.000    0.000    0.000    0.000 v1_topology_selector_term.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_node.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_class.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_template.py:1()
+        1    0.000    0.000    0.000    0.000 v1_resource_quota_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_label_selector_requirement.py:1()
+        1    0.000    0.000    0.000    0.000 v1_mutating_webhook_configuration_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_network_policy.py:1()
+        1    0.000    0.000    0.000    0.000 v1_flocker_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_grpc_action.py:1()
+        1    0.000    0.000    0.000    0.000 socket.py:220(__init__)
+        1    0.000    0.000    0.000    0.000 v1beta1_ip_address_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_volume_attributes_class_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_disruption_budget_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_status.py:1()
+       14    0.000    0.000    0.000    0.000 threading.py:90(RLock)
+        1    0.000    0.000    0.000    0.000 threading.py:1008(_set_tstate_lock)
+        1    0.000    0.000    0.000    0.000 token.py:23(Token)
+        1    0.000    0.000    0.000    0.000 v1_scale_io_persistent_volume_source.py:21(V1ScaleIOPersistentVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_service_cidr_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_resource_field_selector.py:1()
+        1    0.000    0.000    0.000    0.000 v1_network_policy_egress_rule.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_api_service_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_bound_object_reference.py:1()
+       12    0.000    0.000    0.000    0.000 base.py:76(__init__)
+        1    0.000    0.000    0.000    0.000 policy.py:26(EmailPolicy)
+        1    0.000    0.000    0.000    0.000 validators.py:233(_InValidator)
+       26    0.000    0.000    0.000    0.000 _make.py:427()
+       24    0.000    0.000    0.000    0.000 contextlib.py:428(__init__)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_consumer_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1_session_affinity_config.py:1()
+        1    0.000    0.000    0.000    0.000 v1_namespace_list.py:1()
+        7    0.000    0.000    0.000    0.000 converters.py:29(__init_subclass__)
+        1    0.000    0.000    0.000    0.000 asn1.py:545(hasInts)
+        1    0.000    0.000    0.000    0.000 base.py:150(Certificate)
+        1    0.000    0.000    0.000    0.000 v1_self_subject_rules_review.py:21(V1SelfSubjectRulesReview)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint_rule.py:1()
+        1    0.000    0.000    0.000    0.000 v1_port_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ip_block.py:1()
+        1    0.000    0.000    0.000    0.000 _factories.py:26(__init__)
+        1    0.000    0.000    0.000    0.000 keys.py:1()
+        1    0.000    0.000    0.000    0.000 colorspace.py:28(RGBColor)
+        1    0.000    0.000    0.000    0.000 v1_csi_persistent_volume_source.py:21(V1CSIPersistentVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_allocation_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_class_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_migration_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_se_linux_options.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_azure_file_persistent_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 apiregistration_v1_service_reference.py:1()
+        3    0.000    0.000    0.000    0.000 decorators.py:171(command)
+        1    0.000    0.000    0.000    0.000 utils.py:194(KeepOpenFile)
+        1    0.000    0.000    0.000    0.000 aws.py:138(AwsFetcher)
+       24    0.000    0.000    0.000    0.000 core.py:4052()
+        1    0.000    0.000    0.000    0.000 _base.py:325(Future)
+        1    0.000    0.000    0.000    0.000 message.py:409(__getitem__)
+       24    0.000    0.000    0.000    0.000 __init__.py:892(__bool__)
+        2    0.000    0.000    0.000    0.000 selectors.py:583(_can_use)
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_binding.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_class_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_flow_schema_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cinder_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 apiextensions_v1_webhook_client_config.py:1()
+        1    0.000    0.000    0.000    0.000 _checkbox.py:10(Checkbox)
+        1    0.000    0.000    0.000    0.000 _cpu_features.py:41(have_aes_ni)
+        4    0.000    0.000    0.000    0.000 __init__.py:754(__init__)
+        1    0.000    0.000    0.000    0.000 v1_service_account.py:21(V1ServiceAccount)
+        1    0.000    0.000    0.000    0.000 v1_role.py:1()
+        1    0.000    0.000    0.000    0.000 v1_parent_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_list.py:1()
+       26    0.000    0.000    0.000    0.000 functions.py:39(_record_signature)
+       18    0.000    0.000    0.000    0.000 _make.py:1658()
+        3    0.000    0.000    0.000    0.000 _parser.py:894(_parse_flags)
+        1    0.000    0.000    0.000    0.000 autoscaling_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_param_kind.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_binding.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_binding_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_role_binding_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_portworx_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_dns_config.py:1()
+        1    0.000    0.000    0.000    0.000 v1_linux_container_user.py:1()
+       27    0.000    0.000    0.000    0.000 core.py:4294()
+       24    0.000    0.000    0.000    0.000 functools.py:668()
+        1    0.000    0.000    0.000    0.000 numbers.py:147(Real)
+        1    0.000    0.000    0.000    0.000 v1_service_port.py:21(V1ServicePort)
+        1    0.000    0.000    0.000    0.000 v2_resource_metric_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_volume_attributes_class_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_group_version_resource.py:1()
+        1    0.000    0.000    0.000    0.000 v1_secret_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_replication_controller_spec.py:21(V1ReplicationControllerSpec)
+        1    0.000    0.000    0.000    0.000 v1_flow_schema_condition.py:21(V1FlowSchemaCondition)
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_failure_policy_rule.py:1()
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_list_meta.py:1()
+        1    0.000    0.000    0.000    0.000 v1_affinity.py:1()
+        1    0.000    0.000    0.000    0.000 exec_provider.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_network_device_data.py:1()
+        1    0.000    0.000    0.000    0.000 v1_queuing_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cross_version_object_reference.py:1()
+        1    0.000    0.000    0.000    0.000 _cookiejar.py:1()
+        1    0.000    0.000    0.000    0.000 v1_policy_rules_with_subjects.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_api_resource_list.py:1()
+        1    0.000    0.000    0.000    0.000 text.py:430(blank_copy)
+        1    0.000    0.000    0.000    0.000 {function socket.close at 0xff129909f740}
+        1    0.000    0.000    0.000    0.000 has_key.py:1()
+        1    0.000    0.000    0.000    0.000 pprint.py:106(PrettyPrinter)
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_condition.py:21(V1StatefulSetCondition)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_template_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_pool.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_binding_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_disruption_budget_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_exec_action.py:1()
+        1    0.000    0.000    0.000    0.000 v1_for_zone.py:1()
+        2    0.000    0.000    0.000    0.000 theme.py:91(push_theme)
+        1    0.000    0.000    0.000    0.000 v1_condition.py:21(V1Condition)
+        1    0.000    0.000    0.000    0.000 _date.py:1()
+        1    0.000    0.000    0.000    0.000 apiregistration_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 coordination_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_lease_list.py:1()
+       23    0.000    0.000    0.000    0.000 _collections.py:24()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_version.py:21(V1CustomResourceDefinitionVersion)
+       26    0.000    0.000    0.000    0.000 functions.py:38(signature)
+        1    0.000    0.000    0.000    0.000 certs.py:27(where)
+        1    0.000    0.000    0.000    0.000 trsock.py:1()
+       27    0.000    0.000    0.000    0.000 {method 'endswith' of 'bytes' objects}
+        1    0.000    0.000    0.000    0.000 v1beta2_device_claim.py:1()
+        1    0.000    0.000    0.000    0.000 v1_config_map_projection.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_basic_device.py:21(V1beta1BasicDevice)
+        1    0.000    0.000    0.000    0.000 v1_pod_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_deployment_list.py:21(V1DeploymentList)
+        1    0.000    0.000    0.000    0.000 user_agent.py:1()
+        4    0.000    0.000    0.000    0.000 core.py:1202(__init__)
+        1    0.000    0.000    0.000    0.000 request.py:317(Request)
+        1    0.000    0.000    0.000    0.000 console.py:547(ConsoleThreadLocals)
+        5    0.000    0.000    0.000    0.000 _doc_utils.py:250()
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_slice.py:21(V1beta2ResourceSlice)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_claim.py:1()
+        1    0.000    0.000    0.000    0.000 v1_runtime_class_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_secret_key_selector.py:1()
+        1    0.000    0.000    0.000    0.000 v1_network_policy_port.py:1()
+        4    0.000    0.000    0.000    0.000 utils.py:105(__setattr__)
+        2    0.000    0.000    0.000    0.000 ast.py:531(__instancecheck__)
+        1    0.000    0.000    0.000    0.000 {built-in method time.tzset}
+        1    0.000    0.000    0.000    0.000 subprocess.py:695(_use_posix_spawn)
+        1    0.000    0.000    0.000    0.000 v1_resource_quota_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_driver_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_node_list.py:1()
+        1    0.000    0.000    0.000    0.000 dh.py:146(DHParameters)
+        3    0.000    0.000    0.000    0.000 six.py:205(load_module)
+        1    0.000    0.000    0.000    0.000 {method 'bind' of '_socket.socket' objects}
+        1    0.000    0.000    0.000    0.000 v1_deployment_spec.py:21(V1DeploymentSpec)
+        1    0.000    0.000    0.000    0.000 v1_deployment_status.py:21(V1DeploymentStatus)
+        1    0.000    0.000    0.000    0.000 internal_apiserver_v1alpha1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v2_object_metric_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_class_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_photon_persistent_disk_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 escape.py:1()
+        1    0.000    0.000    0.000    0.000 pickle.py:1137(_Unpickler)
+        1    0.000    0.000    0.000    0.000 v1_role_ref.py:1()
+        4    0.000    0.000    0.000    0.000 terminal.py:929(normal)
+        3    0.000    0.000    0.000    0.000 __init__.py:121(wrapped)
+        2    0.000    0.000    0.000    0.000 profile_service.py:7(list_profiles)
+        4    0.000    0.000    0.000    0.000 text.py:1098()
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_spec.py:21(V1PersistentVolumeClaimSpec)
+        1    0.000    0.000    0.000    0.000 storage_v1alpha1_api.py:1()
+        1    0.000    0.000    0.000    0.000 discovery_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_template_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_flow_distinguisher_method.py:1()
+       14    0.000    0.000    0.000    0.000 __init__.py:370(_FuncPtr)
+        1    0.000    0.000    0.000    0.000 v1_status_details.py:21(V1StatusDetails)
+        1    0.000    0.000    0.000    0.000 events_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 autoscaling_v2_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_binding_list.py:1()
+        1    0.000    0.000    0.000    0.000 v1_resource_requirements.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_runtime_handler.py:1()
+        1    0.000    0.000    0.000    0.000 v1_http_ingress_rule_value.py:1()
+        3    0.000    0.000    0.000    0.000 argparse.py:1166(__init__)
+        1    0.000    0.000    0.000    0.000 v2_object_metric_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_list.py:21(V1PersistentVolumeClaimList)
+        1    0.000    0.000    0.000    0.000 v1_group_subject.py:1()
+        3    0.000    0.000    0.000    0.000 repr.py:42(do_replace)
+        1    0.000    0.000    0.000    0.000 api_client.py:33(ApiClient)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_sub_request.py:21(V1beta1DeviceSubRequest)
+        2    0.000    0.000    0.000    0.000 _figure.py:87(_set_slots)
+        1    0.000    0.000    0.000    0.000 v1_node_selector_requirement.py:1()
+        1    0.000    0.000    0.000    0.000 serving.py:436()
+       20    0.000    0.000    0.000    0.000 enum.py:1376()
+        1    0.000    0.000    0.000    0.000 v1_csi_driver_spec.py:21(V1CSIDriverSpec)
+        1    0.000    0.000    0.000    0.000 v1alpha1_match_condition.py:1()
+        1    0.000    0.000    0.000    0.000 v1_resource_quota_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_affinity.py:1()
+        1    0.000    0.000    0.000    0.000 flowcontrol_v1_subject.py:21(FlowcontrolV1Subject)
+        2    0.000    0.000    0.000    0.000 reprlib.py:12(decorating_function)
+        1    0.000    0.000    0.000    0.000 mimetypes.py:399(_default_mime_types)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_slice_spec.py:21(V1beta1ResourceSliceSpec)
+        1    0.000    0.000    0.000    0.000 v2_container_resource_metric_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_rolling_update_daemon_set.py:1()
+        1    0.000    0.000    0.000    0.000 v1_preconditions.py:1()
+       22    0.000    0.000    0.000    0.000 core.py:3492()
+        1    0.000    0.000    0.000    0.000 dh.py:173(DHPublicKey)
+       16    0.000    0.000    0.000    0.000 _collections.py:23(freeze)
+       22    0.000    0.000    0.000    0.000 :797(is_package)
+        4    0.000    0.000    0.000    0.000 :1081(__subclasshook__)
+        1    0.000    0.000    0.000    0.000 v1beta1_lease_candidate_spec.py:21(V1beta1LeaseCandidateSpec)
+        1    0.000    0.000    0.000    0.000 dateutil.py:21(__init__)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_allocation_result.py:1()
+        1    0.000    0.000    0.000    0.000 v1_validating_webhook_configuration_list.py:21(V1ValidatingWebhookConfigurationList)
+        1    0.000    0.000    0.000    0.000 v1_node_runtime_handler_features.py:1()
+        1    0.000    0.000    0.000    0.000 v1_match_condition.py:1()
+        1    0.000    0.000    0.000    0.000 core_v1_event_series.py:1()
+       24    0.000    0.000    0.000    0.000 core.py:4293()
+        1    0.000    0.000    0.000    0.000 core.py:4790(__init__)
+       13    0.000    0.000    0.000    0.000 py3compat.py:123(bchr)
+        1    0.000    0.000    0.000    0.000 v1_key_to_path.py:1()
+        7    0.000    0.000    0.000    0.000 __init__.py:788(__new__)
+        4    0.000    0.000    0.000    0.000 typing.py:277(_unpack_args)
+        1    0.000    0.000    0.000    0.000 v1_subject_access_review_spec.py:21(V1SubjectAccessReviewSpec)
+        1    0.000    0.000    0.000    0.000 storagemigration_v1alpha1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_class_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_allocation_result.py:1()
+        1    0.000    0.000    0.000    0.000 v1_seccomp_profile.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_failure_policy_on_exit_codes_requirement.py:1()
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_update_strategy.py:1()
+        1    0.000    0.000    0.000    0.000 sharedexample.py:1()
+        1    0.000    0.000    0.000    0.000 server.py:568()
+        7    0.000    0.000    0.000    0.000 context_service.py:14(current_context)
+        8    0.000    0.000    0.000    0.000 typing.py:1386()
+        1    0.000    0.000    0.000    0.000 _oid.py:13(ExtensionOID)
+        1    0.000    0.000    0.000    0.000 v1_config_map.py:21(V1ConfigMap)
+        1    0.000    0.000    0.000    0.000 v1_named_rule_with_operations.py:21(V1NamedRuleWithOperations)
+        1    0.000    0.000    0.000    0.000 v1_service.py:21(V1Service)
+        8    0.000    0.000    0.000    0.000 _doc_utils.py:279(mix)
+        1    0.000    0.000    0.000    0.000 v1alpha3_network_device_data.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_migration_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_allocation_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_anti_affinity.py:1()
+        1    0.000    0.000    0.000    0.000 config_exception.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_class_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_resource_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_scoped_resource_selector_requirement.py:1()
+        1    0.000    0.000    0.000    0.000 v1_non_resource_attributes.py:1()
+        1    0.000    0.000    0.000    0.000 v1_local_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_daemon_endpoint.py:1()
+        1    0.000    0.000    0.000    0.000 v1_api_group_list.py:21(V1APIGroupList)
+        3    0.000    0.000    0.000    0.000 :121(_splitext)
+        1    0.000    0.000    0.000    0.000 v1_cron_job_spec.py:21(V1CronJobSpec)
+        1    0.000    0.000    0.000    0.000 storage_v1beta1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_opaque_device_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_resource_health.py:1()
+        1    0.000    0.000    0.000    0.000 v1_container_resize_policy.py:1()
+        1    0.000    0.000    0.000    0.000 v1_stateful_set.py:21(V1StatefulSet)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_class_list.py:21(V1beta1DeviceClassList)
+        1    0.000    0.000    0.000    0.000 v1_secret_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_failure_policy.py:1()
+        1    0.000    0.000    0.000    0.000 v1_network_policy_ingress_rule.py:1()
+        1    0.000    0.000    0.000    0.000 secrets.py:1()
+        1    0.000    0.000    0.000    0.000 validators.py:359(deep_iterable)
+       15    0.000    0.000    0.000    0.000 _make.py:347(_collect_base_attrs_broken)
+       19    0.000    0.000    0.000    0.000 enum.py:177(__init__)
+        1    0.000    0.000    0.000    0.000 base.py:429(CertificateSigningRequest)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_condition.py:21(V1CustomResourceDefinitionCondition)
+        1    0.000    0.000    0.000    0.000 v2_resource_metric_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request_status.py:1()
+        1    0.000    0.000    0.000    0.000 types.py:333(DateTime)
+        1    0.000    0.000    0.000    0.000 ruler.py:68(Rule)
+        1    0.000    0.000    0.000    0.000 connection.py:84(HTTPConnection)
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request_condition.py:21(V1CertificateSigningRequestCondition)
+        1    0.000    0.000    0.000    0.000 v1beta1_allocated_device_status.py:21(V1beta1AllocatedDeviceStatus)
+        1    0.000    0.000    0.000    0.000 apps_v1_api.py:27(AppsV1Api)
+        1    0.000    0.000    0.000    0.000 v1_node_config_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_daemon_endpoints.py:1()
+        1    0.000    0.000    0.000    0.000 v1_job_template_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_audit_annotation.py:1()
+        2    0.000    0.000    0.000    0.000 {method 'findall' of 're.Pattern' objects}
+        2    0.000    0.000    0.000    0.000 _default.py:6(__init__)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_template_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_failure_policy_on_pod_conditions_pattern.py:1()
+        1    0.000    0.000    0.000    0.000 v1_non_resource_rule.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_dns_config_option.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_backend.py:1()
+        2    0.000    0.000    0.000    0.000 core.py:3510(_generateDefaultName)
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request_spec.py:21(V1CertificateSigningRequestSpec)
+        1    0.000    0.000    0.000    0.000 coordination_v1alpha2_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_cluster_trust_bundle_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_migration_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_limit_response.py:1()
+        1    0.000    0.000    0.000    0.000 v1_container_image.py:1()
+        1    0.000    0.000    0.000    0.000 _policybase.py:279(Compat32)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_status.py:21(V1PersistentVolumeClaimStatus)
+        1    0.000    0.000    0.000    0.000 node_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_resource_claim.py:1()
+        1    0.000    0.000    0.000    0.000 types.py:164(FuncParamType)
+        1    0.000    0.000    0.000    0.000 core.py:5079(ZeroOrMore)
+        1    0.000    0.000    0.000    0.000 core.py:133()
+       20    0.000    0.000    0.000    0.000 Primality.py:267()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_constraint.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_apply_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_image_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 compiler.py:1365(_FinalizeInfo)
+        1    0.000    0.000    0.000    0.000 utils.py:2196(S3EndpointSetter)
+        1    0.000    0.000    0.000    0.000 core.py:3647(__init__)
+       14    0.000    0.000    0.000    0.000 _make.py:921()
+        3    0.000    0.000    0.000    0.000 text.py:666(rstrip_end)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_request_allocation_result.py:21(V1beta1DeviceRequestAllocationResult)
+        1    0.000    0.000    0.000    0.000 v2_pods_metric_source.py:1()
+        1    0.000    0.000    0.000    0.000 certificates_v1alpha1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_claim_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_ip.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_conversion.py:1()
+       12    0.000    0.000    0.000    0.000 six.py:131(__init__)
+        1    0.000    0.000    0.000    0.000 aws.py:2169(__init__)
+       24    0.000    0.000    0.000    0.000 contextlib.py:431(__enter__)
+        1    0.000    0.000    0.000    0.000 v1_volume_projection.py:21(V1VolumeProjection)
+        1    0.000    0.000    0.000    0.000 v1_rolling_update_stateful_set_strategy.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_resource_claim_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_node_swap_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_volume_source.py:1()
+       15    0.000    0.000    0.000    0.000 _make.py:764()
+        1    0.000    0.000    0.000    0.000 align.py:234(VerticalCenter)
+       14    0.000    0.000    0.000    0.000 {built-in method builtins.vars}
+        2    0.000    0.000    0.000    0.000 {method 'read' of '_io.StringIO' objects}
+        4    0.000    0.000    0.000    0.000 _doc_utils.py:261()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_claim_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_counter_consumption.py:1()
+        1    0.000    0.000    0.000    0.000 v1_selectable_field.py:1()
+        1    0.000    0.000    0.000    0.000 v1_namespace_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_host_path_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_container_state_waiting.py:1()
+        1    0.000    0.000    0.000    0.000 models.py:296(CliDetectionResult)
+        5    0.000    0.000    0.000    0.000 weakref.py:367(__init__)
+        1    0.000    0.000    0.000    0.000 retry.py:202(__init__)
+        1    0.000    0.000    0.000    0.000 apiextensions_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_counter_consumption.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_constraint.py:1()
+        1    0.000    0.000    0.000    0.000 v1_projected_volume_source.py:1()
+        1    0.000    0.000    0.000    0.000 asn1.py:554()
+        1    0.000    0.000    0.000    0.000 asn1.py:484(__init__)
+        3    0.000    0.000    0.000    0.000 text.py:720(render)
+        1    0.000    0.000    0.000    0.000 v1beta2_allocation_result.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_class_spec.py:1()
+        1    0.000    0.000    0.000    0.000 keyboard.py:123(_alternative_left_right)
+       17    0.000    0.000    0.000    0.000 {method 'groups' of 're.Match' objects}
+        1    0.000    0.000    0.000    0.000 authorization_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_secret_env_source.py:1()
+        1    0.000    0.000    0.000    0.000 v1_preferred_scheduling_term.py:1()
+        1    0.000    0.000    0.000    0.000 storage_v1_token_request.py:1()
+       15    0.000    0.000    0.000    0.000 _make.py:1207(_determine_attrs_eq_order)
+        3    0.000    0.000    0.000    0.000 :1733(_get_supported_file_loaders)
+        1    0.000    0.000    0.000    0.000 oauth2_session.py:18(OAuth2Session)
+        1    0.000    0.000    0.000    0.000 v1_endpoint_slice.py:21(V1EndpointSlice)
+        1    0.000    0.000    0.000    0.000 v1_node_condition.py:21(V1NodeCondition)
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment.py:21(V1VolumeAttachment)
+        1    0.000    0.000    0.000    0.000 v1alpha3_basic_device.py:21(V1alpha3BasicDevice)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_allocation_result.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint_rule_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_list.py:21(V1StatefulSetList)
+        1    0.000    0.000    0.000    0.000 __init__.py:302(_TimedCache)
+        1    0.000    0.000    0.000    0.000 v1_container_state_terminated.py:21(V1ContainerStateTerminated)
+        1    0.000    0.000    0.000    0.000 _strptime.py:95(__calc_am_pm)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_consumer_reference.py:21(V1alpha3ResourceClaimConsumerReference)
+        1    0.000    0.000    0.000    0.000 v1alpha3_counter_set.py:1()
+        1    0.000    0.000    0.000    0.000 v1_scheduling.py:1()
+        1    0.000    0.000    0.000    0.000 v1_pod_template_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_non_resource_policy_rule.py:1()
+        1    0.000    0.000    0.000    0.000 v1_limit_range_spec.py:1()
+        1    0.000    0.000    0.000    0.000 _json.py:1()
+       13    0.000    0.000    0.000    0.000 cache_control.py:7(cache_control_property)
+       17    0.000    0.000    0.000    0.000 core.py:4570(recurse)
+        2    0.000    0.000    0.000    0.000 results.py:459()
+        1    0.000    0.000    0.000    0.000 poolmanager.py:199(__init__)
+       14    0.000    0.000    0.000    0.000 _IntegerGMP.py:356(__nonzero__)
+       10    0.000    0.000    0.000    0.000 functools.py:966(__init__)
+        2    0.000    0.000    0.000    0.000 _parser.py:96(checkgroup)
+        1    0.000    0.000    0.000    0.000 v1_replica_set_status.py:21(V1ReplicaSetStatus)
+        1    0.000    0.000    0.000    0.000 v1_node_spec.py:21(V1NodeSpec)
+        1    0.000    0.000    0.000    0.000 logs_api.py:1()
+        1    0.000    0.000    0.000    0.000 v2_pods_metric_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_reference.py:1()
+        1    0.000    0.000    0.000    0.000 v1_attached_volume.py:1()
+        1    0.000    0.000    0.000    0.000 _cryptography_rsa.py:38(RSAVerifier)
+        1    0.000    0.000    0.000    0.000 pyfzf.py:1()
+       15    0.000    0.000    0.000    0.000 _make.py:441()
+        1    0.000    0.000    0.000    0.000 __init__.py:1067(StreamHandler)
+        1    0.000    0.000    0.000    0.000 v1_pod_readiness_gate.py:1()
+        1    0.000    0.000    0.000    0.000 v1_overhead.py:1()
+        1    0.000    0.000    0.000    0.000 v1_label_selector_attributes.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_names.py:21(V1CustomResourceDefinitionNames)
+        1    0.000    0.000    0.000    0.000 v1_http_get_action.py:21(V1HTTPGetAction)
+        1    0.000    0.000    0.000    0.000 v1_self_subject_review.py:21(V1SelfSubjectReview)
+        1    0.000    0.000    0.000    0.000 v1_container_state_running.py:1()
+        1    0.000    0.000    0.000    0.000 events.py:644(BaseDefaultEventLoopPolicy)
+        1    0.000    0.000    0.000    0.000 _funcs.py:1()
+        1    0.000    0.000    0.000    0.000 _oid.py:86(SignatureAlgorithmOID)
+        1    0.000    0.000    0.000    0.000 v1_horizontal_pod_autoscaler.py:21(V1HorizontalPodAutoscaler)
+        1    0.000    0.000    0.000    0.000 v1_rbd_volume_source.py:21(V1RBDVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_service_cidr.py:21(V1ServiceCIDR)
+        1    0.000    0.000    0.000    0.000 v1_subject_access_review.py:21(V1SubjectAccessReview)
+        1    0.000    0.000    0.000    0.000 v1beta1_match_resources.py:21(V1beta1MatchResources)
+        1    0.000    0.000    0.000    0.000 authentication_v1_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_capacity.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_device_attribute.py:21(V1beta2DeviceAttribute)
+        1    0.000    0.000    0.000    0.000 v1_node_features.py:1()
+        1    0.000    0.000    0.000    0.000 v1_param_kind.py:1()
+        1    0.000    0.000    0.000    0.000 v1_glusterfs_persistent_volume_source.py:21(V1GlusterfsPersistentVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_client_ip_config.py:1()
+        1    0.000    0.000    0.000    0.000 map.py:382(MapAdapter)
+        1    0.000    0.000    0.000    0.000 pkcs12.py:39(PKCS12Certificate)
+        5    0.000    0.000    0.000    0.000 pathlib.py:524(_format_parsed_parts)
+        1    0.000    0.000    0.000    0.000 v1_lease_spec.py:21(V1LeaseSpec)
+        1    0.000    0.000    0.000    0.000 v1_rbd_persistent_volume_source.py:21(V1RBDPersistentVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_spec.py:21(V1alpha1MutatingAdmissionPolicySpec)
+        1    0.000    0.000    0.000    0.000 core.py:1817(__init__)
+        1    0.000    0.000    0.000    0.000 security.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:98(__compat__)
+        1    0.000    0.000    0.000    0.000 openid_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_load_balancer_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ingress_spec.py:21(V1IngressSpec)
+       13    0.000    0.000    0.000    0.000 utils.py:63(pass_environment)
+        1    0.000    0.000    0.000    0.000 credentials.py:31(Credentials)
+        1    0.000    0.000    0.000    0.000 _collections.py:206(HTTPHeaderDict)
+        1    0.000    0.000    0.000    0.000 v1alpha2_lease_candidate_spec.py:21(V1alpha2LeaseCandidateSpec)
+        1    0.000    0.000    0.000    0.000 v1alpha3_counter.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_selector.py:1()
+        6    0.000    0.000    0.000    0.000 core.py:4987(stopOn)
+       14    0.000    0.000    0.000    0.000 _make.py:932()
+        5    0.000    0.000    0.000    0.000 _parser.py:286(seek)
+        1    0.000    0.000    0.000    0.000 _weakrefset.py:39(_remove)
+        1    0.000    0.000    0.000    0.000 rsa.py:17(RSAPrivateKey)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_status.py:21(V2HorizontalPodAutoscalerStatus)
+        1    0.000    0.000    0.000    0.000 node_api.py:1()
+       15    0.000    0.000    0.000    0.000 _make.py:2047(_determine_setters)
+       15    0.000    0.000    0.000    0.000 {built-in method _struct.unpack}
+        1    0.000    0.000    0.000    0.000 v1_flow_schema.py:21(V1FlowSchema)
+        1    0.000    0.000    0.000    0.000 v1_owner_reference.py:21(V1OwnerReference)
+        1    0.000    0.000    0.000    0.000 _monitor.py:60(data_init)
+        1    0.000    0.000    0.000    0.000 v1beta1_cluster_trust_bundle_spec.py:21(V1beta1ClusterTrustBundleSpec)
+        1    0.000    0.000    0.000    0.000 v1_downward_api_volume_file.py:21(V1DownwardAPIVolumeFile)
+        1    0.000    0.000    0.000    0.000 _cryptography_rsa.py:88(RSASigner)
+        2    0.000    0.000    0.000    0.000 _adapters.py:165(wrap_spec)
+        5    0.000    0.000    0.000    0.000 _weakrefset.py:37(__init__)
+       20    0.000    0.000    0.000    0.000 {method 'isalpha' of 'str' objects}
+        1    0.000    0.000    0.000    0.000 v1_csi_storage_capacity.py:21(V1CSIStorageCapacity)
+        1    0.000    0.000    0.000    0.000 v1_pod_disruption_budget_status.py:21(V1PodDisruptionBudgetStatus)
+        1    0.000    0.000    0.000    0.000 v1_replication_controller_status.py:21(V1ReplicationControllerStatus)
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy.py:21(V1ValidatingAdmissionPolicy)
+        1    0.000    0.000    0.000    0.000 pydoc.py:570(HTMLDoc)
+        1    0.000    0.000    0.000    0.000 apiregistration_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_list.py:21(V1PersistentVolumeList)
+        1    0.000    0.000    0.000    0.000 v1_local_object_reference.py:1()
+        1    0.000    0.000    0.000    0.000 scheduling_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_service_cidr_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_service_list.py:21(V1ServiceList)
+        1    0.000    0.000    0.000    0.000 v1_pod_os.py:1()
+        1    0.000    0.000    0.000    0.000 v1_ip_address_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_cluster_role_list.py:21(V1ClusterRoleList)
+        1    0.000    0.000    0.000    0.000 v1_endpoints.py:21(V1Endpoints)
+        1    0.000    0.000    0.000    0.000 RSA.py:52(RsaKey)
+        1    0.000    0.000    0.000    0.000 v1beta2_exact_device_request.py:21(V1beta2ExactDeviceRequest)
+        1    0.000    0.000    0.000    0.000 resource_api.py:1()
+        1    0.000    0.000    0.000    0.000 batch_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_json_patch.py:1()
+       18    0.000    0.000    0.000    0.000 results.py:266(__bool__)
+        1    0.000    0.000    0.000    0.000 v1_node_selector.py:1()
+        1    0.000    0.000    0.000    0.000 parsers.py:380(BaseXMLResponseParser)
+       15    0.000    0.000    0.000    0.000 _make.py:307(_has_own_attribute)
+        1    0.000    0.000    0.000    0.000 console.py:322(Capture)
+        1    0.000    0.000    0.000    0.000 v1_fc_volume_source.py:21(V1FCVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_job_condition.py:21(V1JobCondition)
+        1    0.000    0.000    0.000    0.000 _monitor.py:10(monitor_class)
+        2    0.000    0.000    0.000    0.000 _doc_utils.py:268()
+        1    0.000    0.000    0.000    0.000 v1_vsphere_virtual_disk_volume_source.py:21(V1VsphereVirtualDiskVolumeSource)
+        1    0.000    0.000    0.000    0.000 __init__.py:376(TTLCache)
+        4    0.000    0.000    0.000    0.000 argparse.py:2224()
+        1    0.000    0.000    0.000    0.000 process.py:71(BaseProcess)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_condition.py:21(V1PersistentVolumeClaimCondition)
+        1    0.000    0.000    0.000    0.000 v1beta2_counter.py:1()
+        1    0.000    0.000    0.000    0.000 v1_flow_schema_list.py:21(V1FlowSchemaList)
+       17    0.000    0.000    0.000    0.000 {method 'expandtabs' of 'str' objects}
+       16    0.000    0.000    0.000    0.000 {built-in method _stat.S_ISLNK}
+        2    0.000    0.000    0.000    0.000 _doc_utils.py:267()
+        1    0.000    0.000    0.000    0.000 autoscaling_api.py:1()
+        1    0.000    0.000    0.000    0.000 certificates_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_cel_device_selector.py:1()
+        1    0.000    0.000    0.000    0.000 v1_scale_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_component_status.py:21(V1ComponentStatus)
+        1    0.000    0.000    0.000    0.000 v1_container_user.py:1()
+        1    0.000    0.000    0.000    0.000 console.py:367(__exit__)
+        1    0.000    0.000    0.000    0.000 newline.py:1()
+        2    0.000    0.000    0.000    0.000 argparse.py:229()
+        2    0.000    0.000    0.000    0.000 subprocess.py:1905(_handle_exitstatus)
+        1    0.000    0.000    0.000    0.000 v1_flex_persistent_volume_source.py:21(V1FlexPersistentVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_object_reference.py:21(V1ObjectReference)
+        1    0.000    0.000    0.000    0.000 policy_api.py:1()
+        1    0.000    0.000    0.000    0.000 core_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_validation.py:1()
+        1    0.000    0.000    0.000    0.000 _path.py:1()
+        2    0.000    0.000    0.000    0.000 threading.py:236(__init__)
+        1    0.000    0.000    0.000    0.000 pathlib.py:456(PurePath)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:671(_BaseNetwork)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_column_definition.py:21(V1CustomResourceColumnDefinition)
+        1    0.000    0.000    0.000    0.000 v1_limit_range_item.py:21(V1LimitRangeItem)
+        1    0.000    0.000    0.000    0.000 v1_storage_os_persistent_volume_source.py:21(V1StorageOSPersistentVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_request_allocation_result.py:21(V1beta2DeviceRequestAllocationResult)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_sub_request.py:21(V1beta2DeviceSubRequest)
+        1    0.000    0.000    0.000    0.000 events_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1_scope_selector.py:1()
+        1    0.000    0.000    0.000    0.000 v1_component_status_list.py:21(V1ComponentStatusList)
+        1    0.000    0.000    0.000    0.000 __init__.py:531(Distribution)
+        1    0.000    0.000    0.000    0.000 storage_api.py:1()
+       15    0.000    0.000    0.000    0.000 _make.py:477()
+        2    0.000    0.000    0.000    0.000 warnings.py:466(__enter__)
+        1    0.000    0.000    0.000    0.000 v1_api_service_spec.py:21(V1APIServiceSpec)
+        1    0.000    0.000    0.000    0.000 v1_storage_os_volume_source.py:21(V1StorageOSVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim.py:21(V1beta1ResourceClaim)
+        1    0.000    0.000    0.000    0.000 cache_control.py:22(_CacheControl)
+        3    0.000    0.000    0.000    0.000 utils.py:96(__new__)
+        1    0.000    0.000    0.000    0.000 rsa.py:68(RSAPublicKey)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_spec.py:21(V2HorizontalPodAutoscalerSpec)
+        1    0.000    0.000    0.000    0.000 v2_metric_status.py:21(V2MetricStatus)
+        1    0.000    0.000    0.000    0.000 v1_runtime_class.py:21(V1RuntimeClass)
+        1    0.000    0.000    0.000    0.000 v1_toleration.py:21(V1Toleration)
+        1    0.000    0.000    0.000    0.000 authentication_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta2_cel_device_selector.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha1_variable.py:21(V1alpha1Variable)
+        1    0.000    0.000    0.000    0.000 mtls.py:1()
+        2    0.000    0.000    0.000    0.000 core.py:1012(reset_cache)
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1_namespace_spec.py:1()
+        1    0.000    0.000    0.000    0.000 v1_env_var_source.py:21(V1EnvVarSource)
+        1    0.000    0.000    0.000    0.000 v1_endpoint_address.py:21(V1EndpointAddress)
+        1    0.000    0.000    0.000    0.000 {built-in method today}
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume.py:21(V1PersistentVolume)
+        1    0.000    0.000    0.000    0.000 networking_v1_api.py:27(NetworkingV1Api)
+        1    0.000    0.000    0.000    0.000 flowcontrol_apiserver_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_service_cidr_status.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_device_attribute.py:21(V1beta1DeviceAttribute)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_class.py:21(V1beta1DeviceClass)
+        1    0.000    0.000    0.000    0.000 matcher.py:20(State)
+        1    0.000    0.000    0.000    0.000 quota.py:1()
+        1    0.000    0.000    0.000    0.000 console.py:334(__enter__)
+       19    0.000    0.000    0.000    0.000 traceback.py:307(__len__)
+        2    0.000    0.000    0.000    0.000 {method 'replace' of 'datetime.datetime' objects}
+        1    0.000    0.000    0.000    0.000 scanner.py:46(Scanner)
+       14    0.000    0.000    0.000    0.000 argparse.py:2234(_parse_optional)
+        1    0.000    0.000    0.000    0.000 v1_api_group.py:21(V1APIGroup)
+        1    0.000    0.000    0.000    0.000 v1_pod_affinity_term.py:21(V1PodAffinityTerm)
+        1    0.000    0.000    0.000    0.000 v1_policy_rule.py:21(V1PolicyRule)
+        1    0.000    0.000    0.000    0.000 v1_token_review.py:21(V1TokenReview)
+        1    0.000    0.000    0.000    0.000 v1_volume_mount_status.py:21(V1VolumeMountStatus)
+        1    0.000    0.000    0.000    0.000 v1_service_account_list.py:21(V1ServiceAccountList)
+        1    0.000    0.000    0.000    0.000 v1_mutating_webhook_configuration.py:21(V1MutatingWebhookConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_eviction.py:21(V1Eviction)
+        1    0.000    0.000    0.000    0.000 v1_gce_persistent_disk_volume_source.py:21(V1GCEPersistentDiskVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_aggregation_rule.py:1()
+        1    0.000    0.000    0.000    0.000 policy.py:93(__init__)
+        1    0.000    0.000    0.000    0.000 _other.py:1()
+        4    0.000    0.000    0.000    0.000 contextlib.py:527(_push_exit_callback)
+       12    0.000    0.000    0.000    0.000 {built-in method _stat.S_ISREG}
+        2    0.000    0.000    0.000    0.000 tokenize.py:329(find_cookie)
+        1    0.000    0.000    0.000    0.000 ptyprocess.py:128(PtyProcess)
+        1    0.000    0.000    0.000    0.000 v1_azure_disk_volume_source.py:21(V1AzureDiskVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_spec.py:21(V1CustomResourceDefinitionSpec)
+        1    0.000    0.000    0.000    0.000 v1_rule_with_operations.py:21(V1RuleWithOperations)
+        1    0.000    0.000    0.000    0.000 storagemigration_api.py:1()
+        1    0.000    0.000    0.000    0.000 version_api.py:1()
+        1    0.000    0.000    0.000    0.000 apis_api.py:1()
+        1    0.000    0.000    0.000    0.000 cache_control.py:144(ResponseCacheControl)
+        3    0.000    0.000    0.000    0.000 __init__.py:146(_getattr)
+        6    0.000    0.000    0.000    0.000 plugins.py:98()
+        1    0.000    0.000    0.000    0.000 _posix_key.py:1()
+        1    0.000    0.000    0.000    0.000 calendar.py:52(_localized_month)
+        8    0.000    0.000    0.000    0.000 {built-in method time.strftime}
+        1    0.000    0.000    0.000    0.000 v1_ceph_fs_persistent_volume_source.py:21(V1CephFSPersistentVolumeSource)
+        3    0.000    0.000    0.000    0.000 _utility.py:459()
+        1    0.000    0.000    0.000    0.000 internal_apiserver_api.py:1()
+        1    0.000    0.000    0.000    0.000 networking_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_template.py:21(V1alpha3ResourceClaimTemplate)
+        1    0.000    0.000    0.000    0.000 v1_flow_schema_spec.py:21(V1FlowSchemaSpec)
+       16    0.000    0.000    0.000    0.000 utils.py:123(__init__)
+        1    0.000    0.000    0.000    0.000 _factories.py:56(__init__)
+        1    0.000    0.000    0.000    0.000 core.py:3150(QuotedString)
+        1    0.000    0.000    0.000    0.000 es256.py:104(ES256Signer)
+        1    0.000    0.000    0.000    0.000 argparse.py:166(HelpFormatter)
+        4    0.000    0.000    0.000    0.000 :1103(_sanity_check)
+        1    0.000    0.000    0.000    0.000 emitter.py:31(Emitter)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_slice_list.py:21(V1alpha3ResourceSliceList)
+        1    0.000    0.000    0.000    0.000 v1beta1_parent_reference.py:21(V1beta1ParentReference)
+        1    0.000    0.000    0.000    0.000 v1_pod_scheduling_gate.py:1()
+        1    0.000    0.000    0.000    0.000 v1_horizontal_pod_autoscaler_list.py:21(V1HorizontalPodAutoscalerList)
+        1    0.000    0.000    0.000    0.000 extensions.py:1092()
+        6    0.000    0.000    0.000    0.000 typing.py:2904()
+        1    0.000    0.000    0.000    0.000 response.py:300(BaseHTTPResponse)
+        1    0.000    0.000    0.000    0.000 authorization_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_class_configuration.py:1()
+        1    0.000    0.000    0.000    0.000 v1_storage_class_list.py:21(V1StorageClassList)
+        1    0.000    0.000    0.000    0.000 v1_token_review_status.py:21(V1TokenReviewStatus)
+        1    0.000    0.000    0.000    0.000 v1_typed_object_reference.py:21(V1TypedObjectReference)
+       11    0.000    0.000    0.000    0.000 utils.py:42()
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_slice.py:21(V1alpha3ResourceSlice)
+        1    0.000    0.000    0.000    0.000 v1alpha1_cluster_trust_bundle_list.py:21(V1alpha1ClusterTrustBundleList)
+        1    0.000    0.000    0.000    0.000 v1_validation.py:21(V1Validation)
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment_list.py:21(V1VolumeAttachmentList)
+        1    0.000    0.000    0.000    0.000 v1_service_cidr_list.py:21(V1ServiceCIDRList)
+       14    0.000    0.000    0.000    0.000 _make.py:2023(_assign)
+        1    0.000    0.000    0.000    0.000 argparse.py:1154(_SubParsersAction)
+        1    0.000    0.000    0.000    0.000 feedparser.py:139(__init__)
+        1    0.000    0.000    0.000    0.000 parser.py:37(Parser)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_toleration.py:21(V1beta2DeviceToleration)
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_binding.py:21(V1ValidatingAdmissionPolicyBinding)
+       10    0.000    0.000    0.000    0.000 _make.py:1145(add_setattr)
+        3    0.000    0.000    0.000    0.000 weakref.py:495(popitem)
+        1    0.000    0.000    0.000    0.000 _parser.py:1006(addgroup)
+        1    0.000    0.000    0.000    0.000 aead.py:1()
+        1    0.000    0.000    0.000    0.000 coordination_api.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:134()
+        1    0.000    0.000    0.000    0.000 cookies.py:236(Morsel)
+        5    0.000    0.000    0.000    0.000 validators.py:314(is_callable)
+        1    0.000    0.000    0.000    0.000 __init__.py:1803(LoggerAdapter)
+        1    0.000    0.000    0.000    0.000 v1_replica_set_condition.py:21(V1ReplicaSetCondition)
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_binding_list.py:21(V1ValidatingAdmissionPolicyBindingList)
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_list.py:21(V1ValidatingAdmissionPolicyList)
+        1    0.000    0.000    0.000    0.000 v1_node_config_status.py:21(V1NodeConfigStatus)
+        1    0.000    0.000    0.000    0.000 base.py:1023(RevokedCertificateBuilder)
+        1    0.000    0.000    0.000    0.000 node_service.py:9(__init__)
+       15    0.000    0.000    0.000    0.000 _make.py:679()
+        1    0.000    0.000    0.000    0.000 link.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha3_allocated_device_status.py:21(V1alpha3AllocatedDeviceStatus)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_request_allocation_result.py:21(V1alpha3DeviceRequestAllocationResult)
+        1    0.000    0.000    0.000    0.000 v1_ingress_load_balancer_ingress.py:21(V1IngressLoadBalancerIngress)
+        1    0.000    0.000    0.000    0.000 v1_env_from_source.py:21(V1EnvFromSource)
+        1    0.000    0.000    0.000    0.000 iam.py:49(Signer)
+        1    0.000    0.000    0.000    0.000 dataclasses.py:1128(_get_slots)
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_condition.py:21(V1DaemonSetCondition)
+        1    0.000    0.000    0.000    0.000 v1alpha1_named_rule_with_operations.py:21(V1alpha1NamedRuleWithOperations)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_toleration.py:21(V1alpha3DeviceToleration)
+        1    0.000    0.000    0.000    0.000 resource_v1alpha3_api.py:27(ResourceV1alpha3Api)
+        3    0.000    0.000    0.000    0.000 _doc_utils.py:248()
+        1    0.000    0.000    0.000    0.000 apps_api.py:1()
+        1    0.000    0.000    0.000    0.000 v1alpha2_lease_candidate.py:21(V1alpha2LeaseCandidate)
+        1    0.000    0.000    0.000    0.000 v1_endpoints_list.py:21(V1EndpointsList)
+       11    0.000    0.000    0.000    0.000 utils.py:43()
+        1    0.000    0.000    0.000    0.000 credentials.py:556(UserAccessTokenCredentials)
+        2    0.000    0.000    0.000    0.000 segment.py:184(line)
+        4    0.000    0.000    0.000    0.000 hooks.py:56(register_post_hook)
+        1    0.000    0.000    0.000    0.000 subprocess.py:749(Popen)
+        1    0.000    0.000    0.000    0.000 feedparser.py:197(_new_message)
+        1    0.000    0.000    0.000    0.000 v1_deployment_condition.py:21(V1DeploymentCondition)
+        1    0.000    0.000    0.000    0.000 v1_namespace.py:21(V1Namespace)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_class.py:21(V1alpha3DeviceClass)
+        1    0.000    0.000    0.000    0.000 v1_validating_webhook_configuration.py:21(V1ValidatingWebhookConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_horizontal_pod_autoscaler_spec.py:21(V1HorizontalPodAutoscalerSpec)
+        1    0.000    0.000    0.000    0.000 timed.py:22(TimestampSigner)
+       16    0.000    0.000    0.000    0.000 core.py:1934(recurse)
+        1    0.000    0.000    0.000    0.000 feedparser.py:70(close)
+        1    0.000    0.000    0.000    0.000 console.py:921(encoding)
+        2    0.000    0.000    0.000    0.000 tokenize.py:323(read_or_stop)
+        3    0.000    0.000    0.000    0.000 {built-in method _csv.register_dialect}
+        1    0.000    0.000    0.000    0.000 v1beta2_allocated_device_status.py:21(V1beta2AllocatedDeviceStatus)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_taint.py:21(V1beta1DeviceTaint)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_status.py:21(V1alpha3ResourceClaimStatus)
+        1    0.000    0.000    0.000    0.000 balance_pairs.py:1()
+        7    0.000    0.000    0.000    0.000 fractions.py:277(_operator_fallbacks)
+        1    0.000    0.000    0.000    0.000 v1_ceph_fs_volume_source.py:21(V1CephFSVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_resource_quota.py:21(V1ResourceQuota)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_slice_list.py:21(V1beta2ResourceSliceList)
+        1    0.000    0.000    0.000    0.000 v1beta1_lease_candidate_list.py:21(V1beta1LeaseCandidateList)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_template_list.py:21(V1alpha3ResourceClaimTemplateList)
+        1    0.000    0.000    0.000    0.000 useragent.py:74(UserAgentComponent)
+       15    0.000    0.000    0.000    0.000 core.py:1517()
+        1    0.000    0.000    0.000    0.000 message.py:972(MIMEPart)
+        1    0.000    0.000    0.000    0.000 :14(__init__)
+        1    0.000    0.000    0.000    0.000 ec.py:64(EllipticCurvePrivateKey)
+        1    0.000    0.000    0.000    0.000 v1_namespace_condition.py:21(V1NamespaceCondition)
+        1    0.000    0.000    0.000    0.000 v1_self_subject_access_review.py:21(V1SelfSubjectAccessReview)
+        1    0.000    0.000    0.000    0.000 v1beta1_volume_attributes_class.py:21(V1beta1VolumeAttributesClass)
+        1    0.000    0.000    0.000    0.000 sysconfig.py:492(_get_sysconfigdata_name)
+       16    0.000    0.000    0.000    0.000 six.py:80(_add_doc)
+        1    0.000    0.000    0.000    0.000 core.py:135()
+        6    0.000    0.000    0.000    0.000 plugins.py:110()
+        1    0.000    0.000    0.000    0.000 validators.py:527(_MinLengthValidator)
+        2    0.000    0.000    0.000    0.000 argparse.py:267(add_usage)
+       16    0.000    0.000    0.000    0.000 {method 'end' of 're.Match' objects}
+       14    0.000    0.000    0.000    0.000 {method 'groupdict' of 're.Match' objects}
+        1    0.000    0.000    0.000    0.000 py3compat.py:1()
+        1    0.000    0.000    0.000    0.000 pool.py:173(Pool)
+        1    0.000    0.000    0.000    0.000 v1_local_subject_access_review.py:21(V1LocalSubjectAccessReview)
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment_status.py:21(V1VolumeAttachmentStatus)
+        1    0.000    0.000    0.000    0.000 v1_ip_address_list.py:21(V1IPAddressList)
+        1    0.000    0.000    0.000    0.000 credentials.py:342(RefreshableCredentials)
+       16    0.000    0.000    0.000    0.000 results.py:26(__getitem__)
+        2    0.000    0.000    0.000    0.000 results.py:438(__getattr__)
+        3    0.000    0.000    0.000    0.000 forms.py:6(__init__)
+        1    0.000    0.000    0.000    0.000 validators.py:498(_MaxLengthValidator)
+       14    0.000    0.000    0.000    0.000 _make.py:1695()
+        4    0.000    0.000    0.000    0.000 contextlib.py:456(_exit_wrapper)
+        1    0.000    0.000    0.000    0.000 v1_api_service_condition.py:21(V1APIServiceCondition)
+        1    0.000    0.000    0.000    0.000 v1alpha3_opaque_device_configuration.py:21(V1alpha3OpaqueDeviceConfiguration)
+        3    0.000    0.000    0.000    0.000 util.py:225()
+        1    0.000    0.000    0.000    0.000 _parseaddr.py:211(AddrlistClass)
+        1    0.000    0.000    0.000    0.000 _policybase.py:112(Policy)
+       13    0.000    0.000    0.000    0.000 style.py:21(__init__)
+        1    0.000    0.000    0.000    0.000 v1_ingress.py:21(V1Ingress)
+        1    0.000    0.000    0.000    0.000 v1alpha1_match_resources.py:21(V1alpha1MatchResources)
+        1    0.000    0.000    0.000    0.000 v1_subject_access_review_status.py:21(V1SubjectAccessReviewStatus)
+        1    0.000    0.000    0.000    0.000 exceptions.py:197(NoSuchOption)
+        2    0.000    0.000    0.000    0.000 _functools.py:6(method_cache)
+        1    0.000    0.000    0.000    0.000 screen.py:18(Screen)
+        1    0.000    0.000    0.000    0.000 validators.py:198(_OptionalValidator)
+       11    0.000    0.000    0.000    0.000 {method 'difference' of 'set' objects}
+        1    0.000    0.000    0.000    0.000 auth.py:142(WWWAuthenticate)
+        1    0.000    0.000    0.000    0.000 v1_node.py:21(V1Node)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_allocation_configuration.py:21(V1beta1DeviceAllocationConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_subject_rules_review_status.py:21(V1SubjectRulesReviewStatus)
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_binding_spec.py:21(V1ValidatingAdmissionPolicyBindingSpec)
+        1    0.000    0.000    0.000    0.000 v1_component_condition.py:21(V1ComponentCondition)
+        1    0.000    0.000    0.000    0.000 __init__.py:299(_MarkupEscapeHelper)
+        1    0.000    0.000    0.000    0.000 _collections.py:65(RecentlyUsedContainer)
+        1    0.000    0.000    0.000    0.000 binding.py:148(_register_osrandom_engine)
+       16    0.000    0.000    0.000    0.000 argparse.py:1782(identity)
+       14    0.000    0.000    0.000    0.000 dataclasses.py:842(_hash_set_none)
+        6    0.000    0.000    0.000    0.000 {method 'remove' of 'list' objects}
+        2    0.000    0.000    0.000    0.000 linecache.py:147(lazycache)
+        1    0.000    0.000    0.000    0.000 pty_spawn.py:29(spawn)
+        1    0.000    0.000    0.000    0.000 v1_api_service.py:21(V1APIService)
+        1    0.000    0.000    0.000    0.000 v1_deployment.py:21(V1Deployment)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim.py:21(V1PersistentVolumeClaim)
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration.py:21(V1PriorityLevelConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_scale.py:21(V1Scale)
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version.py:21(V1alpha1StorageVersion)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint_selector.py:21(V1alpha3DeviceTaintSelector)
+        1    0.000    0.000    0.000    0.000 node_handler.py:13(__init__)
+        1    0.000    0.000    0.000    0.000 validators.py:556(_SubclassOfValidator)
+        2    0.000    0.000    0.000    0.000 console.py:815(_enter_buffer)
+        4    0.000    0.000    0.000    0.000 _loop.py:18(loop_last)
+        1    0.000    0.000    0.000    0.000 table.py:132(Row)
+        1    0.000    0.000    0.000    0.000 v1alpha1_volume_attributes_class.py:21(V1alpha1VolumeAttributesClass)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim.py:21(V1beta2ResourceClaim)
+        1    0.000    0.000    0.000    0.000 ws_client.py:301(_Port)
+        1    0.000    0.000    0.000    0.000 v1_user_info.py:21(V1UserInfo)
+        1    0.000    0.000    0.000    0.000 v1_pod_template.py:21(V1PodTemplate)
+        1    0.000    0.000    0.000    0.000 v1_git_repo_volume_source.py:21(V1GitRepoVolumeSource)
+        1    0.000    0.000    0.000    0.000 console.py:892(pop_theme)
+        1    0.000    0.000    0.000    0.000 console.py:355(ThemeContext)
+        1    0.000    0.000    0.000    0.000 strikethrough.py:1()
+        1    0.000    0.000    0.000    0.000 v1_replica_set.py:21(V1ReplicaSet)
+        1    0.000    0.000    0.000    0.000 v1_replication_controller_condition.py:21(V1ReplicationControllerCondition)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim.py:21(V1alpha3ResourceClaim)
+        1    0.000    0.000    0.000    0.000 _utility.py:332()
+        1    0.000    0.000    0.000    0.000 v1beta1_cluster_trust_bundle_list.py:21(V1beta1ClusterTrustBundleList)
+        1    0.000    0.000    0.000    0.000 v1beta1_ip_address.py:21(V1beta1IPAddress)
+        1    0.000    0.000    0.000    0.000 v1_self_subject_access_review_spec.py:21(V1SelfSubjectAccessReviewSpec)
+        1    0.000    0.000    0.000    0.000 v1_config_map_volume_source.py:21(V1ConfigMapVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_endpoint_slice_list.py:21(V1EndpointSliceList)
+        1    0.000    0.000    0.000    0.000 restdoc.py:133(DocumentStructure)
+        1    0.000    0.000    0.000    0.000 abc.py:14(ResourceReader)
+        6    0.000    0.000    0.000    0.000 _make.py:1776()
+       14    0.000    0.000    0.000    0.000 _make.py:927()
+        1    0.000    0.000    0.000    0.000 __init__.py:873(Handler)
+        1    0.000    0.000    0.000    0.000 threading.py:389(notify_all)
+        1    0.000    0.000    0.000    0.000 v1_cluster_trust_bundle_projection.py:21(V1ClusterTrustBundleProjection)
+        1    0.000    0.000    0.000    0.000 v1_config_map_node_config_source.py:21(V1ConfigMapNodeConfigSource)
+        3    0.000    0.000    0.000    0.000 _utility.py:372(is_rgb_color)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_selector.py:21(V1beta1DeviceSelector)
+        1    0.000    0.000    0.000    0.000 v1beta1_ip_address_list.py:21(V1beta1IPAddressList)
+        9    0.000    0.000    0.000    0.000 core.py:3804(recurse)
+        1    0.000    0.000    0.000    0.000 backend.py:217(_is_fips_enabled)
+        1    0.000    0.000    0.000    0.000 dsa.py:82(DSAPublicKey)
+        7    0.000    0.000    0.000    0.000 argparse.py:1866()
+        1    0.000    0.000    0.000    0.000 v1_container_port.py:21(V1ContainerPort)
+        1    0.000    0.000    0.000    0.000 v1_match_resources.py:21(V1MatchResources)
+        1    0.000    0.000    0.000    0.000 _matrix.py:35(set_matrices)
+        1    0.000    0.000    0.000    0.000 v1beta1_lease_candidate.py:21(V1beta1LeaseCandidate)
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment_spec.py:21(V1VolumeAttachmentSpec)
+        1    0.000    0.000    0.000    0.000 v1_limit_range_list.py:21(V1LimitRangeList)
+        1    0.000    0.000    0.000    0.000 v1_ip_address.py:21(V1IPAddress)
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request_list.py:21(V1CertificateSigningRequestList)
+        1    0.000    0.000    0.000    0.000 cache_control.py:121(RequestCacheControl)
+        2    0.000    0.000    0.000    0.000 {built-in method posix.uname}
+        1    0.000    0.000    0.000    0.000 utils.py:268(extract_zipped_paths)
+        1    0.000    0.000    0.000    0.000 v1_service_account_subject.py:21(V1ServiceAccountSubject)
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_update_strategy.py:21(V1StatefulSetUpdateStrategy)
+        1    0.000    0.000    0.000    0.000 v1_service_account_token_projection.py:21(V1ServiceAccountTokenProjection)
+        1    0.000    0.000    0.000    0.000 v1_deployment_strategy.py:21(V1DeploymentStrategy)
+        1    0.000    0.000    0.000    0.000 test.py:773(Client)
+       11    0.000    0.000    0.000    0.000 decorators.py:351(option)
+        1    0.000    0.000    0.000    0.000 types.py:226(Choice)
+        1    0.000    0.000    0.000    0.000 range.py:121(ContentRange)
+        1    0.000    0.000    0.000    0.000 core.py:2720(Word)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:874(DefaultCookiePolicy)
+        1    0.000    0.000    0.000    0.000 binding.py:205(_verify_package_version)
+        1    0.000    0.000    0.000    0.000 extensions.py:739(PolicyConstraints)
+        6    0.000    0.000    0.000    0.000 enum.py:797(__iter__)
+        5    0.000    0.000    0.000    0.000 :78(_check_methods)
+        1    0.000    0.000    0.000    0.000 v1_ingress_class_parameters_reference.py:21(V1IngressClassParametersReference)
+        1    0.000    0.000    0.000    0.000 v1_pod.py:21(V1Pod)
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_condition.py:21(V1PriorityLevelConfigurationCondition)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_condition.py:21(V2HorizontalPodAutoscalerCondition)
+        1    0.000    0.000    0.000    0.000 v1alpha1_migration_condition.py:21(V1alpha1MigrationCondition)
+        1    0.000    0.000    0.000    0.000 tools.py:10(NetmaskTools)
+        1    0.000    0.000    0.000    0.000 v1_glusterfs_volume_source.py:21(V1GlusterfsVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_endpoint_subset.py:21(V1EndpointSubset)
+        1    0.000    0.000    0.000    0.000 exceptions.py:128(MissingParameter)
+        1    0.000    0.000    0.000    0.000 config.py:20(ConfigAttribute)
+        1    0.000    0.000    0.000    0.000 google_auth_httplib2.py:134(AuthorizedHttp)
+       12    0.000    0.000    0.000    0.000 __init__.py:792(__init__)
+        1    0.000    0.000    0.000    0.000 socket.py:214(socket)
+        6    0.000    0.000    0.000    0.000 signal.py:49(decorator)
+        1    0.000    0.000    0.000    0.000 :1037(_resolve_name)
+        1    0.000    0.000    0.000    0.000 __init__.py:58(check_compatibility)
+        1    0.000    0.000    0.000    0.000 authentication_v1_token_request.py:21(AuthenticationV1TokenRequest)
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_spec.py:21(V1DaemonSetSpec)
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_migration.py:21(V1alpha1StorageVersionMigration)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler.py:21(V2HorizontalPodAutoscaler)
+        1    0.000    0.000    0.000    0.000 v2_horizontal_pod_autoscaler_behavior.py:21(V2HorizontalPodAutoscalerBehavior)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_list.py:21(V1beta2ResourceClaimList)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_list.py:21(V1beta1ResourceClaimList)
+        1    0.000    0.000    0.000    0.000 lexer.py:335(_inherit)
+        1    0.000    0.000    0.000    0.000 __init__.py:19(make)
+        1    0.000    0.000    0.000    0.000 _oid.py:53(NameOID)
+        1    0.000    0.000    0.000    0.000 v1_cron_job.py:21(V1CronJob)
+        1    0.000    0.000    0.000    0.000 v1_job.py:21(V1Job)
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy.py:21(V1beta1ValidatingAdmissionPolicy)
+        1    0.000    0.000    0.000    0.000 v2_metric_target.py:21(V2MetricTarget)
+        1    0.000    0.000    0.000    0.000 v2_cross_version_object_reference.py:21(V2CrossVersionObjectReference)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_template_spec.py:21(V1alpha3ResourceClaimTemplateSpec)
+        1    0.000    0.000    0.000    0.000 v1_load_balancer_ingress.py:21(V1LoadBalancerIngress)
+        1    0.000    0.000    0.000    0.000 v1_http_ingress_path.py:21(V1HTTPIngressPath)
+        1    0.000    0.000    0.000    0.000 core.py:1501(__init__)
+        1    0.000    0.000    0.000    0.000 futures.py:30(Future)
+        1    0.000    0.000    0.000    0.000 threading.py:838(Thread)
+        1    0.000    0.000    0.000    0.000 context.py:30(BaseContext)
+        1    0.000    0.000    0.000    0.000 v1_resource_policy_rule.py:21(V1ResourcePolicyRule)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_template.py:21(V1beta2ResourceClaimTemplate)
+        1    0.000    0.000    0.000    0.000 v2_hpa_scaling_rules.py:21(V2HPAScalingRules)
+        1    0.000    0.000    0.000    0.000 v1_service_backend_port.py:21(V1ServiceBackendPort)
+        1    0.000    0.000    0.000    0.000 v1_pod_template_list.py:21(V1PodTemplateList)
+        1    0.000    0.000    0.000    0.000 _internal.py:123(_DictAccessorProperty)
+        4    0.000    0.000    0.000    0.000 formatters.py:378(resolve_capability)
+        1    0.000    0.000    0.000    0.000 run.py:1()
+        1    0.000    0.000    0.000    0.000 v1_csi_volume_source.py:21(V1CSIVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1beta1_service_cidr.py:21(V1beta1ServiceCIDR)
+        1    0.000    0.000    0.000    0.000 v1beta1_validation.py:21(V1beta1Validation)
+        1    0.000    0.000    0.000    0.000 v1_ingress_port_status.py:21(V1IngressPortStatus)
+        1    0.000    0.000    0.000    0.000 configuration.py:25(Configuration)
+        1    0.000    0.000    0.000    0.000 _cmp.py:1()
+       10    0.000    0.000    0.000    0.000 _make.py:1538(_has_frozen_base_class)
+        3    0.000    0.000    0.000    0.000 typing.py:2189(runtime_checkable)
+        1    0.000    0.000    0.000    0.000 v1_cluster_role.py:21(V1ClusterRole)
+        1    0.000    0.000    0.000    0.000 v1_status_cause.py:21(V1StatusCause)
+        1    0.000    0.000    0.000    0.000 v1_resource_rule.py:21(V1ResourceRule)
+        1    0.000    0.000    0.000    0.000 v1_network_policy.py:21(V1NetworkPolicy)
+        1    0.000    0.000    0.000    0.000 v1_network_policy_spec.py:21(V1NetworkPolicySpec)
+        1    0.000    0.000    0.000    0.000 v1_cron_job_list.py:21(V1CronJobList)
+        1    0.000    0.000    0.000    0.000 v1_cinder_persistent_volume_source.py:21(V1CinderPersistentVolumeSource)
+        1    0.000    0.000    0.000    0.000 ssl.py:604(minimum_version)
+        1    0.000    0.000    0.000    0.000 iterators.py:1()
+        1    0.000    0.000    0.000    0.000 selectors.py:80(BaseSelector)
+        4    0.000    0.000    0.000    0.000 functools.py:845(_is_valid_dispatch_type)
+       11    0.000    0.000    0.000    0.000 {built-in method _warnings._filters_mutated}
+        1    0.000    0.000    0.000    0.000 v1_external_documentation.py:21(V1ExternalDocumentation)
+        1    0.000    0.000    0.000    0.000 v1_exempt_priority_level_configuration.py:21(V1ExemptPriorityLevelConfiguration)
+        1    0.000    0.000    0.000    0.000 events_v1_event_list.py:21(EventsV1EventList)
+        1    0.000    0.000    0.000    0.000 mixins.py:211(UpdateDictMixin)
+        1    0.000    0.000    0.000    0.000 metrics.py:1()
+        1    0.000    0.000    0.000    0.000 _text.py:7(FoldedCase)
+        1    0.000    0.000    0.000    0.000 _compat.py:49(get_first_param_type)
+        1    0.000    0.000    0.000    0.000 zipfile.py:1219(ZipFile)
+        1    0.000    0.000    0.000    0.000 pathlib.py:129()
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1beta1_api.py:27(AdmissionregistrationV1beta1Api)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_slice.py:21(V1beta1ResourceSlice)
+        1    0.000    0.000    0.000    0.000 v1alpha1_param_ref.py:21(V1alpha1ParamRef)
+        1    0.000    0.000    0.000    0.000 v1_secret_volume_source.py:21(V1SecretVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_resource_quota_list.py:21(V1ResourceQuotaList)
+        1    0.000    0.000    0.000    0.000 v1_lease.py:21(V1Lease)
+        1    0.000    0.000    0.000    0.000 v1_ingress_class_list.py:21(V1IngressClassList)
+        1    0.000    0.000    0.000    0.000 v1_bound_object_reference.py:21(V1BoundObjectReference)
+        1    0.000    0.000    0.000    0.000 adapters.py:167(HTTPAdapter)
+        1    0.000    0.000    0.000    0.000 webauthn_types.py:8(PublicKeyCredentialDescriptor)
+        1    0.000    0.000    0.000    0.000 __init__.py:1308(__init__)
+        1    0.000    0.000    0.000    0.000 __init__.py:1303(Manager)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_class_spec.py:21(V1beta1DeviceClassSpec)
+        1    0.000    0.000    0.000    0.000 v1_lifecycle_handler.py:21(V1LifecycleHandler)
+        1    0.000    0.000    0.000    0.000 v1_param_ref.py:21(V1ParamRef)
+        1    0.000    0.000    0.000    0.000 v1_cluster_role_binding_list.py:21(V1ClusterRoleBindingList)
+        1    0.000    0.000    0.000    0.000 v1_controller_revision_list.py:21(V1ControllerRevisionList)
+        1    0.000    0.000    0.000    0.000 utils.py:428(__init__)
+        3    0.000    0.000    0.000    0.000 core.py:1835(add_command)
+        1    0.000    0.000    0.000    0.000 extensions.py:939(NoticeReference)
+        1    0.000    0.000    0.000    0.000 text_join.py:1()
+        3    0.000    0.000    0.000    0.000 argparse.py:309(_format_usage)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_pool.py:21(V1alpha3ResourcePool)
+        1    0.000    0.000    0.000    0.000 v1_config_map_list.py:21(V1ConfigMapList)
+        1    0.000    0.000    0.000    0.000 v1_env_var.py:21(V1EnvVar)
+        1    0.000    0.000    0.000    0.000 discovery_v1_endpoint_port.py:21(DiscoveryV1EndpointPort)
+        1    0.000    0.000    0.000    0.000 v1_api_service_list.py:21(V1APIServiceList)
+        1    0.000    0.000    0.000    0.000 v1_api_versions.py:21(V1APIVersions)
+        1    0.000    0.000    0.000    0.000 v1_aws_elastic_block_store_volume_source.py:21(V1AWSElasticBlockStoreVolumeSource)
+        1    0.000    0.000    0.000    0.000 exceptions.py:47(UsageError)
+        2    0.000    0.000    0.000    0.000 {built-in method cryptography.hazmat.bindings._openssl.ERR_clear_error}
+        1    0.000    0.000    0.000    0.000 _figure.py:67(_set_terminal_size)
+        1    0.000    0.000    0.000    0.000 v1beta1_service_cidr_list.py:21(V1beta1ServiceCIDRList)
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_migration_list.py:21(V1alpha1StorageVersionMigrationList)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_class_list.py:21(V1alpha3DeviceClassList)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint_rule.py:21(V1alpha3DeviceTaintRule)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_status.py:21(V1PersistentVolumeStatus)
+        1    0.000    0.000    0.000    0.000 v1_namespace_list.py:21(V1NamespaceList)
+        1    0.000    0.000    0.000    0.000 v1_nfs_volume_source.py:21(V1NFSVolumeSource)
+        1    0.000    0.000    0.000    0.000 base.py:75(GrantTypeBase)
+        3    0.000    0.000    0.000    0.000 _header_value_parser.py:878(__new__)
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1_api.py:27(AdmissionregistrationV1Api)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_consumer_reference.py:21(V1beta1ResourceClaimConsumerReference)
+        1    0.000    0.000    0.000    0.000 v1_ingress_list.py:21(V1IngressList)
+        1    0.000    0.000    0.000    0.000 v1_field_selector_requirement.py:21(V1FieldSelectorRequirement)
+        1    0.000    0.000    0.000    0.000 v1_csi_storage_capacity_list.py:21(V1CSIStorageCapacityList)
+        1    0.000    0.000    0.000    0.000 v1_config_map_key_selector.py:21(V1ConfigMapKeySelector)
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1_webhook_client_config.py:21(AdmissionregistrationV1WebhookClientConfig)
+        1    0.000    0.000    0.000    0.000 model.py:50(Shape)
+        1    0.000    0.000    0.000    0.000 compat.py:334()
+        1    0.000    0.000    0.000    0.000 _adapters.py:30(__new__)
+        4    0.000    0.000    0.000    0.000 typing.py:1892()
+        2    0.000    0.000    0.000    0.000 {built-in method posix.getcwd}
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_binding.py:21(V1beta1ValidatingAdmissionPolicyBinding)
+        1    0.000    0.000    0.000    0.000 v1_validating_admission_policy_status.py:21(V1ValidatingAdmissionPolicyStatus)
+        1    0.000    0.000    0.000    0.000 v1_pod_disruption_budget_list.py:21(V1PodDisruptionBudgetList)
+        1    0.000    0.000    0.000    0.000 v1_cinder_volume_source.py:21(V1CinderVolumeSource)
+        1    0.000    0.000    0.000    0.000 apiextensions_v1_service_reference.py:21(ApiextensionsV1ServiceReference)
+        4    0.000    0.000    0.000    0.000 __init__.py:24()
+       11    0.000    0.000    0.000    0.000 _make.py:2006(_setattr)
+        1    0.000    0.000    0.000    0.000 contextlib.py:287(helper)
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_binding_spec.py:21(V1beta1ValidatingAdmissionPolicyBindingSpec)
+        1    0.000    0.000    0.000    0.000 v1_role_binding_list.py:21(V1RoleBindingList)
+        1    0.000    0.000    0.000    0.000 v1_secret_list.py:21(V1SecretList)
+        1    0.000    0.000    0.000    0.000 v1_priority_class_list.py:21(V1PriorityClassList)
+        1    0.000    0.000    0.000    0.000 v1_node_address.py:21(V1NodeAddress)
+        1    0.000    0.000    0.000    0.000 v1_lease_list.py:21(V1LeaseList)
+       11    0.000    0.000    0.000    0.000 async_utils.py:12(async_variant)
+        1    0.000    0.000    0.000    0.000 model.py:215(StructureShape)
+        1    0.000    0.000    0.000    0.000 client.py:84(ClientCreator)
+        1    0.000    0.000    0.000    0.000 error.py:35(HTTPError)
+       10    0.000    0.000    0.000    0.000 __init__.py:322(_wrap_deprecated_method)
+        4    0.000    0.000    0.000    0.000 argparse.py:2228()
+       10    0.000    0.000    0.000    0.000 functools.py:972(__set_name__)
+        1    0.000    0.000    0.000    0.000 pickle.py:407(_Pickler)
+        1    0.000    0.000    0.000    0.000 v1beta1_network_device_data.py:21(V1beta1NetworkDeviceData)
+        1    0.000    0.000    0.000    0.000 v1beta1_volume_attributes_class_list.py:21(V1beta1VolumeAttributesClassList)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_attribute.py:21(V1alpha3DeviceAttribute)
+        1    0.000    0.000    0.000    0.000 v1_ingress_rule.py:21(V1IngressRule)
+        1    0.000    0.000    0.000    0.000 v1_endpoint_conditions.py:21(V1EndpointConditions)
+        1    0.000    0.000    0.000    0.000 environment.py:1520(TemplateModule)
+        1    0.000    0.000    0.000    0.000 ssl.py:845(SSLObject)
+        2    0.000    0.000    0.000    0.000 feedparser.py:122(pushlines)
+        2    0.000    0.000    0.000    0.000 _adapters.py:12(__init__)
+        2    0.000    0.000    0.000    0.000 utils.py:51(_has_surrogates)
+       11    0.000    0.000    0.000    0.000 asn1.py:53(__init__)
+        2    0.000    0.000    0.000    0.000 threading.py:832()
+        1    0.000    0.000    0.000    0.000 v1alpha1_volume_attributes_class_list.py:21(V1alpha1VolumeAttributesClassList)
+        1    0.000    0.000    0.000    0.000 v1_webhook_conversion.py:21(V1WebhookConversion)
+        1    0.000    0.000    0.000    0.000 v1_sysctl.py:21(V1Sysctl)
+        1    0.000    0.000    0.000    0.000 v1_typed_local_object_reference.py:21(V1TypedLocalObjectReference)
+        1    0.000    0.000    0.000    0.000 v1_pod_resource_claim.py:21(V1PodResourceClaim)
+        1    0.000    0.000    0.000    0.000 v1_port_status.py:21(V1PortStatus)
+        1    0.000    0.000    0.000    0.000 v1_cross_version_object_reference.py:21(V1CrossVersionObjectReference)
+        1    0.000    0.000    0.000    0.000 v1_azure_file_persistent_volume_source.py:21(V1AzureFilePersistentVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_csi_node.py:21(V1CSINode)
+        1    0.000    0.000    0.000    0.000 core_v1_endpoint_port.py:21(CoreV1EndpointPort)
+        1    0.000    0.000    0.000    0.000 es256.py:38(ES256Verifier)
+        1    0.000    0.000    0.000    0.000 ed448.py:42(Ed448PrivateKey)
+        1    0.000    0.000    0.000    0.000 _policybase.py:319(header_fetch_parse)
+        2    0.000    0.000    0.000    0.000 validators.py:212(optional)
+        1    0.000    0.000    0.000    0.000 console.py:866(begin_capture)
+        1    0.000    0.000    0.000    0.000 argparse.py:1720(ArgumentParser)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_status.py:21(V1beta1ResourceClaimStatus)
+        1    0.000    0.000    0.000    0.000 v2_hpa_scaling_policy.py:21(V2HPAScalingPolicy)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_consumer_reference.py:21(V1beta2ResourceClaimConsumerReference)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint.py:21(V1alpha3DeviceTaint)
+        1    0.000    0.000    0.000    0.000 v1_lifecycle.py:21(V1Lifecycle)
+        1    0.000    0.000    0.000    0.000 v1_binding.py:21(V1Binding)
+        1    0.000    0.000    0.000    0.000 v1_app_armor_profile.py:21(V1AppArmorProfile)
+        1    0.000    0.000    0.000    0.000 process.py:399(__init__)
+       10    0.000    0.000    0.000    0.000 six.py:186(_get_module)
+        1    0.000    0.000    0.000    0.000 configfile.py:152(_validate_config)
+        9    0.000    0.000    0.000    0.000 {method 'update' of 'set' objects}
+        1    0.000    0.000    0.000    0.000 v1beta2_device_class.py:21(V1beta2DeviceClass)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_taint.py:21(V1beta2DeviceTaint)
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_list.py:21(V1alpha1MutatingAdmissionPolicyList)
+        1    0.000    0.000    0.000    0.000 v1_replica_set_spec.py:21(V1ReplicaSetSpec)
+        1    0.000    0.000    0.000    0.000 v1_list_meta.py:21(V1ListMeta)
+        1    0.000    0.000    0.000    0.000 v1_network_policy_list.py:21(V1NetworkPolicyList)
+        1    0.000    0.000    0.000    0.000 v1_parent_reference.py:21(V1ParentReference)
+        1    0.000    0.000    0.000    0.000 parser.py:159(Option)
+        1    0.000    0.000    0.000    0.000 relativedelta.py:18(relativedelta)
+        1    0.000    0.000    0.000    0.000 extensions.py:430(BasicConstraints)
+        1    0.000    0.000    0.000    0.000 ec.py:123(EllipticCurvePublicKey)
+        1    0.000    0.000    0.000    0.000 contextlib.py:132(__enter__)
+        8    0.000    0.000    0.000    0.000 :260(__init__)
+        1    0.000    0.000    0.000    0.000 {built-in method time.localtime}
+        1    0.000    0.000    0.000    0.000 v1beta2_device_allocation_configuration.py:21(V1beta2DeviceAllocationConfiguration)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_template_list.py:21(V1beta2ResourceClaimTemplateList)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_template.py:21(V1beta1ResourceClaimTemplate)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_template_list.py:21(V1beta1ResourceClaimTemplateList)
+        1    0.000    0.000    0.000    0.000 v1_se_linux_options.py:21(V1SELinuxOptions)
+        1    0.000    0.000    0.000    0.000 v1_expression_warning.py:21(V1ExpressionWarning)
+        1    0.000    0.000    0.000    0.000 core.py:261()
+        1    0.000    0.000    0.000    0.000 __init__.py:896(MetadataPathFinder)
+        1    0.000    0.000    0.000    0.000 pathlib.py:778(parent)
+        3    0.000    0.000    0.000    0.000 traceback.py:389(extended_frame_gen)
+        8    0.000    0.000    0.000    0.000 dataclasses.py:846()
+        1    0.000    0.000    0.000    0.000 v2_external_metric_status.py:21(V2ExternalMetricStatus)
+        1    0.000    0.000    0.000    0.000 v1alpha1_server_storage_version.py:21(V1alpha1ServerStorageVersion)
+        1    0.000    0.000    0.000    0.000 v1_node_list.py:21(V1NodeList)
+        1    0.000    0.000    0.000    0.000 v1_linux_container_user.py:21(V1LinuxContainerUser)
+        1    0.000    0.000    0.000    0.000 v1_csi_driver_list.py:21(V1CSIDriverList)
+        8    0.000    0.000    0.000    0.000 utils.py:46(pass_eval_context)
+        1    0.000    0.000    0.000    0.000 exceptions.py:24(ClickException)
+        1    0.000    0.000    0.000    0.000 sessions.py:356(Session)
+        1    0.000    0.000    0.000    0.000 challenges.py:88(PasswordChallenge)
+        1    0.000    0.000    0.000    0.000 v1beta2_network_device_data.py:21(V1beta2NetworkDeviceData)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_counter_consumption.py:21(V1beta1DeviceCounterConsumption)
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_binding_list.py:21(V1alpha1MutatingAdmissionPolicyBindingList)
+        1    0.000    0.000    0.000    0.000 v1alpha1_cluster_trust_bundle.py:21(V1alpha1ClusterTrustBundle)
+        1    0.000    0.000    0.000    0.000 v1_secret_key_selector.py:21(V1SecretKeySelector)
+        1    0.000    0.000    0.000    0.000 v1_pod_disruption_budget_spec.py:21(V1PodDisruptionBudgetSpec)
+        1    0.000    0.000    0.000    0.000 v1_mutating_webhook_configuration_list.py:21(V1MutatingWebhookConfigurationList)
+        1    0.000    0.000    0.000    0.000 nodes.py:877(Slice)
+        2    0.000    0.000    0.000    0.000 zipfile.py:1881(__del__)
+        1    0.000    0.000    0.000    0.000 rule.py:12(Rule)
+        4    0.000    0.000    0.000    0.000 argparse.py:594()
+        1    0.000    0.000    0.000    0.000 v2_external_metric_source.py:21(V2ExternalMetricSource)
+        1    0.000    0.000    0.000    0.000 v1beta1_expression_warning.py:21(V1beta1ExpressionWarning)
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_binding.py:21(V1alpha1MutatingAdmissionPolicyBinding)
+        1    0.000    0.000    0.000    0.000 v1_variable.py:21(V1Variable)
+        1    0.000    0.000    0.000    0.000 v1_pod_list.py:21(V1PodList)
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_list.py:21(V1PriorityLevelConfigurationList)
+        1    0.000    0.000    0.000    0.000 v1_role.py:21(V1Role)
+        1    0.000    0.000    0.000    0.000 v1_resource_field_selector.py:21(V1ResourceFieldSelector)
+        1    0.000    0.000    0.000    0.000 v1_ingress_class.py:21(V1IngressClass)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_list.py:21(V1CustomResourceDefinitionList)
+        1    0.000    0.000    0.000    0.000 v1_csi_node_list.py:21(V1CSINodeList)
+        1    0.000    0.000    0.000    0.000 v1_affinity.py:21(V1Affinity)
+        1    0.000    0.000    0.000    0.000 quopri.py:1()
+       10    0.000    0.000    0.000    0.000 __future__.py:83(__init__)
+        1    0.000    0.000    0.000    0.000 tempfile.py:820(SpooledTemporaryFile)
+        1    0.000    0.000    0.000    0.000 datetime.py:893(date)
+        1    0.000    0.000    0.000    0.000 configfile.py:270(_explode_unique)
+        1    0.000    0.000    0.000    0.000 selector_events.py:43(BaseSelectorEventLoop)
+        1    0.000    0.000    0.000    0.000 rbac_authorization_v1_api.py:27(RbacAuthorizationV1Api)
+        1    0.000    0.000    0.000    0.000 v1beta1_audit_annotation.py:21(V1beta1AuditAnnotation)
+        1    0.000    0.000    0.000    0.000 v1_server_address_by_client_cidr.py:21(V1ServerAddressByClientCIDR)
+        1    0.000    0.000    0.000    0.000 v1_runtime_class_list.py:21(V1RuntimeClassList)
+        1    0.000    0.000    0.000    0.000 v1_http_header.py:21(V1HTTPHeader)
+        1    0.000    0.000    0.000    0.000 core_v1_event_list.py:21(CoreV1EventList)
+        1    0.000    0.000    0.000    0.000 v1_api_resource_list.py:21(V1APIResourceList)
+        1    0.000    0.000    0.000    0.000 apiregistration_v1_service_reference.py:21(ApiregistrationV1ServiceReference)
+        1    0.000    0.000    0.000    0.000 base.py:19(BaseEndpoint)
+       10    0.000    0.000    0.000    0.000 style.py:198(null)
+        1    0.000    0.000    0.000    0.000 commonmark.py:1()
+        1    0.000    0.000    0.000    0.000 argparse.py:1006(__init__)
+        2    0.000    0.000    0.000    0.000 threading.py:267(__exit__)
+       10    0.000    0.000    0.000    0.000 {method 'pop' of 'set' objects}
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_binding_list.py:21(V1beta1ValidatingAdmissionPolicyBindingList)
+        1    0.000    0.000    0.000    0.000 v1beta1_device.py:21(V1beta1Device)
+        1    0.000    0.000    0.000    0.000 v1_token_request_status.py:21(V1TokenRequestStatus)
+        1    0.000    0.000    0.000    0.000 v1alpha1_group_version_resource.py:21(V1alpha1GroupVersionResource)
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutation.py:21(V1alpha1Mutation)
+        1    0.000    0.000    0.000    0.000 v1_network_policy_port.py:21(V1NetworkPolicyPort)
+        1    0.000    0.000    0.000    0.000 v1_ingress_load_balancer_status.py:21(V1IngressLoadBalancerStatus)
+        1    0.000    0.000    0.000    0.000 v1_endpoint_hints.py:21(V1EndpointHints)
+        1    0.000    0.000    0.000    0.000 core.py:115()
+        4    0.000    0.000    0.000    0.000 retry.py:242()
+        1    0.000    0.000    0.000    0.000 sync_service.py:20(SyncService)
+        2    0.000    0.000    0.000    0.000 _make.py:980(_attach_repr)
+        7    0.000    0.000    0.000    0.000 Primality.py:144(alternate)
+        4    0.000    0.000    0.000    0.000 version.py:1()
+        1    0.000    0.000    0.000    0.000 :818(fsdecode)
+        2    0.000    0.000    0.000    0.000 {method 'readline' of '_io.BufferedReader' objects}
+        1    0.000    0.000    0.000    0.000 custom_objects_api.py:27(CustomObjectsApi)
+        1    0.000    0.000    0.000    0.000 v1_topology_selector_label_requirement.py:21(V1TopologySelectorLabelRequirement)
+        1    0.000    0.000    0.000    0.000 v1_uncounted_terminated_pods.py:21(V1UncountedTerminatedPods)
+        1    0.000    0.000    0.000    0.000 v1alpha1_mutating_admission_policy_binding_spec.py:21(V1alpha1MutatingAdmissionPolicyBindingSpec)
+        2    0.000    0.000    0.000    0.000 __init__.py:757(path)
+        1    0.000    0.000    0.000    0.000 measure.py:11(Measurement)
+        5    0.000    0.000    0.000    0.000 constructor.py:165(add_multi_constructor)
+        1    0.000    0.000    0.000    0.000 pathlib.py:858(Path)
+        1    0.000    0.000    0.000    0.000 pydoc.py:1164(TextDoc)
+        1    0.000    0.000    0.000    0.000 v1beta1_allocation_result.py:21(V1beta1AllocationResult)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_class_spec.py:21(V1alpha3DeviceClassSpec)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_claim.py:21(V1alpha3DeviceClaim)
+        1    0.000    0.000    0.000    0.000 v1_volume_device.py:21(V1VolumeDevice)
+        1    0.000    0.000    0.000    0.000 nodes.py:577(Const)
+        1    0.000    0.000    0.000    0.000 parser.py:62(HTMLParser)
+        7    0.000    0.000    0.000    0.000 _common.py:9(__init__)
+        1    0.000    0.000    0.000    0.000 core.py:5113(DelimitedList)
+        1    0.000    0.000    0.000    0.000 challenges.py:55(ReauthChallenge)
+        1    0.000    0.000    0.000    0.000 syntax.py:178(ANSISyntaxTheme)
+        2    0.000    0.000    0.000    0.000 {method 'replace' of 'code' objects}
+       10    0.000    0.000    0.000    0.000 {method '__exit__' of '_thread.RLock' objects}
+        1    0.000    0.000    0.000    0.000 datetime.py:1315(time)
+        1    0.000    0.000    0.000    0.000 request_validator.py:11(RequestValidator)
+        1    0.000    0.000    0.000    0.000 style.py:78(ReSTStyle)
+        1    0.000    0.000    0.000    0.000 resource_v1beta2_api.py:27(ResourceV1beta2Api)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_constraint.py:21(V1beta1DeviceConstraint)
+        1    0.000    0.000    0.000    0.000 v1_pod_dns_config.py:21(V1PodDNSConfig)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_subresources.py:21(V1CustomResourceSubresources)
+        1    0.000    0.000    0.000    0.000 events_v1_event_series.py:21(EventsV1EventSeries)
+        1    0.000    0.000    0.000    0.000 extensions.py:357(SubjectInformationAccess)
+        3    0.000    0.000    0.000    0.000 pathlib.py:516(_from_parsed_parts)
+       11    0.000    0.000    0.000    0.000 {method 'mro' of 'type' objects}
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_status.py:21(V1beta2ResourceClaimStatus)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_claim_configuration.py:21(V1beta1DeviceClaimConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_role_ref.py:21(V1RoleRef)
+        1    0.000    0.000    0.000    0.000 v1_queuing_configuration.py:21(V1QueuingConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_for_node.py:21(V1ForNode)
+        1    0.000    0.000    0.000    0.000 v1_event_source.py:21(V1EventSource)
+        8    0.000    0.000    0.000    0.000 validate.py:51(_create_type_check_guard)
+        1    0.000    0.000    0.000    0.000 ssl_.py:24()
+        8    0.000    0.000    0.000    0.000 __init__.py:2229(createLock)
+        3    0.000    0.000    0.000    0.000 datetime.py:2317(_create)
+        2    0.000    0.000    0.000    0.000 subprocess.py:1118(__del__)
+        1    0.000    0.000    0.000    0.000 py3compat.py:132(tobytes)
+        2    0.000    0.000    0.000    0.000 {built-in method posix.readlink}
+        1    0.000    0.000    0.000    0.000 v1_volume_resource_requirements.py:21(V1VolumeResourceRequirements)
+        1    0.000    0.000    0.000    0.000 v1_label_selector_requirement.py:21(V1LabelSelectorRequirement)
+        1    0.000    0.000    0.000    0.000 nodes.py:644(List)
+        1    0.000    0.000    0.000    0.000 exceptions.py:68(BuildError)
+        3    0.000    0.000    0.000    0.000 handlers.py:609(document_base64_encoding)
+        1    0.000    0.000    0.000    0.000 models.py:640(Response)
+        1    0.000    0.000    0.000    0.000 url.py:52()
+        1    0.000    0.000    0.000    0.000 general_name.py:35(RFC822Name)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:2147(IPv6Interface)
+        2    0.000    0.000    0.000    0.000 :53(getmtime)
+        1    0.000    0.000    0.000    0.000 v1_network_policy_peer.py:21(V1NetworkPolicyPeer)
+        1    0.000    0.000    0.000    0.000 v1_config_map_projection.py:21(V1ConfigMapProjection)
+        1    0.000    0.000    0.000    0.000 blueprints.py:18(Blueprint)
+        1    0.000    0.000    0.000    0.000 serialize.py:704(RestXMLSerializer)
+        1    0.000    0.000    0.000    0.000 ed25519.py:46(Ed25519PrivateKey)
+        1    0.000    0.000    0.000    0.000 _raw_api.py:57(_VoidPointer)
+        9    0.000    0.000    0.000    0.000 asn1.py:61(data_since_bookmark)
+        1    0.000    0.000    0.000    0.000 _monitor.py:57(color_init)
+        1    0.000    0.000    0.000    0.000 batch_v1_api.py:27(BatchV1Api)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_request.py:21(V1beta2DeviceRequest)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_pool.py:21(V1beta2ResourcePool)
+        1    0.000    0.000    0.000    0.000 v1_node_affinity.py:21(V1NodeAffinity)
+        1    0.000    0.000    0.000    0.000 v1_resource_requirements.py:21(V1ResourceRequirements)
+        1    0.000    0.000    0.000    0.000 exceptions.py:88(TemplateSyntaxError)
+        9    0.000    0.000    0.000    0.000 core.py:4127()
+        1    0.000    0.000    0.000    0.000 calendar.py:54()
+        1    0.000    0.000    0.000    0.000 renderer.py:28(RendererHTML)
+        3    0.000    0.000    0.000    0.000 {built-in method posix.register_at_fork}
+        1    0.000    0.000    0.000    0.000 pydoc.py:530(__init__)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_pool.py:21(V1beta1ResourcePool)
+        1    0.000    0.000    0.000    0.000 v1_watch_event.py:21(V1WatchEvent)
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_spec.py:21(V1PriorityLevelConfigurationSpec)
+        1    0.000    0.000    0.000    0.000 _collections.py:84(__init__)
+        1    0.000    0.000    0.000    0.000 rsa.py:364(_RSAPrivateKey)
+        1    0.000    0.000    0.000    0.000 x25519.py:36(X25519PrivateKey)
+        1    0.000    0.000    0.000    0.000 x448.py:36(X448PrivateKey)
+        2    0.000    0.000    0.000    0.000 __init__.py:884(legacy_normalize)
+        1    0.000    0.000    0.000    0.000 platform.py:778(uname_result)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_allocation_result.py:21(V1beta1DeviceAllocationResult)
+        1    0.000    0.000    0.000    0.000 v1beta1_match_condition.py:21(V1beta1MatchCondition)
+        1    0.000    0.000    0.000    0.000 v1_volume_node_resources.py:21(V1VolumeNodeResources)
+        1    0.000    0.000    0.000    0.000 v1_sleep_action.py:21(V1SleepAction)
+        1    0.000    0.000    0.000    0.000 v1_resource_quota_status.py:21(V1ResourceQuotaStatus)
+        1    0.000    0.000    0.000    0.000 v1_grpc_action.py:21(V1GRPCAction)
+        1    0.000    0.000    0.000    0.000 apiextensions_v1_webhook_client_config.py:21(ApiextensionsV1WebhookClientConfig)
+        1    0.000    0.000    0.000    0.000 hashes.py:35(HashContext)
+        1    0.000    0.000    0.000    0.000 coroutines.py:1()
+        1    0.000    0.000    0.000    0.000 __init__.py:21()
+        1    0.000    0.000    0.000    0.000 table_zero.py:1()
+        8    0.000    0.000    0.000    0.000 argparse.py:2552(_check_value)
+        1    0.000    0.000    0.000    0.000 subprocess.py:1231(poll)
+        1    0.000    0.000    0.000    0.000 ec.py:18(EllipticCurveOID)
+        1    0.000    0.000    0.000    0.000 discovery.py:35(Discoverer)
+        1    0.000    0.000    0.000    0.000 v2_object_metric_status.py:21(V2ObjectMetricStatus)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_claim.py:21(V1beta2DeviceClaim)
+        1    0.000    0.000    0.000    0.000 v1_stateful_set_ordinals.py:21(V1StatefulSetOrdinals)
+        1    0.000    0.000    0.000    0.000 v1_scoped_resource_selector_requirement.py:21(V1ScopedResourceSelectorRequirement)
+        1    0.000    0.000    0.000    0.000 v1_portworx_volume_source.py:21(V1PortworxVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_host_alias.py:21(V1HostAlias)
+        1    0.000    0.000    0.000    0.000 v1_ingress_service_backend.py:21(V1IngressServiceBackend)
+        1    0.000    0.000    0.000    0.000 v1_empty_dir_volume_source.py:21(V1EmptyDirVolumeSource)
+        8    0.000    0.000    0.000    0.000 contentmanager.py:13(add_get_handler)
+        8    0.000    0.000    0.000    0.000 text.py:167(__len__)
+        1    0.000    0.000    0.000    0.000 hooks.py:78(__getattr__)
+        4    0.000    0.000    0.000    0.000 {built-in method _locale.setlocale}
+        1    0.000    0.000    0.000    0.000 v1beta1_validating_admission_policy_status.py:21(V1beta1ValidatingAdmissionPolicyStatus)
+        1    0.000    0.000    0.000    0.000 v2_container_resource_metric_source.py:21(V2ContainerResourceMetricSource)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_allocation_configuration.py:21(V1alpha3DeviceAllocationConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_success_policy_rule.py:21(V1SuccessPolicyRule)
+        1    0.000    0.000    0.000    0.000 v1_tcp_socket_action.py:21(V1TCPSocketAction)
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_status.py:21(V1alpha1StorageVersionStatus)
+        1    0.000    0.000    0.000    0.000 v1_pod_failure_policy_on_pod_conditions_pattern.py:21(V1PodFailurePolicyOnPodConditionsPattern)
+        1    0.000    0.000    0.000    0.000 v1_policy_rules_with_subjects.py:21(V1PolicyRulesWithSubjects)
+        1    0.000    0.000    0.000    0.000 v1_resource_quota_spec.py:21(V1ResourceQuotaSpec)
+        1    0.000    0.000    0.000    0.000 v1_node_selector_requirement.py:21(V1NodeSelectorRequirement)
+        1    0.000    0.000    0.000    0.000 v1_container_state.py:21(V1ContainerState)
+        1    0.000    0.000    0.000    0.000 v1_config_map_env_source.py:21(V1ConfigMapEnvSource)
+        1    0.000    0.000    0.000    0.000 _compat.py:52(_NonClosingTextIOWrapper)
+        1    0.000    0.000    0.000    0.000 flow.py:74(Flow)
+        1    0.000    0.000    0.000    0.000 hashes.py:14(HashAlgorithm)
+        1    0.000    0.000    0.000    0.000 _posix_read.py:1()
+        1    0.000    0.000    0.000    0.000 threading.py:1005(_set_native_id)
+        2    0.000    0.000    0.000    0.000 {built-in method posix.read}
+        1    0.000    0.000    0.000    0.000 v1beta2_device_class_configuration.py:21(V1beta2DeviceClassConfiguration)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_template_spec.py:21(V1beta2ResourceClaimTemplateSpec)
+        1    0.000    0.000    0.000    0.000 v1_volume_attachment_source.py:21(V1VolumeAttachmentSource)
+        1    0.000    0.000    0.000    0.000 v1_weighted_pod_affinity_term.py:21(V1WeightedPodAffinityTerm)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_template.py:21(V1PersistentVolumeClaimTemplate)
+        1    0.000    0.000    0.000    0.000 v1_pod_failure_policy_on_exit_codes_requirement.py:21(V1PodFailurePolicyOnExitCodesRequirement)
+        1    0.000    0.000    0.000    0.000 v1_pod_failure_policy_rule.py:21(V1PodFailurePolicyRule)
+        1    0.000    0.000    0.000    0.000 v1_key_to_path.py:21(V1KeyToPath)
+        1    0.000    0.000    0.000    0.000 v1_field_selector_attributes.py:21(V1FieldSelectorAttributes)
+        1    0.000    0.000    0.000    0.000 v1_group_version_for_discovery.py:21(V1GroupVersionForDiscovery)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_definition_status.py:21(V1CustomResourceDefinitionStatus)
+        1    0.000    0.000    0.000    0.000 nodes.py:71(EvalContext)
+        1    0.000    0.000    0.000    0.000 difflib.py:44(SequenceMatcher)
+        1    0.000    0.000    0.000    0.000 nodes.py:991(And)
+        1    0.000    0.000    0.000    0.000 challenges.py:107(SecurityKeyChallenge)
+        1    0.000    0.000    0.000    0.000 algorithms.py:149(IDEA)
+        1    0.000    0.000    0.000    0.000 _make.py:2034(_assign_with_converter)
+        1    0.000    0.000    0.000    0.000 _format.py:1()
+        1    0.000    0.000    0.000    0.000 fragments_join.py:1()
+        1    0.000    0.000    0.000    0.000 default.py:1()
+        1    0.000    0.000    0.000    0.000 {method 'split' of 're.Pattern' objects}
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_template_spec.py:21(V1beta1ResourceClaimTemplateSpec)
+        1    0.000    0.000    0.000    0.000 v1alpha3_network_device_data.py:21(V1alpha3NetworkDeviceData)
+        1    0.000    0.000    0.000    0.000 v1_flocker_volume_source.py:21(V1FlockerVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_capabilities.py:21(V1Capabilities)
+        1    0.000    0.000    0.000    0.000 exceptions.py:7(TemplateError)
+        1    0.000    0.000    0.000    0.000 base.py:83(Attribute)
+        1    0.000    0.000    0.000    0.000 algorithms.py:91(Blowfish)
+        1    0.000    0.000    0.000    0.000 sslproto.py:78(_SSLProtocolTransport)
+        1    0.000    0.000    0.000    0.000 credentials.py:480(Signing)
+        1    0.000    0.000    0.000    0.000 __init__.py:9(gfm_like)
+        2    0.000    0.000    0.000    0.000 threading.py:279(_is_owned)
+        2    0.000    0.000    0.000    0.000 warnings.py:487(__exit__)
+        2    0.000    0.000    0.000    0.000 {built-in method posix.putenv}
+        3    0.000    0.000    0.000    0.000 _utility.py:358(get_color_code)
+        1    0.000    0.000    0.000    0.000 flowcontrol_apiserver_v1_api.py:27(FlowcontrolApiserverV1Api)
+        1    0.000    0.000    0.000    0.000 v1alpha3_resource_claim_spec.py:21(V1alpha3ResourceClaimSpec)
+        1    0.000    0.000    0.000    0.000 v1_success_policy.py:21(V1SuccessPolicy)
+        1    0.000    0.000    0.000    0.000 v1_match_condition.py:21(V1MatchCondition)
+        1    0.000    0.000    0.000    0.000 paginate.py:187(PageIterator)
+        1    0.000    0.000    0.000    0.000 lexer.py:8(Lexer)
+        1    0.000    0.000    0.000    0.000 core.py:5075(_generateDefaultName)
+        1    0.000    0.000    0.000    0.000 proxy.py:1()
+        1    0.000    0.000    0.000    0.000 _serialization.py:153(_KeySerializationEncryption)
+        2    0.000    0.000    0.000    0.000 threading.py:264(__enter__)
+        7    0.000    0.000    0.000    0.000 {built-in method from_iterable}
+        1    0.000    0.000    0.000    0.000 v2_object_metric_source.py:21(V2ObjectMetricSource)
+        1    0.000    0.000    0.000    0.000 v1beta1_opaque_device_configuration.py:21(V1beta1OpaqueDeviceConfiguration)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_claim_configuration.py:21(V1beta2DeviceClaimConfiguration)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_constraint.py:21(V1beta2DeviceConstraint)
+        1    0.000    0.000    0.000    0.000 v1_token_review_spec.py:21(V1TokenReviewSpec)
+        1    0.000    0.000    0.000    0.000 v1_node_runtime_handler.py:21(V1NodeRuntimeHandler)
+        1    0.000    0.000    0.000    0.000 v1_node_runtime_handler_features.py:21(V1NodeRuntimeHandlerFeatures)
+        1    0.000    0.000    0.000    0.000 v1_ephemeral_volume_source.py:21(V1EphemeralVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_cron_job_status.py:21(V1CronJobStatus)
+        8    0.000    0.000    0.000    0.000 tag.py:69(__init__)
+        1    0.000    0.000    0.000    0.000 rules.py:330(Rule)
+        3    0.000    0.000    0.000    0.000 response.py:40(_set_property)
+        1    0.000    0.000    0.000    0.000 test.py:1298(TestResponse)
+        8    0.000    0.000    0.000    0.000 validate.py:50(type_check)
+        1    0.000    0.000    0.000    0.000 configloader.py:1()
+        1    0.000    0.000    0.000    0.000 ansi.py:20(_AnsiToken)
+        1    0.000    0.000    0.000    0.000 restdoc.py:50(ReSTDocument)
+        9    0.000    0.000    0.000    0.000 core.py:4128()
+        1    0.000    0.000    0.000    0.000 retry.py:41(Retry)
+        1    0.000    0.000    0.000    0.000 dsa.py:15(DSAParameters)
+        1    0.000    0.000    0.000    0.000 client.py:108()
+        1    0.000    0.000    0.000    0.000 zero.py:1()
+        1    0.000    0.000    0.000    0.000 random.py:103(Random)
+        3    0.000    0.000    0.000    0.000 _utility.py:453(get_style_code)
+        1    0.000    0.000    0.000    0.000 v2_resource_metric_source.py:21(V2ResourceMetricSource)
+        1    0.000    0.000    0.000    0.000 v1beta1_param_kind.py:21(V1beta1ParamKind)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_counter_consumption.py:21(V1alpha3DeviceCounterConsumption)
+        1    0.000    0.000    0.000    0.000 v1_service_cidr_spec.py:21(V1ServiceCIDRSpec)
+        1    0.000    0.000    0.000    0.000 v1_job_template_spec.py:21(V1JobTemplateSpec)
+        1    0.000    0.000    0.000    0.000 v1_audit_annotation.py:21(V1AuditAnnotation)
+        7    0.000    0.000    0.000    0.000 parsers.py:163(_text_content)
+        1    0.000    0.000    0.000    0.000 structures.py:110(MultiDict)
+        1    0.000    0.000    0.000    0.000 session.py:28(Session)
+        1    0.000    0.000    0.000    0.000 rsa.py:512(_RSAPublicKey)
+        4    0.000    0.000    0.000    0.000 utils.py:87(__init__)
+        1    0.000    0.000    0.000    0.000 platform.py:1119(python_version)
+        1    0.000    0.000    0.000    0.000 idtracking.py:232(FrameSymbolVisitor)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_counter_consumption.py:21(V1beta2DeviceCounterConsumption)
+        1    0.000    0.000    0.000    0.000 client.py:72(DynamicClient)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device.py:21(V1alpha3Device)
+        1    0.000    0.000    0.000    0.000 v1_pod_dns_config_option.py:21(V1PodDNSConfigOption)
+        1    0.000    0.000    0.000    0.000 v1_pod_anti_affinity.py:21(V1PodAntiAffinity)
+        1    0.000    0.000    0.000    0.000 v1_network_policy_ingress_rule.py:21(V1NetworkPolicyIngressRule)
+        1    0.000    0.000    0.000    0.000 v1_ingress_backend.py:21(V1IngressBackend)
+        6    0.000    0.000    0.000    0.000 utils.py:29(pass_context)
+        1    0.000    0.000    0.000    0.000 config.py:25(Config)
+        1    0.000    0.000    0.000    0.000 oauth1_session.py:47(OAuth1Session)
+        1    0.000    0.000    0.000    0.000 iri2uri.py:1()
+        1    0.000    0.000    0.000    0.000 extensions.py:1851(SignedCertificateTimestamps)
+        1    0.000    0.000    0.000    0.000 string.py:188(Formatter)
+        1    0.000    0.000    0.000    0.000 {built-in method _warnings.warn}
+        3    0.000    0.000    0.000    0.000 _utility.py:369(is_integer_color)
+        1    0.000    0.000    0.000    0.000 v2_pods_metric_source.py:21(V2PodsMetricSource)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_capacity.py:21(V1beta1DeviceCapacity)
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_migration_status.py:21(V1alpha1StorageVersionMigrationStatus)
+        1    0.000    0.000    0.000    0.000 v1_resource_status.py:21(V1ResourceStatus)
+        1    0.000    0.000    0.000    0.000 v1_rolling_update_daemon_set.py:21(V1RollingUpdateDaemonSet)
+        1    0.000    0.000    0.000    0.000 v1_seccomp_profile.py:21(V1SeccompProfile)
+        1    0.000    0.000    0.000    0.000 v1_limit_response.py:21(V1LimitResponse)
+        1    0.000    0.000    0.000    0.000 v1_container_resize_policy.py:21(V1ContainerResizePolicy)
+        1    0.000    0.000    0.000    0.000 map.py:41(Map)
+        1    0.000    0.000    0.000    0.000 _common.py:267(tzrangebase)
+        2    0.000    0.000    0.000    0.000 headerregistry.py:566(__init__)
+        1    0.000    0.000    0.000    0.000 wait.py:1()
+        1    0.000    0.000    0.000    0.000 challenges.py:278()
+        1    0.000    0.000    0.000    0.000 extensions.py:542(FreshestCRL)
+        1    0.000    0.000    0.000    0.000 sslproto.py:259(SSLProtocol)
+        1    0.000    0.000    0.000    0.000 console.py:857(__enter__)
+        1    0.000    0.000    0.000    0.000 jupyter.py:36(JupyterMixin)
+        1    0.000    0.000    0.000    0.000 markdown.py:455(MarkdownContext)
+        2    0.000    0.000    0.000    0.000 {built-in method _pickle.dumps}
+        1    0.000    0.000    0.000    0.000 v1beta1_ip_address_spec.py:21(V1beta1IPAddressSpec)
+        1    0.000    0.000    0.000    0.000 v1alpha1_param_kind.py:21(V1alpha1ParamKind)
+        1    0.000    0.000    0.000    0.000 v1alpha1_match_condition.py:21(V1alpha1MatchCondition)
+        1    0.000    0.000    0.000    0.000 v1_resource_claim.py:21(V1ResourceClaim)
+        1    0.000    0.000    0.000    0.000 v1_namespace_status.py:21(V1NamespaceStatus)
+        1    0.000    0.000    0.000    0.000 v1_ip_block.py:21(V1IPBlock)
+        1    0.000    0.000    0.000    0.000 gzip.py:121(GzipFile)
+        1    0.000    0.000    0.000    0.000 queue.py:28(Queue)
+        1    0.000    0.000    0.000    0.000 connectionpool.py:120(HTTPConnectionPool)
+        1    0.000    0.000    0.000    0.000 base.py:24(CipherContext)
+        1    0.000    0.000    0.000    0.000 _config.py:6(config)
+        8    0.000    0.000    0.000    0.000 palette.py:14(__init__)
+        8    0.000    0.000    0.000    0.000 color.py:478()
+        1    0.000    0.000    0.000    0.000 ipaddress.py:1420(IPv4Interface)
+        2    0.000    0.000    0.000    0.000 {method 'timestamp' of 'datetime.datetime' objects}
+        1    0.000    0.000    0.000    0.000 kube_config.py:186(KubeConfigLoader)
+        1    0.000    0.000    0.000    0.000 v1beta1_resource_claim_spec.py:21(V1beta1ResourceClaimSpec)
+        1    0.000    0.000    0.000    0.000 v1_projected_volume_source.py:21(V1ProjectedVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_photon_persistent_disk_volume_source.py:21(V1PhotonPersistentDiskVolumeSource)
+        1    0.000    0.000    0.000    0.000 generator.py:28(Generator)
+        1    0.000    0.000    0.000    0.000 _requests_base.py:24(_BaseAuthorizedSession)
+        1    0.000    0.000    0.000    0.000 :2(__init__)
+        1    0.000    0.000    0.000    0.000 _make.py:2802(Converter)
+        3    0.000    0.000    0.000    0.000 containers.py:93(__len__)
+        2    0.000    0.000    0.000    0.000 threading.py:1446(current_thread)
+        1    0.000    0.000    0.000    0.000 {built-in method math.copysign}
+        2    0.000    0.000    0.000    0.000 _figure.py:97(_set_subplots)
+        1    0.000    0.000    0.000    0.000 v2_resource_metric_status.py:21(V2ResourceMetricStatus)
+        1    0.000    0.000    0.000    0.000 certificates_v1_api.py:27(CertificatesV1Api)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_class_spec.py:21(V1beta2DeviceClassSpec)
+        1    0.000    0.000    0.000    0.000 v1_daemon_set_update_strategy.py:21(V1DaemonSetUpdateStrategy)
+        1    0.000    0.000    0.000    0.000 bccache.py:46(Bucket)
+        1    0.000    0.000    0.000    0.000 nodes.py:360(CallBlock)
+        1    0.000    0.000    0.000    0.000 ed25519.py:16(Ed25519PublicKey)
+        1    0.000    0.000    0.000    0.000 _decode.py:1()
+        1    0.000    0.000    0.000    0.000 ipaddress.py:1139(_BaseV4)
+        1    0.000    0.000    0.000    0.000 functools.py:745()
+        1    0.000    0.000    0.000    0.000 v1_self_subject_review_status.py:21(V1SelfSubjectReviewStatus)
+        1    0.000    0.000    0.000    0.000 v1_preconditions.py:21(V1Preconditions)
+        1    0.000    0.000    0.000    0.000 v1_label_selector.py:21(V1LabelSelector)
+        1    0.000    0.000    0.000    0.000 visitor.py:100(TreeInterpreter)
+        1    0.000    0.000    0.000    0.000 client.py:860(BaseClient)
+        1    0.000    0.000    0.000    0.000 tempfile.py:995(TemporaryDirectory)
+        1    0.000    0.000    0.000    0.000 parse.py:152(_NetlocResultMixinBase)
+        1    0.000    0.000    0.000    0.000 {method 'keys' of 'collections.OrderedDict' objects}
+        1    0.000    0.000    0.000    0.000 {method 'close' of 'select.epoll' objects}
+        1    0.000    0.000    0.000    0.000 quantity.py:1()
+        1    0.000    0.000    0.000    0.000 networking_v1beta1_api.py:27(NetworkingV1beta1Api)
+        1    0.000    0.000    0.000    0.000 v1_user_subject.py:21(V1UserSubject)
+        1    0.000    0.000    0.000    0.000 v1_secret_reference.py:21(V1SecretReference)
+        1    0.000    0.000    0.000    0.000 nodes.py:380(With)
+        1    0.000    0.000    0.000    0.000 utils.py:3027(ContainerMetadataFetcher)
+        2    0.000    0.000    0.000    0.000 six.py:169(_SixMetaPathImporter)
+        6    0.000    0.000    0.000    0.000 core.py:3511()
+        1    0.000    0.000    0.000    0.000 binding.py:117(Binding)
+        1    0.000    0.000    0.000    0.000 binding.py:129(__init__)
+        1    0.000    0.000    0.000    0.000 modes.py:216(GCM)
+        1    0.000    0.000    0.000    0.000 queues.py:21(Queue)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:383(_IPAddressBase)
+        6    0.000    0.000    0.000    0.000 signal.py:48(_wraps)
+        2    0.000    0.000    0.000    0.000 reprlib.py:38(__init__)
+        1    0.000    0.000    0.000    0.000 extensions.py:1127(KeyUsage)
+        1    0.000    0.000    0.000    0.000 request.py:55(make_headers)
+        1    0.000    0.000    0.000    0.000 v1_resource_health.py:21(V1ResourceHealth)
+        1    0.000    0.000    0.000    0.000 v1_for_zone.py:21(V1ForZone)
+        1    0.000    0.000    0.000    0.000 v1_downward_api_projection.py:21(V1DownwardAPIProjection)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_conversion.py:21(V1CustomResourceConversion)
+        6    0.000    0.000    0.000    0.000 reduction.py:43(register)
+        1    0.000    0.000    0.000    0.000 types.py:593(BoolParamType)
+        1    0.000    0.000    0.000    0.000 structures.py:655(CombinedMultiDict)
+        1    0.000    0.000    0.000    0.000 collection.py:263(CollectionManager)
+        1    0.000    0.000    0.000    0.000 dsa.py:176(_DSAPublicKey)
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha1}
+        1    0.000    0.000    0.000    0.000 streams.py:395(StreamReader)
+        1    0.000    0.000    0.000    0.000 abc.py:131(TraversableResources)
+        2    0.000    0.000    0.000    0.000 argparse.py:247(_add_item)
+        5    0.000    0.000    0.000    0.000 {method 'deleter' of 'property' objects}
+        1    0.000    0.000    0.000    0.000 idtracking.py:174(RootVisitor)
+        1    0.000    0.000    0.000    0.000 _matrix.py:3(matrix_class)
+        1    0.000    0.000    0.000    0.000 v1alpha3_counter_set.py:21(V1alpha3CounterSet)
+        1    0.000    0.000    0.000    0.000 v1_self_subject_rules_review_spec.py:21(V1SelfSubjectRulesReviewSpec)
+        1    0.000    0.000    0.000    0.000 v1_pod_resource_claim_status.py:21(V1PodResourceClaimStatus)
+        1    0.000    0.000    0.000    0.000 v1_local_volume_source.py:21(V1LocalVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_image_volume_source.py:21(V1ImageVolumeSource)
+        1    0.000    0.000    0.000    0.000 mimeparse.py:1()
+        6    0.000    0.000    0.000    0.000 core.py:5769(postParse)
+        1    0.000    0.000    0.000    0.000 base.py:191(_AEADCipherContext)
+        1    0.000    0.000    0.000    0.000 _oid.py:147(ExtendedKeyUsageOID)
+        1    0.000    0.000    0.000    0.000 certificate_transparency.py:38(SignedCertificateTimestamp)
+        1    0.000    0.000    0.000    0.000 sequences.py:18(Termcap)
+        1    0.000    0.000    0.000    0.000 _policybase.py:289(_sanitize_header)
+        1    0.000    0.000    0.000    0.000 highlighter.py:106(JSONHighlighter)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_allocation_result.py:21(V1alpha3DeviceAllocationResult)
+        1    0.000    0.000    0.000    0.000 v1alpha1_cluster_trust_bundle_spec.py:21(V1alpha1ClusterTrustBundleSpec)
+        1    0.000    0.000    0.000    0.000 v1_object_field_selector.py:21(V1ObjectFieldSelector)
+        1    0.000    0.000    0.000    0.000 v1_host_path_volume_source.py:21(V1HostPathVolumeSource)
+        1    0.000    0.000    0.000    0.000 types.py:550(FloatRange)
+        1    0.000    0.000    0.000    0.000 headers.py:13(Headers)
+        6    0.000    0.000    0.000    0.000 base.py:601(__getattr__)
+        1    0.000    0.000    0.000    0.000 __init__.py:74(Client)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:743(Cookie)
+        1    0.000    0.000    0.000    0.000 cookies.py:23(MockRequest)
+        1    0.000    0.000    0.000    0.000 dsa.py:81(_DSAPrivateKey)
+        1    0.000    0.000    0.000    0.000 utils.py:93(_ModuleWithDeprecations)
+        1    0.000    0.000    0.000    0.000 console.py:1083(capture)
+        6    0.000    0.000    0.000    0.000 console.py:777(_buffer_index)
+        1    0.000    0.000    0.000    0.000 highlighter.py:80(ReprHighlighter)
+        4    0.000    0.000    0.000    0.000 argparse.py:305()
+        5    0.000    0.000    0.000    0.000 {method 'count' of 'list' objects}
+        1    0.000    0.000    0.000    0.000 _app.py:48(DispatcherBase)
+        1    0.000    0.000    0.000    0.000 v2_pods_metric_status.py:21(V2PodsMetricStatus)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_allocation_result.py:21(V1beta2DeviceAllocationResult)
+        1    0.000    0.000    0.000    0.000 v1alpha1_storage_version_migration_spec.py:21(V1alpha1StorageVersionMigrationSpec)
+        1    0.000    0.000    0.000    0.000 v1alpha3_allocation_result.py:21(V1alpha3AllocationResult)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_claim_configuration.py:21(V1alpha3DeviceClaimConfiguration)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_taint_rule_spec.py:21(V1alpha3DeviceTaintRuleSpec)
+        1    0.000    0.000    0.000    0.000 v1_container_state_waiting.py:21(V1ContainerStateWaiting)
+        1    0.000    0.000    0.000    0.000 connection.py:114(_ConnectionBase)
+        1    0.000    0.000    0.000    0.000 core_v1_event_series.py:21(CoreV1EventSeries)
+        1    0.000    0.000    0.000    0.000 v1_attached_volume.py:21(V1AttachedVolume)
+        1    0.000    0.000    0.000    0.000 core.py:4106(Or)
+        1    0.000    0.000    0.000    0.000 ed448.py:12(Ed448PublicKey)
+        1    0.000    0.000    0.000    0.000 table_wide.py:1()
+        3    0.000    0.000    0.000    0.000 __init__.py:428(__init__)
+        1    0.000    0.000    0.000    0.000 hooks.py:82(modify)
+        5    0.000    0.000    0.000    0.000 datetime.py:545(_check_tzinfo_arg)
+        1    0.000    0.000    0.000    0.000 bz2.py:26(BZ2File)
+        1    0.000    0.000    0.000    0.000 :897(_resolve_filename)
+        1    0.000    0.000    0.000    0.000 _ssl_compat.py:1()
+        1    0.000    0.000    0.000    0.000 v1beta1_variable.py:21(V1beta1Variable)
+        1    0.000    0.000    0.000    0.000 v1_session_affinity_config.py:21(V1SessionAffinityConfig)
+        1    0.000    0.000    0.000    0.000 v1_pod_template_spec.py:21(V1PodTemplateSpec)
+        1    0.000    0.000    0.000    0.000 v1_non_resource_attributes.py:21(V1NonResourceAttributes)
+        1    0.000    0.000    0.000    0.000 v1_non_resource_policy_rule.py:21(V1NonResourcePolicyRule)
+        1    0.000    0.000    0.000    0.000 v1_non_resource_rule.py:21(V1NonResourceRule)
+        1    0.000    0.000    0.000    0.000 v1_persistent_volume_claim_volume_source.py:21(V1PersistentVolumeClaimVolumeSource)
+        1    0.000    0.000    0.000    0.000 v1_pod_affinity.py:21(V1PodAffinity)
+        1    0.000    0.000    0.000    0.000 v1_label_selector_attributes.py:21(V1LabelSelectorAttributes)
+        1    0.000    0.000    0.000    0.000 v1_certificate_signing_request_status.py:21(V1CertificateSigningRequestStatus)
+        1    0.000    0.000    0.000    0.000 _parser.py:241(parserinfo)
+        1    0.000    0.000    0.000    0.000 args.py:65(ClientArgsCreator)
+        1    0.000    0.000    0.000    0.000 eventstream.py:354(EventStreamHeaderParser)
+        1    0.000    0.000    0.000    0.000 request.py:834(HTTPPasswordMgr)
+        1    0.000    0.000    0.000    0.000 ec.py:306(ECDSA)
+        1    0.000    0.000    0.000    0.000 algorithms.py:137(ARC4)
+        1    0.000    0.000    0.000    0.000 subprocess.py:115(Process)
+        1    0.000    0.000    0.000    0.000 profile_handler.py:10(__init__)
+        1    0.000    0.000    0.000    0.000 __init__.py:1323(disable)
+        1    0.000    0.000    0.000    0.000 :262(__subclasshook__)
+        4    0.000    0.000    0.000    0.000 argparse.py:2337(_get_nargs_pattern)
+        1    0.000    0.000    0.000    0.000 _doc_utils.py:115(method_class)
+        1    0.000    0.000    0.000    0.000 v1beta2_opaque_device_configuration.py:21(V1beta2OpaqueDeviceConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_volume_node_affinity.py:21(V1VolumeNodeAffinity)
+        1    0.000    0.000    0.000    0.000 v1_service_cidr_status.py:21(V1ServiceCIDRStatus)
+        1    0.000    0.000    0.000    0.000 v1_rolling_update_stateful_set_strategy.py:21(V1RollingUpdateStatefulSetStrategy)
+        1    0.000    0.000    0.000    0.000 v1_scheduling.py:21(V1Scheduling)
+        1    0.000    0.000    0.000    0.000 v1_network_policy_egress_rule.py:21(V1NetworkPolicyEgressRule)
+        1    0.000    0.000    0.000    0.000 storage_v1_token_request.py:21(StorageV1TokenRequest)
+        1    0.000    0.000    0.000    0.000 nodes.py:898(Concat)
+        1    0.000    0.000    0.000    0.000 wsgi.py:338(_RangeWrapper)
+        1    0.000    0.000    0.000    0.000 tokens.py:57(FrozenAuthToken)
+        1    0.000    0.000    0.000    0.000 url.py:80(Url)
+        1    0.000    0.000    0.000    0.000 __init__.py:41(Cache)
+        1    0.000    0.000    0.000    0.000 credentials.py:339(ReadOnlyScoped)
+        6    0.000    0.000    0.000    0.000 six.py:199(__get_module)
+        1    0.000    0.000    0.000    0.000 sequences.py:244(Sequence)
+        1    0.000    0.000    0.000    0.000 abc.py:177(InspectLoader)
+        1    0.000    0.000    0.000    0.000 inline.py:1()
+        1    0.000    0.000    0.000    0.000 theme.py:105(pop_theme)
+        1    0.000    0.000    0.000    0.000 numbers.py:267(Rational)
+        1    0.000    0.000    0.000    0.000 threading.py:359(notify)
+        7    0.000    0.000    0.000    0.000 functools.py:723()
+        5    0.000    0.000    0.000    0.000 {method 'discard' of 'set' objects}
+        1    0.000    0.000    0.000    0.000 {built-in method _thread.get_native_id}
+        6    0.000    0.000    0.000    0.000 {method 'toordinal' of 'datetime.date' objects}
+        1    0.000    0.000    0.000    0.000 _monitor.py:237(set_theme)
+        1    0.000    0.000    0.000    0.000 v1beta2_allocation_result.py:21(V1beta2AllocationResult)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_constraint.py:21(V1alpha3DeviceConstraint)
+        1    0.000    0.000    0.000    0.000 v1_selectable_field.py:21(V1SelectableField)
+        1    0.000    0.000    0.000    0.000 v1_secret_env_source.py:21(V1SecretEnvSource)
+        1    0.000    0.000    0.000    0.000 v1_pod_ip.py:21(V1PodIP)
+        1    0.000    0.000    0.000    0.000 v1_preferred_scheduling_term.py:21(V1PreferredSchedulingTerm)
+        1    0.000    0.000    0.000    0.000 v1_param_kind.py:21(V1ParamKind)
+        1    0.000    0.000    0.000    0.000 v1_ingress_class_spec.py:21(V1IngressClassSpec)
+        1    0.000    0.000    0.000    0.000 v1_container_image.py:21(V1ContainerImage)
+        1    0.000    0.000    0.000    0.000 templating.py:52(DispatchingJinjaLoader)
+        1    0.000    0.000    0.000    0.000 test.py:1361(Cookie)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:402(MIMEVersionHeader)
+        1    0.000    0.000    0.000    0.000 timeout.py:25(Timeout)
+        1    0.000    0.000    0.000    0.000 ciphers.py:16(_CipherContext)
+        1    0.000    0.000    0.000    0.000 import_export_handler.py:9(__init__)
+        1    0.000    0.000    0.000    0.000 __init__.py:17(ConsoleRender)
+        1    0.000    0.000    0.000    0.000 config_service.py:11(ConfigService)
+        1    0.000    0.000    0.000    0.000 syntax.py:122(SyntaxTheme)
+        2    0.000    0.000    0.000    0.000 highlighter.py:8(_combine_regex)
+        1    0.000    0.000    0.000    0.000 console.py:462(Group)
+        3    0.000    0.000    0.000    0.000 threading.py:1199(daemon)
+        1    0.000    0.000    0.000    0.000 spawnbase.py:23(SpawnBase)
+        1    0.000    0.000    0.000    0.000 _monitor.py:38(axes_init)
+        3    0.000    0.000    0.000    0.000 _utility.py:87(no_duplicates)
+        1    0.000    0.000    0.000    0.000 v1beta2_device_capacity.py:21(V1beta2DeviceCapacity)
+        1    0.000    0.000    0.000    0.000 v1beta1_cel_device_selector.py:21(V1beta1CELDeviceSelector)
+        1    0.000    0.000    0.000    0.000 v1alpha3_counter.py:21(V1alpha3Counter)
+        1    0.000    0.000    0.000    0.000 v1_topology_selector_term.py:21(V1TopologySelectorTerm)
+        1    0.000    0.000    0.000    0.000 v1_load_balancer_status.py:21(V1LoadBalancerStatus)
+        1    0.000    0.000    0.000    0.000 v1_flow_schema_status.py:21(V1FlowSchemaStatus)
+        1    0.000    0.000    0.000    0.000 nodes.py:1151(Scope)
+        1    0.000    0.000    0.000    0.000 utils.py:434(_postinit)
+        1    0.000    0.000    0.000    0.000 core.py:2608(CaselessKeyword)
+        1    0.000    0.000    0.000    0.000 socks.py:145(socksocket)
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha224}
+        1    0.000    0.000    0.000    0.000 terminal.py:1506(WINSZ)
+        1    0.000    0.000    0.000    0.000 __init__.py:922(PathDistribution)
+        5    0.000    0.000    0.000    0.000 console.py:772(_buffer)
+        1    0.000    0.000    0.000    0.000 protocol.py:1()
+        1    0.000    0.000    0.000    0.000 __init__.py:9(KeyDerivationFunction)
+        1    0.000    0.000    0.000    0.000 __init__.py:439(LibraryLoader)
+        7    0.000    0.000    0.000    0.000 functools.py:724()
+        1    0.000    0.000    0.000    0.000 resource.py:108(ResourceList)
+        1    0.000    0.000    0.000    0.000 v1beta2_resource_claim_spec.py:21(V1beta2ResourceClaimSpec)
+        1    0.000    0.000    0.000    0.000 v1beta1_device_class_configuration.py:21(V1beta1DeviceClassConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_pod_os.py:21(V1PodOS)
+        1    0.000    0.000    0.000    0.000 v1_overhead.py:21(V1Overhead)
+        1    0.000    0.000    0.000    0.000 v1_exec_action.py:21(V1ExecAction)
+        1    0.000    0.000    0.000    0.000 v1_client_ip_config.py:21(V1ClientIPConfig)
+        1    0.000    0.000    0.000    0.000 pool.py:745(ApplyResult)
+        1    0.000    0.000    0.000    0.000 nodes.py:670(Pair)
+        1    0.000    0.000    0.000    0.000 bccache.py:188(FileSystemBytecodeCache)
+        1    0.000    0.000    0.000    0.000 mixins.py:65(ImmutableDictMixin)
+        6    0.000    0.000    0.000    0.000 _common.py:13(tzname_in_python2)
+        1    0.000    0.000    0.000    0.000 utils.py:373(IMDSFetcher)
+        1    0.000    0.000    0.000    0.000 exceptions.py:189(BadRequestKeyError)
+        1    0.000    0.000    0.000    0.000 request_validator.py:10(RequestValidator)
+        1    0.000    0.000    0.000    0.000 discovery.py:1395(Resource)
+        1    0.000    0.000    0.000    0.000 webauthn_handler.py:10(WebAuthnHandler)
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha3_224}
+        1    0.000    0.000    0.000    0.000 extensions.py:151(CRLNumber)
+        2    0.000    0.000    0.000    0.000 _policybase.py:41(__init__)
+        1    0.000    0.000    0.000    0.000 zipfile.py:2313(Path)
+        1    0.000    0.000    0.000    0.000 parser.py:72(Parser)
+        4    0.000    0.000    0.000    0.000 contextlib.py:454(_create_cb_wrapper)
+        6    0.000    0.000    0.000    0.000 {method 'clear' of 'dict' objects}
+        1    0.000    0.000    0.000    0.000 :786(keys)
+        3    0.000    0.000    0.000    0.000 {built-in method _imp.extension_suffixes}
+        1    0.000    0.000    0.000    0.000 v1_node_swap_status.py:21(V1NodeSwapStatus)
+        1    0.000    0.000    0.000    0.000 v1_http_ingress_rule_value.py:21(V1HTTPIngressRuleValue)
+        1    0.000    0.000    0.000    0.000 v1_ingress_status.py:21(V1IngressStatus)
+        1    0.000    0.000    0.000    0.000 v1_flow_distinguisher_method.py:21(V1FlowDistinguisherMethod)
+        1    0.000    0.000    0.000    0.000 signer.py:76(Signer)
+        1    0.000    0.000    0.000    0.000 client.py:35(ClientDocumenter)
+        1    0.000    0.000    0.000    0.000 core.py:4803(PrecededBy)
+        1    0.000    0.000    0.000    0.000 trsock.py:4(TransportSocket)
+        1    0.000    0.000    0.000    0.000 runners.py:21(Runner)
+        1    0.000    0.000    0.000    0.000 client.py:239(HTTPResponse)
+        1    0.000    0.000    0.000    0.000 config_service.py:14(get_settings)
+        1    0.000    0.000    0.000    0.000 calendar.py:71(_localized_day)
+        1    0.000    0.000    0.000    0.000 markdown.py:503(Markdown)
+        1    0.000    0.000    0.000    0.000 traceback.py:372(StackSummary)
+        1    0.000    0.000    0.000    0.000 :790(items)
+        1    0.000    0.000    0.000    0.000 {built-in method posix.sysconf}
+        1    0.000    0.000    0.000    0.000 autoscaling_v2_api.py:27(AutoscalingV2Api)
+        1    0.000    0.000    0.000    0.000 v1_group_subject.py:21(V1GroupSubject)
+        1    0.000    0.000    0.000    0.000 v1_daemon_endpoint.py:21(V1DaemonEndpoint)
+        1    0.000    0.000    0.000    0.000 nodes.py:684(Keyword)
+        1    0.000    0.000    0.000    0.000 nodes.py:787(Filter)
+        1    0.000    0.000    0.000    0.000 client.py:587(ClientEndpointBridge)
+        1    0.000    0.000    0.000    0.000 core.py:2971(Char)
+        1    0.000    0.000    0.000    0.000 cookies.py:442(BaseCookie)
+        1    0.000    0.000    0.000    0.000 _encoded_words.py:73(_QByteMap)
+        2    0.000    0.000    0.000    0.000 _adapters.py:16(__getattr__)
+        1    0.000    0.000    0.000    0.000 decoder.py:284(__init__)
+        2    0.000    0.000    0.000    0.000 RSA.py:212(has_private)
+        1    0.000    0.000    0.000    0.000 contextlib.py:104(__init__)
+        3    0.000    0.000    0.000    0.000 _figure.py:57(_set_size)
+        1    0.000    0.000    0.000    0.000 admissionregistration_v1alpha1_api.py:27(AdmissionregistrationV1alpha1Api)
+        1    0.000    0.000    0.000    0.000 types.py:188(UnprocessedParamType)
+        1    0.000    0.000    0.000    0.000 example.py:17(BaseExampleDocumenter)
+        3    0.000    0.000    0.000    0.000 __init__.py:43(private_class)
+        1    0.000    0.000    0.000    0.000 auth.py:214(SigV4Auth)
+        1    0.000    0.000    0.000    0.000 bucket.py:20(TokenBucket)
+        1    0.000    0.000    0.000    0.000 core.py:3452(White)
+        2    0.000    0.000    0.000    0.000 results.py:269(__iter__)
+        1    0.000    0.000    0.000    0.000 rsa.py:291(RSAPrivateNumbers)
+        1    0.000    0.000    0.000    0.000 Padding.py:1()
+        1    0.000    0.000    0.000    0.000 socket.py:663(SocketIO)
+        1    0.000    0.000    0.000    0.000 configparser.py:298(ParsingError)
+        1    0.000    0.000    0.000    0.000 _compression.py:33(DecompressReader)
+        3    0.000    0.000    0.000    0.000 {method 'popitem' of 'dict' objects}
+        1    0.000    0.000    0.000    0.000 _cookiejar.py:24(SimpleCookieJar)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_selector.py:21(V1alpha3DeviceSelector)
+        1    0.000    0.000    0.000    0.000 v1_pod_failure_policy.py:21(V1PodFailurePolicy)
+        1    0.000    0.000    0.000    0.000 multipart.py:77(MultipartDecoder)
+        1    0.000    0.000    0.000    0.000 provider.py:124(DefaultJSONProvider)
+        1    0.000    0.000    0.000    0.000 utils.py:2083(ArnParser)
+        1    0.000    0.000    0.000    0.000 discovery.py:47(EndpointDiscoveryModel)
+        1    0.000    0.000    0.000    0.000 tz.py:386(tzfile)
+        1    0.000    0.000    0.000    0.000 __init__.py:1211(Http)
+        1    0.000    0.000    0.000    0.000 console.py:896(use_theme)
+        1    0.000    0.000    0.000    0.000 __init__.py:351(EntryPoints)
+        1    0.000    0.000    0.000    0.000 _make.py:621(_ClassBuilder)
+        2    0.000    0.000    0.000    0.000 {built-in method sys.exc_info}
+        1    0.000    0.000    0.000    0.000 v1beta1_service_cidr_spec.py:21(V1beta1ServiceCIDRSpec)
+        1    0.000    0.000    0.000    0.000 autoscaling_v1_api.py:27(AutoscalingV1Api)
+        1    0.000    0.000    0.000    0.000 v1_scope_selector.py:21(V1ScopeSelector)
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_reference.py:21(V1PriorityLevelConfigurationReference)
+        1    0.000    0.000    0.000    0.000 types.py:618(UUIDParameterType)
+        2    0.000    0.000    0.000    0.000 history.py:51(get_global_history_recorder)
+        1    0.000    0.000    0.000    0.000 structures.py:474(OrderedMultiDict)
+        1    0.000    0.000    0.000    0.000 server.py:974(CGIHTTPRequestHandler)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:117(TokenList)
+        1    0.000    0.000    0.000    0.000 models.py:313(PreparedRequest)
+        1    0.000    0.000    0.000    0.000 cookies.py:176(RequestsCookieJar)
+        1    0.000    0.000    0.000    0.000 base.py:70(FromServiceAccountMixin)
+        1    0.000    0.000    0.000    0.000 ec.py:54(EllipticCurveSignatureAlgorithm)
+        1    0.000    0.000    0.000    0.000 encoders.py:1()
+        1    0.000    0.000    0.000    0.000 node_service.py:8(NodeService)
+        1    0.000    0.000    0.000    0.000 lexer.py:49(Lexer)
+        2    0.000    0.000    0.000    0.000 validators.py:294(__call__)
+        1    0.000    0.000    0.000    0.000 ruler.py:33(StateBase)
+        5    0.000    0.000    0.000    0.000 datetime.py:51(_days_in_month)
+        1    0.000    0.000    0.000    0.000 threading.py:103(_RLock)
+        4    0.000    0.000    0.000    0.000 :315(__subclasshook__)
+        5    0.000    0.000    0.000    0.000 {method 'append' of 'collections.deque' objects}
+        3    0.000    0.000    0.000    0.000 {built-in method atexit.register}
+        1    0.000    0.000    0.000    0.000 client.py:1303(ClientMeta)
+        1    0.000    0.000    0.000    0.000 connection.py:538(HTTPSConnection)
+        1    0.000    0.000    0.000    0.000 ec.py:347(EllipticCurvePublicNumbers)
+        1    0.000    0.000    0.000    0.000 __init__.py:6(HTTPStatus)
+        1    0.000    0.000    0.000    0.000 __init__.py:46(PackageNotFoundError)
+        1    0.000    0.000    0.000    0.000 ssl.py:456(_ASN1Object)
+        3    0.000    0.000    0.000    0.000 hooks.py:86(make_instance_modify)
+        2    0.000    0.000    0.000    0.000 contextlib.py:460(__init__)
+        1    0.000    0.000    0.000    0.000 _utility.py:331()
+        1    0.000    0.000    0.000    0.000 _abnf.py:412(continuous_frame)
+        1    0.000    0.000    0.000    0.000 storage_v1beta1_api.py:27(StorageV1beta1Api)
+        1    0.000    0.000    0.000    0.000 apiregistration_v1_api.py:27(ApiregistrationV1Api)
+        1    0.000    0.000    0.000    0.000 lexer.py:143()
+        1    0.000    0.000    0.000    0.000 ctx.py:287(RequestContext)
+        1    0.000    0.000    0.000    0.000 difflib.py:1666(HtmlDiff)
+        4    0.000    0.000    0.000    0.000 core.py:867(__init__)
+        1    0.000    0.000    0.000    0.000 local.py:106(LocalStack)
+        1    0.000    0.000    0.000    0.000 types.py:200(StringParamType)
+        1    0.000    0.000    0.000    0.000 docstringparser.py:243(DataNode)
+        1    0.000    0.000    0.000    0.000 parsers.py:188(ResponseParser)
+        1    0.000    0.000    0.000    0.000 signers.py:33(RequestSigner)
+        1    0.000    0.000    0.000    0.000 model.py:246(ResourceModel)
+        1    0.000    0.000    0.000    0.000 common.py:331(Request)
+        1    0.000    0.000    0.000    0.000 selector_events.py:752(_SelectorTransport)
+        1    0.000    0.000    0.000    0.000 markup.py:20(Tag)
+        1    0.000    0.000    0.000    0.000 threading.py:804(_newname)
+        2    0.000    0.000    0.000    0.000 core.py:733(_splitlist)
+        1    0.000    0.000    0.000    0.000 {built-in method binascii.a2b_base64}
+        1    0.000    0.000    0.000    0.000 sysconfig.py:751(get_config_var)
+        1    0.000    0.000    0.000    0.000 policy_v1_api.py:27(PolicyV1Api)
+        1    0.000    0.000    0.000    0.000 connection.py:347(Connection)
+        1    0.000    0.000    0.000    0.000 nodes.py:1083(MarkSafe)
+        1    0.000    0.000    0.000    0.000 exceptions.py:257(FileError)
+        5    0.000    0.000    0.000    0.000 mixins.py:198(_calls_update)
+        1    0.000    0.000    0.000    0.000 _markupbase.py:23(ParserBase)
+        5    0.000    0.000    0.000    0.000 loaders.py:127(instance_cache)
+        1    0.000    0.000    0.000    0.000 model.py:263(MapShape)
+        1    0.000    0.000    0.000    0.000 core.py:5349(_update_ignorer)
+        1    0.000    0.000    0.000    0.000 unicode.py:135(BasicMultilingualPlane)
+        1    0.000    0.000    0.000    0.000 adapters.py:137(BaseAdapter)
+        1    0.000    0.000    0.000    0.000 ec.py:217(_EllipticCurvePublicKey)
+        1    0.000    0.000    0.000    0.000 algorithms.py:195(ChaCha20)
+        1    0.000    0.000    0.000    0.000 KDF.py:187(_S2V)
+        2    0.000    0.000    0.000    0.000 plugins.py:116()
+        1    0.000    0.000    0.000    0.000 _lazy_rich.py:1()
+        1    0.000    0.000    0.000    0.000 configparser.py:1256(SectionProxy)
+        1    0.000    0.000    0.000    0.000 ruler.py:76(Ruler)
+        1    0.000    0.000    0.000    0.000 threading.py:273(_release_save)
+        2    0.000    0.000    0.000    0.000 warnings.py:440(__init__)
+        2    0.000    0.000    0.000    0.000 {built-in method math.log}
+        1    0.000    0.000    0.000    0.000 tools.py:176(Connect)
+        4    0.000    0.000    0.000    0.000 _strptime.py:210()
+        1    0.000    0.000    0.000    0.000 v1_limit_range_spec.py:21(V1LimitRangeSpec)
+        1    0.000    0.000    0.000    0.000 sessions.py:24(SessionMixin)
+        1    0.000    0.000    0.000    0.000 pkgutil.py:269(ImpLoader)
+        1    0.000    0.000    0.000    0.000 regions.py:113(EndpointResolver)
+        1    0.000    0.000    0.000    0.000 handlers.py:729(document_glacier_tree_hash_checksum)
+        1    0.000    0.000    0.000    0.000 wrappers.py:18(Request)
+        1    0.000    0.000    0.000    0.000 hooks.py:402(EventAliaser)
+        1    0.000    0.000    0.000    0.000 capture.py:28(Entrypoint)
+        1    0.000    0.000    0.000    0.000 __init__.py:496(Authentication)
+        1    0.000    0.000    0.000    0.000 models.py:84(RequestEncodingMixin)
+        1    0.000    0.000    0.000    0.000 queue.py:258(_PySimpleQueue)
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_shake_256}
+        1    0.000    0.000    0.000    0.000 modes.py:57(ModeWithAuthenticationTag)
+        1    0.000    0.000    0.000    0.000 x25519.py:12(X25519PublicKey)
+        1    0.000    0.000    0.000    0.000 credentials.py:407(Scoped)
+        1    0.000    0.000    0.000    0.000 shlex.py:19(shlex)
+        2    0.000    0.000    0.000    0.000 __init__.py:594(_discover_resolvers)
+        1    0.000    0.000    0.000    0.000 csv.py:80(DictReader)
+        1    0.000    0.000    0.000    0.000 markdown.py:30(MarkdownElement)
+        1    0.000    0.000    0.000    0.000 parse.py:361(_fix_result_transcoding)
+        5    0.000    0.000    0.000    0.000 platform.py:772(_unknown_as_blank)
+        3    0.000    0.000    0.000    0.000 datetime.py:46(_days_before_year)
+        3    0.000    0.000    0.000    0.000 :186(__init__)
+        3    0.000    0.000    0.000    0.000 {method 'locked' of '_thread.lock' objects}
+        1    0.000    0.000    0.000    0.000 _dict.py:73()
+        4    0.000    0.000    0.000    0.000 _utility.py:473()
+        1    0.000    0.000    0.000    0.000 pydoc.py:1134(__init__)
+        1    0.000    0.000    0.000    0.000 coordination_v1alpha2_api.py:27(CoordinationV1alpha2Api)
+        1    0.000    0.000    0.000    0.000 internal_apiserver_v1alpha1_api.py:27(InternalApiserverV1alpha1Api)
+        1    0.000    0.000    0.000    0.000 storagemigration_v1alpha1_api.py:27(StoragemigrationV1alpha1Api)
+        1    0.000    0.000    0.000    0.000 v1alpha1_apply_configuration.py:21(V1alpha1ApplyConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_scale_spec.py:21(V1ScaleSpec)
+        1    0.000    0.000    0.000    0.000 v1_node_config_source.py:21(V1NodeConfigSource)
+        1    0.000    0.000    0.000    0.000 v1_api_service_status.py:21(V1APIServiceStatus)
+        4    0.000    0.000    0.000    0.000 range.py:109(_callback_property)
+        1    0.000    0.000    0.000    0.000 tz.py:201(tzlocal)
+        6    0.000    0.000    0.000    0.000 compat.py:10(with_str_method)
+        1    0.000    0.000    0.000    0.000 tz.py:1167(_tzicalvtz)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:276(DateHeader)
+        5    0.000    0.000    0.000    0.000 contentmanager.py:27(add_set_handler)
+        1    0.000    0.000    0.000    0.000 requests.py:296(AuthorizedSession)
+        1    0.000    0.000    0.000    0.000 extensions.py:288(SubjectKeyIdentifier)
+        1    0.000    0.000    0.000    0.000 prompt.py:340(Confirm)
+        1    0.000    0.000    0.000    0.000 feedparser.py:53(__init__)
+        1    0.000    0.000    0.000    0.000 _make.py:2589()
+        1    0.000    0.000    0.000    0.000 _make.py:2587()
+        1    0.000    0.000    0.000    0.000 validators.py:202(__call__)
+        1    0.000    0.000    0.000    0.000 __init__.py:412(Deprecated)
+        4    0.000    0.000    0.000    0.000 console.py:782(_buffer_index)
+        1    0.000    0.000    0.000    0.000 constructor.py:482(FullConstructor)
+        1    0.000    0.000    0.000    0.000 __init__.py:362(YAMLObject)
+        1    0.000    0.000    0.000    0.000 threading.py:276(_acquire_restore)
+        1    0.000    0.000    0.000    0.000 {method 'disable' of '_lsprof.Profiler' objects}
+        1    0.000    0.000    0.000    0.000 :964(create_module)
+        1    0.000    0.000    0.000    0.000 _date.py:4(date_class)
+        1    0.000    0.000    0.000    0.000 v1beta1_service_cidr_status.py:21(V1beta1ServiceCIDRStatus)
+        1    0.000    0.000    0.000    0.000 v1beta2_cel_device_selector.py:21(V1beta2CELDeviceSelector)
+        1    0.000    0.000    0.000    0.000 v1_node_daemon_endpoints.py:21(V1NodeDaemonEndpoints)
+        1    0.000    0.000    0.000    0.000 v1_node_features.py:21(V1NodeFeatures)
+        1    0.000    0.000    0.000    0.000 v1_node_selector.py:21(V1NodeSelector)
+        1    0.000    0.000    0.000    0.000 v1_container_state_running.py:21(V1ContainerStateRunning)
+        1    0.000    0.000    0.000    0.000 config.py:50(Config)
+        1    0.000    0.000    0.000    0.000 pickle.py:263(_Unframer)
+        1    0.000    0.000    0.000    0.000 visitor.py:50(NodeTransformer)
+        1    0.000    0.000    0.000    0.000 nodes.py:833(Getitem)
+        1    0.000    0.000    0.000    0.000 nodes.py:608(TemplateData)
+        1    0.000    0.000    0.000    0.000 nodes.py:1158(OverlayScope)
+        1    0.000    0.000    0.000    0.000 bccache.py:331(MemcachedBytecodeCache)
+        1    0.000    0.000    0.000    0.000 auth.py:16(Authorization)
+        3    0.000    0.000    0.000    0.000 _version.py:1()
+        1    0.000    0.000    0.000    0.000 utils.py:1164(ArgumentGenerator)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:54(RuleSetStandardLibrary)
+        1    0.000    0.000    0.000    0.000 standard.py:252(ExponentialBackoff)
+        1    0.000    0.000    0.000    0.000 socketserver.py:153(BaseServer)
+        1    0.000    0.000    0.000    0.000 core.py:4368(Each)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:260(UnstructuredHeader)
+        1    0.000    0.000    0.000    0.000 request.py:1588(CacheFTPHandler)
+        1    0.000    0.000    0.000    0.000 webauthn_types.py:29(AuthenticationExtensionsClientInputs)
+        1    0.000    0.000    0.000    0.000 {built-in method cryptography.hazmat.bindings._openssl.EVP_default_properties_is_fips_enabled}
+        1    0.000    0.000    0.000    0.000 streams.py:301(StreamWriter)
+        1    0.000    0.000    0.000    0.000 _adapters.py:48(SpecPath)
+        1    0.000    0.000    0.000    0.000 keyboard.py:23(Keystroke)
+        1    0.000    0.000    0.000    0.000 constrain.py:10(Constrain)
+        2    0.000    0.000    0.000    0.000 default.py:5(make)
+        1    0.000    0.000    0.000    0.000 argparse.py:1340(_ActionsContainer)
+        1    0.000    0.000    0.000    0.000 constructor.py:19(BaseConstructor)
+        1    0.000    0.000    0.000    0.000 platform.py:735(_Processor)
+        1    0.000    0.000    0.000    0.000 subprocess.py:126(CalledProcessError)
+        1    0.000    0.000    0.000    0.000 traceback.py:638(TracebackException)
+        1    0.000    0.000    0.000    0.000 traceback.py:247(FrameSummary)
+        1    0.000    0.000    0.000    0.000 :52(normcase)
+        1    0.000    0.000    0.000    0.000 {built-in method math.exp}
+        3    0.000    0.000    0.000    0.000 text.py:860(truncate)
+        1    0.000    0.000    0.000    0.000 _app.py:132(WrappedDispatcher)
+        2    0.000    0.000    0.000    0.000 _figure.py:34(_set_family)
+        1    0.000    0.000    0.000    0.000 _utility.py:270(is_ipython)
+        1    0.000    0.000    0.000    0.000 certificates_v1beta1_api.py:27(CertificatesV1beta1Api)
+        1    0.000    0.000    0.000    0.000 v1beta2_counter.py:21(V1beta2Counter)
+        1    0.000    0.000    0.000    0.000 v1alpha3_cel_device_selector.py:21(V1alpha3CELDeviceSelector)
+        1    0.000    0.000    0.000    0.000 v1alpha1_json_patch.py:21(V1alpha1JSONPatch)
+        1    0.000    0.000    0.000    0.000 v1_priority_level_configuration_status.py:21(V1PriorityLevelConfigurationStatus)
+        1    0.000    0.000    0.000    0.000 v1_ip_address_spec.py:21(V1IPAddressSpec)
+        1    0.000    0.000    0.000    0.000 v1_container_user.py:21(V1ContainerUser)
+        1    0.000    0.000    0.000    0.000 sessions.py:112(SessionInterface)
+        1    0.000    0.000    0.000    0.000 context.py:203(reducer)
+        1    0.000    0.000    0.000    0.000 environment.py:1560(TemplateExpression)
+        1    0.000    0.000    0.000    0.000 nodes.py:855(Getattr)
+        1    0.000    0.000    0.000    0.000 filters.py:1175(_GroupTuple)
+        1    0.000    0.000    0.000    0.000 factory.py:28(ResourceFactory)
+        1    0.000    0.000    0.000    0.000 _utilities.py:24(__new__)
+        1    0.000    0.000    0.000    0.000 core.py:2633(CloseMatch)
+        1    0.000    0.000    0.000    0.000 core.py:5186(Opt)
+        1    0.000    0.000    0.000    0.000 probe.py:6(_HTTP2ProbeCache)
+        1    0.000    0.000    0.000    0.000 request.py:2139(FancyURLopener)
+        1    0.000    0.000    0.000    0.000 base.py:286(_RawRevokedCertificate)
+        1    0.000    0.000    0.000    0.000 general_name.py:80(DNSName)
+        1    0.000    0.000    0.000    0.000 modes.py:18(Mode)
+        1    0.000    0.000    0.000    0.000 x448.py:12(X448PublicKey)
+        1    0.000    0.000    0.000    0.000 zipfile.py:345(ZipInfo)
+        5    0.000    0.000    0.000    0.000 :9(__init__)
+        1    0.000    0.000    0.000    0.000 console.py:292(NewLine)
+        4    0.000    0.000    0.000    0.000 argparse.py:1327(__init__)
+        2    0.000    0.000    0.000    0.000 representer.py:71(add_multi_representer)
+        1    0.000    0.000    0.000    0.000 _url.py:6(URL)
+        2    0.000    0.000    0.000    0.000 commonmark.py:12(make)
+        2    0.000    0.000    0.000    0.000 threading.py:1317(_make_invoke_excepthook)
+        1    0.000    0.000    0.000    0.000 asn1.py:81(DerObject)
+        1    0.000    0.000    0.000    0.000 _dict.py:102()
+        1    0.000    0.000    0.000    0.000 discovery_v1_api.py:27(DiscoveryV1Api)
+        1    0.000    0.000    0.000    0.000 v1alpha3_device_class_configuration.py:21(V1alpha3DeviceClassConfiguration)
+        1    0.000    0.000    0.000    0.000 v1_local_object_reference.py:21(V1LocalObjectReference)
+        1    0.000    0.000    0.000    0.000 v1_namespace_spec.py:21(V1NamespaceSpec)
+        1    0.000    0.000    0.000    0.000 v1_custom_resource_validation.py:21(V1CustomResourceValidation)
+        1    0.000    0.000    0.000    0.000 well_known_api.py:27(WellKnownApi)
+        1    0.000    0.000    0.000    0.000 _parser.py:394(_ymd)
+        1    0.000    0.000    0.000    0.000 errors.py:13(OAuth2Error)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:156(BaseHeader)
+        1    0.000    0.000    0.000    0.000 core.py:4713(AtStringStart)
+        1    0.000    0.000    0.000    0.000 core.py:5686(Combine)
+        1    0.000    0.000    0.000    0.000 webauthn_types.py:86(AuthenticatorAssertionResponse)
+        1    0.000    0.000    0.000    0.000 fields.py:153(RequestField)
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha384}
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_shake_128}
+        1    0.000    0.000    0.000    0.000 dsa.py:173(DSAPublicNumbers)
+        1    0.000    0.000    0.000    0.000 base_events.py:206(_SendfileFallbackProtocol)
+        4    0.000    0.000    0.000    0.000 message.py:633(get_default_type)
+        1    0.000    0.000    0.000    0.000 pager.py:5(Pager)
+        1    0.000    0.000    0.000    0.000 _make.py:2867(_fmt_converter_call)
+        5    0.000    0.000    0.000    0.000 text.py:810()
+        1    0.000    0.000    0.000    0.000 {method 'flush' of '_io.TextIOWrapper' objects}
+        4    0.000    0.000    0.000    0.000 {method 'seek' of '_io.StringIO' objects}
+        3    0.000    0.000    0.000    0.000 _utility.py:316(__init__)
+        1    0.000    0.000    0.000    0.000 ws_client.py:51(WSClient)
+        1    0.000    0.000    0.000    0.000 _monitor.py:87(draw_init)
+        1    0.000    0.000    0.000    0.000 events_v1_api.py:27(EventsV1Api)
+        1    0.000    0.000    0.000    0.000 v1_pod_readiness_gate.py:21(V1PodReadinessGate)
+        1    0.000    0.000    0.000    0.000 v1_pod_scheduling_gate.py:21(V1PodSchedulingGate)
+        1    0.000    0.000    0.000    0.000 reduction.py:33(ForkingPickler)
+        1    0.000    0.000    0.000    0.000 compiler.py:271(UndeclaredNameVisitor)
+        1    0.000    0.000    0.000    0.000 structures.py:859(HeaderSet)
+        1    0.000    0.000    0.000    0.000 serving.py:698(BaseWSGIServer)
+        1    0.000    0.000    0.000    0.000 auth.py:860(HmacV1Auth)
+        1    0.000    0.000    0.000    0.000 sync_handler.py:5(SyncHandler)
+        1    0.000    0.000    0.000    0.000 core.py:5867(Suppress)
+        1    0.000    0.000    0.000    0.000 google_auth_httplib2.py:32(_Response)
+        1    0.000    0.000    0.000    0.000 generator.py:407(BytesGenerator)
+        1    0.000    0.000    0.000    0.000 request.py:2399(ftpwrapper)
+        1    0.000    0.000    0.000    0.000 probe.py:13(__init__)
+        1    0.000    0.000    0.000    0.000 extensions.py:1775(InvalidityDate)
+        1    0.000    0.000    0.000    0.000 unix_events.py:57(_UnixSelectorEventLoop)
+        1    0.000    0.000    0.000    0.000 locks.py:446(Barrier)
+        1    0.000    0.000    0.000    0.000 rsa.py:392(RSAPublicNumbers)
+        1    0.000    0.000    0.000    0.000 console.py:517(_is_jupyter)
+        1    0.000    0.000    0.000    0.000 resolver.py:12(BaseResolver)
+        2    0.000    0.000    0.000    0.000 subprocess.py:268(_cleanup)
+        4    0.000    0.000    0.000    0.000 asn1.py:515(__getitem__)
+        1    0.000    0.000    0.000    0.000 {built-in method posix.confstr}
+        3    0.000    0.000    0.000    0.000 subprocess.py:1917(_internal_poll)
+        1    0.000    0.000    0.000    0.000 _default.py:47(axes_init)
+        3    0.000    0.000    0.000    0.000 _utility.py:417()
+        1    0.000    0.000    0.000    0.000 storage_v1alpha1_api.py:27(StorageV1alpha1Api)
+        1    0.000    0.000    0.000    0.000 v1_aggregation_rule.py:21(V1AggregationRule)
+        1    0.000    0.000    0.000    0.000 nodes.py:467(Expr)
+        1    0.000    0.000    0.000    0.000 nodes.py:1177(EvalContextModifier)
+        1    0.000    0.000    0.000    0.000 utils.py:568(InstanceMetadataFetcher)
+        4    0.000    0.000    0.000    0.000 utils.py:197(__init__)
+        1    0.000    0.000    0.000    0.000 exceptions.py:67(HTTPException)
+        1    0.000    0.000    0.000    0.000 useragent.py:130(UserAgentString)
+        1    0.000    0.000    0.000    0.000 core.py:4261(MatchFirst)
+        4    0.000    0.000    0.000    0.000 results.py:23(__init__)
+        1    0.000    0.000    0.000    0.000 oid.py:1()
+        1    0.000    0.000    0.000    0.000 base.py:27(Verifier)
+        1    0.000    0.000    0.000    0.000 unix_events.py:594(_UnixWritePipeTransport)
+        1    0.000    0.000    0.000    0.000 ssl.py:632(hostname_checks_common_name)
+        1    0.000    0.000    0.000    0.000 _collections.py:27(Pair)
+        1    0.000    0.000    0.000    0.000 __init__.py:467(SelectableGroups)
+        1    0.000    0.000    0.000    0.000 _fileno.py:1()
+        1    0.000    0.000    0.000    0.000 highlighter.py:61(RegexHighlighter)
+        2    0.000    0.000    0.000    0.000 argparse.py:1282(__init__)
+        1    0.000    0.000    0.000    0.000 markdown.py:415(ImageItem)
+        1    0.000    0.000    0.000    0.000 representer.py:13(BaseRepresenter)
+        1    0.000    0.000    0.000    0.000 subprocess.py:470(CompletedProcess)
+        2    0.000    0.000    0.000    0.000 {method 'difference_update' of 'set' objects}
+        3    0.000    0.000    0.000    0.000 {method 'copy' of 'mappingproxy' objects}
+        2    0.000    0.000    0.000    0.000 {method 'rfind' of 'bytes' objects}
+        1    0.000    0.000    0.000    0.000 _monitor.py:75(text_init)
+        1    0.000    0.000    0.000    0.000 _matrix.py:12(set_size)
+        1    0.000    0.000    0.000    0.000 sessions.py:288(SecureCookieSessionInterface)
+        1    0.000    0.000    0.000    0.000 accept.py:9(Accept)
+        1    0.000    0.000    0.000    0.000 wsgi.py:425(LimitedStream)
+        1    0.000    0.000    0.000    0.000 docstringparser.py:107(StemNode)
+        1    0.000    0.000    0.000    0.000 __init__.py:852(ProxyInfo)
+        1    0.000    0.000    0.000    0.000 core.py:4928(NotAny)
+        1    0.000    0.000    0.000    0.000 poolmanager.py:56(PoolKey)
+        1    0.000    0.000    0.000    0.000 mimetypes.py:64(MimeTypes)
+        1    0.000    0.000    0.000    0.000 extensions.py:1366(Extension)
+        1    0.000    0.000    0.000    0.000 __about__.py:1()
+        1    0.000    0.000    0.000    0.000 ec.py:125(_EllipticCurvePrivateKey)
+        1    0.000    0.000    0.000    0.000 unix_events.py:458(_UnixReadPipeTransport)
+        1    0.000    0.000    0.000    0.000 selector_events.py:896(_SelectorSocketTransport)
+        1    0.000    0.000    0.000    0.000 _credentials_base.py:23(_BaseCredentials)
+        1    0.000    0.000    0.000    0.000 feedparser.py:45(BufferedSubFile)
+        1    0.000    0.000    0.000    0.000 charset.py:167(Charset)
+        1    0.000    0.000    0.000    0.000 string.py:57(Template)
+        1    0.000    0.000    0.000    0.000 asn1.py:441(DerSequence)
+        2    0.000    0.000    0.000    0.000 traceback.py:264(__init__)
+        3    0.000    0.000    0.000    0.000 typing.py:3024()
+        1    0.000    0.000    0.000    0.000 linecache.py:52(checkcache)
+        1    0.000    0.000    0.000    0.000 message.py:330(set_payload)
+        1    0.000    0.000    0.000    0.000 _figure.py:73(_set_master_size)
+        1    0.000    0.000    0.000    0.000 discovery_api.py:27(DiscoveryApi)
+        1    0.000    0.000    0.000    0.000 coordination_v1_api.py:27(CoordinationV1Api)
+        1    0.000    0.000    0.000    0.000 nodes.py:490(BinExpr)
+        1    0.000    0.000    0.000    0.000 nodes.py:393(Block)
+        1    0.000    0.000    0.000    0.000 cli.py:514(FlaskGroup)
+        1    0.000    0.000    0.000    0.000 utils.py:495(PacifyFlushWrapper)
+        1    0.000    0.000    0.000    0.000 local.py:35(Local)
+        1    0.000    0.000    0.000    0.000 docstringparser.py:22(DocStringParser)
+        1    0.000    0.000    0.000    0.000 utils.py:1658(S3ExpressIdentityResolver)
+        1    0.000    0.000    0.000    0.000 eventstream.py:438(EventStreamBuffer)
+        1    0.000    0.000    0.000    0.000 parsers.py:1038(RestXMLParser)
+        1    0.000    0.000    0.000    0.000 core.py:941(_CacheType)
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha3_512}
+        1    0.000    0.000    0.000    0.000 _oid.py:176(AttributeOID)
+        1    0.000    0.000    0.000    0.000 padding.py:60(OAEP)
+        1    0.000    0.000    0.000    0.000 validators.py:5(Validators)
+        1    0.000    0.000    0.000    0.000 __init__.py:68(Request)
+        1    0.000    0.000    0.000    0.000 abc.py:43(Finder)
+        2    0.000    0.000    0.000    0.000 config_service.py:20(get_default_dir)
+        1    0.000    0.000    0.000    0.000 __init__.py:862(Prepared)
+        2    0.000    0.000    0.000    0.000 _pick.py:4(pick_bool)
+        1    0.000    0.000    0.000    0.000 state_block.py:14(StateBlock)
+        1    0.000    0.000    0.000    0.000 threading.py:498(BoundedSemaphore)
+        3    0.000    0.000    0.000    0.000 traceback.py:325(walk_stack)
+        4    0.000    0.000    0.000    0.000 {method 'items' of 'collections.OrderedDict' objects}
+        1    0.000    0.000    0.000    0.000 authorization_v1_api.py:27(AuthorizationV1Api)
+        1    0.000    0.000    0.000    0.000 nodes.py:1001(Or)
+        1    0.000    0.000    0.000    0.000 exceptions.py:231(BadOptionUsage)
+        1    0.000    0.000    0.000    0.000 utils.py:1706(S3RegionRedirectorv2)
+        1    0.000    0.000    0.000    0.000 _parser.py:1589(ParserError)
+        1    0.000    0.000    0.000    0.000 auth.py:186(SigV3Auth)
+        1    0.000    0.000    0.000    0.000 model.py:267(JsonModel)
+        4    0.000    0.000    0.000    0.000 core.py:5915(postParse)
+        1    0.000    0.000    0.000    0.000 sessions.py:106(SessionRedirectMixin)
+        1    0.000    0.000    0.000    0.000 request.py:1080(AbstractDigestAuthHandler)
+        1    0.000    0.000    0.000    0.000 retry.py:33(RequestHistory)
+        1    0.000    0.000    0.000    0.000 poolmanager.py:162(PoolManager)
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha512}
+        1    0.000    0.000    0.000    0.000 ec.py:443(EllipticCurvePrivateNumbers)
+        1    0.000    0.000    0.000    0.000 extensions.py:390(AccessDescription)
+        1    0.000    0.000    0.000    0.000 dsa.py:126(DSAParameterNumbers)
+        1    0.000    0.000    0.000    0.000 selector_events.py:1134(_SelectorDatagramTransport)
+        1    0.000    0.000    0.000    0.000 events.py:24(Handle)
+        1    0.000    0.000    0.000    0.000 transports.py:251(_FlowControlMixin)
+        1    0.000    0.000    0.000    0.000 _compat.py:62(get_return_type)
+        1    0.000    0.000    0.000    0.000 zipfile.py:805(ZipExtFile)
+        1    0.000    0.000    0.000    0.000 argparse.py:1650(_ArgumentGroup)
+        1    0.000    0.000    0.000    0.000 markdown.py:112(Paragraph)
+        1    0.000    0.000    0.000    0.000 subprocess.py:163(TimeoutExpired)
+        1    0.000    0.000    0.000    0.000 py3compat.py:143(tostr)
+        3    0.000    0.000    0.000    0.000 __init__.py:504(CFunctionType)
+        2    0.000    0.000    0.000    0.000 {built-in method maketrans}
+        2    0.000    0.000    0.000    0.000 {method 'release' of '_thread.lock' objects}
+        1    0.000    0.000    0.000    0.000 {method 'finditer' of 're.Pattern' objects}
+        1    0.000    0.000    0.000    0.000 resource.py:362(ResourceField)
+        1    0.000    0.000    0.000    0.000 _dict.py:148()
+        1    0.000    0.000    0.000    0.000 context.py:230(DefaultContext)
+        1    0.000    0.000    0.000    0.000 nodes.py:515(UnaryExpr)
+        1    0.000    0.000    0.000    0.000 user_agent.py:4(UserAgent)
+        1    0.000    0.000    0.000    0.000 parser.py:245(ParsingState)
+        1    0.000    0.000    0.000    0.000 file_storage.py:12(FileStorage)
+        1    0.000    0.000    0.000    0.000 ElementTree.py:1767(C14NWriterTarget)
+        1    0.000    0.000    0.000    0.000 utils.py:1901(S3RegionRedirector)
+        1    0.000    0.000    0.000    0.000 utils.py:2950(S3ControlArnParamHandlerv2)
+        1    0.000    0.000    0.000    0.000 httpsession.py:275(URLLib3Session)
+        1    0.000    0.000    0.000    0.000 response.py:38(StreamingBody)
+        1    0.000    0.000    0.000    0.000 core.py:3372(CharsNotIn)
+        1    0.000    0.000    0.000    0.000 core.py:5676(TokenConverter)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:104(Group)
+        1    0.000    0.000    0.000    0.000 core.py:4734(AtLineStart)
+        1    0.000    0.000    0.000    0.000 core.py:4767(FollowedBy)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:1776(FileCookieJar)
+        1    0.000    0.000    0.000    0.000 response.py:116(GzipDecoder)
+        1    0.000    0.000    0.000    0.000 connectionpool.py:67(ConnectionPool)
+        1    0.000    0.000    0.000    0.000 general_name.py:208(IPAddress)
+        1    0.000    0.000    0.000    0.000 dh.py:115(_DHPrivateKey)
+        1    0.000    0.000    0.000    0.000 extensions.py:476(DeltaCRLIndicator)
+        1    0.000    0.000    0.000    0.000 binding.py:23(_OpenSSLError)
+        1    0.000    0.000    0.000    0.000 credentials.py:302(AnonymousCredentials)
+        1    0.000    0.000    0.000    0.000 base_events.py:274(Server)
+        1    0.000    0.000    0.000    0.000 HMAC.py:61(HMAC)
+        1    0.000    0.000    0.000    0.000 __init__.py:49(Response)
+        1    0.000    0.000    0.000    0.000 config_handler.py:7(ConfigHandler)
+        1    0.000    0.000    0.000    0.000 node_handler.py:12(NodeHandler)
+        1    0.000    0.000    0.000    0.000 calendar.py:156(__init__)
+        1    0.000    0.000    0.000    0.000 _make.py:2365(Attribute)
+        1    0.000    0.000    0.000    0.000 parser_block.py:46(ParserBlock)
+        1    0.000    0.000    0.000    0.000 __init__.py:1152(FileHandler)
+        1    0.000    0.000    0.000    0.000 markdown.py:96(TextElement)
+        1    0.000    0.000    0.000    0.000 markdown.py:132(Heading)
+        1    0.000    0.000    0.000    0.000 markdown.py:299(TableDataElement)
+        1    0.000    0.000    0.000    0.000 __init__.py:488(StringTemplateStyle)
+        1    0.000    0.000    0.000    0.000 datetime.py:1223(tzinfo)
+        1    0.000    0.000    0.000    0.000 selectors.py:442(EpollSelector)
+        1    0.000    0.000    0.000    0.000 lzma.py:38(LZMAFile)
+        2    0.000    0.000    0.000    0.000 six.py:108(MovedModule)
+        3    0.000    0.000    0.000    0.000 {built-in method _stat.S_ISDIR}
+        2    0.000    0.000    0.000    0.000 _default.py:22(set_size_term_inf)
+        1    0.000    0.000    0.000    0.000 nodes.py:372(FilterBlock)
+        1    0.000    0.000    0.000    0.000 local.py:255(_ProxyLookup)
+        1    0.000    0.000    0.000    0.000 mixins.py:145(ImmutableHeadersMixin)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:53(AWSConnection)
+        1    0.000    0.000    0.000    0.000 shape.py:22(ShapeDocumenter)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:433(AWSRequest)
+        1    0.000    0.000    0.000    0.000 configprovider.py:564(SmartDefaultsConfigStoreFactory)
+        1    0.000    0.000    0.000    0.000 implicit.py:15(ImplicitGrant)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:12(Address)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:468(ContentTypeHeader)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:387(NameAddr)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:872(Terminal)
+        1    0.000    0.000    0.000    0.000 x25519.py:62(_X25519PrivateKey)
+        1    0.000    0.000    0.000    0.000 algorithms.py:172(SEED)
+        1    0.000    0.000    0.000    0.000 dh.py:108(DHPrivateNumbers)
+        1    0.000    0.000    0.000    0.000 __init__.py:171(LFUCache)
+        1    0.000    0.000    0.000    0.000 ssl.py:159(TLSVersion)
+        1    0.000    0.000    0.000    0.000 HMAC.py:58()
+        1    0.000    0.000    0.000    0.000 validators.py:577(_subclass_of)
+        1    0.000    0.000    0.000    0.000 markdown.py:330(ListElement)
+        1    0.000    0.000    0.000    0.000 {method 'union' of 'set' objects}
+        2    0.000    0.000    0.000    0.000 {method '__enter__' of '_thread.lock' objects}
+        1    0.000    0.000    0.000    0.000 _dict.py:107()
+        1    0.000    0.000    0.000    0.000 _dict.py:111()
+        1    0.000    0.000    0.000    0.000 discovery.py:220(LazyDiscoverer)
+        3    0.000    0.000    0.000    0.000 config.py:23(__init__)
+        1    0.000    0.000    0.000    0.000 response.py:789(ResponseStream)
+        1    0.000    0.000    0.000    0.000 utils.py:762(InstanceMetadataRegionFetcher)
+        1    0.000    0.000    0.000    0.000 httpsession.py:216(ProxyConfiguration)
+        1    0.000    0.000    0.000    0.000 parsers.py:644(BaseJSONParser)
+        1    0.000    0.000    0.000    0.000 credentials.py:1401(AssumeRoleProvider)
+        1    0.000    0.000    0.000    0.000 tokens.py:62(DeferredRefreshableToken)
+        1    0.000    0.000    0.000    0.000 discovery.py:99(EndpointDiscoveryManager)
+        1    0.000    0.000    0.000    0.000 common.py:295(CaseInsensitiveDict)
+        1    0.000    0.000    0.000    0.000 socketserver.py:391(TCPServer)
+        1    0.000    0.000    0.000    0.000 __init__.py:550(BasicAuthentication)
+        1    0.000    0.000    0.000    0.000 requests.py:116(Request)
+        1    0.000    0.000    0.000    0.000 connectionpool.py:965(HTTPSConnectionPool)
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha3_256}
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha3_384}
+        1    0.000    0.000    0.000    0.000 general_name.py:254(OtherName)
+        1    0.000    0.000    0.000    0.000 unix_events.py:1212(MultiLoopChildWatcher)
+        1    0.000    0.000    0.000    0.000 _exponential_backoff.py:42(_BaseExponentialBackoff)
+        3    0.000    0.000    0.000    0.000 six.py:880(add_metaclass)
+        1    0.000    0.000    0.000    0.000 zipfile.py:2240(CompleteDirs)
+        1    0.000    0.000    0.000    0.000 validators.py:111(instance_of)
+        1    0.000    0.000    0.000    0.000 loader.py:31(SafeLoader)
+        1    0.000    0.000    0.000    0.000 pathlib.py:130()
+        1    0.000    0.000    0.000    0.000 threading.py:637(Barrier)
+        2    0.000    0.000    0.000    0.000 __init__.py:46(new)
+        2    0.000    0.000    0.000    0.000 _parser.py:99(checklookbehindgroup)
+        1    0.000    0.000    0.000    0.000 {method 'title' of 'str' objects}
+        1    0.000    0.000    0.000    0.000 tools.py:115(Sumarize)
+        1    0.000    0.000    0.000    0.000 pydoc.py:1862()
+        1    0.000    0.000    0.000    0.000 node_api.py:27(NodeApi)
+        1    0.000    0.000    0.000    0.000 certificates_v1alpha1_api.py:27(CertificatesV1alpha1Api)
+        1    0.000    0.000    0.000    0.000 rest.py:51(RESTClientObject)
+        1    0.000    0.000    0.000    0.000 pool.py:921(ThreadPool)
+        1    0.000    0.000    0.000    0.000 runtime.py:964(ChainableUndefined)
+        1    0.000    0.000    0.000    0.000 nodes.py:1190(ScopedEvalContextModifier)
+        1    0.000    0.000    0.000    0.000 _compat.py:78(_FixupStream)
+        1    0.000    0.000    0.000    0.000 exceptions.py:841(__init__)
+        1    0.000    0.000    0.000    0.000 tz.py:1475(GettzFunc)
+        1    0.000    0.000    0.000    0.000 _common.py:6(weekday)
+        1    0.000    0.000    0.000    0.000 parsers.py:888(BaseRestParser)
+        3    0.000    0.000    0.000    0.000 handlers.py:911(__init__)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:649(RuleSet)
+        1    0.000    0.000    0.000    0.000 credentials.py:161(ProfileProviderBuilder)
+        1    0.000    0.000    0.000    0.000 model.py:714(ShapeResolver)
+        1    0.000    0.000    0.000    0.000 backend_application.py:13(BackendApplicationClient)
+        1    0.000    0.000    0.000    0.000 device.py:15(DeviceClient)
+        1    0.000    0.000    0.000    0.000 headers.py:28(Headers)
+        1    0.000    0.000    0.000    0.000 server.py:642(SimpleHTTPRequestHandler)
+        1    0.000    0.000    0.000    0.000 __init__.py:99(version_info)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:366(Group)
+        1    0.000    0.000    0.000    0.000 requests.py:196(_MutualTlsAdapter)
+        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha256}
+        1    0.000    0.000    0.000    0.000 algorithms.py:27(AES)
+        1    0.000    0.000    0.000    0.000 algorithms.py:217(SM4)
+        3    0.000    0.000    0.000    0.000 ssh.py:378(__init__)
+        1    0.000    0.000    0.000    0.000 base.py:46(AEADCipherContext)
+        1    0.000    0.000    0.000    0.000 extensions.py:1095(InhibitAnyPolicy)
+        1    0.000    0.000    0.000    0.000 hmac.py:27(HMAC)
+        1    0.000    0.000    0.000    0.000 unix_events.py:980(BaseChildWatcher)
+        1    0.000    0.000    0.000    0.000 locks.py:331(Semaphore)
+        1    0.000    0.000    0.000    0.000 ssl.py:185(_TLSAlertType)
+        1    0.000    0.000    0.000    0.000 questions.py:38(Question)
+        1    0.000    0.000    0.000    0.000 abc.py:161(ResourceLoader)
+        1    0.000    0.000    0.000    0.000 abc.py:230(ExecutionLoader)
+        1    0.000    0.000    0.000    0.000 feedparser.py:210(_pop_message)
+        1    0.000    0.000    0.000    0.000 zipfile.py:1134(_ZipWriteFile)
+        1    0.000    0.000    0.000    0.000 state_inline.py:43(StateInline)
+        1    0.000    0.000    0.000    0.000 __init__.py:280(LogRecord)
+        1    0.000    0.000    0.000    0.000 converters.py:66(default_if_none)
+        1    0.000    0.000    0.000    0.000 pathlib.py:232(_PosixFlavour)
+        1    0.000    0.000    0.000    0.000 subprocess.py:481(__init__)
+        2    0.000    0.000    0.000    0.000 :812(__init__)
+        2    0.000    0.000    0.000    0.000 _figure.py:82(_set_slots_max)
+        1    0.000    0.000    0.000    0.000 _figure.py:62(_limit_size)
+        1    0.000    0.000    0.000    0.000 node_v1_api.py:27(NodeV1Api)
+        1    0.000    0.000    0.000    0.000 openid_api.py:27(OpenidApi)
+        1    0.000    0.000    0.000    0.000 util.py:182(Finalize)
+        1    0.000    0.000    0.000    0.000 ctx.py:29(_AppCtxGlobals)
+        1    0.000    0.000    0.000    0.000 etag.py:6(ETags)
+        1    0.000    0.000    0.000    0.000 serialize.py:345(JSONSerializer)
+        1    0.000    0.000    0.000    0.000 model.py:273(StringShape)
+        2    0.000    0.000    0.000    0.000 six.py:178(__init__)
+        1    0.000    0.000    0.000    0.000 _factories.py:13(__call__)
+        1    0.000    0.000    0.000    0.000 tokens.py:22(OAuth2Token)
+        1    0.000    0.000    0.000    0.000 handlers.py:507(CGIHandler)
+        1    0.000    0.000    0.000    0.000 actions.py:7(OnlyOnce)
+        1    0.000    0.000    0.000    0.000 __init__.py:106(__version__)
+        1    0.000    0.000    0.000    0.000 response.py:78(DeflateDecoder)
+        1    0.000    0.000    0.000    0.000 _request_methods.py:20(RequestMethods)
+        1    0.000    0.000    0.000    0.000 requests.py:49(_Response)
+        1    0.000    0.000    0.000    0.000 general_name.py:119(UniformResourceIdentifier)
+        1    0.000    0.000    0.000    0.000 keys.py:6(_HashedTuple)
+        1    0.000    0.000    0.000    0.000 protocols.py:9(BaseProtocol)
+        1    0.000    0.000    0.000    0.000 _list.py:10(List)
+        1    0.000    0.000    0.000    0.000 plugins.py:10(__init__)
+        1    0.000    0.000    0.000    0.000 zipfile.py:745(_SharedFile)
+        1    0.000    0.000    0.000    0.000 lexer.py:498(RegexLexerMeta)
+        1    0.000    0.000    0.000    0.000 __init__.py:790(Filterer)
+        1    0.000    0.000    0.000    0.000 markdown.py:404(Link)
+        1    0.000    0.000    0.000    0.000 pss.py:41(PSS_SigScheme)
+        2    0.000    0.000    0.000    0.000 pathlib.py:93(join_parsed_parts)
+        1    0.000    0.000    0.000    0.000 _raw_api.py:216(_Py_buffer)
+        2    0.000    0.000    0.000    0.000 _default.py:17(set_size_term)
+        1    0.000    0.000    0.000    0.000 _dict.py:115()
+        1    0.000    0.000    0.000    0.000 _dict.py:119()
+        1    0.000    0.000    0.000    0.000 dateutil.py:20(TimezoneInfo)
+        1    0.000    0.000    0.000    0.000 resource_api.py:27(ResourceApi)
+        1    0.000    0.000    0.000    0.000 runtime.py:1023(StrictUndefined)
+        1    0.000    0.000    0.000    0.000 signer.py:48(HMACAlgorithm)
+        1    0.000    0.000    0.000    0.000 lexer.py:269(Token)
+        1    0.000    0.000    0.000    0.000 converters.py:127(NumberConverter)
+        1    0.000    0.000    0.000    0.000 range.py:34(Range)
+        1    0.000    0.000    0.000    0.000 translate.py:1()
+        1    0.000    0.000    0.000    0.000 resource.py:37(ResourceDocumenter)
+        1    0.000    0.000    0.000    0.000 credentials.py:873(AssumeRoleWithWebIdentityCredentialFetcher)
+        1    0.000    0.000    0.000    0.000 model.py:257(ListShape)
+        2    0.000    0.000    0.000    0.000 six.py:129(_LazyModule)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:636(DomainLiteral)
+        1    0.000    0.000    0.000    0.000 core.py:2315(_PendingSkip)
+        1    0.000    0.000    0.000    0.000 structures.py:86(__init__)
+        1    0.000    0.000    0.000    0.000 request.py:426(OpenerDirector)
+        1    0.000    0.000    0.000    0.000 response.py:227(BytesQueueBuffer)
+        1    0.000    0.000    0.000    0.000 ssl_.py:60(_is_has_never_check_common_name_reliable)
+        1    0.000    0.000    0.000    0.000 base.py:54(AEADDecryptionContext)
+        1    0.000    0.000    0.000    0.000 _refresh_worker.py:24(RefreshThreadManager)
+        1    0.000    0.000    0.000    0.000 calendar.py:573(LocaleTextCalendar)
+        2    0.000    0.000    0.000    0.000 base.py:18(set_reserved_names)
+        1    0.000    0.000    0.000    0.000 __init__.py:507(PackagePath)
+        1    0.000    0.000    0.000    0.000 message.py:211(is_multipart)
+        1    0.000    0.000    0.000    0.000 calendar.py:74()
+        1    0.000    0.000    0.000    0.000 _log_render.py:15(__init__)
+        1    0.000    0.000    0.000    0.000 _make.py:2744(Factory)
+        1    0.000    0.000    0.000    0.000 region.py:4(Region)
+        1    0.000    0.000    0.000    0.000 argparse.py:890(BooleanOptionalAction)
+        1    0.000    0.000    0.000    0.000 markdown.py:192(BlockQuote)
+        1    0.000    0.000    0.000    0.000 utils.py:13(OptionsType)
+        2    0.000    0.000    0.000    0.000 {built-in method posix.WIFSTOPPED}
+        2    0.000    0.000    0.000    0.000 zipfile.py:1885(close)
+        2    0.000    0.000    0.000    0.000 _monitor.py:26(set_date)
+        2    0.000    0.000    0.000    0.000 _default.py:12(set_limitsize)
+        1    0.000    0.000    0.000    0.000 _dict.py:140()
+        1    0.000    0.000    0.000    0.000 reduction.py:251(AbstractReducer)
+        1    0.000    0.000    0.000    0.000 connection.py:578(SocketListener)
+        1    0.000    0.000    0.000    0.000 _json.py:7(_CompactJSON)
+        1    0.000    0.000    0.000    0.000 tag.py:219(TaggedJSONSerializer)
+        1    0.000    0.000    0.000    0.000 utils.py:666(Cycler)
+        1    0.000    0.000    0.000    0.000 nodes.py:1032(EnvironmentAttribute)
+        1    0.000    0.000    0.000    0.000 utils.py:47(cached_property)
+        1    0.000    0.000    0.000    0.000 utils.py:696(IMDSRegionProvider)
+        1    0.000    0.000    0.000    0.000 docstringparser.py:163(TagNode)
+        1    0.000    0.000    0.000    0.000 utils.py:3359(EventbridgeSignerSetter)
+        1    0.000    0.000    0.000    0.000 loaders.py:150(JSONFileLoader)
+        1    0.000    0.000    0.000    0.000 collection.py:28(ResourceCollection)
+        3    0.000    0.000    0.000    0.000 core.py:67(_check_multicommand)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:490(ContentDispositionHeader)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:600(LocalPart)
+        1    0.000    0.000    0.000    0.000 __init__.py:562(DigestAuthentication)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:327(AddressHeader)
+        1    0.000    0.000    0.000    0.000 response.py:68(addinfourl)
+        1    0.000    0.000    0.000    0.000 request.py:908(HTTPPasswordMgrWithPriorAuth)
+        1    0.000    0.000    0.000    0.000 response.py:14(addbase)
+        1    0.000    0.000    0.000    0.000 readers.py:53(MultiplexedPath)
+        1    0.000    0.000    0.000    0.000 requests.py:242(_MutualTlsOffloadAdapter)
+        1    0.000    0.000    0.000    0.000 base.py:262(RevokedCertificate)
+        1    0.000    0.000    0.000    0.000 extensions.py:1009(OCSPNoCheck)
+        1    0.000    0.000    0.000    0.000 extensions.py:1746(CRLReason)
+        1    0.000    0.000    0.000    0.000 extensions.py:1894(OCSPNonce)
+        1    0.000    0.000    0.000    0.000 dh.py:70(DHPublicNumbers)
+        1    0.000    0.000    0.000    0.000 algorithms.py:114(CAST5)
+        1    0.000    0.000    0.000    0.000 modes.py:158(OFB)
+        1    0.000    0.000    0.000    0.000 queues.py:218(PriorityQueue)
+        1    0.000    0.000    0.000    0.000 client.py:1398(HTTPSConnection)
+        1    0.000    0.000    0.000    0.000 events.py:98(TimerHandle)
+        1    0.000    0.000    0.000    0.000 _base.py:59(_Waiter)
+        1    0.000    0.000    0.000    0.000 MD5.py:49(MD5Hash)
+        3    0.000    0.000    0.000    0.000 six.py:239(exec_module)
+        1    0.000    0.000    0.000    0.000 _base_key.py:1()
+        1    0.000    0.000    0.000    0.000 __init__.py:123(DeprecatedTuple)
+        1    0.000    0.000    0.000    0.000 filter.py:41(Filter)
+        1    0.000    0.000    0.000    0.000 __init__.py:789(VisibleWhitespaceFilter)
+        2    0.000    0.000    0.000    0.000 zipfile.py:692(_check_compression)
+        1    0.000    0.000    0.000    0.000 style.py:765(StyleStack)
+        1    0.000    0.000    0.000    0.000 __init__.py:1237(_StderrHandler)
+        2    0.000    0.000    0.000    0.000 __init__.py:983(setFormatter)
+        1    0.000    0.000    0.000    0.000 encoder.py:74(JSONEncoder)
+        1    0.000    0.000    0.000    0.000 threading.py:1001(_set_ident)
+        1    0.000    0.000    0.000    0.000 random.py:215(__init_subclass__)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:563(_BaseAddress)
+        1    0.000    0.000    0.000    0.000 pathlib.py:301(_Selector)
+        2    0.000    0.000    0.000    0.000 reprlib.py:9(recursive_repr)
+        2    0.000    0.000    0.000    0.000 dataclasses.py:179(__repr__)
+        3    0.000    0.000    0.000    0.000 {method 'keys' of 'mappingproxy' objects}
+        1    0.000    0.000    0.000    0.000 {method 'write' of '_io.StringIO' objects}
+        1    0.000    0.000    0.000    0.000 _dict.py:123()
+        1    0.000    0.000    0.000    0.000 _dict.py:131()
+        1    0.000    0.000    0.000    0.000 _dict.py:135()
+        1    0.000    0.000    0.000    0.000 _dict.py:144()
+        1    0.000    0.000    0.000    0.000 compiler.py:252(DependencyFinderVisitor)
+        1    0.000    0.000    0.000    0.000 visitor.py:16(NodeVisitor)
+        1    0.000    0.000    0.000    0.000 formparser.py:133(FormDataParser)
+        1    0.000    0.000    0.000    0.000 provider.py:19(JSONProvider)
+        1    0.000    0.000    0.000    0.000 ElementTree.py:525(ElementTree)
+        1    0.000    0.000    0.000    0.000 _parser.py:219(_resultbase)
+        1    0.000    0.000    0.000    0.000 serialize.py:434(BaseRestSerializer)
+        1    0.000    0.000    0.000    0.000 utils.py:3326(SSOTokenLoader)
+        1    0.000    0.000    0.000    0.000 params.py:17(BaseParamsDocumenter)
+        1    0.000    0.000    0.000    0.000 mixins.py:12(ImmutableListMixin)
+        1    0.000    0.000    0.000    0.000 endpoint.py:77(Endpoint)
+        1    0.000    0.000    0.000    0.000 monitoring.py:68(MonitorEventAdapter)
+        2    0.000    0.000    0.000    0.000 six.py:91(_LazyDescr)
+        1    0.000    0.000    0.000    0.000 ElementTree.py:1506(XMLParser)
+        1    0.000    0.000    0.000    0.000 waiter.py:169(AcceptorConfig)
+        1    0.000    0.000    0.000    0.000 service.py:24(ServiceDocumenter)
+        1    0.000    0.000    0.000    0.000 waiter.py:97(WaiterModel)
+        1    0.000    0.000    0.000    0.000 errors.py:11(OAuth1Error)
+        1    0.000    0.000    0.000    0.000 orderedset.py:6(Link)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:659(Parameter)
+        1    0.000    0.000    0.000    0.000 __init__.py:784(FileCache)
+        1    0.000    0.000    0.000    0.000 __init__.py:1754(Response)
+        1    0.000    0.000    0.000    0.000 __init__.py:633(HmacDigestAuthentication)
+        3    0.000    0.000    0.000    0.000 core.py:2446(_generateDefaultName)
+        1    0.000    0.000    0.000    0.000 core.py:2383(Literal)
+        1    0.000    0.000    0.000    0.000 exceptions.py:31(JSONDecodeError)
+        1    0.000    0.000    0.000    0.000 request.py:1474(FileHandler)
+        1    0.000    0.000    0.000    0.000 request.py:1256(AbstractHTTPHandler)
+        1    0.000    0.000    0.000    0.000 name.py:60()
+        1    0.000    0.000    0.000    0.000 scrypt.py:24(Scrypt)
+        1    0.000    0.000    0.000    0.000 hashes.py:15(_HashContext)
+        1    0.000    0.000    0.000    0.000 extensions.py:2083(UnrecognizedExtension)
+        1    0.000    0.000    0.000    0.000 hmac.py:19(_HMACContext)
+        1    0.000    0.000    0.000    0.000 utils.py:94(__init__)
+        1    0.000    0.000    0.000    0.000 ec.py:40(EllipticCurve)
+        1    0.000    0.000    0.000    0.000 ssl.py:227(_TLSMessageType)
+        1    0.000    0.000    0.000    0.000 exceptions.py:18(GoogleAuthError)
+        3    0.000    0.000    0.000    0.000 validators.py:6(__init__)
+        1    0.000    0.000    0.000    0.000 message.py:150(__init__)
+        1    0.000    0.000    0.000    0.000 abc.py:4(RichRenderable)
+        1    0.000    0.000    0.000    0.000 colorsys.py:1()
+        1    0.000    0.000    0.000    0.000 state_inline.py:17(Delimiter)
+        1    0.000    0.000    0.000    0.000 __init__.py:321(CDLL)
+        1    0.000    0.000    0.000    0.000 _compression.py:9(BaseStream)
+        1    0.000    0.000    0.000    0.000 threading.py:224(Condition)
+        1    0.000    0.000    0.000    0.000 weakref.py:414(__getitem__)
+        2    0.000    0.000    0.000    0.000 {built-in method sys.audit}
+        1    0.000    0.000    0.000    0.000 {built-in method time.time}
+        1    0.000    0.000    0.000    0.000 _doc_utils.py:167(documentation_class)
+        1    0.000    0.000    0.000    0.000 _dict.py:127()
+        1    0.000    0.000    0.000    0.000 _dict.py:152()
+        1    0.000    0.000    0.000    0.000 resource.py:22(Resource)
+        1    0.000    0.000    0.000    0.000 resource.py:281(ResourceInstance)
+        1    0.000    0.000    0.000    0.000 exec_provider.py:22(ExecProvider)
+        1    0.000    0.000    0.000    0.000 exceptions.py:45(DynamicApiError)
+        1    0.000    0.000    0.000    0.000 incluster_config.py:37(InClusterConfigLoader)
+        1    0.000    0.000    0.000    0.000 wsgi.py:286(FileWrapper)
+        1    0.000    0.000    0.000    0.000 local.py:186(LocalManager)
+        1    0.000    0.000    0.000    0.000 utils.py:652(ImportStringError)
+        1    0.000    0.000    0.000    0.000 ElementTree.py:477(QName)
+        1    0.000    0.000    0.000    0.000 ElementTree.py:1384(TreeBuilder)
+        1    0.000    0.000    0.000    0.000 docstring.py:19(LazyLoadedDocstring)
+        1    0.000    0.000    0.000    0.000 serialize.py:75(Serializer)
+        1    0.000    0.000    0.000    0.000 standard.py:479(RetryQuotaChecker)
+        1    0.000    0.000    0.000    0.000 action.py:220(CustomModeledAction)
+        1    0.000    0.000    0.000    0.000 paginate.py:27(TokenEncoder)
+        1    0.000    0.000    0.000    0.000 session.py:1130(ComponentLocator)
+        1    0.000    0.000    0.000    0.000 authorization_code.py:64(AuthorizationCodeGrant)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:504(ContentTransferEncodingHeader)
+        1    0.000    0.000    0.000    0.000 __init__.py:1069(HTTPSConnectionWithTimeout)
+        1    0.000    0.000    0.000    0.000 core.py:3642(StringStart)
+        1    0.000    0.000    0.000    0.000 unicode.py:160(Greek)
+        1    0.000    0.000    0.000    0.000 structures.py:13(CaseInsensitiveDict)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:525(MessageIDHeader)
+        1    0.000    0.000    0.000    0.000 response.py:188(MultiDecoder)
+        1    0.000    0.000    0.000    0.000 subprocess.py:17(SubprocessStreamProtocol)
+        1    0.000    0.000    0.000    0.000 ssl.py:740(verify_mode)
+        1    0.000    0.000    0.000    0.000 _exponential_backoff.py:139(AsyncExponentialBackoff)
+        1    0.000    0.000    0.000    0.000 feedparser.py:136(FeedParser)
+        1    0.000    0.000    0.000    0.000 prompt.py:316(IntPrompt)
+        1    0.000    0.000    0.000    0.000 run_handler.py:9(RunHandler)
+        1    0.000    0.000    0.000    0.000 sequences.py:143(SequenceTextWrapper)
+        1    0.000    0.000    0.000    0.000 lexer.py:762(LexerContext)
+        1    0.000    0.000    0.000    0.000 __init__.py:760(RaiseOnErrorTokenFilter)
+        1    0.000    0.000    0.000    0.000 calendar.py:412(HTMLCalendar)
+        1    0.000    0.000    0.000    0.000 console.py:544()
+        1    0.000    0.000    0.000    0.000 __init__.py:711(BufferingFormatter)
+        1    0.000    0.000    0.000    0.000 _parse.py:105(MutableURL)
+        1    0.000    0.000    0.000    0.000 __init__.py:1786(RootLogger)
+        1    0.000    0.000    0.000    0.000 __init__.py:2213(NullHandler)
+        1    0.000    0.000    0.000    0.000 serializer.py:11(Serializer)
+        1    0.000    0.000    0.000    0.000 markdown.py:362(ListItem)
+        1    0.000    0.000    0.000    0.000 zero.py:8(make)
+        1    0.000    0.000    0.000    0.000 parse_link_title.py:6(_Result)
+        1    0.000    0.000    0.000    0.000 loader.py:11(BaseLoader)
+        2    0.000    0.000    0.000    0.000 pathlib.py:52(__init__)
+        1    0.000    0.000    0.000    0.000 SHA1.py:49(SHA1Hash)
+        1    0.000    0.000    0.000    0.000 expect.py:5(Expecter)
+        1    0.000    0.000    0.000    0.000 spawnbase.py:13(_NullCoder)
+        2    0.000    0.000    0.000    0.000 six.py:144(MovedAttribute)
+        2    0.000    0.000    0.000    0.000 events.py:4(Event)
+        1    0.000    0.000    0.000    0.000 {method 'rstrip' of 'bytes' objects}
+        1    0.000    0.000    0.000    0.000 {built-in method sys.getfilesystemencoding}
+        1    0.000    0.000    0.000    0.000 {built-in method _codecs.lookup}
+        2    0.000    0.000    0.000    0.000 {method 'weekday' of 'datetime.date' objects}
+        2    0.000    0.000    0.000    0.000 {method 'span' of 're.Match' objects}
+        1    0.000    0.000    0.000    0.000 __init__.py:351(__init__)
+        1    0.000    0.000    0.000    0.000 discovery.py:319(EagerDiscoverer)
+        1    0.000    0.000    0.000    0.000 utils.py:734(Namespace)
+        1    0.000    0.000    0.000    0.000 multipart.py:285(MultipartEncoder)
+        1    0.000    0.000    0.000    0.000 wsgi.py:211(ClosingIterator)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:609(HeadersDict)
+        1    0.000    0.000    0.000    0.000 sharedexample.py:20(SharedExampleDocumenter)
+        1    0.000    0.000    0.000    0.000 hooks.py:66(BaseEventHooks)
+        1    0.000    0.000    0.000    0.000 auth.py:603(S3ExpressQueryAuth)
+        1    0.000    0.000    0.000    0.000 model.py:783(DenormalizedStructureBuilder)
+        1    0.000    0.000    0.000    0.000 configprovider.py:901(ConfiguredEndpointProvider)
+        1    0.000    0.000    0.000    0.000 configprovider.py:823(SectionConfigProvider)
+        1    0.000    0.000    0.000    0.000 accept.py:188(MIMEAccept)
+        1    0.000    0.000    0.000    0.000 httpchecksum.py:86(CrtCrc32Checksum)
+        1    0.000    0.000    0.000    0.000 credentials.py:1356(BotoProvider)
+        1    0.000    0.000    0.000    0.000 _utilities.py:12(Symbol)
+        1    0.000    0.000    0.000    0.000 model.py:97(BaseModel)
+        1    0.000    0.000    0.000    0.000 socketserver.py:551(ForkingMixIn)
+        1    0.000    0.000    0.000    0.000 flow.py:319(InstalledAppFlow)
+        1    0.000    0.000    0.000    0.000 flow.py:467(_WSGIRequestHandler)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:439(ParameterizedMIMEHeader)
+        1    0.000    0.000    0.000    0.000 __init__.py:819(Credentials)
+        1    0.000    0.000    0.000    0.000 discovery.py:979(ResourceMethodParameters)
+        1    0.000    0.000    0.000    0.000 generator.py:460(DecodedGenerator)
+        1    0.000    0.000    0.000    0.000 request.py:645(HTTPRedirectHandler)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:1859(LWPCookieJar)
+        1    0.000    0.000    0.000    0.000 dh.py:39(_DHParameters)
+        1    0.000    0.000    0.000    0.000 general_name.py:27(GeneralName)
+        1    0.000    0.000    0.000    0.000 utils.py:86(_DeprecatedValue)
+        1    0.000    0.000    0.000    0.000 dsa.py:217(DSAPrivateNumbers)
+        1    0.000    0.000    0.000    0.000 _refresh_worker.py:82(RefreshThread)
+        1    0.000    0.000    0.000    0.000 requests.py:72(TimeoutGuard)
+        1    0.000    0.000    0.000    0.000 SHA256.py:49(SHA256Hash)
+        1    0.000    0.000    0.000    0.000 header.py:541(_Accumulator)
+        1    0.000    0.000    0.000    0.000 header.py:179(Header)
+        1    0.000    0.000    0.000    0.000 calendar.py:295(TextCalendar)
+        2    0.000    0.000    0.000    0.000 :12(__init__)
+        1    0.000    0.000    0.000    0.000 __init__.py:1261(PlaceHolder)
+        1    0.000    0.000    0.000    0.000 _extension.py:1()
+        1    0.000    0.000    0.000    0.000 markdown.py:218(HorizontalRule)
+        1    0.000    0.000    0.000    0.000 markdown.py:167(CodeBlock)
+        2    0.000    0.000    0.000    0.000 __init__.py:101(CFunctionType)
+        1    0.000    0.000    0.000    0.000 __init__.py:27(_UrandomRNG)
+        1    0.000    0.000    0.000    0.000 _argparse.py:285(_rich_usage_spans)
+        1    0.000    0.000    0.000    0.000 _default.py:66(draw_init)
+        1    0.000    0.000    0.000    0.000 _matrix.py:25(set_canvas_area)
+        2    0.000    0.000    0.000    0.000 _monitor.py:23(set_size)
+        1    0.000    0.000    0.000    0.000 _monitor.py:33(labels_init)
+        1    0.000    0.000    0.000    0.000 _default.py:81(confusion_matrix_init)
+        1    0.000    0.000    0.000    0.000 pydoc.py:528(HTMLRepr)
+        1    0.000    0.000    0.000    0.000 connection.py:431(Listener)
+        1    0.000    0.000    0.000    0.000 exc.py:7(BadData)
+        1    0.000    0.000    0.000    0.000 timed.py:170(TimedSerializer)
+        1    0.000    0.000    0.000    0.000 tag.py:60(JSONTag)
+        1    0.000    0.000    0.000    0.000 nodes.py:556(NSRef)
+        1    0.000    0.000    0.000    0.000 converters.py:18(BaseConverter)
+        1    0.000    0.000    0.000    0.000 pickle.py:200(_Framer)
+        1    0.000    0.000    0.000    0.000 docstringparser.py:59(HTMLTree)
+        1    0.000    0.000    0.000    0.000 client.py:403(ClientContextParamsDocumenter)
+        1    0.000    0.000    0.000    0.000 isoparser.py:43(__init__)
+        1    0.000    0.000    0.000    0.000 utils.py:1583(IdentityCache)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:345(AWSRequestPreparer)
+        1    0.000    0.000    0.000    0.000 serving.py:96(DechunkedInput)
+        1    0.000    0.000    0.000    0.000 hooks.py:194(HierarchicalEmitter)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:551(RuleCreator)
+        1    0.000    0.000    0.000    0.000 credentials.py:986(ProcessProvider)
+        1    0.000    0.000    0.000    0.000 waiter.py:142(SingleWaiterConfig)
+        1    0.000    0.000    0.000    0.000 utils.py:78(OAuthClientAuthHandler)
+        1    0.000    0.000    0.000    0.000 gzip.py:455(_GzipReader)
+        1    0.000    0.000    0.000    0.000 util.py:129(LRUMemo)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:457(Mailbox)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:841(CookiePolicy)
+        1    0.000    0.000    0.000    0.000 ed25519.py:80(_Ed25519PrivateKey)
+        1    0.000    0.000    0.000    0.000 cmac.py:20(_CMACContext)
+        1    0.000    0.000    0.000    0.000 _oid.py:170(CertificatePoliciesOID)
+        1    0.000    0.000    0.000    0.000 __init__.py:143(FIFOCache)
+        1    0.000    0.000    0.000    0.000 __init__.py:280(RRCache)
+        1    0.000    0.000    0.000    0.000 webauthn_handler.py:22(PluginHandler)
+        1    0.000    0.000    0.000    0.000 taskgroups.py:12(TaskGroup)
+        1    0.000    0.000    0.000    0.000 locks.py:24(Lock)
+        1    0.000    0.000    0.000    0.000 __init__.py:154(HTTPMethod)
+        1    0.000    0.000    0.000    0.000 BLAKE2s.py:58(BLAKE2s_Hash)
+        1    0.000    0.000    0.000    0.000 base.py:11(BaseConsoleRender)
+        1    0.000    0.000    0.000    0.000 environment_vars.py:1()
+        1    0.000    0.000    0.000    0.000 plugin_service.py:7(PluginService)
+        2    0.000    0.000    0.000    0.000 feedparser.py:125(__iter__)
+        1    0.000    0.000    0.000    0.000 profile_handler.py:9(ProfileHandler)
+        1    0.000    0.000    0.000    0.000 _policybase.py:18(_PolicyBase)
+        1    0.000    0.000    0.000    0.000 header.py:413(_ValueFormatter)
+        1    0.000    0.000    0.000    0.000 _functools.py:1()
+        2    0.000    0.000    0.000    0.000 _adapters.py:25(__init__)
+        2    0.000    0.000    0.000    0.000 calendar.py:76(__init__)
+        1    0.000    0.000    0.000    0.000 configparser.py:1211(ConfigParser)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 csv.py:165(Sniffer)
+        1    0.000    0.000    0.000    0.000 _compat.py:35(_AnnotationExtractor)
+        1    0.000    0.000    0.000    0.000 __init__.py:753(Filter)
+        1    0.000    0.000    0.000    0.000 argparse.py:1004(_StoreFalseAction)
+        1    0.000    0.000    0.000    0.000 argparse.py:1265(FileType)
+        1    0.000    0.000    0.000    0.000 markdown.py:275(TableBodyElement)
+        1    0.000    0.000    0.000    0.000 markdown.py:287(TableRowElement)
+        1    0.000    0.000    0.000    0.000 decoder.py:254(JSONDecoder)
+        1    0.000    0.000    0.000    0.000 loader.py:21(FullLoader)
+        1    0.000    0.000    0.000    0.000 datetime.py:1284(IsoCalendarDate)
+        1    0.000    0.000    0.000    0.000 _raw_api.py:252(VoidPointer_ctypes)
+        1    0.000    0.000    0.000    0.000 selectors.py:290(SelectSelector)
+        2    0.000    0.000    0.000    0.000 ast.py:516(_getter)
+        1    0.000    0.000    0.000    0.000 {built-in method _imp.get_frozen_object}
+        1    0.000    0.000    0.000    0.000 {built-in method posix.isatty}
+        1    0.000    0.000    0.000    0.000 tools.py:155(Password)
+        1    0.000    0.000    0.000    0.000 _strptime.py:128()
+        1    0.000    0.000    0.000    0.000 kube_config.py:667(KubeConfigMerger)
+        1    0.000    0.000    0.000    0.000 sessions.py:53(SecureCookieSession)
+        1    0.000    0.000    0.000    0.000 context.py:220(Process)
+        1    0.000    0.000    0.000    0.000 nodes.py:1041(ExtensionAttribute)
+        1    0.000    0.000    0.000    0.000 formparser.py:292(MultiPartParser)
+        1    0.000    0.000    0.000    0.000 model.py:176(ResponseResource)
+        1    0.000    0.000    0.000    0.000 pkgutil.py:194(ImpImporter)
+        1    0.000    0.000    0.000    0.000 _factories.py:9(__init__)
+        1    0.000    0.000    0.000    0.000 utils.py:1144(CachedProperty)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:542(AWSResponse)
+        1    0.000    0.000    0.000    0.000 hooks.py:506(_PrefixTrie)
+        1    0.000    0.000    0.000    0.000 httpchecksum.py:134(AwsChunkedWrapper)
+        1    0.000    0.000    0.000    0.000 auth.py:125(SigV2Auth)
+        1    0.000    0.000    0.000    0.000 credentials.py:661(CachedCredentialFetcher)
+        1    0.000    0.000    0.000    0.000 credentials.py:1729(AssumeRoleWithWebIdentityProvider)
+        1    0.000    0.000    0.000    0.000 paginate.py:591(Paginator)
+        1    0.000    0.000    0.000    0.000 oauth1_auth.py:19(OAuth1)
+        1    0.000    0.000    0.000    0.000 web_application.py:18(WebApplicationClient)
+        1    0.000    0.000    0.000    0.000 socketserver.py:672(ThreadingMixIn)
+        1    0.000    0.000    0.000    0.000 flow.py:479(_RedirectWSGIApp)
+        1    0.000    0.000    0.000    0.000 simple_server.py:71(WSGIRequestHandler)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:723(MimeParameters)
+        1    0.000    0.000    0.000    0.000 general_helpers.py:1()
+        1    0.000    0.000    0.000    0.000 core.py:3536(GoToColumn)
+        1    0.000    0.000    0.000    0.000 request.py:1226(HTTPDigestAuthHandler)
+        1    0.000    0.000    0.000    0.000 request.py:1374(HTTPHandler)
+        1    0.000    0.000    0.000    0.000 poolmanager.py:492(ProxyManager)
+        1    0.000    0.000    0.000    0.000 x448.py:59(_X448PrivateKey)
+        1    0.000    0.000    0.000    0.000 _oid.py:47(CRLEntryExtensionOID)
+        1    0.000    0.000    0.000    0.000 extensions.py:1028(PrecertPoison)
+        1    0.000    0.000    0.000    0.000 dh.py:252(_DHPublicKey)
+        1    0.000    0.000    0.000    0.000 general_name.py:160(DirectoryName)
+        1    0.000    0.000    0.000    0.000 utils.py:14(Prehashed)
+        1    0.000    0.000    0.000    0.000 _base.py:74(_AsCompletedWaiter)
+        1    0.000    0.000    0.000    0.000 events.py:161(AbstractServer)
+        1    0.000    0.000    0.000    0.000 transports.py:9(BaseTransport)
+        1    0.000    0.000    0.000    0.000 events.py:610(AbstractEventLoopPolicy)
+        1    0.000    0.000    0.000    0.000 unix_events.py:1337(ThreadedChildWatcher)
+        1    0.000    0.000    0.000    0.000 queues.py:234(LifoQueue)
+        1    0.000    0.000    0.000    0.000 transports.py:72(WriteTransport)
+        1    0.000    0.000    0.000    0.000 credentials.py:248(CredentialsWithQuotaProject)
+        1    0.000    0.000    0.000    0.000 _exponential_backoff.py:111(ExponentialBackoff)
+        1    0.000    0.000    0.000    0.000 _http_client.py:28(Response)
+        1    0.000    0.000    0.000    0.000 CMAC.py:41(CMAC)
+        1    0.000    0.000    0.000    0.000 _argparse.py:555(HelpPreviewAction)
+        1    0.000    0.000    0.000    0.000 table_vs16.py:1()
+        1    0.000    0.000    0.000    0.000 questions.py:145(List)
+        1    0.000    0.000    0.000    0.000 csv.py:23(Dialect)
+        2    0.000    0.000    0.000    0.000 _make.py:2859(_get_global_name)
+        1    0.000    0.000    0.000    0.000 argparse.py:1692(_MutuallyExclusiveGroup)
+        1    0.000    0.000    0.000    0.000 markdown.py:230(TableElement)
+        1    0.000    0.000    0.000    0.000 parse.py:836(_Quoter)
+        2    0.000    0.000    0.000    0.000 subprocess.py:1087(__enter__)
+        2    0.000    0.000    0.000    0.000 threading.py:568(is_set)
+        1    0.000    0.000    0.000    0.000 exceptions.py:6(ExceptionPexpect)
+        1    0.000    0.000    0.000    0.000 ptyprocess.py:799(PtyProcessUnicode)
+        1    0.000    0.000    0.000    0.000 _IntegerGMP.py:133(_MPZ)
+        1    0.000    0.000    0.000    0.000 dataclasses.py:565()
+        1    0.000    0.000    0.000    0.000 weakref.py:427(__setitem__)
+        1    0.000    0.000    0.000    0.000 {method 'seek' of '_io.BufferedReader' objects}
+        2    0.000    0.000    0.000    0.000 {method 'truncate' of '_io.StringIO' objects}
+        1    0.000    0.000    0.000    0.000 _matrix.py:98(set_canvas)
+        1    0.000    0.000    0.000    0.000 _monitor.py:274(_set_theme)
+        1    0.000    0.000    0.000    0.000 _default.py:57(canvas_init)
+        1    0.000    0.000    0.000    0.000 _default.py:29(default_monitor_class)
+        1    0.000    0.000    0.000    0.000 _cookiejar.py:25(__init__)
+        1    0.000    0.000    0.000    0.000 policy_api.py:27(PolicyApi)
+        1    0.000    0.000    0.000    0.000 authentication_v1_api.py:27(AuthenticationV1Api)
+        1    0.000    0.000    0.000    0.000 sessions.py:95(NullSession)
+        1    0.000    0.000    0.000    0.000 url_safe.py:15(URLSafeSerializerMixin)
+        1    0.000    0.000    0.000    0.000 runtime.py:122(TemplateReference)
+        1    0.000    0.000    0.000    0.000 types.py:156(CompositeParamType)
+        1    0.000    0.000    0.000    0.000 ElementTree.py:1272(XMLPullParser)
+        2    0.000    0.000    0.000    0.000 six.py:245(_MovedItems)
+        2    0.000    0.000    0.000    0.000 six.py:454(Module_six_moves_urllib_response)
+        2    0.000    0.000    0.000    0.000 six.py:475(Module_six_moves_urllib_robotparser)
+        1    0.000    0.000    0.000    0.000 utils.py:155(HideParamFromOperations)
+        1    0.000    0.000    0.000    0.000 endpoint.py:386(EndpointCreator)
+        1    0.000    0.000    0.000    0.000 throttling.py:6(CubicCalculator)
+        1    0.000    0.000    0.000    0.000 configprovider.py:437(ConfigValueStore)
+        1    0.000    0.000    0.000    0.000 credentials.py:1906(ContainerProvider)
+        1    0.000    0.000    0.000    0.000 standard.py:106(RetryEventAdapter)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:140(BaseBrowser)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:206(UnixBrowser)
+        2    0.000    0.000    0.000    0.000 results.py:457()
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:519(AddrSpec)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:226(QuotedString)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:562(HeaderRegistry)
+        1    0.000    0.000    0.000    0.000 core.py:2356(Token)
+        1    0.000    0.000    0.000    0.000 core.py:3679(WordStart)
+        1    0.000    0.000    0.000    0.000 unicode.py:213(Chinese)
+        1    0.000    0.000    0.000    0.000 auth.py:107(HTTPDigestAuth)
+        1    0.000    0.000    0.000    0.000 discovery.py:147(_BytesGenerator)
+        1    0.000    0.000    0.000    0.000 request.py:605(BaseHandler)
+        1    0.000    0.000    0.000    0.000 request.py:791(ProxyHandler)
+        1    0.000    0.000    0.000    0.000 request.py:1383(HTTPSHandler)
+        1    0.000    0.000    0.000    0.000 request.py:1398(HTTPCookieProcessor)
+        1    0.000    0.000    0.000    0.000 ed448.py:81(_Ed448PrivateKey)
+        1    0.000    0.000    0.000    0.000 poly1305.py:19(_Poly1305Context)
+        1    0.000    0.000    0.000    0.000 ed448.py:21(_Ed448PublicKey)
+        1    0.000    0.000    0.000    0.000 algorithms.py:61(Camellia)
+        1    0.000    0.000    0.000    0.000 general_name.py:184(RegisteredID)
+        1    0.000    0.000    0.000    0.000 ed25519.py:20(_Ed25519PublicKey)
+        2    0.000    0.000    0.000    0.000 binding.py:82(_openssl_assert)
+        1    0.000    0.000    0.000    0.000 unix_events.py:1426(_UnixDefaultEventLoopPolicy)
+        1    0.000    0.000    0.000    0.000 _oid.py:161(AuthorityInformationAccessOID)
+        1    0.000    0.000    0.000    0.000 modes.py:109(CBC)
+        1    0.000    0.000    0.000    0.000 algorithms.py:41(AES128)
+        1    0.000    0.000    0.000    0.000 unix_events.py:823(AbstractChildWatcher)
+        1    0.000    0.000    0.000    0.000 unix_events.py:902(PidfdChildWatcher)
+        1    0.000    0.000    0.000    0.000 unix_events.py:1033(SafeChildWatcher)
+        1    0.000    0.000    0.000    0.000 ssl.py:622(options)
+        1    0.000    0.000    0.000    0.000 _editor.py:8(Editor)
+        1    0.000    0.000    0.000    0.000 style.py:170(Style)
+        1    0.000    0.000    0.000    0.000 themes.py:72(Theme)
+        2    0.000    0.000    0.000    0.000 calendar.py:55()
+        1    0.000    0.000    0.000    0.000 lexer.py:345(combined)
+        1    0.000    0.000    0.000    0.000 message.py:1195(EmailMessage)
+        1    0.000    0.000    0.000    0.000 syntax.py:214(_SyntaxHighlightRange)
+        1    0.000    0.000    0.000    0.000 plugins.py:9(Plugins)
+        1    0.000    0.000    0.000    0.000 token.py:12(_TokenType)
+        1    0.000    0.000    0.000    0.000 util.py:122(make_analysator)
+        1    0.000    0.000    0.000    0.000 _stack.py:6(Stack)
+        1    0.000    0.000    0.000    0.000 html_blocks.py:1()
+        1    0.000    0.000    0.000    0.000 hooks.py:8(MethodHook)
+        1    0.000    0.000    0.000    0.000 composer.py:11(Composer)
+        1    0.000    0.000    0.000    0.000 selectors.py:341(_PollLikeSelector)
+        1    0.000    0.000    0.000    0.000 parse.py:220(_NetlocResultMixinBytes)
+        1    0.000    0.000    0.000    0.000 _IntegerGMP.py:110(_GMP)
+        1    0.000    0.000    0.000    0.000 __init__.py:6()
+        1    0.000    0.000    0.000    0.000 tempfile.py:571(_TemporaryFileCloser)
+        1    0.000    0.000    0.000    0.000 threading.py:544(Event)
+        1    0.000    0.000    0.000    0.000 selectors.py:206(_BaseSelectorImpl)
+        2    0.000    0.000    0.000    0.000 functools.py:741(is_related)
+        1    0.000    0.000    0.000    0.000 {method 'issubset' of 'set' objects}
+        2    0.000    0.000    0.000    0.000 {built-in method posix.waitstatus_to_exitcode}
+        1    0.000    0.000    0.000    0.000 _strptime.py:30(LocaleTime)
+        1    0.000    0.000    0.000    0.000 _doc_utils.py:102(output_class)
+        2    0.000    0.000    0.000    0.000 _figure.py:98()
+        1    0.000    0.000    0.000    0.000 kube_config.py:86(FileOrData)
+        1    0.000    0.000    0.000    0.000 wrappers.py:139(Response)
+        1    0.000    0.000    0.000    0.000 context.py:283(SpawnProcess)
+        1    0.000    0.000    0.000    0.000 nodes.py:973(Sub)
+        1    0.000    0.000    0.000    0.000 matcher.py:33(StateMachineMatcher)
+        1    0.000    0.000    0.000    0.000 templating.py:39(Environment)
+        1    0.000    0.000    0.000    0.000 local.py:351(_ProxyIOp)
+        1    0.000    0.000    0.000    0.000 security.py:12()
+        1    0.000    0.000    0.000    0.000 tz.py:1253(tzical)
+        1    0.000    0.000    0.000    0.000 example.py:182(ResponseExampleDocumenter)
+        1    0.000    0.000    0.000    0.000 utils.py:1474(lru_cache_weakref)
+        1    0.000    0.000    0.000    0.000 tz.py:874(tzrange)
+        2    0.000    0.000    0.000    0.000 six.py:340(Module_six_moves_urllib_parse)
+        2    0.000    0.000    0.000    0.000 six.py:382(Module_six_moves_urllib_error)
+        2    0.000    0.000    0.000    0.000 six.py:402(Module_six_moves_urllib_request)
+        1    0.000    0.000    0.000    0.000 utils.py:3316(FileWebIdentityTokenLoader)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:491(AWSPreparedRequest)
+        1    0.000    0.000    0.000    0.000 eventstream.py:292(MessagePrelude)
+        1    0.000    0.000    0.000    0.000 standard.py:423(ThrottlingErrorDetector)
+        1    0.000    0.000    0.000    0.000 monitoring.py:24(Monitor)
+        1    0.000    0.000    0.000    0.000 quota.py:6(RetryQuota)
+        1    0.000    0.000    0.000    0.000 credentials.py:1089(EnvProvider)
+        1    0.000    0.000    0.000    0.000 adaptive.py:92(RateClocker)
+        1    0.000    0.000    0.000    0.000 session.py:1173(SessionVarDict)
+        1    0.000    0.000    0.000    0.000 base.py:18(ValidatorsContainer)
+        1    0.000    0.000    0.000    0.000 legacy_application.py:13(LegacyApplicationClient)
+        1    0.000    0.000    0.000    0.000 model.py:354(ProtocolBufferModel)
+        1    0.000    0.000    0.000    0.000 socketserver.py:522(UDPServer)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:558(DisplayName)
+        1    0.000    0.000    0.000    0.000 core.py:3732(Tag)
+        1    0.000    0.000    0.000    0.000 models.py:230(Request)
+        1    0.000    0.000    0.000    0.000 auth.py:76(HTTPBasicAuth)
+        1    0.000    0.000    0.000    0.000 response.py:70(ContentDecoder)
+        1    0.000    0.000    0.000    0.000 exceptions.py:12(RequestException)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:1982(MozillaCookieJar)
+        1    0.000    0.000    0.000    0.000 request.py:624(HTTPErrorProcessor)
+        1    0.000    0.000    0.000    0.000 response.py:37(addclosehook)
+        1    0.000    0.000    0.000    0.000 _collections.py:158(HTTPHeaderDictItemView)
+        1    0.000    0.000    0.000    0.000 _base_connection.py:12(ProxyConfig)
+        1    0.000    0.000    0.000    0.000 queue.py:223(PriorityQueue)
+        1    0.000    0.000    0.000    0.000 binding.py:191(_verify_openssl_version)
+        1    0.000    0.000    0.000    0.000 streams.py:117(FlowControlMixin)
+        1    0.000    0.000    0.000    0.000 hashes.py:178(SHAKE128)
+        1    0.000    0.000    0.000    0.000 _cipheralgorithm.py:33(BlockCipherAlgorithm)
+        1    0.000    0.000    0.000    0.000 _base.py:569(Executor)
+        1    0.000    0.000    0.000    0.000 ssl.py:154()
+        1    0.000    0.000    0.000    0.000 credentials.py:270(CredentialsWithTokenUri)
+        1    0.000    0.000    0.000    0.000 help_text.py:20(get_instructions)
+        2    0.000    0.000    0.000    0.000 terminal.py:393(is_a_tty)
+        1    0.000    0.000    0.000    0.000 questions.py:12(TaggedValue)
+        1    0.000    0.000    0.000    0.000 style.py:58(StyleMeta)
+        1    0.000    0.000    0.000    0.000 themes.py:103(GreenPassion)
+        1    0.000    0.000    0.000    0.000 lexer.py:913(ProfilingRegexLexerMeta)
+        1    0.000    0.000    0.000    0.000 lexer.py:935(ProfilingRegexLexer)
+        1    0.000    0.000    0.000    0.000 __init__.py:715(NameHighlightFilter)
+        1    0.000    0.000    0.000    0.000 _parseaddr.py:512(AddressList)
+        1    0.000    0.000    0.000    0.000 exceptions.py:8(FrozenError)
+        1    0.000    0.000    0.000    0.000 lexer.py:358(_PseudoMatch)
+        1    0.000    0.000    0.000    0.000 _cell_widths.py:1()
+        2    0.000    0.000    0.000    0.000 console.py:1529(check_text)
+        1    0.000    0.000    0.000    0.000 utils.py:36(PresetType)
+        1    0.000    0.000    0.000    0.000 table.py:143(_Cell)
+        1    0.000    0.000    0.000    0.000 constructor.py:713(UnsafeConstructor)
+        1    0.000    0.000    0.000    0.000 argparse.py:1320(Namespace)
+        1    0.000    0.000    0.000    0.000 tempfile.py:271(_RandomNameSequence)
+        1    0.000    0.000    0.000    0.000 PKCS1_OAEP.py:34(PKCS1OAEP_Cipher)
+        1    0.000    0.000    0.000    0.000 encoder.py:105(__init__)
+        2    0.000    0.000    0.000    0.000 __init__.py:440(__init__)
+        2    0.000    0.000    0.000    0.000 :1363(exec_module)
+        1    0.000    0.000    0.000    0.000 {built-in method sys.exit}
+        1    0.000    0.000    0.000    0.000 {built-in method _codecs.register_error}
+        1    0.000    0.000    0.000    0.000 _monitor.py:69(lines_init)
+        1    0.000    0.000    0.000    0.000 _default.py:41(color_init)
+        1    0.000    0.000    0.000    0.000 _default.py:75(bar_init)
+        1    0.000    0.000    0.000    0.000 _strptime.py:170(TimeRE)
+        1    0.000    0.000    0.000    0.000 _app.py:96(SSLDispatcher)
+        1    0.000    0.000    0.000    0.000 storage_api.py:27(StorageApi)
+        1    0.000    0.000    0.000    0.000 watch.py:86(Watch)
+        1    0.000    0.000    0.000    0.000 lexer.py:297(TokenStreamIterator)
+        1    0.000    0.000    0.000    0.000 tag.py:93(TagDict)
+        1    0.000    0.000    0.000    0.000 signer.py:15(SigningAlgorithm)
+        1    0.000    0.000    0.000    0.000 process.py:364(_ParentProcess)
+        1    0.000    0.000    0.000    0.000 optimizer.py:27(Optimizer)
+        1    0.000    0.000    0.000    0.000 cli.py:391(AppGroup)
+        1    0.000    0.000    0.000    0.000 headers.py:467(EnvironHeaders)
+        1    0.000    0.000    0.000    0.000 range.py:4(IfRange)
+        1    0.000    0.000    0.000    0.000 tz.py:328(_ttinfo)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:37(AWSHTTPResponse)
+        1    0.000    0.000    0.000    0.000 params.py:207(RequestParamsDocumenter)
+        1    0.000    0.000    0.000    0.000 _parser.py:661(_result)
+        1    0.000    0.000    0.000    0.000 _parser.py:1378(_attr)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:591(_HeaderKey)
+        1    0.000    0.000    0.000    0.000 utils.py:93(DocumentedShape)
+        1    0.000    0.000    0.000    0.000 validate.py:90(ValidationErrors)
+        1    0.000    0.000    0.000    0.000 httpchecksum.py:48(BaseChecksum)
+        1    0.000    0.000    0.000    0.000 errorfactory.py:17(BaseClientExceptions)
+        1    0.000    0.000    0.000    0.000 resource.py:332(ServiceResourceDocumenter)
+        1    0.000    0.000    0.000    0.000 base.py:21(ResourceMeta)
+        1    0.000    0.000    0.000    0.000 serving.py:877(ForkingWSGIServer)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:434(RuleSetEndpoint)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:442(EndpointRule)
+        1    0.000    0.000    0.000    0.000 model.py:45(ServiceId)
+        1    0.000    0.000    0.000    0.000 credentials.py:783(AssumeRoleCredentialFetcher)
+        1    0.000    0.000    0.000    0.000 standard.py:298(TransientRetryableChecker)
+        1    0.000    0.000    0.000    0.000 credentials.py:1987(CredentialResolver)
+        1    0.000    0.000    0.000    0.000 oauth1_session.py:26(TokenRequestDenied)
+        1    0.000    0.000    0.000    0.000 tokens.py:280(BearerToken)
+        1    0.000    0.000    0.000    0.000 base.py:508(NamedSignal)
+        1    0.000    0.000    0.000    0.000 errors.py:165(InvalidRedirectURIError)
+        1    0.000    0.000    0.000    0.000 errors.py:185(InvalidRequestError)
+        1    0.000    0.000    0.000    0.000 http.py:1723(HttpMock)
+        1    0.000    0.000    0.000    0.000 model.py:314(RawModel)
+        1    0.000    0.000    0.000    0.000 handlers.py:433(SimpleHandler)
+        1    0.000    0.000    0.000    0.000 sts.py:44(Client)
+        1    0.000    0.000    0.000    0.000 authorization.py:17(AuthorizationEndpoint)
+        1    0.000    0.000    0.000    0.000 testing.py:22(reset_pyparsing_context)
+        1    0.000    0.000    0.000    0.000 pprint.py:80(_safe_key)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:414(AngleAddr)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:291(AddressList)
+        1    0.000    0.000    0.000    0.000 gzip.py:75(_PaddedFile)
+        1    0.000    0.000    0.000    0.000 __init__.py:982(HTTPConnectionWithTimeout)
+        1    0.000    0.000    0.000    0.000 core.py:2436(Empty)
+        1    0.000    0.000    0.000    0.000 core.py:2581(CaselessLiteral)
+        1    0.000    0.000    0.000    0.000 core.py:3570(LineStart)
+        1    0.000    0.000    0.000    0.000 unicode.py:141(Latin1)
+        1    0.000    0.000    0.000    0.000 unicode.py:200(Cyrillic)
+        1    0.000    0.000    0.000    0.000 unicode.py:239(Kanji)
+        1    0.000    0.000    0.000    0.000 unicode.py:258(Katakana)
+        1    0.000    0.000    0.000    0.000 unicode.py:307(Thai)
+        1    0.000    0.000    0.000    0.000 unicode.py:322(Hebrew)
+        1    0.000    0.000    0.000    0.000 request.py:1531(FTPHandler)
+        1    0.000    0.000    0.000    0.000 request.py:1050(HTTPBasicAuthHandler)
+        1    0.000    0.000    0.000    0.000 structures.py:83(LookupDict)
+        1    0.000    0.000    0.000    0.000 _base_connection.py:19(_ResponseOptions)
+        1    0.000    0.000    0.000    0.000 exceptions.py:31(PoolError)
+        1    0.000    0.000    0.000    0.000 x448.py:20(_X448PublicKey)
+        1    0.000    0.000    0.000    0.000 modes.py:123(XTS)
+        1    0.000    0.000    0.000    0.000 modes.py:200(CTR)
+        1    0.000    0.000    0.000    0.000 backend.py:2631(GetCipherByName)
+        1    0.000    0.000    0.000    0.000 hashes.py:220(BLAKE2b)
+        1    0.000    0.000    0.000    0.000 __init__.py:202(LRUCache)
+        1    0.000    0.000    0.000    0.000 _asymmetric.py:12(AsymmetricPadding)
+        1    0.000    0.000    0.000    0.000 transports.py:197(SubprocessTransport)
+        1    0.000    0.000    0.000    0.000 unix_events.py:1107(FastChildWatcher)
+        1    0.000    0.000    0.000    0.000 __init__.py:28(_DefaultSize)
+        1    0.000    0.000    0.000    0.000 help_text.py:1()
+        1    0.000    0.000    0.000    0.000 ai_handler.py:12(AIHandler)
+        1    0.000    0.000    0.000    0.000 provider.py:10(ServiceProvider)
+        1    0.000    0.000    0.000    0.000 _argparse.py:124(_Section)
+        1    0.000    0.000    0.000    0.000 questions.py:189(Path)
+        1    0.000    0.000    0.000    0.000 abc.py:112(PathEntryFinder)
+        1    0.000    0.000    0.000    0.000 profile_service.py:4(ProfileService)
+        1    0.000    0.000    0.000    0.000 ai_service.py:4(AIService)
+        1    0.000    0.000    0.000    0.000 _adapters.py:83(ChildPath)
+        1    0.000    0.000    0.000    0.000 __init__.py:868(GobbleFilter)
+        1    0.000    0.000    0.000    0.000 _common.py:80(_fix_legacy_win_text)
+        2    0.000    0.000    0.000    0.000 calendar.py:57(__init__)
+        1    0.000    0.000    0.000    0.000 zipfile.py:2008(PyZipFile)
+        1    0.000    0.000    0.000    0.000 theme.py:80(ThemeStack)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 styled.py:11(Styled)
+        1    0.000    0.000    0.000    0.000 __init__.py:736(Context)
+        1    0.000    0.000    0.000    0.000 control.py:22()
+        1    0.000    0.000    0.000    0.000 pager.py:17(SystemPager)
+        1    0.000    0.000    0.000    0.000 configparser.py:169(Error)
+        1    0.000    0.000    0.000    0.000 text.py:1142()
+        1    0.000    0.000    0.000    0.000 linkify.py:144(_LinkType)
+        1    0.000    0.000    0.000    0.000 parser_inline.py:54(ParserInline)
+        1    0.000    0.000    0.000    0.000 argparse.py:1128(_VersionAction)
+        1    0.000    0.000    0.000    0.000 __future__.py:81(_Feature)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:2222(IPv6Network)
+        1    0.000    0.000    0.000    0.000 tempfile.py:614(_TemporaryFileWrapper)
+        1    0.000    0.000    0.000    0.000 random.py:787(SystemRandom)
+        1    0.000    0.000    0.000    0.000 parse.py:190(_NetlocResultMixinStr)
+        1    0.000    0.000    0.000    0.000 asn1.py:49(BytesIO_EOF)
+        1    0.000    0.000    0.000    0.000 threading.py:410(Semaphore)
+        1    0.000    0.000    0.000    0.000 traceback.py:615(_ExceptionPrintContext)
+        1    0.000    0.000    0.000    0.000 expect.py:187(searcher_string)
+        1    0.000    0.000    0.000    0.000 asn1.py:915(DerSetOf)
+        2    0.000    0.000    0.000    0.000 contextlib.py:543(__enter__)
+        2    0.000    0.000    0.000    0.000 {built-in method io.text_encoding}
+        1    0.000    0.000    0.000    0.000 tools.py:250(Parser)
+        1    0.000    0.000    0.000    0.000 resource.py:232(Subresource)
+        1    0.000    0.000    0.000    0.000 _doc_utils.py:42(parameter_class)
+        1    0.000    0.000    0.000    0.000 _default.py:4(default_figure_class)
+        1    0.000    0.000    0.000    0.000 scheduling_api.py:27(SchedulingApi)
+        1    0.000    0.000    0.000    0.000 kube_config.py:601(ConfigNode)
+        1    0.000    0.000    0.000    0.000 _app.py:73(Dispatcher)
+        1    0.000    0.000    0.000    0.000 _socket.py:55(sock_opt)
+        1    0.000    0.000    0.000    0.000 rbac_authorization_api.py:27(RbacAuthorizationApi)
+        1    0.000    0.000    0.000    0.000 context.py:233(__init__)
+        1    0.000    0.000    0.000    0.000 context.py:276(ForkProcess)
+        1    0.000    0.000    0.000    0.000 connection.py:764(ConnectionWrapper)
+        1    0.000    0.000    0.000    0.000 pool.py:80(MaybeEncodingError)
+        1    0.000    0.000    0.000    0.000 nodes.py:1054(ImportedName)
+        1    0.000    0.000    0.000    0.000 runtime.py:991(DebugUndefined)
+        1    0.000    0.000    0.000    0.000 lexer.py:452(OptionalLStrip)
+        1    0.000    0.000    0.000    0.000 difflib.py:724(Differ)
+        1    0.000    0.000    0.000    0.000 ctx.py:238(AppContext)
+        1    0.000    0.000    0.000    0.000 exceptions.py:253(Unauthorized)
+        1    0.000    0.000    0.000    0.000 accept.py:262(LanguageAccept)
+        1    0.000    0.000    0.000    0.000 utils.py:123(environ_property)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:243(AWSHTTPConnectionPool)
+        1    0.000    0.000    0.000    0.000 utils.py:122(AutoPopulatedParam)
+        1    0.000    0.000    0.000    0.000 paginator.py:23(PaginatorDocumenter)
+        1    0.000    0.000    0.000    0.000 parsers.py:556(QueryParser)
+        1    0.000    0.000    0.000    0.000 parsers.py:1008(RestJSONParser)
+        1    0.000    0.000    0.000    0.000 regions.py:52(BaseEndpointResolver)
+        1    0.000    0.000    0.000    0.000 configprovider.py:323(ConfigChainFactory)
+        1    0.000    0.000    0.000    0.000 standard.py:386(ModeledRetryErrorDetector)
+        1    0.000    0.000    0.000    0.000 configprovider.py:287(DefaultConfigResolver)
+        1    0.000    0.000    0.000    0.000 monitoring.py:546(SocketPublisher)
+        1    0.000    0.000    0.000    0.000 base.py:16(BaseDocumenter)
+        1    0.000    0.000    0.000    0.000 collection.py:369(CollectionFactory)
+        1    0.000    0.000    0.000    0.000 utils.py:87(DocumentModifiedShape)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:410(BaseRule)
+        1    0.000    0.000    0.000    0.000 signers.py:362(CloudFrontSigner)
+        1    0.000    0.000    0.000    0.000 model.py:29(NoShapeFoundError)
+        1    0.000    0.000    0.000    0.000 credentials.py:2087(SSOCredentialFetcher)
+        1    0.000    0.000    0.000    0.000 adaptive.py:38(ClientRateLimiter)
+        1    0.000    0.000    0.000    0.000 bucket.py:9(Clock)
+        1    0.000    0.000    0.000    0.000 standard.py:342(ThrottledRetryableChecker)
+        1    0.000    0.000    0.000    0.000 credentials.py:1818(CanonicalNameCredentialSourcer)
+        1    0.000    0.000    0.000    0.000 parser.py:501(ParsedResult)
+        1    0.000    0.000    0.000    0.000 exceptions.py:8(ParseError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:31(BotoCoreError)
+        1    0.000    0.000    0.000    0.000 waiter.py:312(Waiter)
+        1    0.000    0.000    0.000    0.000 refresh_token.py:14(RefreshTokenGrant)
+        1    0.000    0.000    0.000    0.000 errors.py:245(InvalidScopeError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:94(HTTPClientError)
+        1    0.000    0.000    0.000    0.000 simple_server.py:42(WSGIServer)
+        1    0.000    0.000    0.000    0.000 access_token.py:21(AccessTokenEndpoint)
+        1    0.000    0.000    0.000    0.000 base.py:21(BaseEndpoint)
+        1    0.000    0.000    0.000    0.000 __init__.py:711(WsseAuthentication)
+        1    0.000    0.000    0.000    0.000 core.py:3619(LineEnd)
+        1    0.000    0.000    0.000    0.000 unicode.py:148(LatinA)
+        1    0.000    0.000    0.000    0.000 unicode.py:246(Hiragana)
+        1    0.000    0.000    0.000    0.000 unicode.py:282(Hangul)
+        1    0.000    0.000    0.000    0.000 base.py:15(MIMEBase)
+        1    0.000    0.000    0.000    0.000 response.py:57(addinfo)
+        1    0.000    0.000    0.000    0.000 __version__.py:1()
+        1    0.000    0.000    0.000    0.000 readers.py:31(ZipReader)
+        1    0.000    0.000    0.000    0.000 exceptions.py:139(NewConnectionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:59(ProxyError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:247(IncompleteRead)
+        1    0.000    0.000    0.000    0.000 {method 'string' of '_cffi_backend.FFI' objects}
+        1    0.000    0.000    0.000    0.000 dsa.py:58(_DSAParameters)
+        1    0.000    0.000    0.000    0.000 algorithms.py:74(TripleDES)
+        1    0.000    0.000    0.000    0.000 modes.py:33(ModeWithInitializationVector)
+        1    0.000    0.000    0.000    0.000 padding.py:81(MGF1)
+        1    0.000    0.000    0.000    0.000 base.py:144(InvalidVersion)
+        1    0.000    0.000    0.000    0.000 base_subprocess.py:255(WriteSubprocessPipeProto)
+        1    0.000    0.000    0.000    0.000 __init__.py:379(_Link)
+        1    0.000    0.000    0.000    0.000 __init__.py:305(_Timer)
+        1    0.000    0.000    0.000    0.000 _oid.py:43(OCSPExtensionOID)
+        1    0.000    0.000    0.000    0.000 _oid.py:166(SubjectInformationAccessOID)
+        1    0.000    0.000    0.000    0.000 protocols.py:177(SubprocessProtocol)
+        1    0.000    0.000    0.000    0.000 _base.py:111(_AllCompletedWaiter)
+        1    0.000    0.000    0.000    0.000 _base.py:96(_FirstCompletedWaiter)
+        1    0.000    0.000    0.000    0.000 locks.py:158(Event)
+        1    0.000    0.000    0.000    0.000 locks.py:219(Condition)
+        1    0.000    0.000    0.000    0.000 context_handler.py:7(__init__)
+        1    0.000    0.000    0.000    0.000 prompt.py:15(InvalidResponse)
+        1    0.000    0.000    0.000    0.000 system_service.py:4(SystemService)
+        1    0.000    0.000    0.000    0.000 parser.py:16(Parser)
+        1    0.000    0.000    0.000    0.000 _text.py:7(Text)
+        1    0.000    0.000    0.000    0.000 _meta.py:32(SimplePath)
+        1    0.000    0.000    0.000    0.000 _collections.py:5(FreezableDefaultDict)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 exceptions.py:81(NotCallableError)
+        1    0.000    0.000    0.000    0.000 console.py:115(ConsoleDimensions)
+        1    0.000    0.000    0.000    0.000 representer.py:272(Representer)
+        1    0.000    0.000    0.000    0.000 parse_link_destination.py:8(_Result)
+        1    0.000    0.000    0.000    0.000 argparse.py:118(_AttributeHolder)
+        1    0.000    0.000    0.000    0.000 pathlib.py:48(_Flavour)
+        1    0.000    0.000    0.000    0.000 asn1.py:263(DerInteger)
+        1    0.000    0.000    0.000    0.000 _raw_api.py:270(SmartPointer)
+        1    0.000    0.000    0.000    0.000 traceback.py:90(_Sentinel)
+        1    0.000    0.000    0.000    0.000 {method 'cache_clear' of 'functools._lru_cache_wrapper' objects}
+        1    0.000    0.000    0.000    0.000 _http.py:55(proxy_info)
+        1    0.000    0.000    0.000    0.000 _doc_utils.py:74(parameters_class)
+        1    0.000    0.000    0.000    0.000 _default.py:62(text_init)
+        1    0.000    0.000    0.000    0.000 pydoc.py:1132(TextRepr)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:70(WebSocketBadStatusException)
+        1    0.000    0.000    0.000    0.000 _handshake.py:48(handshake_response)
+        1    0.000    0.000    0.000    0.000 logs_api.py:27(LogsApi)
+        1    0.000    0.000    0.000    0.000 networking_api.py:27(NetworkingApi)
+        1    0.000    0.000    0.000    0.000 apiregistration_api.py:27(ApiregistrationApi)
+        1    0.000    0.000    0.000    0.000 autoscaling_api.py:27(AutoscalingApi)
+        1    0.000    0.000    0.000    0.000 rest.py:34(RESTResponse)
+        1    0.000    0.000    0.000    0.000 blueprints.py:34(BlueprintSetupState)
+        1    0.000    0.000    0.000    0.000 pool.py:150(_PoolCache)
+        1    0.000    0.000    0.000    0.000 pool.py:837(IMapIterator)
+        1    0.000    0.000    0.000    0.000 nodes.py:539(Name)
+        1    0.000    0.000    0.000    0.000 utils.py:720(Joiner)
+        1    0.000    0.000    0.000    0.000 types.py:245(__init__)
+        1    0.000    0.000    0.000    0.000 types.py:542(FloatParamType)
+        1    0.000    0.000    0.000    0.000 rules.py:27(RulePart)
+        1    0.000    0.000    0.000    0.000 converters.py:198(FloatConverter)
+        1    0.000    0.000    0.000    0.000 rules.py:20(Weighting)
+        1    0.000    0.000    0.000    0.000 types.py:516(IntRange)
+        1    0.000    0.000    0.000    0.000 exceptions.py:632(_RetryAfter)
+        1    0.000    0.000    0.000    0.000 mixins.py:115(ImmutableMultiDictMixin)
+        1    0.000    0.000    0.000    0.000 test.py:767(ClientRedirectError)
+        1    0.000    0.000    0.000    0.000 _internal.py:18(_Missing)
+        1    0.000    0.000    0.000    0.000 ElementTree.py:1105(_ListDataStream)
+        1    0.000    0.000    0.000    0.000 docstringparser.py:99(Node)
+        1    0.000    0.000    0.000    0.000 utils.py:368(BadIMDSRequestError)
+        1    0.000    0.000    0.000    0.000 utils.py:362(_RetriesExceededError)
+        1    0.000    0.000    0.000    0.000 utils.py:194(AppendParamDocumentation)
+        1    0.000    0.000    0.000    0.000 eventstream.py:539(EventStream)
+        1    0.000    0.000    0.000    0.000 history.py:24(HistoryRecorder)
+        1    0.000    0.000    0.000    0.000 httpchecksum.py:216(StreamingChecksumBody)
+        1    0.000    0.000    0.000    0.000 monitoring.py:192(APICallEvent)
+        1    0.000    0.000    0.000    0.000 configprovider.py:657(ChainProvider)
+        1    0.000    0.000    0.000    0.000 handlers.py:910(ParameterAlias)
+        1    0.000    0.000    0.000    0.000 retryhandler.py:214(BaseChecker)
+        1    0.000    0.000    0.000    0.000 base.py:38(NestedDocumenter)
+        1    0.000    0.000    0.000    0.000 base.py:69(ServiceResource)
+        1    0.000    0.000    0.000    0.000 response.py:158(ResourceHandler)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:581(ParameterDefinition)
+        1    0.000    0.000    0.000    0.000 credentials.py:638(DeferredRefreshableCredentials)
+        1    0.000    0.000    0.000    0.000 credentials.py:730(BaseAssumeRoleCredentialFetcher)
+        1    0.000    0.000    0.000    0.000 credentials.py:1215(OriginalEC2Provider)
+        1    0.000    0.000    0.000    0.000 model.py:41(InvalidShapeReferenceError)
+        1    0.000    0.000    0.000    0.000 credentials.py:1296(ConfigProvider)
+        1    0.000    0.000    0.000    0.000 discovery.py:224(EndpointDiscoveryHandler)
+        1    0.000    0.000    0.000    0.000 paginate.py:105(TokenDecoder)
+        1    0.000    0.000    0.000    0.000 visitor.py:307(GraphvizVisitor)
+        1    0.000    0.000    0.000    0.000 oauth2_session.py:12(TokenUpdated)
+        1    0.000    0.000    0.000    0.000 mobile_application.py:13(MobileApplicationClient)
+        1    0.000    0.000    0.000    0.000 errors.py:198(MissingCodeChallengeError)
+        1    0.000    0.000    0.000    0.000 errors.py:265(TemporarilyUnavailableError)
+        1    0.000    0.000    0.000    0.000 tokens.py:259(TokenBase)
+        1    0.000    0.000    0.000    0.000 __init__.py:106(NullHandler)
+        1    0.000    0.000    0.000    0.000 aws.py:2228(Entrypoint)
+        1    0.000    0.000    0.000    0.000 aws.py:1971(Parser)
+        1    0.000    0.000    0.000    0.000 service_application.py:17(ServiceApplicationClient)
+        1    0.000    0.000    0.000    0.000 util.py:11(FileWrapper)
+        1    0.000    0.000    0.000    0.000 socketserver.py:639(_Threads)
+        1    0.000    0.000    0.000    0.000 socketserver.py:777(StreamRequestHandler)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:310(Address)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:495(Domain)
+        1    0.000    0.000    0.000    0.000 contentmanager.py:9(__init__)
+        1    0.000    0.000    0.000    0.000 __init__.py:835(KeyCerts)
+        1    0.000    0.000    0.000    0.000 core.py:3705(WordEnd)
+        1    0.000    0.000    0.000    0.000 exceptions.py:290(RecursiveGrammarException)
+        1    0.000    0.000    0.000    0.000 unicode.py:154(LatinB)
+        1    0.000    0.000    0.000    0.000 unicode.py:314(Arabic)
+        1    0.000    0.000    0.000    0.000 unicode.py:336(Devanagari)
+        1    0.000    0.000    0.000    0.000 core.py:202(_should_enable_warnings)
+        1    0.000    0.000    0.000    0.000 cookies.py:103(MockResponse)
+        1    0.000    0.000    0.000    0.000 readers.py:15(FileReader)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:219(EncodedWord)
+        1    0.000    0.000    0.000    0.000 request.py:1244(ProxyDigestAuthHandler)
+        1    0.000    0.000    0.000    0.000 error.py:19(URLError)
+        1    0.000    0.000    0.000    0.000 request.py:898(HTTPPasswordMgrWithDefaultRealm)
+        1    0.000    0.000    0.000    0.000 request.py:1061(ProxyBasicAuthHandler)
+        1    0.000    0.000    0.000    0.000 core.py:14(IDNAError)
+        1    0.000    0.000    0.000    0.000 queue.py:242(LifoQueue)
+        1    0.000    0.000    0.000    0.000 x25519.py:21(_X25519PublicKey)
+        1    0.000    0.000    0.000    0.000 base.py:41(AttributeNotFound)
+        1    0.000    0.000    0.000    0.000 extensions.py:86(DuplicateExtension)
+        1    0.000    0.000    0.000    0.000 extensions.py:92(ExtensionNotFound)
+        1    0.000    0.000    0.000    0.000 hashes.py:238(BLAKE2s)
+        1    0.000    0.000    0.000    0.000 modes.py:172(CFB)
+        1    0.000    0.000    0.000    0.000 _base.py:141(_AcquireFutures)
+        1    0.000    0.000    0.000    0.000 exceptions.py:29(IncompleteReadError)
+        1    0.000    0.000    0.000    0.000 challenges.py:255(SamlChallenge)
+        1    0.000    0.000    0.000    0.000 tasks.py:689(_GatheringFuture)
+        1    0.000    0.000    0.000    0.000 exceptions.py:53(ClientCertError)
+        1    0.000    0.000    0.000    0.000 credentials.py:285(CredentialsWithUniverseDomain)
+        1    0.000    0.000    0.000    0.000 client.py:1481(IncompleteRead)
+        1    0.000    0.000    0.000    0.000 import_export_service.py:8(ImportExportService)
+        1    0.000    0.000    0.000    0.000 forms.py:5(Forms)
+        1    0.000    0.000    0.000    0.000 __init__.py:10(Render)
+        1    0.000    0.000    0.000    0.000 parser.py:79(BytesParser)
+        1    0.000    0.000    0.000    0.000 unicode_versions.py:1()
+        1    0.000    0.000    0.000    0.000 _adapters.py:114(OrphanPath)
+        1    0.000    0.000    0.000    0.000 base.py:3(BaseService)
+        1    0.000    0.000    0.000    0.000 lexer.py:289(DelegatingLexer)
+        1    0.000    0.000    0.000    0.000 lexer.py:777(ExtendedRegexLexer)
+        1    0.000    0.000    0.000    0.000 filter.py:54(FunctionFilter)
+        1    0.000    0.000    0.000    0.000 __init__.py:65(CodeTagFilter)
+        1    0.000    0.000    0.000    0.000 zipfile.py:621(LZMACompressor)
+        1    0.000    0.000    0.000    0.000 errors.py:37(MessageDefect)
+        1    0.000    0.000    0.000    0.000 zipfile.py:2289(FastLookup)
+        1    0.000    0.000    0.000    0.000 exceptions.py:31(FrozenAttributeError)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 lexer.py:665(RegexLexer)
+        1    0.000    0.000    0.000    0.000 csv.py:54(excel)
+        1    0.000    0.000    0.000    0.000 csv.py:130(DictWriter)
+        1    0.000    0.000    0.000    0.000 configparser.py:361(Interpolation)
+        1    0.000    0.000    0.000    0.000 _make.py:89(_CacheHashWrapper)
+        1    0.000    0.000    0.000    0.000 renderer.py:19(RendererProtocol)
+        1    0.000    0.000    0.000    0.000 theme.py:87(__init__)
+        1    0.000    0.000    0.000    0.000 console.py:358(__init__)
+        1    0.000    0.000    0.000    0.000 argparse.py:795(Action)
+        1    0.000    0.000    0.000    0.000 argparse.py:216(_Section)
+        1    0.000    0.000    0.000    0.000 hooks.py:60(ClassHook)
+        1    0.000    0.000    0.000    0.000 __init__.py:347(YAMLObjectMetaclass)
+        1    0.000    0.000    0.000    0.000 selectors.py:60(_SelectorMapping)
+        1    0.000    0.000    0.000    0.000 pathlib.py:423(_PathParents)
+        1    0.000    0.000    0.000    0.000 _file_system.py:1()
+        1    0.000    0.000    0.000    0.000 selectors.py:433(PollSelector)
+        1    0.000    0.000    0.000    0.000 __init__.py:156(py_object)
+        1    0.000    0.000    0.000    0.000 expect.py:285(searcher_re)
+        1    0.000    0.000    0.000    0.000 connapp.py:462(_store_type)
+        1    0.000    0.000    0.000    0.000 inspect.py:729(getmro)
+        1    0.000    0.000    0.000    0.000 {built-in method math.sqrt}
+        1    0.000    0.000    0.000    0.000 {built-in method _elementtree._set_factories}
+        1    0.000    0.000    0.000    0.000 _doc_utils.py:170(__init__)
+        1    0.000    0.000    0.000    0.000 storagemigration_api.py:27(StoragemigrationApi)
+        1    0.000    0.000    0.000    0.000 pydoc.py:393(ErrorDuringImport)
+        1    0.000    0.000    0.000    0.000 ws_client.py:323(_Socket)
+        1    0.000    0.000    0.000    0.000 create_from_yaml.py:309(FailToCreateError)
+        1    0.000    0.000    0.000    0.000 _utils.py:24(NoLock)
+        1    0.000    0.000    0.000    0.000 core_api.py:27(CoreApi)
+        1    0.000    0.000    0.000    0.000 events_api.py:27(EventsApi)
+        1    0.000    0.000    0.000    0.000 flowcontrol_apiserver_api.py:27(FlowcontrolApiserverApi)
+        1    0.000    0.000    0.000    0.000 internal_apiserver_api.py:27(InternalApiserverApi)
+        1    0.000    0.000    0.000    0.000 apiextensions_api.py:27(ApiextensionsApi)
+        1    0.000    0.000    0.000    0.000 apps_api.py:27(AppsApi)
+        1    0.000    0.000    0.000    0.000 authorization_api.py:27(AuthorizationApi)
+        1    0.000    0.000    0.000    0.000 batch_api.py:27(BatchApi)
+        1    0.000    0.000    0.000    0.000 certificates_api.py:27(CertificatesApi)
+        1    0.000    0.000    0.000    0.000 coordination_api.py:27(CoordinationApi)
+        1    0.000    0.000    0.000    0.000 exceptions.py:67(ApiKeyError)
+        1    0.000    0.000    0.000    0.000 context.py:295(ForkServerProcess)
+        1    0.000    0.000    0.000    0.000 util.py:368(ForkAwareThreadLock)
+        1    0.000    0.000    0.000    0.000 tag.py:133(TagTuple)
+        1    0.000    0.000    0.000    0.000 tag.py:159(TagBytes)
+        1    0.000    0.000    0.000    0.000 tag.py:173(TagMarkup)
+        1    0.000    0.000    0.000    0.000 tag.py:191(TagUUID)
+        1    0.000    0.000    0.000    0.000 exc.py:22(BadSignature)
+        1    0.000    0.000    0.000    0.000 serializer.py:26(_PDataSerializer)
+        1    0.000    0.000    0.000    0.000 tag.py:119(PassDict)
+        1    0.000    0.000    0.000    0.000 tag.py:147(PassList)
+        1    0.000    0.000    0.000    0.000 reduction.py:211(_C)
+        1    0.000    0.000    0.000    0.000 nodes.py:407(Include)
+        1    0.000    0.000    0.000    0.000 nodes.py:450(Assign)
+        1    0.000    0.000    0.000    0.000 nodes.py:939(Operand)
+        1    0.000    0.000    0.000    0.000 nodes.py:1116(ContextReference)
+        1    0.000    0.000    0.000    0.000 nodes.py:1065(InternalName)
+        1    0.000    0.000    0.000    0.000 exceptions.py:139(TemplateAssertionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:153(UndefinedError)
+        1    0.000    0.000    0.000    0.000 types.py:508(IntParamType)
+        1    0.000    0.000    0.000    0.000 exceptions.py:278(Exit)
+        1    0.000    0.000    0.000    0.000 exceptions.py:49(RequestPath)
+        1    0.000    0.000    0.000    0.000 converters.py:112(PathConverter)
+        1    0.000    0.000    0.000    0.000 :1(__create_fn__)
+        1    0.000    0.000    0.000    0.000 converters.py:48(UnicodeConverter)
+        1    0.000    0.000    0.000    0.000 converters.py:85(AnyConverter)
+        1    0.000    0.000    0.000    0.000 exceptions.py:28(RequestRedirect)
+        1    0.000    0.000    0.000    0.000 rules.py:138(RuleFactory)
+        1    0.000    0.000    0.000    0.000 rules.py:150(Subdomain)
+        1    0.000    0.000    0.000    0.000 cli.py:762(CertParamType)
+        1    0.000    0.000    0.000    0.000 exceptions.py:353(MethodNotAllowed)
+        1    0.000    0.000    0.000    0.000 exceptions.py:513(RequestedRangeNotSatisfiable)
+        1    0.000    0.000    0.000    0.000 _internal.py:64(_ColorStreamHandler)
+        1    0.000    0.000    0.000    0.000 structures.py:442(_omd_bucket)
+        1    0.000    0.000    0.000    0.000 exceptions.py:711(InternalServerError)
+        1    0.000    0.000    0.000    0.000 multipart.py:36(Data)
+        1    0.000    0.000    0.000    0.000 utils.py:150(header_property)
+        1    0.000    0.000    0.000    0.000 multipart.py:29(File)
+        1    0.000    0.000    0.000    0.000 tz.py:1036(tzstr)
+        1    0.000    0.000    0.000    0.000 _factories.py:8(_TzSingleton)
+        1    0.000    0.000    0.000    0.000 utils.py:2079(InvalidArnException)
+        1    0.000    0.000    0.000    0.000 _parser.py:1608(UnknownTimezoneWarning)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:235(AWSHTTPConnection)
+        1    0.000    0.000    0.000    0.000 waiter.py:23(WaiterDocumenter)
+        1    0.000    0.000    0.000    0.000 parsers.py:138(ResponseParserFactory)
+        1    0.000    0.000    0.000    0.000 serialize.py:672(RestJSONSerializer)
+        1    0.000    0.000    0.000    0.000 parsers.py:608(EC2QueryParser)
+        1    0.000    0.000    0.000    0.000 parsers.py:754(BaseEventStreamParser)
+        1    0.000    0.000    0.000    0.000 parsers.py:849(JSONParser)
+        1    0.000    0.000    0.000    0.000 special.py:19(RetryIDPCommunicationError)
+        1    0.000    0.000    0.000    0.000 standard.py:157(RetryContext)
+        1    0.000    0.000    0.000    0.000 configprovider.py:726(InstanceVarProvider)
+        1    0.000    0.000    0.000    0.000 standard.py:438(StandardRetryConditions)
+        1    0.000    0.000    0.000    0.000 handlers.py:372(DeprecatedServiceDocumenter)
+        1    0.000    0.000    0.000    0.000 retryhandler.py:173(RetryHandler)
+        1    0.000    0.000    0.000    0.000 model.py:78(DefinitionWithParams)
+        1    0.000    0.000    0.000    0.000 response.py:127(RawHandler)
+        1    0.000    0.000    0.000    0.000 history.py:25(__init__)
+        1    0.000    0.000    0.000    0.000 credentials.py:304(Credentials)
+        1    0.000    0.000    0.000    0.000 auth.py:483(S3SigV4Auth)
+        1    0.000    0.000    0.000    0.000 auth.py:537(S3ExpressAuth)
+        1    0.000    0.000    0.000    0.000 auth.py:1029(HmacV1QueryAuth)
+        1    0.000    0.000    0.000    0.000 model.py:33(InvalidShapeError)
+        1    0.000    0.000    0.000    0.000 model.py:37(OperationNotFoundError)
+        1    0.000    0.000    0.000    0.000 credentials.py:1250(SharedCredentialProvider)
+        1    0.000    0.000    0.000    0.000 model.py:289(ClientContextParameter)
+        1    0.000    0.000    0.000    0.000 visitor.py:59(Options)
+        1    0.000    0.000    0.000    0.000 functions.py:45(FunctionRegistry)
+        1    0.000    0.000    0.000    0.000 __init__.py:22(NullHandler)
+        1    0.000    0.000    0.000    0.000 __init__.py:64(UNSIGNED)
+        1    0.000    0.000    0.000    0.000 exceptions.py:472(WaiterError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:13(RequestException)
+        1    0.000    0.000    0.000    0.000 exceptions.py:14(PoolError)
+        1    0.000    0.000    0.000    0.000 waiter.py:86(NormalizedOperationMethod)
+        1    0.000    0.000    0.000    0.000 oauth2_auth.py:6(OAuth2)
+        1    0.000    0.000    0.000    0.000 base.py:554(_WeakNamespace)
+        1    0.000    0.000    0.000    0.000 errors.py:169(MissingRedirectURIError)
+        1    0.000    0.000    0.000    0.000 errors.py:173(MismatchingRedirectURIError)
+        1    0.000    0.000    0.000    0.000 errors.py:177(InvalidClientIdError)
+        1    0.000    0.000    0.000    0.000 errors.py:181(MissingClientIdError)
+        1    0.000    0.000    0.000    0.000 errors.py:194(MissingResponseTypeError)
+        1    0.000    0.000    0.000    0.000 errors.py:210(MissingCodeVerifierError)
+        1    0.000    0.000    0.000    0.000 errors.py:218(AccessDeniedError)
+        1    0.000    0.000    0.000    0.000 errors.py:233(UnsupportedCodeChallengeMethodError)
+        1    0.000    0.000    0.000    0.000 errors.py:255(ServerError)
+        1    0.000    0.000    0.000    0.000 errors.py:329(InvalidTokenError)
+        1    0.000    0.000    0.000    0.000 resource_owner_password_credentials.py:14(ResourceOwnerPasswordCredentialsGrant)
+        1    0.000    0.000    0.000    0.000 pre_configured.py:73(WebApplicationServer)
+        1    0.000    0.000    0.000    0.000 aws.py:2168(Preload)
+        1    0.000    0.000    0.000    0.000 exceptions.py:520(ClientError)
+        1    0.000    0.000    0.000    0.000 http.py:1641(RequestMockBuilder)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:285(Mozilla)
+        1    0.000    0.000    0.000    0.000 http.py:232(MediaUploadProgress)
+        1    0.000    0.000    0.000    0.000 http.py:783(_StreamSlice)
+        1    0.000    0.000    0.000    0.000 http.py:1609(HttpRequestMock)
+        1    0.000    0.000    0.000    0.000 version_header.py:1()
+        1    0.000    0.000    0.000    0.000 model.py:334(MediaModel)
+        1    0.000    0.000    0.000    0.000 socketserver.py:731(BaseRequestHandler)
+        1    0.000    0.000    0.000    0.000 socketserver.py:822(_SocketWriter)
+        1    0.000    0.000    0.000    0.000 request_token.py:21(RequestTokenEndpoint)
+        1    0.000    0.000    0.000    0.000 core.py:3962(_ErrorStop)
+        1    0.000    0.000    0.000    0.000 core.py:5743(Group)
+        1    0.000    0.000    0.000    0.000 core.py:4655(_Indent)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:253(BareQuotedString)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:484(InvalidMailbox)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:184(WhiteSpaceTokenList)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:335(MailboxList)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:823(ContentType)
+        1    0.000    0.000    0.000    0.000 __init__.py:738(GoogleLoginAuthentication)
+        1    0.000    0.000    0.000    0.000 util.py:80(_UnboundedCache)
+        1    0.000    0.000    0.000    0.000 util.py:168(UnboundedMemo)
+        1    0.000    0.000    0.000    0.000 exceptions.py:17(_ExceptionWordUnicodeSet)
+        1    0.000    0.000    0.000    0.000 results.py:100(List)
+        1    0.000    0.000    0.000    0.000 unicode.py:304(CJK)
+        1    0.000    0.000    0.000    0.000 auth.py:69(AuthBase)
+        1    0.000    0.000    0.000    0.000 discovery.py:134(APICoreVersionError)
+        1    0.000    0.000    0.000    0.000 cookies.py:582(SimpleCookie)
+        1    0.000    0.000    0.000    0.000 request.py:641(HTTPDefaultErrorHandler)
+        1    0.000    0.000    0.000    0.000 request.py:1416(UnknownHandler)
+        1    0.000    0.000    0.000    0.000 request.py:1641(DataHandler)
+        1    0.000    0.000    0.000    0.000 error.py:70(ContentTooShortError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:269(InvalidChunkLength)
+        1    0.000    0.000    0.000    0.000 request.py:184(ChunksAndContentLength)
+        1    0.000    0.000    0.000    0.000 base.py:63(AEADEncryptionContext)
+        1    0.000    0.000    0.000    0.000 base.py:261(_AEADEncryptionContext)
+        1    0.000    0.000    0.000    0.000 modes.py:41(ModeWithTweak)
+        1    0.000    0.000    0.000    0.000 hashes.py:196(SHAKE256)
+        1    0.000    0.000    0.000    0.000 __init__.py:239(MRUCache)
+        1    0.000    0.000    0.000    0.000 modes.py:186(CFB8)
+        1    0.000    0.000    0.000    0.000 algorithms.py:51(AES256)
+        1    0.000    0.000    0.000    0.000 protocols.py:66(Protocol)
+        1    0.000    0.000    0.000    0.000 protocols.py:109(BufferedProtocol)
+        1    0.000    0.000    0.000    0.000 locks.py:421(BoundedSemaphore)
+        1    0.000    0.000    0.000    0.000 transports.py:46(ReadTransport)
+        1    0.000    0.000    0.000    0.000 client.py:176(HTTPMessage)
+        1    0.000    0.000    0.000    0.000 questions.py:116(Text)
+        1    0.000    0.000    0.000    0.000 api_handler.py:5(APIHandler)
+        1    0.000    0.000    0.000    0.000 import_export_handler.py:8(ImportExportHandler)
+        1    0.000    0.000    0.000    0.000 ssl.py:170(_TLSContentType)
+        1    0.000    0.000    0.000    0.000 prompt.py:304(Prompt)
+        1    0.000    0.000    0.000    0.000 formatters.py:237(FormattingOtherString)
+        1    0.000    0.000    0.000    0.000 events.py:17(KeyEventGenerator)
+        1    0.000    0.000    0.000    0.000 parser.py:17(__init__)
+        1    0.000    0.000    0.000    0.000 feedparser.py:532(BytesFeedParser)
+        1    0.000    0.000    0.000    0.000 abc.py:276(SourceLoader)
+        1    0.000    0.000    0.000    0.000 abc.py:75(MetaPathFinder)
+        1    0.000    0.000    0.000    0.000 _adapters.py:7(SpecLoaderAdapter)
+        1    0.000    0.000    0.000    0.000 __init__.py:343(_automodule)
+        1    0.000    0.000    0.000    0.000 errors.py:1(ValidationError)
+        1    0.000    0.000    0.000    0.000 lexer.py:37(LexerMeta)
+        1    0.000    0.000    0.000    0.000 lexer.py:482(words)
+        1    0.000    0.000    0.000    0.000 __init__.py:687(KeywordCaseFilter)
+        1    0.000    0.000    0.000    0.000 __init__.py:907(TokenMergeFilter)
+        1    0.000    0.000    0.000    0.000 errors.py:97(NonPrintableDefect)
+        1    0.000    0.000    0.000    0.000 zipfile.py:785(_Tellable)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 _export_format.py:1()
+        1    0.000    0.000    0.000    0.000 __init__.py:81(_make_getattr)
+        1    0.000    0.000    0.000    0.000 _make.py:284(_Attributes)
+        1    0.000    0.000    0.000    0.000 state_core.py:13(StateCore)
+        1    0.000    0.000    0.000    0.000 numbers.py:12(Number)
+        1    0.000    0.000    0.000    0.000 console.py:268(ConsoleRenderable)
+        1    0.000    0.000    0.000    0.000 console.py:330(__init__)
+        1    0.000    0.000    0.000    0.000 parser_core.py:36(ParserCore)
+        1    0.000    0.000    0.000    0.000 argparse.py:1021(_AppendAction)
+        1    0.000    0.000    0.000    0.000 argparse.py:1109(_HelpAction)
+        1    0.000    0.000    0.000    0.000 ruler.py:60(RuleOptionsType)
+        1    0.000    0.000    0.000    0.000 error.py:4(Mark)
+        1    0.000    0.000    0.000    0.000 tokens.py:2(Token)
+        1    0.000    0.000    0.000    0.000 pathlib.py:379(_RecursiveWildcardSelector)
+        1    0.000    0.000    0.000    0.000 asn1.py:358(DerBoolean)
+        1    0.000    0.000    0.000    0.000 _endian.py:23(_swapped_meta)
+        1    0.000    0.000    0.000    0.000 threading.py:1370(Timer)
+        1    0.000    0.000    0.000    0.000 threading.py:1421(_DummyThread)
+        1    0.000    0.000    0.000    0.000 {method 'clear' of 'list' objects}
+        1    0.000    0.000    0.000    0.000 _argparse.py:151(_render_actions)
+        1    0.000    0.000    0.000    0.000 _build.py:6(build_class)
+        1    0.000    0.000    0.000    0.000 tools.py:274(Entrypoint)
+        1    0.000    0.000    0.000    0.000 _utility.py:277(platform)
+        1    0.000    0.000    0.000    0.000 _doc_utils.py:233(parameter_types)
+        1    0.000    0.000    0.000    0.000 _utility.py:315(memorize)
+        1    0.000    0.000    0.000    0.000 version_api.py:27(VersionApi)
+        1    0.000    0.000    0.000    0.000 pydoc.py:1986(__init__)
+        1    0.000    0.000    0.000    0.000 discovery.py:398(ResourceGroup)
+        1    0.000    0.000    0.000    0.000 discovery.py:418(CacheDecoder)
+        1    0.000    0.000    0.000    0.000 ws_client.py:43(_IgnoredIO)
+        1    0.000    0.000    0.000    0.000 authentication_api.py:27(AuthenticationApi)
+        1    0.000    0.000    0.000    0.000 exceptions.py:20(ApiTypeError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:84(ApiException)
+        1    0.000    0.000    0.000    0.000 context.py:310(ForkServerContext)
+        1    0.000    0.000    0.000    0.000 exc.py:66(BadHeader)
+        1    0.000    0.000    0.000    0.000 process.py:349(AuthenticationString)
+        1    0.000    0.000    0.000    0.000 nodes.py:416(Import)
+        1    0.000    0.000    0.000    0.000 nodes.py:54(NodeType)
+        1    0.000    0.000    0.000    0.000 exceptions.py:147(TemplateRuntimeError)
+        1    0.000    0.000    0.000    0.000 cli.py:293(ScriptInfo)
+        1    0.000    0.000    0.000    0.000 rules.py:181(Submount)
+        1    0.000    0.000    0.000    0.000 rules.py:232(RuleTemplate)
+        1    0.000    0.000    0.000    0.000 rules.py:258(RuleTemplateFactory)
+        1    0.000    0.000    0.000    0.000 pickle.py:73(PickleError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:832(Aborter)
+        1    0.000    0.000    0.000    0.000 structures.py:92(ImmutableTypeConversionDict)
+        1    0.000    0.000    0.000    0.000 multipart.py:47(NeedData)
+        1    0.000    0.000    0.000    0.000 structures.py:789(ImmutableDict)
+        1    0.000    0.000    0.000    0.000 structures.py:826(ImmutableOrderedMultiDict)
+        1    0.000    0.000    0.000    0.000 structures.py:846(CallbackDict)
+        1    0.000    0.000    0.000    0.000 multipart.py:23(Field)
+        1    0.000    0.000    0.000    0.000 multipart.py:42(Epilogue)
+        1    0.000    0.000    0.000    0.000 tz.py:373(_tzfile)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:247(AWSHTTPSConnectionPool)
+        1    0.000    0.000    0.000    0.000 params.py:157(ResponseParamsDocumenter)
+        1    0.000    0.000    0.000    0.000 validate.py:369(ParamValidationDecorator)
+        1    0.000    0.000    0.000    0.000 handlers.py:961(__init__)
+        1    0.000    0.000    0.000    0.000 configprovider.py:793(EnvironmentProvider)
+        1    0.000    0.000    0.000    0.000 configprovider.py:884(ConstantProvider)
+        1    0.000    0.000    0.000    0.000 standard.py:373(ModeledRetryableChecker)
+        1    0.000    0.000    0.000    0.000 retryhandler.py:260(MaxAttemptsDecorator)
+        1    0.000    0.000    0.000    0.000 monitoring.py:164(BaseMonitorEvent)
+        1    0.000    0.000    0.000    0.000 errorfactory.py:57(ClientExceptionsFactory)
+        1    0.000    0.000    0.000    0.000 client.py:16(Boto3ClientDocumenter)
+        1    0.000    0.000    0.000    0.000 collection.py:28(CollectionDocumenter)
+        1    0.000    0.000    0.000    0.000 waiter.py:27(WaiterResourceDocumenter)
+        1    0.000    0.000    0.000    0.000 action.py:28(ServiceAction)
+        1    0.000    0.000    0.000    0.000 action.py:171(WaiterAction)
+        1    0.000    0.000    0.000    0.000 model.py:154(Waiter)
+        1    0.000    0.000    0.000    0.000 hooks.py:29(NodeList)
+        1    0.000    0.000    0.000    0.000 auth.py:107(BaseSigner)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:525(TreeRule)
+        1    0.000    0.000    0.000    0.000 useragent.py:104(RawStringUserAgentComponent)
+        1    0.000    0.000    0.000    0.000 auth.py:707(SigV4QueryAuth)
+        1    0.000    0.000    0.000    0.000 credentials.py:940(CredentialProvider)
+        1    0.000    0.000    0.000    0.000 tokens.py:159(TokenProviderChain)
+        1    0.000    0.000    0.000    0.000 model.py:284(ContextParameter)
+        1    0.000    0.000    0.000    0.000 model.py:931(ShapeNameGenerator)
+        1    0.000    0.000    0.000    0.000 paginate.py:173(PaginatorModel)
+        1    0.000    0.000    0.000    0.000 exceptions.py:47(LexerError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:65(ArityError)
+        1    0.000    0.000    0.000    0.000 visitor.py:74(_Expression)
+        1    0.000    0.000    0.000    0.000 visitor.py:83(Visitor)
+        1    0.000    0.000    0.000    0.000 exceptions.py:745(MissingServiceIdError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:86(ChunkedEncodingError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:4(HTTPError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:95(TimeoutError)
+        1    0.000    0.000    0.000    0.000 session.py:1219(SubsetChainConfigFactory)
+        1    0.000    0.000    0.000    0.000 docstring.py:90(WaiterDocstring)
+        1    0.000    0.000    0.000    0.000 exceptions.py:25(RequestError)
+        1    0.000    0.000    0.000    0.000 errors.py:225(UnsupportedResponseTypeError)
+        1    0.000    0.000    0.000    0.000 errors.py:379(CustomOAuth2Error)
+        1    0.000    0.000    0.000    0.000 pre_configured.py:20(Server)
+        1    0.000    0.000    0.000    0.000 client_credentials.py:14(ClientCredentialsGrant)
+        1    0.000    0.000    0.000    0.000 google_auth_httplib2.py:60(Request)
+        1    0.000    0.000    0.000    0.000 universe.py:22(EmptyUniverseError)
+        1    0.000    0.000    0.000    0.000 http.py:259(MediaDownloadProgress)
+        1    0.000    0.000    0.000    0.000 uuid.py:78(SafeUUID)
+        1    0.000    0.000    0.000    0.000 model.py:54(Model)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:159(GenericBrowser)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:405(Grail)
+        1    0.000    0.000    0.000    0.000 handlers.py:537(IISCGIHandler)
+        1    0.000    0.000    0.000    0.000 simple_server.py:28(ServerHandler)
+        1    0.000    0.000    0.000    0.000 utils.py:17(filter_params)
+        1    0.000    0.000    0.000    0.000 core.py:5780(Dict)
+        1    0.000    0.000    0.000    0.000 core.py:5178(_NullToken)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:708(Value)
+        1    0.000    0.000    0.000    0.000 core.py:2368(NoMatch)
+        1    0.000    0.000    0.000    0.000 core.py:3659(StringEnd)
+        1    0.000    0.000    0.000    0.000 results.py:16()
+        1    0.000    0.000    0.000    0.000 readers.py:107(NamespaceReader)
+        1    0.000    0.000    0.000    0.000 nonmultipart.py:14(MIMENonMultipart)
+        1    0.000    0.000    0.000    0.000 multipart.py:13(MIMEMultipart)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:387(SingleAddressHeader)
+        1    0.000    0.000    0.000    0.000 connection.py:825(_WrappedAndVerifiedSocket)
+        1    0.000    0.000    0.000    0.000 exceptions.py:85(MaxRetryError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:59(ConnectionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:43(RequestError)
+        1    0.000    0.000    0.000    0.000 _request_methods.py:51(__init__)
+        1    0.000    0.000    0.000    0.000 base.py:251(_AEADDecryptionContext)
+        1    0.000    0.000    0.000    0.000 modes.py:152(ECB)
+        1    0.000    0.000    0.000    0.000 modes.py:49(ModeWithNonce)
+        1    0.000    0.000    0.000    0.000 backend.py:131(_RC2)
+        1    0.000    0.000    0.000    0.000 base_subprocess.py:281(ReadSubprocessPipeProto)
+        1    0.000    0.000    0.000    0.000 padding.py:16(PKCS1v15)
+        1    0.000    0.000    0.000    0.000 hashes.py:142(SHA384)
+        1    0.000    0.000    0.000    0.000 padding.py:77(MGF)
+        1    0.000    0.000    0.000    0.000 exceptions.py:47(LimitOverrunError)
+        1    0.000    0.000    0.000    0.000 protocols.py:162(DatagramProtocol)
+        1    0.000    0.000    0.000    0.000 events.py:659(_Local)
+        1    0.000    0.000    0.000    0.000 transports.py:172(DatagramTransport)
+        1    0.000    0.000    0.000    0.000 mixins.py:9(_LoopBoundMixin)
+        1    0.000    0.000    0.000    0.000 queues.py:11(QueueEmpty)
+        1    0.000    0.000    0.000    0.000 provider.py:3(RemoteStub)
+        1    0.000    0.000    0.000    0.000 _http_client.py:53(Request)
+        1    0.000    0.000    0.000    0.000 questions.py:126(Password)
+        1    0.000    0.000    0.000    0.000 pyfzf.py:34(FzfPrompt)
+        1    0.000    0.000    0.000    0.000 prompt.py:328(FloatPrompt)
+        1    0.000    0.000    0.000    0.000 plugin_handler.py:6(PluginHandler)
+        1    0.000    0.000    0.000    0.000 prompt.py:11(PromptError)
+        1    0.000    0.000    0.000    0.000 questions.py:166(Checkbox)
+        1    0.000    0.000    0.000    0.000 formatters.py:116(ParameterizingProxyString)
+        1    0.000    0.000    0.000    0.000 formatters.py:51(ParameterizingString)
+        1    0.000    0.000    0.000    0.000 parser.py:71(HeaderParser)
+        1    0.000    0.000    0.000    0.000 parser.py:126(BytesHeaderParser)
+        1    0.000    0.000    0.000    0.000 _other.py:1(OtherChoice)
+        1    0.000    0.000    0.000    0.000 calendar.py:162(setfirstweekday)
+        1    0.000    0.000    0.000    0.000 _common.py:101(_)
+        1    0.000    0.000    0.000    0.000 calendar.py:594(LocaleHTMLCalendar)
+        1    0.000    0.000    0.000    0.000 _adapters.py:143(__init__)
+        1    0.000    0.000    0.000    0.000 themes.py:84(Default)
+        1    0.000    0.000    0.000    0.000 util.py:30(ClassNotFound)
+        1    0.000    0.000    0.000    0.000 util.py:265(Future)
+        1    0.000    0.000    0.000    0.000 __init__.py:826(Lookup)
+        1    0.000    0.000    0.000    0.000 __init__.py:923(__init__)
+        1    0.000    0.000    0.000    0.000 calendar.py:26(IllegalMonthError)
+        1    0.000    0.000    0.000    0.000 calendar.py:33(IllegalWeekdayError)
+        1    0.000    0.000    0.000    0.000 calendar.py:548(different_locale)
+        1    0.000    0.000    0.000    0.000 validators.py:292(_IsCallableValidator)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 csv.py:69(unix_dialect)
+        1    0.000    0.000    0.000    0.000 highlighter.py:50(NullHighlighter)
+        1    0.000    0.000    0.000    0.000 color.py:288(ColorParseError)
+        1    0.000    0.000    0.000    0.000 argparse.py:929(_StoreAction)
+        1    0.000    0.000    0.000    0.000 argparse.py:1086(_CountAction)
+        1    0.000    0.000    0.000    0.000 parse.py:323(DefragResult)
+        1    0.000    0.000    0.000    0.000 decoder.py:20(JSONDecodeError)
+        1    0.000    0.000    0.000    0.000 tokens.py:96(ScalarToken)
+        1    0.000    0.000    0.000    0.000 dumper.py:9(BaseDumper)
+        1    0.000    0.000    0.000    0.000 loader.py:41(Loader)
+        1    0.000    0.000    0.000    0.000 parse.py:136(_ResultMixinStr)
+        1    0.000    0.000    0.000    0.000 pathlib.py:835(PurePosixPath)
+        1    0.000    0.000    0.000    0.000 RSA.py:580(InputComps)
+        1    0.000    0.000    0.000    0.000 asn1.py:708(DerObjectId)
+        1    0.000    0.000    0.000    0.000 asn1.py:826(DerBitString)
+        1    0.000    0.000    0.000    0.000 _endian.py:48(BigEndianStructure)
+        1    0.000    0.000    0.000    0.000 exceptions.py:29(EOF)
+        1    0.000    0.000    0.000    0.000 exceptions.py:34(TIMEOUT)
+        1    0.000    0.000    0.000    0.000 typing.py:2586(final)
+        1    0.000    0.000    0.000    0.000 {built-in method _thread._set_sentinel}
+        1    0.000    0.000    0.000    0.000 backend.py:270(activate_osrandom_engine)
+        1    0.000    0.000    0.000    0.000 _figure.py:54(_set_interactive)
+        1    0.000    0.000    0.000    0.000 duration.py:35(DurationError)
+        1    0.000    0.000    0.000    0.000 kube_config.py:146(CommandTokenSource)
+        1    0.000    0.000    0.000    0.000 client.py:49(meta_request)
+        1    0.000    0.000    0.000    0.000 pydoc.py:2219(ModuleScanner)
+        1    0.000    0.000    0.000    0.000 exceptions.py:91(ForbiddenError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:21(WebSocketException)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:37(WebSocketPayloadException)
+        1    0.000    0.000    0.000    0.000 apis_api.py:27(ApisApi)
+        1    0.000    0.000    0.000    0.000 exceptions.py:49(ApiValueError)
+        1    0.000    0.000    0.000    0.000 pool.py:57(RemoteTraceback)
+        1    0.000    0.000    0.000    0.000 exc.py:36(BadTimeSignature)
+        1    0.000    0.000    0.000    0.000 tag.py:205(TagDateTime)
+        1    0.000    0.000    0.000    0.000 exc.py:92(BadPayload)
+        1    0.000    0.000    0.000    0.000 signer.py:31(NoneAlgorithm)
+        1    0.000    0.000    0.000    0.000 config_exception.py:16(ConfigException)
+        1    0.000    0.000    0.000    0.000 nodes.py:312(Extends)
+        1    0.000    0.000    0.000    0.000 nodes.py:443(ExprStmt)
+        1    0.000    0.000    0.000    0.000 exceptions.py:163(FilterArgumentError)
+        1    0.000    0.000    0.000    0.000 converters.py:230(UUIDConverter)
+        1    0.000    0.000    0.000    0.000 exceptions.py:147(NoMatch)
+        1    0.000    0.000    0.000    0.000 exceptions.py:20(RoutingException)
+        1    0.000    0.000    0.000    0.000 cli.py:849(SeparatedPathType)
+        1    0.000    0.000    0.000    0.000 decorators.py:50(make_pass_decorator)
+        1    0.000    0.000    0.000    0.000 accept.py:316(CharsetAccept)
+        1    0.000    0.000    0.000    0.000 structures.py:35(ImmutableList)
+        1    0.000    0.000    0.000    0.000 serving.py:866(ThreadedWSGIServer)
+        1    0.000    0.000    0.000    0.000 exceptions.py:325(Forbidden)
+        1    0.000    0.000    0.000    0.000 exceptions.py:405(RequestTimeout)
+        1    0.000    0.000    0.000    0.000 structures.py:47(TypeConversionDict)
+        1    0.000    0.000    0.000    0.000 structures.py:809(ImmutableMultiDict)
+        1    0.000    0.000    0.000    0.000 file_storage.py:162(FileMultiDict)
+        1    0.000    0.000    0.000    0.000 multipart.py:18(Preamble)
+        1    0.000    0.000    0.000    0.000 _factories.py:25(_TzOffsetFactory)
+        1    0.000    0.000    0.000    0.000 _factories.py:55(_TzStrFactory)
+        1    0.000    0.000    0.000    0.000 ElementPath.py:350(_SelectorContext)
+        1    0.000    0.000    0.000    0.000 awsrequest.py:239(AWSHTTPSConnection)
+        1    0.000    0.000    0.000    0.000 parsers.py:837(EventStreamJSONParser)
+        1    0.000    0.000    0.000    0.000 parsers.py:842(EventStreamXMLParser)
+        1    0.000    0.000    0.000    0.000 eventstream.py:32(DuplicateHeader)
+        1    0.000    0.000    0.000    0.000 eventstream.py:40(InvalidHeadersLength)
+        1    0.000    0.000    0.000    0.000 eventstream.py:48(InvalidPayloadLength)
+        1    0.000    0.000    0.000    0.000 eventstream.py:64(NoInitialResponseError)
+        1    0.000    0.000    0.000    0.000 eventstream.py:334(EventStreamMessage)
+        1    0.000    0.000    0.000    0.000 serialize.py:315(EC2Serializer)
+        1    0.000    0.000    0.000    0.000 base.py:1(BaseRetryBackoff)
+        1    0.000    0.000    0.000    0.000 base.py:11(BaseRetryableChecker)
+        1    0.000    0.000    0.000    0.000 monitoring.py:252(APICallAttemptEvent)
+        1    0.000    0.000    0.000    0.000 special.py:30(RetryDDBChecksumError)
+        1    0.000    0.000    0.000    0.000 retryhandler.py:338(ServiceErrorCodeChecker)
+        1    0.000    0.000    0.000    0.000 retryhandler.py:371(CRC32Checker)
+        1    0.000    0.000    0.000    0.000 configprovider.py:757(ScopedConfigProvider)
+        1    0.000    0.000    0.000    0.000 loaders.py:507(ExtrasProcessor)
+        1    0.000    0.000    0.000    0.000 utils.py:82(LazyLoadedWaiterModel)
+        1    0.000    0.000    0.000    0.000 docstring.py:30(ActionDocstring)
+        1    0.000    0.000    0.000    0.000 action.py:48(ActionDocumenter)
+        1    0.000    0.000    0.000    0.000 model.py:47(Action)
+        1    0.000    0.000    0.000    0.000 model.py:33(Identifier)
+        1    0.000    0.000    0.000    0.000 model.py:106(Parameter)
+        1    0.000    0.000    0.000    0.000 model.py:139(Request)
+        1    0.000    0.000    0.000    0.000 model.py:222(Collection)
+        1    0.000    0.000    0.000    0.000 history.py:19(BaseHistoryHandler)
+        1    0.000    0.000    0.000    0.000 httpchecksum.py:75(Crc32Checksum)
+        1    0.000    0.000    0.000    0.000 httpchecksum.py:99(CrtCrc32cChecksum)
+        1    0.000    0.000    0.000    0.000 auth.py:788(S3SigV4QueryAuth)
+        1    0.000    0.000    0.000    0.000 endpoint_provider.py:507(ErrorRule)
+        1    0.000    0.000    0.000    0.000 signers.py:554(S3PostPresigner)
+        1    0.000    0.000    0.000    0.000 credentials.py:1060(InstanceMetadataProvider)
+        1    0.000    0.000    0.000    0.000 paginate.py:697(ResultKeyIterator)
+        1    0.000    0.000    0.000    0.000 standard.py:70(RetryHandler)
+        1    0.000    0.000    0.000    0.000 standard.py:240(RetryPolicy)
+        1    0.000    0.000    0.000    0.000 standard.py:281(MaxAttemptsChecker)
+        1    0.000    0.000    0.000    0.000 exceptions.py:31(IncompleteExpressionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:115(EmptyExpressionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:30(HTTPError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:131(LocationParseError)
+        1    0.000    0.000    0.000    0.000 utils.py:27(ServiceContext)
+        1    0.000    0.000    0.000    0.000 exceptions.py:725(RefreshWithMFAUnsupportedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:212(UnknownSignatureVersionError)
+        1    0.000    0.000    0.000    0.000 docstring.py:85(ClientMethodDocstring)
+        1    0.000    0.000    0.000    0.000 exceptions.py:74(RetriesExceededError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:62(MaxRetryError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:81(HostChangedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:141(ResponseError)
+        1    0.000    0.000    0.000    0.000 utils.py:58(ClientAuthentication)
+        1    0.000    0.000    0.000    0.000 signature_only.py:17(SignatureOnlyEndpoint)
+        1    0.000    0.000    0.000    0.000 errors.py:119(InsecureTransportError)
+        1    0.000    0.000    0.000    0.000 errors.py:133(MissingTokenError)
+        1    0.000    0.000    0.000    0.000 errors.py:275(InvalidClientError)
+        1    0.000    0.000    0.000    0.000 pre_configured.py:112(MobileApplicationServer)
+        1    0.000    0.000    0.000    0.000 capture.py:4(Parser)
+        1    0.000    0.000    0.000    0.000 exceptions.py:38(UnknownAPIVersionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:88(DynamoDBOperationNotSupportedError)
+        1    0.000    0.000    0.000    0.000 base.py:538(Namespace)
+        1    0.000    0.000    0.000    0.000 http.py:1765(HttpMockSequence)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:295(Netscape)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:306(Galeon)
+        1    0.000    0.000    0.000    0.000 universe.py:28(UniverseMismatchError)
+        1    0.000    0.000    0.000    0.000 errors.py:190(UnexpectedBodyError)
+        1    0.000    0.000    0.000    0.000 errors.py:29(Error)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:352(Konqueror)
+        1    0.000    0.000    0.000    0.000 socketserver.py:661(_NoThreads)
+        1    0.000    0.000    0.000    0.000 socketserver.py:721(UnixStreamServer)
+        1    0.000    0.000    0.000    0.000 socketserver.py:724(UnixDatagramServer)
+        1    0.000    0.000    0.000    0.000 socketserver.py:841(DatagramRequestHandler)
+        1    0.000    0.000    0.000    0.000 server.py:130(HTTPServer)
+        1    0.000    0.000    0.000    0.000 server.py:142(ThreadingHTTPServer)
+        1    0.000    0.000    0.000    0.000 socketserver.py:717(ThreadingTCPServer)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:316(Chrome)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:328(Opera)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:338(Elinks)
+        1    0.000    0.000    0.000    0.000 core.py:4661(_IndentGreater)
+        1    0.000    0.000    0.000    0.000 core.py:4886(Located)
+        1    0.000    0.000    0.000    0.000 core.py:5047(OneOrMore)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:509(DotAtomText)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:842(HeaderLabel)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:860(InvalidMessageID)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:915(WhiteSpaceTerminal)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:935(EWWhiteSpaceTerminal)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:349(GroupList)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:809(ParameterizedHeaderValue)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:847(MsgID)
+        1    0.000    0.000    0.000    0.000 socks.py:67(Socks5Error)
+        1    0.000    0.000    0.000    0.000 util.py:101(_FifoCache)
+        1    0.000    0.000    0.000    0.000 unicode.py:8(_lazyclassproperty)
+        1    0.000    0.000    0.000    0.000 core.py:2453(_SingleCharLiteral)
+        1    0.000    0.000    0.000    0.000 core.py:3529(PositionToken)
+        1    0.000    0.000    0.000    0.000 error.py:8(HttpLib2ErrorWithResponse)
+        1    0.000    0.000    0.000    0.000 idna.py:144(Codec)
+        1    0.000    0.000    0.000    0.000 sync_handler.py:6(__init__)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:448(ObsRoute)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:692(Attribute)
+        1    0.000    0.000    0.000    0.000 exceptions.py:123(ContentDecodingError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:106(HostChangedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:158(NameResolutionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:202(ResponseError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:289(ProxySchemeUnknown)
+        1    0.000    0.000    0.000    0.000 exceptions.py:310(HeaderParsingError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:27(InvalidJSONError)
+        1    0.000    0.000    0.000    0.000 queue.py:23(Full)
+        1    0.000    0.000    0.000    0.000 exceptions.py:80(ConnectTimeout)
+        1    0.000    0.000    0.000    0.000 exceptions.py:87(ReadTimeout)
+        1    0.000    0.000    0.000    0.000 general_name.py:23(UnsupportedGeneralNameType)
+        1    0.000    0.000    0.000    0.000 unix_events.py:799(_UnixSubprocessTransport)
+        1    0.000    0.000    0.000    0.000 __init__.py:514(_Item)
+        1    0.000    0.000    0.000    0.000 padding.py:24(_Auto)
+        1    0.000    0.000    0.000    0.000 hashes.py:112(SHA1)
+        1    0.000    0.000    0.000    0.000 hashes.py:214(MD5)
+        1    0.000    0.000    0.000    0.000 hashes.py:256(SM3)
+        1    0.000    0.000    0.000    0.000 _serialization.py:62(BestAvailableEncryption)
+        1    0.000    0.000    0.000    0.000 ec.py:186(SECT571R1)
+        1    0.000    0.000    0.000    0.000 ec.py:221(SECT283K1)
+        1    0.000    0.000    0.000    0.000 exceptions.py:10(CancelledError)
+        1    0.000    0.000    0.000    0.000 locks.py:13(_ContextManagerMixin)
+        1    0.000    0.000    0.000    0.000 __init__.py:21(Python37DeprecationWarning)
+        1    0.000    0.000    0.000    0.000 __init__.py:35(Python37DeprecationWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:31(TransportError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:107(ResponseError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:66(ReauthFailError)
+        1    0.000    0.000    0.000    0.000 client.py:1470(UnknownProtocol)
+        1    0.000    0.000    0.000    0.000 client.py:1507(BadStatusLine)
+        1    0.000    0.000    0.000    0.000 client.py:1519(RemoteDisconnected)
+        1    0.000    0.000    0.000    0.000 _password.py:4(Password)
+        1    0.000    0.000    0.000    0.000 context_handler.py:6(ContextHandler)
+        1    0.000    0.000    0.000    0.000 plugin_handler.py:7(__init__)
+        1    0.000    0.000    0.000    0.000 formatters.py:175(FormattingString)
+        1    0.000    0.000    0.000    0.000 formatters.py:276(NullCallableString)
+        1    0.000    0.000    0.000    0.000 errors.py:12(EndOfInput)
+        1    0.000    0.000    0.000    0.000 _confirm.py:7(Confirm)
+        1    0.000    0.000    0.000    0.000 abc.py:267(FileLoader)
+        1    0.000    0.000    0.000    0.000 exceptions.py:1(ConnpyError)
+        1    0.000    0.000    0.000    0.000 api_handler.py:6(__init__)
+        1    0.000    0.000    0.000    0.000 _argparse.py:538(RawTextRichHelpFormatter)
+        1    0.000    0.000    0.000    0.000 lexer.py:470(default)
+        1    0.000    0.000    0.000    0.000 __init__.py:523(FileHash)
+        1    0.000    0.000    0.000    0.000 zipfile.py:44(BadZipFile)
+        1    0.000    0.000    0.000    0.000 socket.py:211(_GiveupOnSendfile)
+        1    0.000    0.000    0.000    0.000 setters.py:11(pipe)
+        1    0.000    0.000    0.000    0.000 exceptions.py:23(FrozenInstanceError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:39(AttrsAttributeNotFoundError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:47(NotAnAttrsClassError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:72(PythonTooOldError)
+        1    0.000    0.000    0.000    0.000 connection.py:1015(DummyConnection)
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 :1()
+        1    0.000    0.000    0.000    0.000 getpass.py:26(GetPassWarning)
+        1    0.000    0.000    0.000    0.000 theme.py:76(ThemeStackError)
+        1    0.000    0.000    0.000    0.000 configparser.py:255(InterpolationError)
+        1    0.000    0.000    0.000    0.000 configparser.py:265(InterpolationMissingOptionError)
+        1    0.000    0.000    0.000    0.000 configparser.py:341(MissingSectionHeaderError)
+        1    0.000    0.000    0.000    0.000 console.py:588(detect_legacy_windows)
+        1    0.000    0.000    0.000    0.000 highlighter.py:143(ISO8601Highlighter)
+        1    0.000    0.000    0.000    0.000 errors.py:25(MarkupError)
+        1    0.000    0.000    0.000    0.000 repr.py:23(ReprError)
+        1    0.000    0.000    0.000    0.000 emoji.py:23(NoEmoji)
+        1    0.000    0.000    0.000    0.000 argparse.py:964(_StoreConstAction)
+        1    0.000    0.000    0.000    0.000 argparse.py:1059(_AppendConstAction)
+        1    0.000    0.000    0.000    0.000 argparse.py:703(ArgumentDefaultsHelpFormatter)
+        1    0.000    0.000    0.000    0.000 markdown.py:87(UnknownElement)
+        1    0.000    0.000    0.000    0.000 argparse.py:766(ArgumentError)
+        1    0.000    0.000    0.000    0.000 argparse.py:987(_StoreTrueAction)
+        1    0.000    0.000    0.000    0.000 argparse.py:1156(_ChoicesPseudoAction)
+        1    0.000    0.000    0.000    0.000 markdown.py:263(TableHeaderElement)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:20(AddressValueError)
+        1    0.000    0.000    0.000    0.000 printer.py:256(_ErrConsoleProxy)
+        1    0.000    0.000    0.000    0.000 printer.py:250(_ConsoleProxy)
+        1    0.000    0.000    0.000    0.000 tokens.py:17(DirectiveToken)
+        1    0.000    0.000    0.000    0.000 events.py:64(ScalarEvent)
+        1    0.000    0.000    0.000    0.000 error.py:48(MarkedYAMLError)
+        1    0.000    0.000    0.000    0.000 events.py:21(CollectionStartEvent)
+        1    0.000    0.000    0.000    0.000 nodes.py:2(Node)
+        1    0.000    0.000    0.000    0.000 reader.py:24(ReaderError)
+        1    0.000    0.000    0.000    0.000 dumper.py:27(SafeDumper)
+        1    0.000    0.000    0.000    0.000 cyaml.py:51(CBaseDumper)
+        1    0.000    0.000    0.000    0.000 parser.py:69(ParserError)
+        1    0.000    0.000    0.000    0.000 emitter.py:17(ScalarAnalysis)
+        1    0.000    0.000    0.000    0.000 pathlib.py:348(_WildcardSelector)
+        1    0.000    0.000    0.000    0.000 pathlib.py:845(PureWindowsPath)
+        1    0.000    0.000    0.000    0.000 parse.py:144(_ResultMixinBytes)
+        1    0.000    0.000    0.000    0.000 asn1.py:699(DerNull)
+        1    0.000    0.000    0.000    0.000 __init__.py:240(c_char_p)
+        1    0.000    0.000    0.000    0.000 __init__.py:399(PyDLL)
+        1    0.000    0.000    0.000    0.000 functools.py:753()
+        1    0.000    0.000    0.000    0.000 _matrix.py:22(set_axes_color)
+        1    0.000    0.000    0.000    0.000 _matrix.py:29(set_canvas_color)
+        1    0.000    0.000    0.000    0.000 _matrix.py:36()
+        1    0.000    0.000    0.000    0.000 _matrix.py:39()
+        1    0.000    0.000    0.000    0.000 _http.py:45(ProxyError)
+        1    0.000    0.000    0.000    0.000 _http.py:48(ProxyTimeoutError)
+        1    0.000    0.000    0.000    0.000 _http.py:51(ProxyConnectionError)
+        1    0.000    0.000    0.000    0.000 watch.py:41(SimpleNamespace)
+        1    0.000    0.000    0.000    0.000 discovery.py:412(CacheEncoder)
+        1    0.000    0.000    0.000    0.000 exceptions.py:78(ResourceNotFoundError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:80(ResourceNotUniqueError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:83(KubernetesValidateMissing)
+        1    0.000    0.000    0.000    0.000 exceptions.py:87(BadRequestError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:99(GoneError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:101(UnprocessibleEntityError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:105(InternalServerError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:29(WebSocketProtocolException)
+        1    0.000    0.000    0.000    0.000 pool.py:63(ExceptionWithTraceback)
+        1    0.000    0.000    0.000    0.000 process.py:397(_MainProcess)
+        1    0.000    0.000    0.000    0.000 pool.py:794(MapResult)
+        1    0.000    0.000    0.000    0.000 util.py:385(ForkAwareLocal)
+        1    0.000    0.000    0.000    0.000 pool.py:906(IMapUnorderedIterator)
+        1    0.000    0.000    0.000    0.000 loaders.py:587(_TemplateModule)
+        1    0.000    0.000    0.000    0.000 url_safe.py:72(URLSafeSerializer)
+        1    0.000    0.000    0.000    0.000 url_safe.py:79(URLSafeTimedSerializer)
+        1    0.000    0.000    0.000    0.000 util.py:108(_platform_supports_abstract_sockets)
+        1    0.000    0.000    0.000    0.000 context.py:20(TimeoutError)
+        1    0.000    0.000    0.000    0.000 context.py:302(ForkContext)
+        1    0.000    0.000    0.000    0.000 context.py:306(SpawnContext)
+        1    0.000    0.000    0.000    0.000 nodes.py:288(Helper)
+        1    0.000    0.000    0.000    0.000 nodes.py:571(Literal)
+        1    0.000    0.000    0.000    0.000 nodes.py:804(Test)
+        1    0.000    0.000    0.000    0.000 nodes.py:947(Mul)
+        1    0.000    0.000    0.000    0.000 nodes.py:967(Add)
+        1    0.000    0.000    0.000    0.000 nodes.py:979(Mod)
+        1    0.000    0.000    0.000    0.000 nodes.py:1134(DerivedContextReference)
+        1    0.000    0.000    0.000    0.000 nodes.py:1147(Break)
+        1    0.000    0.000    0.000    0.000 compiler.py:293(CompilerExit)
+        1    0.000    0.000    0.000    0.000 exceptions.py:59(RequestAliasRedirect)
+        1    0.000    0.000    0.000    0.000 converters.py:12(ValidationError)
+        1    0.000    0.000    0.000    0.000 converters.py:173(IntegerConverter)
+        1    0.000    0.000    0.000    0.000 exceptions.py:141(WebsocketMismatch)
+        1    0.000    0.000    0.000    0.000 cli.py:37(NoAppException)
+        1    0.000    0.000    0.000    0.000 matcher.py:16(SlashRequired)
+        1    0.000    0.000    0.000    0.000 rules.py:207(EndpointPrefix)
+        1    0.000    0.000    0.000    0.000 pickle.py:97(_Stop)
+        1    0.000    0.000    0.000    0.000 exceptions.py:274(Abort)
+        1    0.000    0.000    0.000    0.000 exceptions.py:223(ClientDisconnected)
+        1    0.000    0.000    0.000    0.000 exceptions.py:175(BadRequest)
+        1    0.000    0.000    0.000    0.000 exceptions.py:389(NotAcceptable)
+        1    0.000    0.000    0.000    0.000 exceptions.py:435(Gone)
+        1    0.000    0.000    0.000    0.000 exceptions.py:500(UnsupportedMediaType)
+        1    0.000    0.000    0.000    0.000 exceptions.py:561(ImATeapot)
+        1    0.000    0.000    0.000    0.000 exceptions.py:574(UnprocessableEntity)
+        1    0.000    0.000    0.000    0.000 exceptions.py:598(FailedDependency)
+        1    0.000    0.000    0.000    0.000 exceptions.py:667(TooManyRequests)
+        1    0.000    0.000    0.000    0.000 exceptions.py:688(RequestHeaderFieldsTooLarge)
+        1    0.000    0.000    0.000    0.000 multipart.py:14(Event)
+        1    0.000    0.000    0.000    0.000 ElementTree.py:106(ParseError)
+        1    0.000    0.000    0.000    0.000 parsers.py:184(ResponseParserError)
+        1    0.000    0.000    0.000    0.000 _factories.py:19(_TzFactory)
+        1    0.000    0.000    0.000    0.000 tz.py:1156(_tzicalvtzcomp)
+        1    0.000    0.000    0.000    0.000 eventstream.py:26(ParserError)
+        1    0.000    0.000    0.000    0.000 eventstream.py:56(ChecksumMismatch)
+        1    0.000    0.000    0.000    0.000 retryhandler.py:401(ExceptionRaiser)
+        1    0.000    0.000    0.000    0.000 handlers.py:960(ClientMethodAlias)
+        1    0.000    0.000    0.000    0.000 retryhandler.py:323(HTTPStatusCodeChecker)
+        1    0.000    0.000    0.000    0.000 retryhandler.py:357(MultiChecker)
+        1    0.000    0.000    0.000    0.000 configprovider.py:645(BaseProvider)
+        1    0.000    0.000    0.000    0.000 docstring.py:35(LoadReloadDocstring)
+        1    0.000    0.000    0.000    0.000 docstring.py:40(SubResourceDocstring)
+        1    0.000    0.000    0.000    0.000 docstring.py:55(ReferenceDocstring)
+        1    0.000    0.000    0.000    0.000 attr.py:18(ResourceShapeDocumenter)
+        1    0.000    0.000    0.000    0.000 subresource.py:28(SubResourceDocumenter)
+        1    0.000    0.000    0.000    0.000 docstring.py:65(CollectionMethodDocstring)
+        1    0.000    0.000    0.000    0.000 docstring.py:70(BatchActionDocstring)
+        1    0.000    0.000    0.000    0.000 docstring.py:75(ResourceWaiterDocstring)
+        1    0.000    0.000    0.000    0.000 action.py:95(BatchAction)
+        1    0.000    0.000    0.000    0.000 auth.py:558(S3ExpressPostAuth)
+        1    0.000    0.000    0.000    0.000 auth.py:812(S3SigV4PostAuth)
+        1    0.000    0.000    0.000    0.000 auth.py:1082(HmacV1PostAuth)
+        1    0.000    0.000    0.000    0.000 auth.py:1122(BearerAuth)
+        1    0.000    0.000    0.000    0.000 httpchecksum.py:112(Sha1Checksum)
+        1    0.000    0.000    0.000    0.000 httpchecksum.py:123(Sha256Checksum)
+        1    0.000    0.000    0.000    0.000 auth.py:115(TokenSigner)
+        1    0.000    0.000    0.000    0.000 discovery.py:29(EndpointDiscoveryRequired)
+        1    0.000    0.000    0.000    0.000 model.py:768(UnresolvableShapeMap)
+        1    0.000    0.000    0.000    0.000 exceptions.py:99(JMESPathTypeError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:757(SSOError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:776(CapacityNotAvailableError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:780(InvalidProxiesConfigError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:795(FlexibleChecksumError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:803(EndpointProviderError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:809(EndpointResolutionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:815(UnknownEndpointResolutionBuiltInName)
+        1    0.000    0.000    0.000    0.000 exceptions.py:34(ConnectionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:38(ProxyError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:42(SSLError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:46(Timeout)
+        1    0.000    0.000    0.000    0.000 exceptions.py:55(ConnectTimeout)
+        1    0.000    0.000    0.000    0.000 exceptions.py:70(TooManyRedirects)
+        1    0.000    0.000    0.000    0.000 exceptions.py:74(MissingSchema)
+        1    0.000    0.000    0.000    0.000 exceptions.py:90(ContentDecodingError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:94(StreamConsumedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:8(HTTPWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:36(SSLError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:46(DecodeError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:51(ProtocolError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:90(TimeoutStateError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:104(ReadTimeoutError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:111(ConnectTimeoutError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:116(EmptyPoolError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:126(LocationValueError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:147(SecurityWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:152(InsecureRequestWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:162(InsecurePlatformWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:82(ApiVersionNotFoundError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:129(SSLError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:133(ConnectionClosedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:160(NoCredentialsError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:49(DataNotFoundError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:717(InfiniteLoopConfigError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:713(InvalidConfigError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:705(StubAssertionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:680(InvalidS3UsEast1RegionalEndpointConfigError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:662(InvalidMaxRetryAttemptsError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:653(InvalidRetryConfigurationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:626(UnsupportedS3ConfigurationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:607(InvalidHostLabelError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:601(UnsupportedS3ControlArnError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:583(InvalidS3AddressingStyleError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:567(ImminentRemovalWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:561(UnsupportedTLSVersionWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:508(UnknownClientMethodError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:490(InvalidExpressionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:453(ChecksumError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:449(OperationNotPageableError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:364(UnknownKeyError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:357(ParamValidationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:278(UnknownFIPSEndpointError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:233(BaseEndpointResolverError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:222(ServiceNotInRegionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:342(ValidationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:293(ProfileNotFound)
+        1    0.000    0.000    0.000    0.000 exceptions.py:199(CredentialRetrievalError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:4(JMESPathError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:88(VariadictArityError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:121(UnknownFunctionError)
+        1    0.000    0.000    0.000    0.000 docstring.py:95(PaginatorDocstring)
+        1    0.000    0.000    0.000    0.000 handlers.py:483(BaseCGIHandler)
+        1    0.000    0.000    0.000    0.000 errors.py:62(InsecureTransportError)
+        1    0.000    0.000    0.000    0.000 errors.py:67(InvalidSignatureMethodError)
+        1    0.000    0.000    0.000    0.000 errors.py:75(InvalidClientError)
+        1    0.000    0.000    0.000    0.000 pre_configured.py:7(WebApplicationServer)
+        1    0.000    0.000    0.000    0.000 errors.py:124(MismatchingStateError)
+        1    0.000    0.000    0.000    0.000 errors.py:129(MissingCodeError)
+        1    0.000    0.000    0.000    0.000 errors.py:156(InvalidRequestFatalError)
+        1    0.000    0.000    0.000    0.000 errors.py:304(UnauthorizedClientError)
+        1    0.000    0.000    0.000    0.000 errors.py:312(UnsupportedGrantTypeError)
+        1    0.000    0.000    0.000    0.000 errors.py:320(UnsupportedTokenTypeError)
+        1    0.000    0.000    0.000    0.000 errors.py:357(ConsentRequired)
+        1    0.000    0.000    0.000    0.000 pre_configured.py:184(BackendApplicationServer)
+        1    0.000    0.000    0.000    0.000 _utilities.py:32(__init__)
+        1    0.000    0.000    0.000    0.000 exceptions.py:51(ResourceNotExistsError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:120(PythonDeprecationWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:116(DynamoDBNeedsKeyConditionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:19(Boto3Error)
+        1    0.000    0.000    0.000    0.000 exceptions.py:23(ResourceLoadException)
+        1    0.000    0.000    0.000    0.000 exceptions.py:29(NoVersionFound)
+        1    0.000    0.000    0.000    0.000 exceptions.py:80(S3TransferFailedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:104(DynamoDBNeedsConditionError)
+        1    0.000    0.000    0.000    0.000 errors.py:107(InvalidJsonError)
+        1    0.000    0.000    0.000    0.000 errors.py:113(UnknownFileType)
+        1    0.000    0.000    0.000    0.000 errors.py:119(UnknownLinkType)
+        1    0.000    0.000    0.000    0.000 errors.py:125(UnknownApiNameOrVersion)
+        1    0.000    0.000    0.000    0.000 errors.py:131(UnacceptableMimeTypeError)
+        1    0.000    0.000    0.000    0.000 errors.py:155(InvalidNotificationError)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:187(BackgroundBrowser)
+        1    0.000    0.000    0.000    0.000 webbrowser.py:15(Error)
+        1    0.000    0.000    0.000    0.000 socketserver.py:713(ForkingUDPServer)
+        1    0.000    0.000    0.000    0.000 socketserver.py:714(ForkingTCPServer)
+        1    0.000    0.000    0.000    0.000 socketserver.py:716(ThreadingUDPServer)
+        1    0.000    0.000    0.000    0.000 socketserver.py:729(ThreadingUnixDatagramServer)
+        1    0.000    0.000    0.000    0.000 error.py:27(UnimplementedDigestAuthOptionError)
+        1    0.000    0.000    0.000    0.000 error.py:35(MalformedHeader)
+        1    0.000    0.000    0.000    0.000 error.py:43(ServerNotFoundError)
+        1    0.000    0.000    0.000    0.000 error.py:47(ProxiesUnavailableError)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:271(UniqueUnstructuredHeader)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:199(Phrase)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:210(Atom)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:214(Token)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:505(DotAtom)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:514(NoFoldLiteral)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:702(Section)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:856(MessageID)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:864(Header)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:925(ValueTerminal)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:830(ContentDisposition)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:836(ContentTransferEncoding)
+        1    0.000    0.000    0.000    0.000 __init__.py:848(AllHosts)
+        1    0.000    0.000    0.000    0.000 gzip.py:117(BadGzipFile)
+        1    0.000    0.000    0.000    0.000 socks.py:55(ProxyError)
+        1    0.000    0.000    0.000    0.000 socks.py:59(GeneralProxyError)
+        1    0.000    0.000    0.000    0.000 socks.py:71(Socks4Error)
+        1    0.000    0.000    0.000    0.000 socks.py:75(HTTPError)
+        1    0.000    0.000    0.000    0.000 error.py:2(HttpLib2Error)
+        1    0.000    0.000    0.000    0.000 exceptions.py:254(ParseException)
+        1    0.000    0.000    0.000    0.000 exceptions.py:274(ParseFatalException)
+        1    0.000    0.000    0.000    0.000 models.py:206(RequestHooksMixin)
+        1    0.000    0.000    0.000    0.000 readers.py:27(files)
+        1    0.000    0.000    0.000    0.000 auth.py:99(HTTPProxyAuth)
+        1    0.000    0.000    0.000    0.000 idna.py:216(IncrementalEncoder)
+        1    0.000    0.000    0.000    0.000 idna.py:251(IncrementalDecoder)
+        1    0.000    0.000    0.000    0.000 idna.py:290(StreamWriter)
+        1    0.000    0.000    0.000    0.000 idna.py:293(StreamReader)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:652(MIMEVersion)
+        1    0.000    0.000    0.000    0.000 response.py:110(GzipDecoderState)
+        1    0.000    0.000    0.000    0.000 exceptions.py:146(FileModeWarning)
+        1    0.000    0.000    0.000    0.000 cookies.py:145(CookieError)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:1244(Absent)
+        1    0.000    0.000    0.000    0.000 cookiejar.py:1774(LoadError)
+        1    0.000    0.000    0.000    0.000 core.py:20(IDNABidiError)
+        1    0.000    0.000    0.000    0.000 cookies.py:170(CookieConflictError)
+        1    0.000    0.000    0.000    0.000 challenges.py:263(name)
+        1    0.000    0.000    0.000    0.000 exceptions.py:18(HTTPError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:70(DecodeError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:117(TimeoutStateError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:166(EmptyPoolError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:170(FullPoolError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:174(ClosedPoolError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:209(SecurityWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:213(InsecureRequestWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:217(NotOpenSSLWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:225(InsecurePlatformWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:229(DependencyWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:236(ResponseNotChunked)
+        1    0.000    0.000    0.000    0.000 exceptions.py:240(BodyNotHttplibCompatible)
+        1    0.000    0.000    0.000    0.000 exceptions.py:285(InvalidHeader)
+        1    0.000    0.000    0.000    0.000 exceptions.py:320(UnrewindableBodyError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:55(HTTPError)
+        1    0.000    0.000    0.000    0.000 ssl_match_hostname.py:20(CertificateError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:63(ProxyError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:67(SSLError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:71(Timeout)
+        1    0.000    0.000    0.000    0.000 exceptions.py:91(URLRequired)
+        1    0.000    0.000    0.000    0.000 exceptions.py:95(TooManyRedirects)
+        1    0.000    0.000    0.000    0.000 exceptions.py:99(MissingSchema)
+        1    0.000    0.000    0.000    0.000 exceptions.py:119(ChunkedEncodingError)
+        1    0.000    0.000    0.000    0.000 _conditional.py:14(cryptography_has_ssl3_method)
+        1    0.000    0.000    0.000    0.000 _conditional.py:33(cryptography_has_ssl_st)
+        1    0.000    0.000    0.000    0.000 _conditional.py:115(cryptography_has_fips)
+        1    0.000    0.000    0.000    0.000 exceptions.py:43(AlreadyUpdated)
+        1    0.000    0.000    0.000    0.000 exceptions.py:67(InvalidKey)
+        1    0.000    0.000    0.000    0.000 utils.py:17(CryptographyDeprecationWarning)
+        1    0.000    0.000    0.000    0.000 hashes.py:61(ExtendableOutputFunction)
+        1    0.000    0.000    0.000    0.000 padding.py:20(_MaxLength)
+        1    0.000    0.000    0.000    0.000 _serialization.py:58(KeySerializationEncryption)
+        1    0.000    0.000    0.000    0.000 hashes.py:118(SHA512_224)
+        1    0.000    0.000    0.000    0.000 hashes.py:124(SHA512_256)
+        1    0.000    0.000    0.000    0.000 hashes.py:130(SHA224)
+        1    0.000    0.000    0.000    0.000 hashes.py:136(SHA256)
+        1    0.000    0.000    0.000    0.000 hashes.py:148(SHA512)
+        1    0.000    0.000    0.000    0.000 hashes.py:160(SHA3_256)
+        1    0.000    0.000    0.000    0.000 hashes.py:166(SHA3_384)
+        1    0.000    0.000    0.000    0.000 hashes.py:172(SHA3_512)
+        1    0.000    0.000    0.000    0.000 padding.py:28(_DigestLength)
+        1    0.000    0.000    0.000    0.000 ec.py:191(SECT409R1)
+        1    0.000    0.000    0.000    0.000 ec.py:196(SECT283R1)
+        1    0.000    0.000    0.000    0.000 ec.py:206(SECT163R2)
+        1    0.000    0.000    0.000    0.000 ec.py:211(SECT571K1)
+        1    0.000    0.000    0.000    0.000 ec.py:226(SECT233K1)
+        1    0.000    0.000    0.000    0.000 ec.py:231(SECT163K1)
+        1    0.000    0.000    0.000    0.000 ec.py:251(SECP256K1)
+        1    0.000    0.000    0.000    0.000 ec.py:261(SECP192R1)
+        1    0.000    0.000    0.000    0.000 ec.py:271(BrainpoolP384R1)
+        1    0.000    0.000    0.000    0.000 ec.py:276(BrainpoolP512R1)
+        1    0.000    0.000    0.000    0.000 _base.py:45(Error)
+        1    0.000    0.000    0.000    0.000 _base.py:55(InvalidStateError)
+        1    0.000    0.000    0.000    0.000 _base.py:651(BrokenExecutor)
+        1    0.000    0.000    0.000    0.000 events.py:709(_RunningLoop)
+        1    0.000    0.000    0.000    0.000 exceptions.py:21(SendfileNotAvailableError)
+        1    0.000    0.000    0.000    0.000 transports.py:148(Transport)
+        1    0.000    0.000    0.000    0.000 queues.py:16(QueueFull)
+        1    0.000    0.000    0.000    0.000 exceptions.py:35(RefreshError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:61(OAuthError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:83(InvalidResource)
+        1    0.000    0.000    0.000    0.000 exceptions.py:95(InvalidType)
+        1    0.000    0.000    0.000    0.000 exceptions.py:103(TimeoutError)
+        1    0.000    0.000    0.000    0.000 client.py:1459(HTTPException)
+        1    0.000    0.000    0.000    0.000 client.py:1464(NotConnected)
+        1    0.000    0.000    0.000    0.000 client.py:1467(InvalidURL)
+        1    0.000    0.000    0.000    0.000 client.py:1498(CannotSendRequest)
+        1    0.000    0.000    0.000    0.000 client.py:1501(CannotSendHeader)
+        1    0.000    0.000    0.000    0.000 client.py:1514(LineTooLong)
+        1    0.000    0.000    0.000    0.000 questions.py:138(Confirm)
+        1    0.000    0.000    0.000    0.000 errors.py:8(UnknownQuestionTypeError)
+        1    0.000    0.000    0.000    0.000 events.py:8(KeyPressed)
+        1    0.000    0.000    0.000    0.000 events.py:13(Repaint)
+        1    0.000    0.000    0.000    0.000 run_handler.py:10(__init__)
+        1    0.000    0.000    0.000    0.000 errors.py:8(MessageError)
+        1    0.000    0.000    0.000    0.000 errors.py:12(MessageParseError)
+        1    0.000    0.000    0.000    0.000 errors.py:24(MultipartConversionError)
+        1    0.000    0.000    0.000    0.000 errors.py:32(HeaderWriteError)
+        1    0.000    0.000    0.000    0.000 errors.py:45(NoBoundaryInMultipartDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:48(StartBoundaryNotFoundDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:57(MisplacedEnvelopeHeaderDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:65(MultipartInvariantViolationDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:68(InvalidMultipartContentTransferEncodingDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:74(InvalidBase64PaddingDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:77(InvalidBase64CharactersDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:108(ObsoleteHeaderDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:116(InvalidDateDefect)
+        1    0.000    0.000    0.000    0.000 _adapters.py:20(TraversableResourcesLoader)
+        1    0.000    0.000    0.000    0.000 exceptions.py:9(NodeAlreadyExistsError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:13(ProfileNotFoundError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:25(InvalidConfigurationError)
+        1    0.000    0.000    0.000    0.000 _argparse.py:545(ArgumentDefaultsRichHelpFormatter)
+        1    0.000    0.000    0.000    0.000 config_handler.py:8(__init__)
+        1    0.000    0.000    0.000    0.000 _argparse.py:531(RawDescriptionRichHelpFormatter)
+        1    0.000    0.000    0.000    0.000 themes.py:116(BlueComposure)
+        1    0.000    0.000    0.000    0.000 lexer.py:328(include)
+        1    0.000    0.000    0.000    0.000 lexer.py:411(_This)
+        1    0.000    0.000    0.000    0.000 __init__.py:756(ErrorToken)
+        1    0.000    0.000    0.000    0.000 util.py:34(OptionError)
+        1    0.000    0.000    0.000    0.000 util.py:321(UnclosingTextIOWrapper)
+        1    0.000    0.000    0.000    0.000 csv.py:64(excel_tab)
+        1    0.000    0.000    0.000    0.000 zipfile.py:48(LargeZipFile)
+        1    0.000    0.000    0.000    0.000 zipfile.py:644(LZMADecompressor)
+        1    0.000    0.000    0.000    0.000 errors.py:85(HeaderDefect)
+        1    0.000    0.000    0.000    0.000 __init__.py:37(AttrsInstance)
+        1    0.000    0.000    0.000    0.000 exceptions.py:55(DefaultAlreadySetError)
+        1    0.000    0.000    0.000    0.000 :12(__init__)
+        1    0.000    0.000    0.000    0.000 :12(__init__)
+        1    0.000    0.000    0.000    0.000 console.py:85(NoChange)
+        1    0.000    0.000    0.000    0.000 console.py:288(CaptureError)
+        1    0.000    0.000    0.000    0.000 configparser.py:182(NoSectionError)
+        1    0.000    0.000    0.000    0.000 configparser.py:244(NoOptionError)
+        1    0.000    0.000    0.000    0.000 configparser.py:277(InterpolationSyntaxError)
+        1    0.000    0.000    0.000    0.000 configparser.py:285(InterpolationDepthError)
+        1    0.000    0.000    0.000    0.000 configparser.py:217(DuplicateOptionError)
+        1    0.000    0.000    0.000    0.000 errors.py:5(StyleError)
+        1    0.000    0.000    0.000    0.000 errors.py:9(StyleSyntaxError)
+        1    0.000    0.000    0.000    0.000 errors.py:21(NotRenderableError)
+        1    0.000    0.000    0.000    0.000 errors.py:29(LiveError)
+        1    0.000    0.000    0.000    0.000 text.py:420(spans)
+        1    0.000    0.000    0.000    0.000 console.py:346(get)
+        1    0.000    0.000    0.000    0.000 argparse.py:681(RawDescriptionHelpFormatter)
+        1    0.000    0.000    0.000    0.000 argparse.py:692(RawTextHelpFormatter)
+        1    0.000    0.000    0.000    0.000 argparse.py:786(ArgumentTypeError)
+        1    0.000    0.000    0.000    0.000 argparse.py:1254(_ExtendAction)
+        1    0.000    0.000    0.000    0.000 argparse.py:732(MetavarTypeHelpFormatter)
+        1    0.000    0.000    0.000    0.000 pathlib.py:326(_TerminatingSelector)
+        1    0.000    0.000    0.000    0.000 pathlib.py:1392(PosixPath)
+        1    0.000    0.000    0.000    0.000 parse.py:331(SplitResult)
+        1    0.000    0.000    0.000    0.000 parse.py:336(ParseResult)
+        1    0.000    0.000    0.000    0.000 parse.py:342(DefragResultBytes)
+        1    0.000    0.000    0.000    0.000 parse.py:350(SplitResultBytes)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:1131(_BaseConstants)
+        1    0.000    0.000    0.000    0.000 pathlib.py:1399(WindowsPath)
+        1    0.000    0.000    0.000    0.000 printer.py:266(_ThemeProxy)
+        1    0.000    0.000    0.000    0.000 events.py:15(NodeEvent)
+        1    0.000    0.000    0.000    0.000 tokens.py:25(DocumentStartToken)
+        1    0.000    0.000    0.000    0.000 nodes.py:35(CollectionNode)
+        1    0.000    0.000    0.000    0.000 error.py:45(YAMLError)
+        1    0.000    0.000    0.000    0.000 tokens.py:39(StreamEndToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:48(BlockEndToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:54(FlowMappingStartToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:66(ValueToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:75(AliasToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:82(AnchorToken)
+        1    0.000    0.000    0.000    0.000 events.py:36(StreamStartEvent)
+        1    0.000    0.000    0.000    0.000 events.py:42(StreamEndEvent)
+        1    0.000    0.000    0.000    0.000 events.py:75(SequenceStartEvent)
+        1    0.000    0.000    0.000    0.000 cyaml.py:16(CBaseLoader)
+        1    0.000    0.000    0.000    0.000 tokens.py:31(StreamStartToken)
+        1    0.000    0.000    0.000    0.000 nodes.py:25(ScalarNode)
+        1    0.000    0.000    0.000    0.000 dumper.py:45(Dumper)
+        1    0.000    0.000    0.000    0.000 nodes.py:44(SequenceNode)
+        1    0.000    0.000    0.000    0.000 nodes.py:47(MappingNode)
+        1    0.000    0.000    0.000    0.000 scanner.py:32(ScannerError)
+        1    0.000    0.000    0.000    0.000 resolver.py:9(ResolverError)
+        1    0.000    0.000    0.000    0.000 constructor.py:747(Constructor)
+        1    0.000    0.000    0.000    0.000 resolver.py:167(Resolver)
+        1    0.000    0.000    0.000    0.000 cyaml.py:23(CSafeLoader)
+        1    0.000    0.000    0.000    0.000 cyaml.py:30(CFullLoader)
+        1    0.000    0.000    0.000    0.000 cyaml.py:37(CUnsafeLoader)
+        1    0.000    0.000    0.000    0.000 emitter.py:14(EmitterError)
+        1    0.000    0.000    0.000    0.000 serializer.py:8(SerializerError)
+        1    0.000    0.000    0.000    0.000 representer.py:10(RepresenterError)
+        1    0.000    0.000    0.000    0.000 cyaml.py:44(CLoader)
+        1    0.000    0.000    0.000    0.000 pathlib.py:332(_PreciseSelector)
+        1    0.000    0.000    0.000    0.000 __init__.py:165(c_short)
+        1    0.000    0.000    0.000    0.000 __init__.py:173(c_long)
+        1    0.000    0.000    0.000    0.000 __init__.py:194(c_float)
+        1    0.000    0.000    0.000    0.000 __init__.py:230(c_byte)
+        1    0.000    0.000    0.000    0.000 __init__.py:256(c_wchar_p)
+        1    0.000    0.000    0.000    0.000 _endian.py:55(BigEndianUnion)
+        1    0.000    0.000    0.000    0.000 _endian.py:34(_swapped_struct_meta)
+        1    0.000    0.000    0.000    0.000 subprocess.py:123(SubprocessError)
+        1    0.000    0.000    0.000    0.000 threading.py:798(BrokenBarrierError)
+        1    0.000    0.000    0.000    0.000 util.py:70(PtyProcessError)
+        1    0.000    0.000    0.000    0.000 shutil.py:61(Error)
+        1    0.000    0.000    0.000    0.000 shutil.py:64(SameFileError)
+        1    0.000    0.000    0.000    0.000 shutil.py:67(SpecialFileError)
+        1    0.000    0.000    0.000    0.000 shutil.py:71(ExecError)
+        1    0.000    0.000    0.000    0.000 asn1.py:654(DerOctetString)
+        1    0.000    0.000    0.000    0.000 client.py:34(VersionNotSupportedError)
+        1    0.000    0.000    0.000    0.000 pydoc.py:1550(_PlainTextDoc)
+        1    0.000    0.000    0.000    0.000 exceptions.py:89(UnauthorizedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:93(NotFoundError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:97(ConflictError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:103(TooManyRequestsError)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:45(WebSocketConnectionClosedException)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:54(WebSocketTimeoutException)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:62(WebSocketProxyException)
+        1    0.000    0.000    0.000    0.000 _exceptions.py:89(WebSocketAddressException)
+        1    0.000    0.000    0.000    0.000 exceptions.py:16(OpenApiException)
+        1    0.000    0.000    0.000    0.000 connection.py:786(XmlListener)
+        1    0.000    0.000    0.000    0.000 exc.py:60(SignatureExpired)
+        1    0.000    0.000    0.000    0.000 context.py:14(ProcessError)
+        1    0.000    0.000    0.000    0.000 context.py:23(AuthenticationError)
+        1    0.000    0.000    0.000    0.000 nodes.py:50(Impossible)
+        1    0.000    0.000    0.000    0.000 nodes.py:282(Stmt)
+        1    0.000    0.000    0.000    0.000 nodes.py:953(Div)
+        1    0.000    0.000    0.000    0.000 nodes.py:985(Pow)
+        1    0.000    0.000    0.000    0.000 nodes.py:1011(Not)
+        1    0.000    0.000    0.000    0.000 nodes.py:1017(Neg)
+        1    0.000    0.000    0.000    0.000 nodes.py:1023(Pos)
+        1    0.000    0.000    0.000    0.000 nodes.py:1143(Continue)
+        1    0.000    0.000    0.000    0.000 exceptions.py:157(SecurityError)
+        1    0.000    0.000    0.000    0.000 pickle.py:77(PicklingError)
+        1    0.000    0.000    0.000    0.000 pickle.py:84(UnpicklingError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:248(BadArgumentUsage)
+        1    0.000    0.000    0.000    0.000 exceptions.py:238(SecurityError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:340(NotFound)
+        1    0.000    0.000    0.000    0.000 exceptions.py:418(Conflict)
+        1    0.000    0.000    0.000    0.000 exceptions.py:449(LengthRequired)
+        1    0.000    0.000    0.000    0.000 exceptions.py:463(PreconditionFailed)
+        1    0.000    0.000    0.000    0.000 exceptions.py:476(RequestEntityTooLarge)
+        1    0.000    0.000    0.000    0.000 exceptions.py:487(RequestURITooLarge)
+        1    0.000    0.000    0.000    0.000 exceptions.py:549(ExpectationFailed)
+        1    0.000    0.000    0.000    0.000 exceptions.py:588(Locked)
+        1    0.000    0.000    0.000    0.000 exceptions.py:613(PreconditionRequired)
+        1    0.000    0.000    0.000    0.000 exceptions.py:700(UnavailableForLegalReasons)
+        1    0.000    0.000    0.000    0.000 exceptions.py:741(NotImplemented)
+        1    0.000    0.000    0.000    0.000 exceptions.py:752(BadGateway)
+        1    0.000    0.000    0.000    0.000 exceptions.py:766(ServiceUnavailable)
+        1    0.000    0.000    0.000    0.000 exceptions.py:788(GatewayTimeout)
+        1    0.000    0.000    0.000    0.000 exceptions.py:799(HTTPVersionNotSupported)
+        1    0.000    0.000    0.000    0.000 __init__.py:11(DeprecatedTzFormatWarning)
+        1    0.000    0.000    0.000    0.000 compat.py:37(HTTPHeaders)
+        1    0.000    0.000    0.000    0.000 standard.py:471(OrRetryChecker)
+        1    0.000    0.000    0.000    0.000 docstring.py:45(AttributeDocstring)
+        1    0.000    0.000    0.000    0.000 docstring.py:50(IdentifierDocstring)
+        1    0.000    0.000    0.000    0.000 docstring.py:60(CollectionDocstring)
+        1    0.000    0.000    0.000    0.000 discovery.py:25(EndpointDiscoveryException)
+        1    0.000    0.000    0.000    0.000 compat.py:14(with_repr_method)
+        1    0.000    0.000    0.000    0.000 exceptions.py:733(MissingDependencyException)
+        1    0.000    0.000    0.000    0.000 exceptions.py:737(MetadataRetrievalError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:741(UndefinedModelAttributeError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:764(SSOTokenLoadError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:768(UnauthorizedSSOTokenError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:784(InvalidDefaultsMode)
+        1    0.000    0.000    0.000    0.000 exceptions.py:791(AwsChunkedWrapperError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:799(InvalidEndpointConfigurationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:62(ReadTimeout)
+        1    0.000    0.000    0.000    0.000 exceptions.py:66(URLRequired)
+        1    0.000    0.000    0.000    0.000 exceptions.py:78(InvalidSchema)
+        1    0.000    0.000    0.000    0.000 exceptions.py:82(InvalidURL)
+        1    0.000    0.000    0.000    0.000 exceptions.py:98(RetryError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:41(ProxyError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:121(ClosedPoolError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:157(SystemTimeWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:167(ResponseNotChunked)
+        1    0.000    0.000    0.000    0.000 exceptions.py:72(UnknownRegionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:59(UnknownServiceError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:118(InvalidIMDSEndpointModeError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:140(ReadTimeoutError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:148(ConnectTimeoutError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:156(ResponseStreamingError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:176(TokenRetrievalError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:168(NoAuthTokenError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:729(MD5UnavailableError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:709(UnStubbedResponseError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:690(InvalidSTSRegionalEndpointsConfigError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:671(InvalidRetryModeError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:647(UnsupportedS3ControlConfigurationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:632(UnsupportedS3AccesspointConfigurationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:616(UnsupportedOutpostResourceError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:592(UnsupportedS3ArnError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:571(InvalidDNSNameError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:557(EventStreamError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:514(UnsupportedSignatureVersionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:502(WaiterConfigError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:496(UnknownCredentialError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:482(IncompleteReadError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:463(UnseekableStreamError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:445(PaginationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:435(UnknownServiceStyle)
+        1    0.000    0.000    0.000    0.000 exceptions.py:420(AliasConflictParameterError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:395(UnknownParameterError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:379(RangeError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:264(UnknownEndpointError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:249(EndpointVariantError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:243(NoRegionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:324(MissingParametersError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:314(ConfigNotFound)
+        1    0.000    0.000    0.000    0.000 exceptions.py:304(ConfigParseError)
+        1    0.000    0.000    0.000    0.000 oauth1_session.py:43(VerifierMissing)
+        1    0.000    0.000    0.000    0.000 oauth1_session.py:37(TokenMissing)
+        1    0.000    0.000    0.000    0.000 errors.py:115(TokenExpiredError)
+        1    0.000    0.000    0.000    0.000 errors.py:137(MissingTokenTypeError)
+        1    0.000    0.000    0.000    0.000 errors.py:141(FatalClientError)
+        1    0.000    0.000    0.000    0.000 errors.py:368(LoginRequired)
+        1    0.000    0.000    0.000    0.000 errors.py:343(InsufficientScopeError)
+        1    0.000    0.000    0.000    0.000 pre_configured.py:147(LegacyApplicationServer)
+        1    0.000    0.000    0.000    0.000 exceptions.py:84(S3UploadFailedError)
+        1    0.000    0.000    0.000    0.000 errors.py:137(MediaUploadSizeError)
+        1    0.000    0.000    0.000    0.000 errors.py:143(ResumableUploadError)
+        1    0.000    0.000    0.000    0.000 errors.py:149(InvalidChunkSizeError)
+        1    0.000    0.000    0.000    0.000 socketserver.py:727(ThreadingUnixStreamServer)
+        1    0.000    0.000    0.000    0.000 error.py:31(UnimplementedHmacDigestAuthOptionError)
+        1    0.000    0.000    0.000    0.000 error.py:15(RedirectMissingLocation)
+        1    0.000    0.000    0.000    0.000 error.py:19(RedirectLimit)
+        1    0.000    0.000    0.000    0.000 error.py:39(RelativeURIError)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:382(UniqueAddressHeader)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:397(UniqueSingleAddressHeader)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:195(UnstructuredTokenList)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:206(CFWSList)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:552(ObsLocalPart)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:687(InvalidParameter)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:945(_InvalidEwError)
+        1    0.000    0.000    0.000    0.000 socks.py:63(Socks5AuthError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:281(ParseSyntaxException)
+        1    0.000    0.000    0.000    0.000 exceptions.py:127(StreamConsumedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:131(RetryError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:135(UnrewindableBodyError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:142(RequestsWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:150(RequestsDependencyWarning)
+        1    0.000    0.000    0.000    0.000 core.py:26(InvalidCodepoint)
+        1    0.000    0.000    0.000    0.000 core.py:32(InvalidCodepointContext)
+        1    0.000    0.000    0.000    0.000 package_data.py:1()
+        1    0.000    0.000    0.000    0.000 exceptions.py:182(LocationParseError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:192(URLSchemeUnknown)
+        1    0.000    0.000    0.000    0.000 exceptions.py:22(HTTPWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:55(SSLError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:74(ProtocolError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:121(TimeoutError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:129(ReadTimeoutError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:135(ConnectTimeoutError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:178(LocationValueError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:306(ProxySchemeUnsupported)
+        1    0.000    0.000    0.000    0.000 exceptions.py:103(InvalidSchema)
+        1    0.000    0.000    0.000    0.000 exceptions.py:107(InvalidURL)
+        1    0.000    0.000    0.000    0.000 exceptions.py:111(InvalidHeader)
+        1    0.000    0.000    0.000    0.000 exceptions.py:115(InvalidProxyURL)
+        1    0.000    0.000    0.000    0.000 exceptions.py:39(AlreadyFinalized)
+        1    0.000    0.000    0.000    0.000 exceptions.py:51(InvalidTag)
+        1    0.000    0.000    0.000    0.000 exceptions.py:55(InvalidSignature)
+        1    0.000    0.000    0.000    0.000 _serialization.py:70(NoEncryption)
+        1    0.000    0.000    0.000    0.000 hashes.py:154(SHA3_224)
+        1    0.000    0.000    0.000    0.000 ec.py:201(SECT233R1)
+        1    0.000    0.000    0.000    0.000 ec.py:216(SECT409K1)
+        1    0.000    0.000    0.000    0.000 ec.py:236(SECP521R1)
+        1    0.000    0.000    0.000    0.000 ec.py:241(SECP384R1)
+        1    0.000    0.000    0.000    0.000 ec.py:246(SECP256R1)
+        1    0.000    0.000    0.000    0.000 ec.py:256(SECP224R1)
+        1    0.000    0.000    0.000    0.000 ec.py:266(BrainpoolP256R1)
+        1    0.000    0.000    0.000    0.000 ec.py:489(ECDH)
+        1    0.000    0.000    0.000    0.000 _base.py:49(CancelledError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:17(InvalidStateError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:61(BrokenBarrierError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:40(UserAccessTokenError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:44(DefaultCredentialsError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:48(MutualTLSChannelError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:75(ReauthSamlChallengeFailError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:79(MalformedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:87(InvalidOperation)
+        1    0.000    0.000    0.000    0.000 exceptions.py:91(InvalidValue)
+        1    0.000    0.000    0.000    0.000 exceptions.py:99(OSError)
+        1    0.000    0.000    0.000    0.000 client.py:1475(UnknownTransferEncoding)
+        1    0.000    0.000    0.000    0.000 client.py:1478(UnimplementedFileMode)
+        1    0.000    0.000    0.000    0.000 client.py:1495(ImproperConnectionState)
+        1    0.000    0.000    0.000    0.000 errors.py:18(ThemeError)
+        1    0.000    0.000    0.000    0.000 questions.py:134(Editor)
+        1    0.000    0.000    0.000    0.000 _path.py:4(Path)
+        1    0.000    0.000    0.000    0.000 ai_handler.py:13(__init__)
+        1    0.000    0.000    0.000    0.000 errors.py:16(HeaderParseError)
+        1    0.000    0.000    0.000    0.000 errors.py:20(BoundaryError)
+        1    0.000    0.000    0.000    0.000 errors.py:28(CharsetError)
+        1    0.000    0.000    0.000    0.000 errors.py:51(CloseBoundaryNotFoundDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:54(FirstHeaderLineIsContinuationDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:60(MissingHeaderBodySeparatorDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:71(UndecodableBytesDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:80(InvalidBase64LengthDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:91(InvalidHeaderDefect)
+        1    0.000    0.000    0.000    0.000 errors.py:94(HeaderMissingRequiredValue)
+        1    0.000    0.000    0.000    0.000 errors.py:111(NonASCIILocalPartDefect)
+        1    0.000    0.000    0.000    0.000 exceptions.py:5(NodeNotFoundError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:29(ReservedNameError)
+        1    0.000    0.000    0.000    0.000 _argparse.py:549(MetavarTypeRichHelpFormatter)
+        1    0.000    0.000    0.000    0.000 exceptions.py:64(UnannotatedAttributeError)
+        1    0.000    0.000    0.000    0.000 configparser.py:191(DuplicateSectionError)
+        1    0.000    0.000    0.000    0.000 errors.py:1(ConsoleError)
+        1    0.000    0.000    0.000    0.000 errors.py:13(MissingStyle)
+        1    0.000    0.000    0.000    0.000 errors.py:17(StyleStackError)
+        1    0.000    0.000    0.000    0.000 errors.py:33(NoAltScreen)
+        1    0.000    0.000    0.000    0.000 parse.py:355(ParseResultBytes)
+        1    0.000    0.000    0.000    0.000 ipaddress.py:24(NetmaskValueError)
+        1    0.000    0.000    0.000    0.000 tokens.py:28(DocumentEndToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:42(BlockSequenceStartToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:45(BlockMappingStartToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:51(FlowSequenceStartToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:57(FlowSequenceEndToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:60(FlowMappingEndToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:63(KeyToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:72(FlowEntryToken)
+        1    0.000    0.000    0.000    0.000 tokens.py:89(TagToken)
+        1    0.000    0.000    0.000    0.000 events.py:31(CollectionEndEvent)
+        1    0.000    0.000    0.000    0.000 events.py:81(MappingStartEvent)
+        1    0.000    0.000    0.000    0.000 events.py:84(MappingEndEvent)
+        1    0.000    0.000    0.000    0.000 events.py:45(DocumentStartEvent)
+        1    0.000    0.000    0.000    0.000 events.py:54(DocumentEndEvent)
+        1    0.000    0.000    0.000    0.000 cyaml.py:68(CSafeDumper)
+        1    0.000    0.000    0.000    0.000 loader.py:55(UnsafeLoader)
+        1    0.000    0.000    0.000    0.000 scanner.py:35(SimpleKey)
+        1    0.000    0.000    0.000    0.000 random.py:814(seed)
+        1    0.000    0.000    0.000    0.000 __init__.py:169(c_ushort)
+        1    0.000    0.000    0.000    0.000 __init__.py:177(c_ulong)
+        1    0.000    0.000    0.000    0.000 __init__.py:186(c_int)
+        1    0.000    0.000    0.000    0.000 __init__.py:198(c_double)
+        1    0.000    0.000    0.000    0.000 __init__.py:202(c_longdouble)
+        1    0.000    0.000    0.000    0.000 __init__.py:223(c_ubyte)
+        1    0.000    0.000    0.000    0.000 __init__.py:235(c_char)
+        1    0.000    0.000    0.000    0.000 __init__.py:251(c_bool)
+        1    0.000    0.000    0.000    0.000 __init__.py:261(c_wchar)
+        1    0.000    0.000    0.000    0.000 _endian.py:35(_swapped_union_meta)
+        1    0.000    0.000    0.000    0.000 threading.py:1400(_MainThread)
+        1    0.000    0.000    0.000    0.000 shutil.py:74(ReadError)
+        1    0.000    0.000    0.000    0.000 shutil.py:81(_GiveupOnFastCopy)
+        1    0.000    0.000    0.000    0.000 {method 'values' of 'collections.OrderedDict' objects}
+        1    0.000    0.000    0.000    0.000 {method '__getitem__' of 'dict' objects}
+        1    0.000    0.000    0.000    0.000 _matrix.py:37()
+        1    0.000    0.000    0.000    0.000 _matrix.py:40()
+        1    0.000    0.000    0.000    0.000 exceptions.py:95(MethodNotAllowedError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:107(ServiceUnavailableError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:109(ServerTimeoutError)
+        1    0.000    0.000    0.000    0.000 context.py:17(BufferTooShort)
+        1    0.000    0.000    0.000    0.000 nodes.py:959(FloorDiv)
+        1    0.000    0.000    0.000    0.000 compiler.py:248(VisitorExit)
+        1    0.000    0.000    0.000    0.000 exceptions.py:246(BadHost)
+        1    0.000    0.000    0.000    0.000 discovery.py:35(EndpointDiscoveryRefreshFailed)
+        1    0.000    0.000    0.000    0.000 exceptions.py:125(EndpointConnectionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:114(InvalidIMDSEndpointError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:110(ConnectionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:152(ProxyConnectionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:699(StubResponseError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:638(InvalidEndpointDiscoveryConfigurationError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:410(InvalidRegionError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:188(PartialCredentialsError)
+        1    0.000    0.000    0.000    0.000 errors.py:71(InvalidRequestError)
+        1    0.000    0.000    0.000    0.000 errors.py:291(InvalidGrantError)
+        1    0.000    0.000    0.000    0.000 error.py:23(FailedToDecompressContent)
+        1    0.000    0.000    0.000    0.000 headerregistry.py:322(UniqueDateHeader)
+        1    0.000    0.000    0.000    0.000 _header_value_parser.py:202(Word)
+        1    0.000    0.000    0.000    0.000 challenges.py:91(name)
+        1    0.000    0.000    0.000    0.000 challenges.py:110(name)
+        1    0.000    0.000    0.000    0.000 exceptions.py:221(SystemTimeWarning)
+        1    0.000    0.000    0.000    0.000 exceptions.py:47(NotYetFinalized)
+        1    0.000    0.000    0.000    0.000 utils.py:49(InterfaceNotImplemented)
+        1    0.000    0.000    0.000    0.000 client.py:1504(ResponseNotReady)
+        1    0.000    0.000    0.000    0.000 _functools.py:83()
+        1    0.000    0.000    0.000    0.000 exceptions.py:17(ProfileAlreadyExistsError)
+        1    0.000    0.000    0.000    0.000 exceptions.py:21(ExecutionError)
+        1    0.000    0.000    0.000    0.000 tokens.py:69(BlockEntryToken)
+        1    0.000    0.000    0.000    0.000 events.py:61(AliasEvent)
+        1    0.000    0.000    0.000    0.000 events.py:78(SequenceEndEvent)
+        1    0.000    0.000    0.000    0.000 constructor.py:16(ConstructorError)
+        1    0.000    0.000    0.000    0.000 __init__.py:190(c_uint)
+        1    0.000    0.000    0.000    0.000 __init__.py:246(c_void_p)
+        1    0.000    0.000    0.000    0.000 shutil.py:77(RegistryError)
+
+