diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/.gitignore b/external-crates/move/crates/move-analyzer/trace-adapter/.gitignore new file mode 100644 index 0000000000000..0fa8a76bdaf60 --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/.gitignore @@ -0,0 +1 @@ +/out/ \ No newline at end of file diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/src/trace_utils.ts b/external-crates/move/crates/move-analyzer/trace-adapter/src/trace_utils.ts index 47d22e1cc0e93..2e5e80c08b5b1 100644 --- a/external-crates/move/crates/move-analyzer/trace-adapter/src/trace_utils.ts +++ b/external-crates/move/crates/move-analyzer/trace-adapter/src/trace_utils.ts @@ -519,21 +519,25 @@ export function readTrace( const location = effect.Write ? effect.Write.location : effect.Read!.location; const loc = processJSONLocalLocation(location, localLifetimeEnds); if (effect.Write) { - if (!loc) { - throw new Error('Unsupported location type in Write effect'); + if (loc !== undefined) { + // Process a write only if the location is supported. + // We can see global location here in some cases when source-level + // assignment does not involve an explicit local variable, along + // the lines of: + // + // field::borrow_mut(...).next = ... + const value = 'RuntimeValue' in effect.Write.root_value_after_write + ? traceRuntimeValueFromJSON(effect.Write.root_value_after_write.RuntimeValue.value) + : traceRefValueFromJSON(effect.Write.root_value_after_write); + events.push({ + type: TraceEventKind.Effect, + effect: { + type: TraceEffectKind.Write, + loc, + value + } + }); } - // process a write only if the location is supported - const value = 'RuntimeValue' in effect.Write.root_value_after_write - ? traceRuntimeValueFromJSON(effect.Write.root_value_after_write.RuntimeValue.value) - : traceRefValueFromJSON(effect.Write.root_value_after_write); - events.push({ - type: TraceEventKind.Effect, - effect: { - type: TraceEffectKind.Write, - loc, - value - } - }); } } if (effect.ExecutionError) { diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/Move.toml b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/Move.toml new file mode 100644 index 0000000000000..0c0e3a8802e73 --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/Move.toml @@ -0,0 +1,10 @@ +[package] +name = "global_write" +edition = "2024.beta" + +[dependencies] +Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/mainnet" } + +[addresses] +global_write = "0x0" +Sui = "0x2" diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/bytecode_modules/m.mv b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/bytecode_modules/m.mv new file mode 100644 index 0000000000000..529f7146954fb Binary files /dev/null and b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/bytecode_modules/m.mv differ diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/MoveStdlib/macros.json b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/MoveStdlib/macros.json new file mode 100644 index 0000000000000..f154339eff2c0 --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/MoveStdlib/macros.json @@ -0,0 +1 @@ +{"definition_location":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":155,"end":161},"module_name":["0000000000000000000000000000000000000000000000000000000000000001","macros"],"struct_map":{},"enum_map":{},"function_map":{"0":{"location":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":143,"end":6955},"definition_location":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":143,"end":6955},"type_parameters":[],"parameters":[],"returns":[],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":143,"end":6955}},"is_native":false}},"constant_map":{}} \ No newline at end of file diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/MoveStdlib/option.json b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/MoveStdlib/option.json new file mode 100644 index 0000000000000..87118deb61e55 --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/MoveStdlib/option.json @@ -0,0 +1 @@ +{"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":186,"end":192},"module_name":["0000000000000000000000000000000000000000000000000000000000000001","option"],"struct_map":{"0":{"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":360,"end":366},"type_parameters":[["Element",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":367,"end":374}]],"fields":[{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":404,"end":407}]}},"enum_map":{},"function_map":{"0":{"location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":780,"end":863},"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":791,"end":795},"type_parameters":[["Element",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":796,"end":803}]],"parameters":[],"returns":[{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":808,"end":823}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":844,"end":859},"1":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":830,"end":861}},"is_native":false},"1":{"location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":903,"end":1001},"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":914,"end":918},"type_parameters":[["Element",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":919,"end":926}]],"parameters":[["e#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":928,"end":929}]],"returns":[{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":941,"end":956}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":995,"end":996},"1":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":977,"end":997},"2":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":963,"end":999}},"is_native":false},"2":{"location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1048,"end":1127},"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1059,"end":1066},"type_parameters":[["Element",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1067,"end":1074}]],"parameters":[["t#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1076,"end":1077}]],"returns":[{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1098,"end":1102}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1109,"end":1110},"1":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1109,"end":1114},"2":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1109,"end":1125}},"is_native":false},"3":{"location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1166,"end":1246},"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1177,"end":1184},"type_parameters":[["Element",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1185,"end":1192}]],"parameters":[["t#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1194,"end":1195}]],"returns":[{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1216,"end":1220}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1228,"end":1229},"1":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1228,"end":1233},"2":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1228,"end":1244},"3":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1227,"end":1228},"4":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1227,"end":1244}},"is_native":false},"4":{"location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1360,"end":1462},"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1371,"end":1379},"type_parameters":[["Element",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1380,"end":1387}]],"parameters":[["t#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1389,"end":1390}],["e_ref#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1410,"end":1415}]],"returns":[{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1428,"end":1432}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1439,"end":1440},"1":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1439,"end":1444},"2":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1454,"end":1459},"3":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1439,"end":1460}},"is_native":false},"5":{"location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1562,"end":1680},"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1573,"end":1579},"type_parameters":[["Element",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1580,"end":1587}]],"parameters":[["t#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1589,"end":1590}]],"returns":[{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1611,"end":1619}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1634,"end":1635},"1":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1634,"end":1645},"2":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1626,"end":1663},"6":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1647,"end":1662},"7":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1626,"end":1663},"8":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1670,"end":1671},"9":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1670,"end":1678},"10":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1676,"end":1677},"11":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1669,"end":1678}},"is_native":false},"6":{"location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1799,"end":1983},"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1810,"end":1829},"type_parameters":[["Element",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1830,"end":1837}]],"parameters":[["t#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1839,"end":1840}],["default_ref#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1860,"end":1871}]],"returns":[{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1884,"end":1892}],"locals":[["%#1",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1925,"end":1981}],["vec_ref#1#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1903,"end":1910}]],"nops":{},"code_map":{"0":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1914,"end":1915},"1":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1913,"end":1919},"2":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1903,"end":1910},"3":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1929,"end":1936},"4":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1929,"end":1947},"5":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1925,"end":1981},"6":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1949,"end":1960},"9":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1925,"end":1981},"11":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1970,"end":1981},"13":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1971,"end":1978},"14":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1979,"end":1980},"15":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1970,"end":1981},"16":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":1925,"end":1981}},"is_native":false},"7":{"location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2083,"end":2266},"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2094,"end":2110},"type_parameters":[["Element",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2111,"end":2118}]],"parameters":[["t#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2133,"end":2134}],["default#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2154,"end":2161}]],"returns":[{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2173,"end":2180}],"locals":[["%#1",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2213,"end":2264}],["vec_ref#1#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2191,"end":2198}]],"nops":{},"code_map":{"0":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2202,"end":2203},"1":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2201,"end":2207},"2":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2191,"end":2198},"3":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2217,"end":2224},"4":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2217,"end":2235},"5":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2213,"end":2264},"6":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2237,"end":2244},"9":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2213,"end":2264},"11":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2254,"end":2261},"12":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2262,"end":2263},"13":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2254,"end":2264},"15":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2213,"end":2264}},"is_native":false},"8":{"location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2372,"end":2546},"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2383,"end":2387},"type_parameters":[["Element",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2388,"end":2395}]],"parameters":[["t#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2397,"end":2398}],["e#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2422,"end":2423}]],"returns":[],"locals":[["vec_ref#1#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2444,"end":2451}]],"nops":{},"code_map":{"0":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2459,"end":2460},"1":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2454,"end":2464},"2":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2444,"end":2451},"3":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2474,"end":2481},"5":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2474,"end":2492},"6":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2470,"end":2544},"8":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2524,"end":2544},"10":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2530,"end":2544},"11":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2524,"end":2544},"12":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2494,"end":2501},"13":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2512,"end":2513},"14":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2494,"end":2514},"15":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2470,"end":2544}},"is_native":false},"9":{"location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2682,"end":2811},"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2693,"end":2700},"type_parameters":[["Element",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2701,"end":2708}]],"parameters":[["t#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2710,"end":2711}]],"returns":[{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2736,"end":2743}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2758,"end":2759},"2":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2758,"end":2769},"3":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2750,"end":2787},"7":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2771,"end":2786},"8":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2750,"end":2787},"9":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2793,"end":2794},"10":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2793,"end":2798},"11":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2793,"end":2809}},"is_native":false},"10":{"location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2908,"end":3042},"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2919,"end":2929},"type_parameters":[["Element",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2930,"end":2937}]],"parameters":[["t#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2939,"end":2940}]],"returns":[{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2965,"end":2977}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2992,"end":2993},"2":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2992,"end":3003},"3":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2984,"end":3021},"7":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3005,"end":3020},"8":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":2984,"end":3021},"9":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3032,"end":3033},"10":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3032,"end":3040},"11":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3038,"end":3039},"12":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3027,"end":3040}},"is_native":false},"11":{"location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3152,"end":3379},"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3163,"end":3167},"type_parameters":[["Element",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3168,"end":3175}]],"parameters":[["t#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3177,"end":3178}],["e#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3202,"end":3203}]],"returns":[{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3215,"end":3222}],"locals":[["old_value#1#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3306,"end":3315}],["vec_ref#1#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3276,"end":3283}]],"nops":{},"code_map":{"0":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3237,"end":3238},"2":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3237,"end":3248},"3":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3229,"end":3266},"7":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3250,"end":3265},"8":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3229,"end":3266},"9":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3291,"end":3292},"10":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3286,"end":3296},"11":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3276,"end":3283},"12":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3318,"end":3325},"13":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3318,"end":3336},"14":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3306,"end":3315},"15":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3342,"end":3349},"16":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3360,"end":3361},"17":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3342,"end":3362},"18":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3368,"end":3377}},"is_native":false},"12":{"location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3579,"end":3825},"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3590,"end":3602},"type_parameters":[["Element",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3603,"end":3610}]],"parameters":[["t#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3612,"end":3613}],["e#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3637,"end":3638}]],"returns":[{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3650,"end":3665}],"locals":[["%#1",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3718,"end":3782}],["old_value#1#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3706,"end":3715}],["vec_ref#1#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3676,"end":3683}]],"nops":{},"code_map":{"0":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3691,"end":3692},"1":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3686,"end":3696},"2":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3676,"end":3683},"3":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3722,"end":3729},"5":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3722,"end":3740},"6":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3718,"end":3782},"7":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3742,"end":3748},"8":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3718,"end":3782},"10":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3763,"end":3770},"11":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3763,"end":3781},"12":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3758,"end":3782},"13":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3718,"end":3782},"15":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3706,"end":3715},"16":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3788,"end":3795},"17":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3806,"end":3807},"18":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3788,"end":3808},"19":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3814,"end":3823}},"is_native":false},"13":{"location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3906,"end":4091},"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3917,"end":3937},"type_parameters":[["Element",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3938,"end":3945}]],"parameters":[["t#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3953,"end":3954}],["default#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3973,"end":3980}]],"returns":[{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":3992,"end":3999}],"locals":[["%#1",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4038,"end":4089}],["vec#1#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4023,"end":4026}]],"nops":{},"code_map":{"0":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4031,"end":4032},"1":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4010,"end":4028},"2":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4023,"end":4026},"3":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4042,"end":4045},"4":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4042,"end":4056},"5":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4038,"end":4089},"6":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4058,"end":4065},"7":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4038,"end":4089},"9":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4075,"end":4078},"10":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4075,"end":4089},"11":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4038,"end":4089}},"is_native":false},"14":{"location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4172,"end":4377},"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4183,"end":4195},"type_parameters":[["Element",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4196,"end":4203}]],"parameters":[["t#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4205,"end":4206}]],"returns":[{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4226,"end":4233}],"locals":[["elem#1#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4319,"end":4323}],["vec#1#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4300,"end":4303}]],"nops":{},"code_map":{"0":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4248,"end":4249},"1":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4248,"end":4259},"2":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4240,"end":4277},"4":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4261,"end":4276},"5":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4240,"end":4277},"6":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4308,"end":4309},"7":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4287,"end":4305},"8":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4300,"end":4303},"9":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4326,"end":4329},"10":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4326,"end":4340},"11":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4319,"end":4323},"12":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4346,"end":4349},"13":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4346,"end":4365},"14":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4371,"end":4375}},"is_native":false},"15":{"location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4426,"end":4576},"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4437,"end":4449},"type_parameters":[["Element",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4450,"end":4457}]],"parameters":[["t#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4459,"end":4460}]],"returns":[],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4493,"end":4494},"1":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4493,"end":4504},"2":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4485,"end":4521},"4":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4506,"end":4520},"5":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4485,"end":4521},"6":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4548,"end":4549},"7":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4531,"end":4545},"8":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4555,"end":4574}},"is_native":false},"16":{"location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4671,"end":4774},"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4682,"end":4688},"type_parameters":[["Element",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4689,"end":4696}]],"parameters":[["t#0#0",{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4698,"end":4699}]],"returns":[{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4719,"end":4734}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4762,"end":4763},"1":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4745,"end":4759},"2":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":4769,"end":4772}},"is_native":false},"17":{"location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":174,"end":8259},"definition_location":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":174,"end":8259},"type_parameters":[],"parameters":[],"returns":[],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[98,80,24,160,2,133,100,123,184,109,246,20,71,170,171,51,138,42,247,156,58,151,38,146,185,128,73,253,178,88,2,117],"start":174,"end":8259}},"is_native":false}},"constant_map":{"EOPTION_IS_SET":0,"EOPTION_NOT_SET":1}} \ No newline at end of file diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/MoveStdlib/u64.json b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/MoveStdlib/u64.json new file mode 100644 index 0000000000000..f108aff023993 --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/MoveStdlib/u64.json @@ -0,0 +1 @@ +{"definition_location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":113,"end":116},"module_name":["0000000000000000000000000000000000000000000000000000000000000001","u64"],"struct_map":{},"enum_map":{},"function_map":{"0":{"location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":251,"end":311},"definition_location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":262,"end":273},"type_parameters":[],"parameters":[["x#0#0",{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":274,"end":275}]],"returns":[{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":283,"end":286}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":293,"end":294},"1":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2511,"end":2532},"2":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":295,"end":296},"3":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":293,"end":309}},"is_native":false},"1":{"location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":350,"end":421},"definition_location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":361,"end":364},"type_parameters":[],"parameters":[["x#0#0",{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":365,"end":366}],["y#0#0",{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":373,"end":374}]],"returns":[{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":382,"end":385}],"locals":[["%#2",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":270,"end":293}],["x#1#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":242,"end":243}],["y#1#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":258,"end":259}]],"nops":{},"code_map":{"0":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":414,"end":415},"1":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":242,"end":243},"2":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":417,"end":418},"3":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":258,"end":259},"4":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":274,"end":275},"5":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":278,"end":279},"6":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":276,"end":277},"7":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":270,"end":293},"8":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":281,"end":282},"9":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":270,"end":293},"11":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":292,"end":293},"12":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":270,"end":293},"14":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":392,"end":419}},"is_native":false},"2":{"location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":461,"end":532},"definition_location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":472,"end":475},"type_parameters":[],"parameters":[["x#0#0",{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":476,"end":477}],["y#0#0",{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":484,"end":485}]],"returns":[{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":493,"end":496}],"locals":[["%#2",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":377,"end":400}],["x#1#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":349,"end":350}],["y#1#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":365,"end":366}]],"nops":{},"code_map":{"0":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":525,"end":526},"1":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":349,"end":350},"2":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":528,"end":529},"3":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":365,"end":366},"4":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":381,"end":382},"5":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":385,"end":386},"6":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":383,"end":384},"7":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":377,"end":400},"8":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":388,"end":389},"9":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":377,"end":400},"11":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":399,"end":400},"12":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":377,"end":400},"14":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":503,"end":530}},"is_native":false},"3":{"location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":573,"end":646},"definition_location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":584,"end":588},"type_parameters":[],"parameters":[["x#0#0",{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":589,"end":590}],["y#0#0",{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":597,"end":598}]],"returns":[{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":606,"end":609}],"locals":[["%#2",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":485,"end":516}],["x#1#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":457,"end":458}],["y#1#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":473,"end":474}]],"nops":{},"code_map":{"0":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":639,"end":640},"1":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":457,"end":458},"2":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":642,"end":643},"3":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":473,"end":474},"4":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":489,"end":490},"5":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":493,"end":494},"6":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":491,"end":492},"7":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":485,"end":516},"8":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":496,"end":497},"9":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":500,"end":501},"10":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":498,"end":499},"11":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":485,"end":516},"13":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":511,"end":512},"14":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":515,"end":516},"15":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":513,"end":514},"16":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":485,"end":516},"18":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":616,"end":644}},"is_native":false},"4":{"location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":694,"end":797},"definition_location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":705,"end":724},"type_parameters":[],"parameters":[["x#0#0",{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":725,"end":726}],["y#0#0",{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":733,"end":734}]],"returns":[{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":742,"end":745}],"locals":[["%#2",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":616,"end":656}],["x#1#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":588,"end":589}],["y#1#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":604,"end":605}]],"nops":{},"code_map":{"0":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":790,"end":791},"1":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":588,"end":589},"2":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":793,"end":794},"3":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":604,"end":605},"4":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":620,"end":621},"5":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":624,"end":625},"6":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":622,"end":623},"7":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":629,"end":630},"8":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":626,"end":628},"9":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":616,"end":656},"10":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":632,"end":633},"11":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":636,"end":637},"12":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":634,"end":635},"13":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":616,"end":656},"15":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":647,"end":648},"16":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":651,"end":652},"17":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":649,"end":650},"18":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":655,"end":656},"19":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":653,"end":654},"20":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":616,"end":656},"22":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":752,"end":795}},"is_native":false},"5":{"location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":848,"end":938},"definition_location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":859,"end":862},"type_parameters":[],"parameters":[["base#0#0",{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":863,"end":867}],["exponent#0#0",{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":874,"end":882}]],"returns":[{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":889,"end":892}],"locals":[["base#1#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":727,"end":731}],["exponent#1#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":753,"end":761}],["res#1#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":787,"end":790}]],"nops":{},"code_map":{"0":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":921,"end":925},"1":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":723,"end":731},"2":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":927,"end":935},"3":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":749,"end":761},"4":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":793,"end":794},"5":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":783,"end":790},"6":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":807,"end":815},"7":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":819,"end":820},"8":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":816,"end":818},"9":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":800,"end":1025},"11":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":836,"end":844},"12":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":847,"end":848},"13":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":845,"end":846},"14":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":852,"end":853},"15":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":849,"end":851},"16":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":832,"end":1019},"17":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":876,"end":880},"18":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":883,"end":887},"19":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":881,"end":882},"20":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":869,"end":873},"21":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":912,"end":920},"22":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":923,"end":924},"23":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":921,"end":922},"24":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":901,"end":909},"25":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":832,"end":1019},"26":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":961,"end":964},"27":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":967,"end":971},"28":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":965,"end":966},"29":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":955,"end":958},"30":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":996,"end":1004},"31":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1007,"end":1008},"32":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1005,"end":1006},"33":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":985,"end":993},"34":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":832,"end":1019},"35":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1032,"end":1035},"36":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":899,"end":936}},"is_native":false},"6":{"location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":1806,"end":1883},"definition_location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":1817,"end":1821},"type_parameters":[],"parameters":[["x#0#0",{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":1822,"end":1823}]],"returns":[{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":1831,"end":1834}],"locals":[["bit#1#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1129,"end":1132}],["res#1#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1168,"end":1171}],["x#1#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1109,"end":1110}],["x#2#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1195,"end":1196}]],"nops":{},"code_map":{"0":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":1875,"end":1876},"1":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1109,"end":1110},"2":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1135,"end":1154},"3":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1125,"end":1132},"4":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1175,"end":1176},"5":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1164,"end":1171},"6":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1199,"end":1200},"7":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1199,"end":1206},"8":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1191,"end":1196},"9":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1220,"end":1223},"10":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1227,"end":1228},"11":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1224,"end":1226},"12":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1213,"end":1416},"14":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1244,"end":1245},"15":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1249,"end":1252},"16":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1255,"end":1258},"17":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1253,"end":1254},"18":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1246,"end":1248},"19":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1240,"end":1385},"20":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1278,"end":1279},"21":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1283,"end":1286},"22":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1289,"end":1292},"23":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1287,"end":1288},"24":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1280,"end":1281},"25":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1274,"end":1275},"26":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1314,"end":1317},"27":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1321,"end":1322},"28":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1318,"end":1320},"29":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1326,"end":1329},"30":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1324,"end":1325},"31":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1307,"end":1310},"32":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1240,"end":1385},"33":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1366,"end":1369},"34":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1373,"end":1374},"35":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1370,"end":1372},"36":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1360,"end":1363},"37":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1401,"end":1404},"38":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1408,"end":1409},"39":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1405,"end":1407},"40":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1395,"end":1398},"41":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1213,"end":1416},"42":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1423,"end":1426},"43":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1423,"end":1432},"44":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":1841,"end":1881}},"is_native":false},"7":{"location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":1965,"end":2040},"definition_location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":1976,"end":1985},"type_parameters":[],"parameters":[["x#0#0",{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":1986,"end":1987}]],"returns":[{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":1995,"end":2005}],"locals":[["%#2",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2646,"end":2705}],["x#1#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2634,"end":2635}]],"nops":{},"code_map":{"0":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2036,"end":2037},"1":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2634,"end":2635},"2":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2650,"end":2651},"3":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2654,"end":2658},"4":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2652,"end":2653},"5":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2646,"end":2705},"6":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2660,"end":2674},"7":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2646,"end":2705},"9":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2697,"end":2698},"10":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2697,"end":2704},"11":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2684,"end":2705},"12":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2646,"end":2705},"14":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2012,"end":2038}},"is_native":false},"8":{"location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2123,"end":2201},"definition_location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2134,"end":2144},"type_parameters":[],"parameters":[["x#0#0",{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2145,"end":2146}]],"returns":[{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2154,"end":2165}],"locals":[["%#2",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2779,"end":2841}],["x#1#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2767,"end":2768}]],"nops":{},"code_map":{"0":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2197,"end":2198},"1":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2767,"end":2768},"2":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2783,"end":2784},"3":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2787,"end":2793},"4":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2785,"end":2786},"5":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2779,"end":2841},"6":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2795,"end":2809},"7":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2779,"end":2841},"9":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2832,"end":2833},"10":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2832,"end":2840},"11":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2819,"end":2841},"12":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2779,"end":2841},"14":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2172,"end":2199}},"is_native":false},"9":{"location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2284,"end":2362},"definition_location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2295,"end":2305},"type_parameters":[],"parameters":[["x#0#0",{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2306,"end":2307}]],"returns":[{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2315,"end":2326}],"locals":[["%#2",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2915,"end":2982}],["x#1#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2903,"end":2904}]],"nops":{},"code_map":{"0":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2358,"end":2359},"1":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2903,"end":2904},"2":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2919,"end":2920},"3":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2923,"end":2934},"4":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2921,"end":2922},"5":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2915,"end":2982},"6":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2936,"end":2950},"7":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2915,"end":2982},"9":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2973,"end":2974},"10":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2973,"end":2981},"11":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2960,"end":2982},"12":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2915,"end":2982},"14":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2333,"end":2360}},"is_native":false},"10":{"location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2364,"end":2439},"definition_location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2375,"end":2384},"type_parameters":[],"parameters":[["x#0#0",{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2385,"end":2386}]],"returns":[{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2394,"end":2400}],"locals":[["%#1",{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2407,"end":2437}],["buffer#1#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1573,"end":1579}],["x#1#1",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1496,"end":1497}]],"nops":{},"code_map":{"0":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2435,"end":2436},"1":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1492,"end":1497},"2":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1512,"end":1513},"3":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1517,"end":1518},"4":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1514,"end":1516},"5":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1508,"end":1559},"6":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1537,"end":1541},"7":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1537,"end":1553},"8":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2407,"end":2437},"9":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1530,"end":1553},"10":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1582,"end":1590},"11":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1569,"end":1579},"12":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1603,"end":1604},"13":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1608,"end":1609},"14":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1605,"end":1607},"15":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1596,"end":1687},"16":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1621,"end":1627},"17":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1640,"end":1642},"18":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1645,"end":1646},"19":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1649,"end":1651},"20":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1647,"end":1648},"21":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1643,"end":1644},"22":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1639,"end":1658},"23":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1621,"end":1660},"24":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1674,"end":1675},"25":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1678,"end":1680},"26":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1676,"end":1677},"27":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1670,"end":1671},"28":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1596,"end":1687},"29":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1693,"end":1699},"30":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1693,"end":1709},"31":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1715,"end":1721},"32":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1715,"end":1733},"33":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":2407,"end":2437}},"is_native":false},"11":{"location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":101,"end":3226},"definition_location":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":101,"end":3226},"type_parameters":[],"parameters":[],"returns":[],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":101,"end":3226}},"is_native":false}},"constant_map":{}} \ No newline at end of file diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/MoveStdlib/vector.json b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/MoveStdlib/vector.json new file mode 100644 index 0000000000000..e7c5d21dddf81 --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/MoveStdlib/vector.json @@ -0,0 +1 @@ +{"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":261,"end":267},"module_name":["0000000000000000000000000000000000000000000000000000000000000001","vector"],"struct_map":{},"enum_map":{},"function_map":{"0":{"location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1124,"end":1176},"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1142,"end":1147},"type_parameters":[["Element",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1148,"end":1155}]],"parameters":[],"returns":[{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1160,"end":1175}],"locals":[],"nops":{},"code_map":{},"is_native":true},"1":{"location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1239,"end":1299},"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1257,"end":1263},"type_parameters":[["Element",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1264,"end":1271}]],"parameters":[["v#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1273,"end":1274}]],"returns":[{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1295,"end":1298}],"locals":[],"nops":{},"code_map":{},"is_native":true},"2":{"location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1453,"end":1526},"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1471,"end":1477},"type_parameters":[["Element",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1478,"end":1485}]],"parameters":[["v#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1487,"end":1488}],["i#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1508,"end":1509}]],"returns":[{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1517,"end":1525}],"locals":[],"nops":{},"code_map":{},"is_native":true},"3":{"location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1602,"end":1676},"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1620,"end":1629},"type_parameters":[["Element",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1630,"end":1637}]],"parameters":[["v#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1639,"end":1640}],["e#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1664,"end":1665}]],"returns":[],"locals":[],"nops":{},"code_map":{},"is_native":true},"4":{"location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1826,"end":1911},"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1844,"end":1854},"type_parameters":[["Element",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1855,"end":1862}]],"parameters":[["v#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1864,"end":1865}],["i#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1889,"end":1890}]],"returns":[{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":1898,"end":1910}],"locals":[],"nops":{},"code_map":{},"is_native":true},"5":{"location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2012,"end":2082},"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2030,"end":2038},"type_parameters":[["Element",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2039,"end":2046}]],"parameters":[["v#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2048,"end":2049}]],"returns":[{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2074,"end":2081}],"locals":[],"nops":{},"code_map":{},"is_native":true},"6":{"location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2168,"end":2229},"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2186,"end":2199},"type_parameters":[["Element",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2200,"end":2207}]],"parameters":[["v#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2209,"end":2210}]],"returns":[],"locals":[],"nops":{},"code_map":{},"is_native":true},"7":{"location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2371,"end":2444},"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2389,"end":2393},"type_parameters":[["Element",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2394,"end":2401}]],"parameters":[["v#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2403,"end":2404}],["i#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2428,"end":2429}],["j#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2436,"end":2437}]],"returns":[],"locals":[],"nops":{},"code_map":{},"is_native":true},"8":{"location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2503,"end":2616},"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2514,"end":2523},"type_parameters":[["Element",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2524,"end":2531}]],"parameters":[["e#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2533,"end":2534}]],"returns":[{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2546,"end":2561}],"locals":[["v#1#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2576,"end":2577}]],"nops":{},"code_map":{"0":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2580,"end":2587},"1":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2572,"end":2577},"2":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2593,"end":2594},"3":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2605,"end":2606},"4":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2593,"end":2607},"5":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2613,"end":2614}},"is_native":false},"9":{"location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2685,"end":3022},"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2696,"end":2703},"type_parameters":[["Element",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2704,"end":2711}]],"parameters":[["v#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2713,"end":2714}]],"returns":[],"locals":[["back_index#1#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2837,"end":2847}],["front_index#1#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2808,"end":2819}],["len#1#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2748,"end":2751}]],"nops":{},"code_map":{"0":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2754,"end":2755},"2":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2754,"end":2764},"3":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2748,"end":2751},"4":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2774,"end":2777},"5":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2781,"end":2782},"6":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2778,"end":2780},"7":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2770,"end":2793},"8":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2784,"end":2793},"11":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2822,"end":2823},"12":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2804,"end":2819},"13":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2850,"end":2853},"14":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2856,"end":2857},"15":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2854,"end":2855},"16":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2833,"end":2847},"17":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2870,"end":2881},"18":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2884,"end":2894},"19":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2882,"end":2883},"20":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2863,"end":3020},"21":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2906,"end":2907},"22":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2913,"end":2924},"23":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2926,"end":2936},"24":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2906,"end":2937},"25":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2961,"end":2972},"26":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2975,"end":2976},"27":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2973,"end":2974},"28":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2947,"end":2958},"29":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2999,"end":3009},"30":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3012,"end":3013},"31":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3010,"end":3011},"32":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2986,"end":2996},"33":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":2863,"end":3020}},"is_native":false},"10":{"location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3100,"end":3218},"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3111,"end":3117},"type_parameters":[["Element",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3118,"end":3125}]],"parameters":[["lhs#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3127,"end":3130}],["other#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3154,"end":3159}]],"returns":[],"locals":[["$stop#0#3",{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":3011,"end":3016}],["e#1#10",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3195,"end":3196}],["i#1#6",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1807,"end":1808}],["stop#1#6",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1827,"end":1831}],["v#1#1",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6250,"end":6251}]],"nops":{},"code_map":{"0":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3184,"end":3189},"1":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6246,"end":6251},"2":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6262,"end":6263},"3":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6262,"end":6273},"4":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6279,"end":6280},"5":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6279,"end":6289},"6":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":3011,"end":3016},"7":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2483,"end":2484},"8":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1803,"end":1808},"9":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":3057,"end":3062},"10":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1827,"end":1831},"11":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1852,"end":1853},"12":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1856,"end":1860},"13":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1854,"end":1855},"14":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1845,"end":1903},"15":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1875,"end":1876},"16":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6295,"end":6296},"17":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6301,"end":6302},"18":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6301,"end":6313},"19":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3195,"end":3196},"20":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3198,"end":3201},"21":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3212,"end":3213},"22":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3198,"end":3214},"23":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1891,"end":1892},"24":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1895,"end":1896},"25":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1893,"end":1894},"26":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1887,"end":1888},"27":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1845,"end":1903},"28":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2473,"end":2496},"30":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6321,"end":6322},"31":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6321,"end":6338},"32":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3215,"end":3216}},"is_native":false},"11":{"location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3295,"end":3374},"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3306,"end":3314},"type_parameters":[["Element",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3315,"end":3322}]],"parameters":[["v#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3324,"end":3325}]],"returns":[{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3346,"end":3350}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3357,"end":3358},"1":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3357,"end":3367},"2":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3371,"end":3372},"3":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3368,"end":3370},"4":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3357,"end":3372}},"is_native":false},"12":{"location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3451,"end":3663},"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3462,"end":3470},"type_parameters":[["Element",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3471,"end":3478}]],"parameters":[["v#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3480,"end":3481}],["e#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3501,"end":3502}]],"returns":[{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3515,"end":3519}],"locals":[["i#1#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3534,"end":3535}],["len#1#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3549,"end":3552}]],"nops":{},"code_map":{"0":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3538,"end":3539},"1":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3530,"end":3535},"2":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3555,"end":3556},"3":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3555,"end":3565},"4":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3549,"end":3552},"5":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3578,"end":3579},"6":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3582,"end":3585},"7":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3580,"end":3581},"8":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3571,"end":3650},"10":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3602,"end":3603},"11":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3604,"end":3605},"12":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3601,"end":3606},"13":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3610,"end":3611},"14":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3607,"end":3609},"15":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3597,"end":3624},"16":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3613,"end":3624},"20":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3620,"end":3624},"21":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3613,"end":3624},"22":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3638,"end":3639},"23":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3642,"end":3643},"24":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3640,"end":3641},"25":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3634,"end":3635},"26":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3571,"end":3650},"27":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3656,"end":3661}},"is_native":false},"13":{"location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3767,"end":3996},"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3778,"end":3786},"type_parameters":[["Element",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3787,"end":3794}]],"parameters":[["v#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3796,"end":3797}],["e#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3817,"end":3818}]],"returns":[{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3832,"end":3836},{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3838,"end":3841}],"locals":[["i#1#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3857,"end":3858}],["len#1#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3872,"end":3875}]],"nops":{},"code_map":{"0":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3861,"end":3862},"1":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3853,"end":3858},"2":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3878,"end":3879},"3":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3878,"end":3888},"4":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3872,"end":3875},"5":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3901,"end":3902},"6":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3905,"end":3908},"7":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3903,"end":3904},"8":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3894,"end":3978},"10":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3925,"end":3926},"11":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3927,"end":3928},"12":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3924,"end":3929},"13":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3933,"end":3934},"14":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3930,"end":3932},"15":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3920,"end":3952},"16":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3936,"end":3952},"20":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3944,"end":3948},"21":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3950,"end":3951},"22":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3936,"end":3952},"23":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3966,"end":3967},"24":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3970,"end":3971},"25":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3968,"end":3969},"26":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3962,"end":3963},"27":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3894,"end":3978},"28":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3984,"end":3994},"32":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3985,"end":3990},"33":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3992,"end":3993},"34":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":3984,"end":3994}},"is_native":false},"14":{"location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4183,"end":4471},"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4194,"end":4200},"type_parameters":[["Element",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4201,"end":4208}]],"parameters":[["v#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4210,"end":4211}],["i#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4239,"end":4240}]],"returns":[{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4248,"end":4255}],"locals":[["%#1",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4411,"end":4412}],["%#2",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4404,"end":4405}],["len#1#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4270,"end":4273}]],"nops":{},"code_map":{"0":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4276,"end":4277},"2":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4276,"end":4286},"3":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4266,"end":4273},"4":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4326,"end":4327},"5":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4331,"end":4334},"6":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4328,"end":4330},"7":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4322,"end":4362},"8":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4336,"end":4362},"10":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4342,"end":4362},"11":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4336,"end":4362},"12":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4375,"end":4378},"13":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4381,"end":4382},"14":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4379,"end":4380},"15":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4369,"end":4372},"16":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4395,"end":4396},"17":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4399,"end":4402},"18":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4397,"end":4398},"19":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4388,"end":4451},"20":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4404,"end":4405},"22":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4411,"end":4412},"24":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4428,"end":4429},"25":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4432,"end":4433},"26":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4430,"end":4431},"27":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4424,"end":4425},"28":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4404,"end":4405},"29":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4411,"end":4412},"30":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4443,"end":4444},"31":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4404,"end":4451},"32":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4388,"end":4451},"33":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4457,"end":4458},"34":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4457,"end":4469}},"is_native":false},"15":{"location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4781,"end":5045},"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4792,"end":4798},"type_parameters":[["Element",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4799,"end":4806}]],"parameters":[["v#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4808,"end":4809}],["e#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4833,"end":4834}],["i#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4849,"end":4850}]],"returns":[],"locals":[["len#1#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4867,"end":4870}]],"nops":{},"code_map":{"0":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4873,"end":4874},"2":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4873,"end":4883},"3":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4867,"end":4870},"4":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4916,"end":4917},"5":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4920,"end":4923},"6":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4918,"end":4919},"7":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4912,"end":4951},"8":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4925,"end":4951},"10":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4931,"end":4951},"11":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4925,"end":4951},"12":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4958,"end":4959},"13":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4970,"end":4971},"14":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4958,"end":4972},"15":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4985,"end":4986},"16":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4989,"end":4992},"17":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4987,"end":4988},"18":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4978,"end":5043},"19":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5004,"end":5005},"20":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5011,"end":5012},"21":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5014,"end":5017},"22":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5004,"end":5018},"23":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5032,"end":5033},"24":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5036,"end":5037},"25":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5034,"end":5035},"26":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5028,"end":5029},"27":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":4978,"end":5043}},"is_native":false},"16":{"location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5251,"end":5457},"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5262,"end":5273},"type_parameters":[["Element",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5274,"end":5281}]],"parameters":[["v#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5283,"end":5284}],["i#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5308,"end":5309}]],"returns":[{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5317,"end":5324}],"locals":[["last_idx#1#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5387,"end":5395}]],"nops":{},"code_map":{"0":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5339,"end":5340},"2":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5339,"end":5349},"3":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5353,"end":5354},"4":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5350,"end":5352},"5":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5331,"end":5377},"9":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5356,"end":5376},"10":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5331,"end":5377},"11":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5398,"end":5399},"13":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5398,"end":5408},"14":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5411,"end":5412},"15":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5409,"end":5410},"16":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5387,"end":5395},"17":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5418,"end":5419},"18":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5425,"end":5426},"19":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5428,"end":5436},"20":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5418,"end":5437},"21":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5443,"end":5444},"22":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":5443,"end":5455}},"is_native":false},"17":{"location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":9357,"end":9475},"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":9368,"end":9375},"type_parameters":[["T",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":9376,"end":9377}]],"parameters":[["v#0#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":9379,"end":9380}]],"returns":[{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":9402,"end":9411}],"locals":[["$stop#0#3",{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":3011,"end":3016}],["i#1#6",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1807,"end":1808}],["r#1#0",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":9426,"end":9427}],["stop#1#6",{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1827,"end":1831}],["u#1#10",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":9451,"end":9452}],["v#1#1",{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6250,"end":6251}]],"nops":{},"code_map":{"0":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":9430,"end":9438},"1":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":9422,"end":9427},"2":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":9444,"end":9445},"3":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6246,"end":6251},"4":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6262,"end":6263},"5":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6262,"end":6273},"6":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6279,"end":6280},"7":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6279,"end":6289},"8":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":3011,"end":3016},"9":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":2483,"end":2484},"10":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1803,"end":1808},"11":{"file_hash":[3,242,225,165,131,28,203,43,156,143,119,249,217,74,162,205,53,158,49,25,139,175,4,223,95,212,226,104,217,167,38,26],"start":3057,"end":3062},"12":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1827,"end":1831},"13":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1852,"end":1853},"14":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1856,"end":1860},"15":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1854,"end":1855},"16":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1845,"end":1903},"17":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1875,"end":1876},"18":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6295,"end":6296},"19":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6301,"end":6302},"20":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6301,"end":6313},"21":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":9451,"end":9452},"22":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":9454,"end":9455},"23":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":9463,"end":9464},"24":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":9454,"end":9465},"25":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1891,"end":1892},"26":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1895,"end":1896},"27":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1893,"end":1894},"28":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1887,"end":1888},"29":{"file_hash":[54,47,138,104,171,115,23,224,131,176,160,65,21,99,189,119,64,168,202,80,38,98,202,231,44,226,206,16,224,130,113,119],"start":1845,"end":1903},"30":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6321,"end":6322},"31":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":6321,"end":6338},"32":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":9472,"end":9473}},"is_native":false},"18":{"location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":249,"end":12891},"definition_location":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":249,"end":12891},"type_parameters":[],"parameters":[],"returns":[],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[33,65,53,21,173,210,149,248,68,255,113,64,207,86,68,171,127,88,238,181,50,225,143,139,229,157,71,97,188,207,100,141],"start":249,"end":12891}},"is_native":false}},"constant_map":{"EINDEX_OUT_OF_BOUNDS":0}} \ No newline at end of file diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/Sui/dynamic_field.json b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/Sui/dynamic_field.json new file mode 100644 index 0000000000000..4ab037ad97448 --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/Sui/dynamic_field.json @@ -0,0 +1 @@ +{"definition_location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":631,"end":644},"module_name":["0000000000000000000000000000000000000000000000000000000000000002","dynamic_field"],"struct_map":{"0":{"definition_location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":1327,"end":1332},"type_parameters":[["Name",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":1333,"end":1337}],["Value",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":1360,"end":1365}]],"fields":[{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":1518,"end":1520},{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":1576,"end":1580},{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":1630,"end":1635}]}},"enum_map":{},"function_map":{"0":{"location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":1832,"end":2323},"definition_location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":1843,"end":1846},"type_parameters":[["Name",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":1847,"end":1851}],["Value",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":1874,"end":1879}]],"parameters":[["object#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":1952,"end":1958}],["name#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":1974,"end":1978}],["value#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":1990,"end":1995}]],"returns":[],"locals":[["field#1#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2184,"end":2189}],["hash#1#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2059,"end":2063}],["object_addr#1#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2016,"end":2027}]],"nops":{},"code_map":{"0":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2030,"end":2036},"2":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2030,"end":2049},"3":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2016,"end":2027},"4":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2084,"end":2095},"5":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2097,"end":2101},"6":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2066,"end":2102},"7":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2059,"end":2063},"8":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2134,"end":2145},"9":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2147,"end":2151},"10":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2117,"end":2152},"11":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2116,"end":2117},"12":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2108,"end":2174},"14":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2154,"end":2173},"15":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2108,"end":2174},"16":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2238,"end":2242},"17":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2212,"end":2243},"18":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2253,"end":2257},"19":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2267,"end":2272},"20":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2192,"end":2279},"21":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2184,"end":2189},"22":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2302,"end":2313},"23":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2315,"end":2320},"24":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2285,"end":2321}},"is_native":false},"1":{"location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2615,"end":2895},"definition_location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2626,"end":2632},"type_parameters":[["Name",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2633,"end":2637}],["Value",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2660,"end":2665}]],"parameters":[["object#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2674,"end":2680}],["name#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2688,"end":2692}]],"returns":[{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2701,"end":2707}],"locals":[["hash#1#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2761,"end":2765}]],"nops":{},"code_map":{"0":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2732,"end":2738},"1":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2732,"end":2751},"2":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2799,"end":2803},"3":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2768,"end":2804},"4":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2761,"end":2765},"5":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2862,"end":2868},"6":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2870,"end":2874},"7":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2822,"end":2875},"8":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":2881,"end":2893}},"is_native":false},"2":{"location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3185,"end":3496},"definition_location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3196,"end":3206},"type_parameters":[["Name",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3207,"end":3211}],["Value",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3234,"end":3239}]],"parameters":[["object#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3253,"end":3259}],["name#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3275,"end":3279}]],"returns":[{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3290,"end":3300}],"locals":[["hash#1#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3354,"end":3358}]],"nops":{},"code_map":{"0":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3325,"end":3331},"2":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3325,"end":3344},"3":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3392,"end":3396},"4":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3361,"end":3397},"5":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3354,"end":3358},"6":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3459,"end":3465},"7":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3467,"end":3471},"8":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3415,"end":3472},"9":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3478,"end":3494}},"is_native":false},"3":{"location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3810,"end":4131},"definition_location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3821,"end":3827},"type_parameters":[["Name",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3828,"end":3832}],["Value",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3855,"end":3860}]],"parameters":[["object#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3869,"end":3875}],["name#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3887,"end":3891}]],"returns":[{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3900,"end":3905}],"locals":[["hash#1#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3959,"end":3963}],["object_addr#1#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3916,"end":3927}],["value#1#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4033,"end":4038}]],"nops":{},"code_map":{"0":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3930,"end":3936},"2":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3930,"end":3949},"3":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3916,"end":3927},"4":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3984,"end":3995},"5":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3997,"end":4001},"6":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3966,"end":4002},"7":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":3959,"end":3963},"8":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4083,"end":4094},"9":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4096,"end":4100},"10":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4043,"end":4101},"11":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4012,"end":4040},"12":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4033,"end":4038},"13":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4030,"end":4031},"14":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4107,"end":4118},"15":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4124,"end":4129}},"is_native":false},"4":{"location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4282,"end":4499},"definition_location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4293,"end":4300},"type_parameters":[["Name",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4301,"end":4305}]],"parameters":[["object#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4328,"end":4334}],["name#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4342,"end":4346}]],"returns":[{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4355,"end":4359}],"locals":[["hash#1#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4413,"end":4417}],["object_addr#1#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4370,"end":4381}]],"nops":{},"code_map":{"0":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4384,"end":4390},"1":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4384,"end":4403},"2":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4370,"end":4381},"3":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4438,"end":4449},"4":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4451,"end":4455},"5":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4420,"end":4456},"6":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4413,"end":4417},"7":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4479,"end":4490},"8":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4492,"end":4496},"9":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4462,"end":4497}},"is_native":false},"5":{"location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4603,"end":4855},"definition_location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4614,"end":4630},"type_parameters":[["Name",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4631,"end":4635}],["Value",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4658,"end":4663}]],"parameters":[["object#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4677,"end":4683}],["name#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4699,"end":4703}]],"returns":[{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4714,"end":4727}],"locals":[["%#1",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4734,"end":4853}]],"nops":{},"code_map":{"0":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4752,"end":4758},"2":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4760,"end":4764},"3":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4738,"end":4765},"4":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4734,"end":4853},"5":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4797,"end":4803},"6":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4805,"end":4809},"7":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4790,"end":4810},"8":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4777,"end":4811},"9":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4734,"end":4853},"11":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4833,"end":4847},"14":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":4734,"end":4853}},"is_native":false},"6":{"location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5006,"end":5285},"definition_location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5017,"end":5033},"type_parameters":[["Name",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5034,"end":5038}],["Value",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5061,"end":5066}]],"parameters":[["object#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5080,"end":5086}],["name#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5098,"end":5102}]],"returns":[{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5113,"end":5117}],"locals":[["hash#1#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5171,"end":5175}],["object_addr#1#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5128,"end":5139}]],"nops":{},"code_map":{"0":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5142,"end":5148},"1":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5142,"end":5161},"2":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5128,"end":5139},"3":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5196,"end":5207},"4":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5209,"end":5213},"5":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5178,"end":5214},"6":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5171,"end":5175},"7":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5265,"end":5276},"8":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5278,"end":5282},"9":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5220,"end":5283}},"is_native":false},"7":{"location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5287,"end":5618},"definition_location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5307,"end":5317},"type_parameters":[["Name",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5318,"end":5322}]],"parameters":[["object#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5350,"end":5356}],["name#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5368,"end":5372}]],"returns":[{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5384,"end":5388},{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5390,"end":5397}],"locals":[["%#1",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5505,"end":5533}],["hash#1#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5452,"end":5456}],["id#1#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5513,"end":5515}],["value#1#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5526,"end":5531}]],"nops":{},"code_map":{"0":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5423,"end":5429},"1":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5423,"end":5442},"2":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5490,"end":5494},"3":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5459,"end":5495},"4":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5452,"end":5456},"5":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5573,"end":5579},"6":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5581,"end":5585},"7":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5536,"end":5586},"8":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5505,"end":5533},"10":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5513,"end":5515},"12":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5505,"end":5533},"13":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5523,"end":5524},"15":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5505,"end":5533},"16":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5526,"end":5531},"18":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5593,"end":5595},"19":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5597,"end":5602},"20":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5597,"end":5615},"21":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5592,"end":5616}},"is_native":false},"8":{"location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5620,"end":5967},"definition_location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5640,"end":5654},"type_parameters":[["Name",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5655,"end":5659}]],"parameters":[["object#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5687,"end":5693}],["name#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5709,"end":5713}]],"returns":[{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5725,"end":5733},{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5735,"end":5742}],"locals":[["%#1",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5850,"end":5878}],["hash#1#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5797,"end":5801}],["id#1#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5858,"end":5860}],["value#1#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5871,"end":5876}]],"nops":{},"code_map":{"0":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5768,"end":5774},"2":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5768,"end":5787},"3":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5835,"end":5839},"4":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5804,"end":5840},"5":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5797,"end":5801},"6":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5922,"end":5928},"7":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5930,"end":5934},"8":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5881,"end":5935},"9":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5850,"end":5878},"11":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5858,"end":5860},"13":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5850,"end":5878},"14":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5868,"end":5869},"16":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5850,"end":5878},"17":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5871,"end":5876},"19":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5942,"end":5944},"20":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5946,"end":5951},"22":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5946,"end":5964},"23":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":5941,"end":5965}},"is_native":false},"9":{"location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6016,"end":6128},"definition_location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6043,"end":6060},"type_parameters":[["K",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6061,"end":6062}]],"parameters":[["parent#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6090,"end":6096}],["k#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6111,"end":6112}]],"returns":[{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6120,"end":6127}],"locals":[],"nops":{},"code_map":{},"is_native":true},"10":{"location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6130,"end":6217},"definition_location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6157,"end":6173},"type_parameters":[["Child",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6174,"end":6179}]],"parameters":[["parent#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6186,"end":6192}],["child#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6203,"end":6208}]],"returns":[],"locals":[],"nops":{},"code_map":{},"is_native":true},"11":{"location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6478,"end":6572},"definition_location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6505,"end":6524},"type_parameters":[["Child",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6525,"end":6530}]],"parameters":[["object#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6537,"end":6543}],["id#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6551,"end":6553}]],"returns":[{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6565,"end":6571}],"locals":[],"nops":{},"code_map":{},"is_native":true},"12":{"location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6574,"end":6691},"definition_location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6601,"end":6624},"type_parameters":[["Child",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6625,"end":6630}]],"parameters":[["object#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6642,"end":6648}],["id#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6664,"end":6666}]],"returns":[{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6680,"end":6690}],"locals":[],"nops":{},"code_map":{},"is_native":true},"13":{"location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6883,"end":6979},"definition_location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6910,"end":6929},"type_parameters":[["Child",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6930,"end":6935}]],"parameters":[["parent#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6942,"end":6948}],["id#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6959,"end":6961}]],"returns":[{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6973,"end":6978}],"locals":[],"nops":{},"code_map":{},"is_native":true},"14":{"location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":6981,"end":7061},"definition_location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":7008,"end":7024},"type_parameters":[],"parameters":[["parent#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":7025,"end":7031}],["id#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":7042,"end":7044}]],"returns":[{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":7056,"end":7060}],"locals":[],"nops":{},"code_map":{},"is_native":true},"15":{"location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":7063,"end":7163},"definition_location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":7090,"end":7114},"type_parameters":[["Child",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":7115,"end":7120}]],"parameters":[["parent#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":7127,"end":7133}],["id#0#0",{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":7144,"end":7146}]],"returns":[{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":7158,"end":7162}],"locals":[],"nops":{},"code_map":{},"is_native":true},"16":{"location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":619,"end":7163},"definition_location":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":619,"end":7163},"type_parameters":[],"parameters":[],"returns":[],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[63,177,94,81,68,114,103,117,80,253,139,95,159,220,7,255,246,128,191,217,112,182,184,120,128,154,245,150,245,191,15,225],"start":619,"end":7163}},"is_native":false}},"constant_map":{"EBCSSerializationFailure":3,"EFieldAlreadyExists":0,"EFieldDoesNotExist":1,"EFieldTypeMismatch":2,"ESharedObjectOperationNotSupported":4}} \ No newline at end of file diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/Sui/linked_table.json b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/Sui/linked_table.json new file mode 100644 index 0000000000000..00c7579cdcb0b --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/Sui/linked_table.json @@ -0,0 +1 @@ +{"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":198,"end":210},"module_name":["0000000000000000000000000000000000000000000000000000000000000002","linked_table"],"struct_map":{"0":{"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":424,"end":435},"type_parameters":[["K",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":436,"end":437}],["V",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":468,"end":469}]],"fields":[{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":528,"end":530},{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":592,"end":596},{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":671,"end":675},{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":754,"end":758}]},"1":{"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":788,"end":792},"type_parameters":[["K",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":793,"end":794}],["V",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":817,"end":818}]],"fields":[{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":868,"end":872},{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":910,"end":914},{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":962,"end":967}]}},"enum_map":{},"function_map":{"0":{"location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1006,"end":1229},"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1017,"end":1020},"type_parameters":[["K",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1021,"end":1022}],["V",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1045,"end":1046}]],"parameters":[["ctx#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1055,"end":1058}]],"returns":[{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1077,"end":1094}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1139,"end":1142},"1":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1127,"end":1143},"2":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1159,"end":1160},"3":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1176,"end":1190},"4":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1206,"end":1220},"5":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1101,"end":1227}},"is_native":false},"1":{"location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1317,"end":1426},"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1328,"end":1333},"type_parameters":[["K",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1334,"end":1335}],["V",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1358,"end":1359}]],"parameters":[["table#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1368,"end":1373}]],"returns":[{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1396,"end":1406}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1414,"end":1419},"1":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1413,"end":1424}},"is_native":false},"2":{"location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1513,"end":1621},"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1524,"end":1528},"type_parameters":[["K",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1529,"end":1530}],["V",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1553,"end":1554}]],"parameters":[["table#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1563,"end":1568}]],"returns":[{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1591,"end":1601}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1609,"end":1614},"1":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1608,"end":1619}},"is_native":false},"3":{"location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1869,"end":2472},"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1880,"end":1890},"type_parameters":[["K",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1891,"end":1892}],["V",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1915,"end":1916}]],"parameters":[["table#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1930,"end":1935}],["k#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1965,"end":1966}],["value#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1975,"end":1980}]],"returns":[],"locals":[["%#1",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2132,"end":2374}],["next#1#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2125,"end":2129}],["old_head#1#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1997,"end":2005}],["old_head_k#1#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2170,"end":2180}],["prev#1#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2094,"end":2098}]],"nops":{},"code_map":{"0":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2008,"end":2013},"1":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2008,"end":2018},"2":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2032,"end":2033},"3":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2008,"end":2034},"4":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":1997,"end":2005},"5":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2044,"end":2049},"6":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2044,"end":2054},"7":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2044,"end":2064},"8":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2040,"end":2084},"9":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2066,"end":2071},"10":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2066,"end":2076},"11":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2082,"end":2083},"12":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2066,"end":2084},"13":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2101,"end":2115},"14":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2094,"end":2098},"15":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2136,"end":2144},"16":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2136,"end":2154},"17":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2132,"end":2374},"18":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2183,"end":2191},"19":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2183,"end":2206},"20":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2170,"end":2180},"21":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2296,"end":2297},"22":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2283,"end":2298},"23":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2254,"end":2259},"24":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2249,"end":2262},"25":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2264,"end":2274},"26":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2216,"end":2275},"27":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2216,"end":2280},"28":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2216,"end":2298},"29":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2321,"end":2331},"30":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2308,"end":2332},"31":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2132,"end":2374},"33":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2354,"end":2368},"34":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2132,"end":2374},"36":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2125,"end":2129},"37":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2396,"end":2401},"38":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2391,"end":2404},"39":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2406,"end":2407},"40":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2416,"end":2420},"41":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2422,"end":2426},"42":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2428,"end":2433},"43":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2409,"end":2435},"44":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2380,"end":2436},"45":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2455,"end":2460},"46":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2455,"end":2465},"48":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2468,"end":2469},"49":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2466,"end":2467},"50":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2442,"end":2447},"51":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2442,"end":2452},"52":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2442,"end":2469},"53":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2469,"end":2470}},"is_native":false},"4":{"location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2718,"end":3320},"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2729,"end":2738},"type_parameters":[["K",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2739,"end":2740}],["V",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2763,"end":2764}]],"parameters":[["table#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2778,"end":2783}],["k#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2813,"end":2814}],["value#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2823,"end":2828}]],"returns":[],"locals":[["%#1",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2949,"end":3191}],["next#1#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3201,"end":3205}],["old_tail#1#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2895,"end":2903}],["old_tail_k#1#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2987,"end":2997}],["prev#1#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2942,"end":2946}]],"nops":{},"code_map":{"0":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2845,"end":2850},"1":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2845,"end":2855},"2":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2845,"end":2865},"3":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2841,"end":2885},"4":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2867,"end":2872},"5":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2867,"end":2877},"6":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2883,"end":2884},"7":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2867,"end":2885},"8":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2906,"end":2911},"9":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2906,"end":2916},"10":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2930,"end":2931},"11":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2906,"end":2932},"12":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2895,"end":2903},"13":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2953,"end":2961},"14":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2953,"end":2971},"15":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2949,"end":3191},"16":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3000,"end":3008},"17":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3000,"end":3023},"18":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2987,"end":2997},"19":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3113,"end":3114},"20":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3100,"end":3115},"21":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3071,"end":3076},"22":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3066,"end":3079},"23":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3081,"end":3091},"24":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3033,"end":3092},"25":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3033,"end":3097},"26":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3033,"end":3115},"27":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3138,"end":3148},"28":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3125,"end":3149},"29":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2949,"end":3191},"31":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3171,"end":3185},"32":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2949,"end":3191},"34":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":2942,"end":2946},"35":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3208,"end":3222},"36":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3201,"end":3205},"37":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3244,"end":3249},"38":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3239,"end":3252},"39":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3254,"end":3255},"40":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3264,"end":3268},"41":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3270,"end":3274},"42":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3276,"end":3281},"43":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3257,"end":3283},"44":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3228,"end":3284},"45":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3303,"end":3308},"46":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3303,"end":3313},"48":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3316,"end":3317},"49":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3314,"end":3315},"50":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3290,"end":3295},"51":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3290,"end":3300},"52":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3290,"end":3317},"53":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3317,"end":3318}},"is_native":false},"5":{"location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3556,"end":3702},"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3567,"end":3573},"type_parameters":[["K",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3574,"end":3575}],["V",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3598,"end":3599}]],"parameters":[["table#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3608,"end":3613}],["k#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3635,"end":3636}]],"returns":[{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3642,"end":3644}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3682,"end":3687},"1":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3681,"end":3690},"2":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3692,"end":3693},"3":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3652,"end":3694},"4":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3651,"end":3700}},"is_native":false},"6":{"location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3940,"end":4121},"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3951,"end":3961},"type_parameters":[["K",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3962,"end":3963}],["V",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":3986,"end":3987}]],"parameters":[["table#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4001,"end":4006}],["k#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4036,"end":4037}]],"returns":[{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4045,"end":4051}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4101,"end":4106},"1":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4096,"end":4109},"2":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4111,"end":4112},"3":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4063,"end":4113},"4":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4058,"end":4119}},"is_native":false},"7":{"location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4413,"end":4564},"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4424,"end":4428},"type_parameters":[["K",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4429,"end":4430}],["V",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4453,"end":4454}]],"parameters":[["table#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4463,"end":4468}],["k#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4490,"end":4491}]],"returns":[{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4497,"end":4507}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4545,"end":4550},"1":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4544,"end":4553},"2":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4555,"end":4556},"3":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4515,"end":4557},"4":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4514,"end":4562}},"is_native":false},"8":{"location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4852,"end":5003},"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4863,"end":4867},"type_parameters":[["K",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4868,"end":4869}],["V",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4892,"end":4893}]],"parameters":[["table#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4902,"end":4907}],["k#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4929,"end":4930}]],"returns":[{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4936,"end":4946}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4984,"end":4989},"1":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4983,"end":4992},"2":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4994,"end":4995},"3":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4954,"end":4996},"4":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":4953,"end":5001}},"is_native":false},"9":{"location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5330,"end":5886},"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5341,"end":5347},"type_parameters":[["K",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5348,"end":5349}],["V",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5372,"end":5373}]],"parameters":[["table#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5382,"end":5387}],["k#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5413,"end":5414}]],"returns":[{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5420,"end":5421}],"locals":[["next#1#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5451,"end":5455}],["prev#1#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5445,"end":5449}],["value#1#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5457,"end":5462}]],"nops":{},"code_map":{"0":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5486,"end":5491},"1":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5481,"end":5494},"2":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5496,"end":5497},"3":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5467,"end":5498},"4":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5432,"end":5464},"5":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5457,"end":5462},"6":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5451,"end":5455},"7":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5445,"end":5449},"8":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5517,"end":5522},"9":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5517,"end":5527},"11":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5530,"end":5531},"12":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5528,"end":5529},"13":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5504,"end":5509},"14":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5504,"end":5514},"15":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5504,"end":5531},"16":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5541,"end":5545},"17":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5541,"end":5555},"18":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5537,"end":5648},"19":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5638,"end":5642},"20":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5605,"end":5610},"21":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5600,"end":5613},"22":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5616,"end":5620},"23":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5616,"end":5629},"24":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5615,"end":5629},"25":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5567,"end":5630},"26":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5567,"end":5635},"27":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5567,"end":5642},"28":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5658,"end":5662},"29":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5658,"end":5672},"30":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5654,"end":5765},"31":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5755,"end":5759},"32":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5722,"end":5727},"33":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5717,"end":5730},"34":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5733,"end":5737},"35":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5733,"end":5746},"36":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5732,"end":5746},"37":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5684,"end":5747},"38":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5684,"end":5752},"39":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5684,"end":5759},"40":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5775,"end":5780},"41":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5775,"end":5785},"42":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5775,"end":5794},"43":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5798,"end":5800},"44":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5795,"end":5797},"45":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5771,"end":5819},"46":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5815,"end":5819},"47":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5802,"end":5807},"48":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5802,"end":5812},"49":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5802,"end":5819},"50":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5829,"end":5834},"51":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5829,"end":5839},"52":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5829,"end":5848},"53":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5852,"end":5854},"54":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5849,"end":5851},"55":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5825,"end":5873},"56":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5869,"end":5873},"57":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5856,"end":5861},"58":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5856,"end":5866},"59":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5856,"end":5873},"60":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5825,"end":5873},"63":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":5879,"end":5884}},"is_native":false},"10":{"location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6032,"end":6247},"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6043,"end":6052},"type_parameters":[["K",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6053,"end":6054}],["V",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6077,"end":6078}]],"parameters":[["table#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6087,"end":6092}]],"returns":[{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6120,"end":6121},{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6123,"end":6124}],"locals":[["head#1#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6186,"end":6190}]],"nops":{},"code_map":{"0":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6140,"end":6145},"1":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6140,"end":6150},"2":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6140,"end":6160},"3":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6132,"end":6176},"7":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6162,"end":6175},"8":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6132,"end":6176},"9":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6194,"end":6199},"10":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6194,"end":6204},"11":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6194,"end":6213},"12":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6193,"end":6213},"13":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6186,"end":6190},"14":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6220,"end":6224},"15":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6226,"end":6231},"16":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6239,"end":6243},"17":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6226,"end":6244},"18":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6219,"end":6245}},"is_native":false},"11":{"location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6392,"end":6606},"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6403,"end":6411},"type_parameters":[["K",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6412,"end":6413}],["V",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6436,"end":6437}]],"parameters":[["table#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6446,"end":6451}]],"returns":[{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6479,"end":6480},{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6482,"end":6483}],"locals":[["tail#1#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6545,"end":6549}]],"nops":{},"code_map":{"0":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6499,"end":6504},"1":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6499,"end":6509},"2":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6499,"end":6519},"3":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6491,"end":6535},"7":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6521,"end":6534},"8":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6491,"end":6535},"9":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6553,"end":6558},"10":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6553,"end":6563},"11":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6553,"end":6572},"12":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6552,"end":6572},"13":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6545,"end":6549},"14":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6579,"end":6583},"15":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6585,"end":6590},"16":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6598,"end":6602},"17":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6585,"end":6603},"18":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6578,"end":6604}},"is_native":false},"12":{"location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6718,"end":6871},"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6729,"end":6737},"type_parameters":[["K",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6738,"end":6739}],["V",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6762,"end":6763}]],"parameters":[["table#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6772,"end":6777}],["k#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6799,"end":6800}]],"returns":[{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6806,"end":6810}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6857,"end":6862},"1":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6856,"end":6865},"2":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6867,"end":6868},"3":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6817,"end":6869}},"is_native":false},"13":{"location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6938,"end":7040},"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6949,"end":6955},"type_parameters":[["K",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6956,"end":6957}],["V",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6980,"end":6981}]],"parameters":[["table#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":6990,"end":6995}]],"returns":[{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7018,"end":7021}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7028,"end":7033},"1":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7028,"end":7038}},"is_native":false},"14":{"location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7108,"end":7218},"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7119,"end":7127},"type_parameters":[["K",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7128,"end":7129}],["V",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7152,"end":7153}]],"parameters":[["table#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7162,"end":7167}]],"returns":[{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7190,"end":7194}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7201,"end":7206},"1":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7201,"end":7211},"3":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7215,"end":7216},"4":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7212,"end":7214},"5":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7201,"end":7216}},"is_native":false},"15":{"location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7316,"end":7520},"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7327,"end":7340},"type_parameters":[["K",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7341,"end":7342}],["V",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7365,"end":7366}]],"parameters":[["table#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7375,"end":7380}]],"returns":[],"locals":[["id#1#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7425,"end":7427}],["size#1#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7429,"end":7433}]],"nops":{},"code_map":{"0":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7456,"end":7461},"1":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7411,"end":7453},"2":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7450,"end":7451},"3":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7441,"end":7442},"4":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7429,"end":7433},"5":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7425,"end":7427},"6":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7475,"end":7479},"7":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7483,"end":7484},"8":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7480,"end":7482},"9":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7467,"end":7501},"11":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7486,"end":7500},"12":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7467,"end":7501},"13":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7507,"end":7509},"14":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7507,"end":7518}},"is_native":false},"16":{"location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7620,"end":7785},"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7631,"end":7635},"type_parameters":[["K",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7636,"end":7637}],["V",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7660,"end":7661}]],"parameters":[["table#0#0",{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7677,"end":7682}]],"returns":[],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7761,"end":7766},"1":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7713,"end":7758},"2":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7755,"end":7756},"3":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7746,"end":7747},"4":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7737,"end":7738},"5":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":7772,"end":7783}},"is_native":false},"17":{"location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":186,"end":7785},"definition_location":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":186,"end":7785},"type_parameters":[],"parameters":[],"returns":[],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[172,98,154,2,203,165,81,8,195,23,207,200,165,130,162,221,230,96,63,240,58,139,85,89,221,206,114,78,96,99,2,138],"start":186,"end":7785}},"is_native":false}},"constant_map":{"ETableIsEmpty":1,"ETableNotEmpty":0}} \ No newline at end of file diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/Sui/object.json b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/Sui/object.json new file mode 100644 index 0000000000000..b20ebd7fd723d --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/Sui/object.json @@ -0,0 +1 @@ +{"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":114,"end":120},"module_name":["0000000000000000000000000000000000000000000000000000000000000002","object"],"struct_map":{"0":{"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":1986,"end":1988},"type_parameters":[],"fields":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":2345,"end":2350}]},"1":{"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":2882,"end":2885},"type_parameters":[],"fields":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":2902,"end":2904}]}},"enum_map":{},"function_map":{"0":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":2960,"end":3036},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":2971,"end":2982},"type_parameters":[],"parameters":[["id#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":2983,"end":2985}]],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":2993,"end":3003}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3025,"end":3027},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3024,"end":3033},"2":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3010,"end":3034}},"is_native":false},"1":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3085,"end":3144},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3096,"end":3109},"type_parameters":[],"parameters":[["id#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3110,"end":3112}]],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3120,"end":3127}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3134,"end":3136},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3134,"end":3142}},"is_native":false},"2":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3179,"end":3269},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3190,"end":3203},"type_parameters":[],"parameters":[["bytes#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3204,"end":3209}]],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3224,"end":3226}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3253,"end":3258},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3233,"end":3259},"2":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3233,"end":3267}},"is_native":false},"3":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3305,"end":3372},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3316,"end":3331},"type_parameters":[],"parameters":[["bytes#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3332,"end":3337}]],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3349,"end":3351}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3363,"end":3368},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3358,"end":3370}},"is_native":false},"4":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3535,"end":3705},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3539,"end":3555},"type_parameters":[],"parameters":[["ctx#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3556,"end":3559}]],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3574,"end":3577}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3592,"end":3595},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3592,"end":3604},"2":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3608,"end":3612},"3":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3605,"end":3607},"4":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3584,"end":3632},"6":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3614,"end":3631},"7":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3584,"end":3632},"8":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3668,"end":3694},"9":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3656,"end":3696},"10":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3638,"end":3703}},"is_native":false},"5":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3812,"end":3911},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3832,"end":3837},"type_parameters":[],"parameters":[],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3841,"end":3844}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3881,"end":3900},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3869,"end":3902},"2":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":3851,"end":3909}},"is_native":false},"6":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4045,"end":4165},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4065,"end":4084},"type_parameters":[],"parameters":[],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4088,"end":4091}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4128,"end":4154},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4116,"end":4156},"2":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4098,"end":4163}},"is_native":false},"7":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4274,"end":4378},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4294,"end":4310},"type_parameters":[],"parameters":[],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4314,"end":4317}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4354,"end":4367},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4342,"end":4369},"2":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4324,"end":4376}},"is_native":false},"8":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4492,"end":4613},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4512,"end":4535},"type_parameters":[],"parameters":[],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4539,"end":4542}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4579,"end":4602},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4567,"end":4604},"2":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4549,"end":4611}},"is_native":false},"9":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4748,"end":4826},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4752,"end":4758},"type_parameters":[],"parameters":[],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4762,"end":4765}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4802,"end":4815},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4790,"end":4817},"2":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4772,"end":4824}},"is_native":false},"10":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4860,"end":4915},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4871,"end":4883},"type_parameters":[],"parameters":[["uid#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4884,"end":4887}]],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4896,"end":4899}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4907,"end":4910},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4906,"end":4913}},"is_native":false},"11":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4963,"end":5016},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4974,"end":4986},"type_parameters":[],"parameters":[["uid#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4987,"end":4990}]],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":4999,"end":5001}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5008,"end":5011},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5008,"end":5014}},"is_native":false},"12":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5051,"end":5134},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5062,"end":5074},"type_parameters":[],"parameters":[["uid#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5075,"end":5078}]],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5087,"end":5097}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5119,"end":5122},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5119,"end":5131},"2":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5118,"end":5131},"3":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5104,"end":5132}},"is_native":false},"13":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5183,"end":5249},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5194,"end":5208},"type_parameters":[],"parameters":[["uid#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5209,"end":5212}]],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5221,"end":5228}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5235,"end":5238},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5235,"end":5247}},"is_native":false},"14":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5397,"end":5511},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5408,"end":5411},"type_parameters":[],"parameters":[["ctx#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5412,"end":5415}]],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5434,"end":5437}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5474,"end":5477},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5474,"end":5500},"2":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5462,"end":5502},"3":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5444,"end":5509}},"is_native":false},"15":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5849,"end":5941},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5860,"end":5866},"type_parameters":[],"parameters":[["id#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5867,"end":5869}]],"returns":[],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5913,"end":5915},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5886,"end":5910},"2":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5896,"end":5908},"3":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5921,"end":5939}},"is_native":false},"16":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5980,"end":6041},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5991,"end":5993},"type_parameters":[["T",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":5994,"end":5995}]],"parameters":[["obj#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6002,"end":6005}]],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6012,"end":6014}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6032,"end":6035},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6021,"end":6036},"2":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6021,"end":6039}},"is_native":false},"17":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6083,"end":6153},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6094,"end":6103},"type_parameters":[["T",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6104,"end":6105}]],"parameters":[["obj#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6112,"end":6115}]],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6122,"end":6125}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6144,"end":6147},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6133,"end":6148},"2":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6132,"end":6151}},"is_native":false},"18":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6210,"end":6301},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6221,"end":6229},"type_parameters":[["T",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6230,"end":6231}]],"parameters":[["obj#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6238,"end":6241}]],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6248,"end":6258}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6291,"end":6294},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6280,"end":6295},"2":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6279,"end":6298},"3":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6265,"end":6299}},"is_native":false},"19":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6360,"end":6440},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6371,"end":6381},"type_parameters":[["T",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6382,"end":6383}]],"parameters":[["obj#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6390,"end":6393}]],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6400,"end":6407}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6425,"end":6428},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6414,"end":6429},"2":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6414,"end":6438}},"is_native":false},"20":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6750,"end":6795},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6761,"end":6771},"type_parameters":[["T",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6772,"end":6773}]],"parameters":[["obj#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6780,"end":6783}]],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6790,"end":6794}],"locals":[],"nops":{},"code_map":{},"is_native":true},"21":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6869,"end":6987},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6889,"end":6906},"type_parameters":[],"parameters":[["bytes#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6907,"end":6912}]],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6924,"end":6927}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6949,"end":6954},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6934,"end":6955},"2":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6976,"end":6981},"3":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6971,"end":6983},"4":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":6961,"end":6985}},"is_native":false},"22":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":7041,"end":7077},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":7052,"end":7063},"type_parameters":[],"parameters":[["id#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":7064,"end":7066}]],"returns":[],"locals":[],"nops":{},"code_map":{},"is_native":true},"23":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":7117,"end":7156},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":7128,"end":7142},"type_parameters":[],"parameters":[["id#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":7143,"end":7145}]],"returns":[],"locals":[],"nops":{},"code_map":{},"is_native":true},"24":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":7217,"end":7312},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":7228,"end":7240},"type_parameters":[],"parameters":[["ctx#0#0",{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":7241,"end":7244}]],"returns":[{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":7259,"end":7261}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":7280,"end":7283},"1":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":7280,"end":7308},"2":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":7268,"end":7310}},"is_native":false},"25":{"location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":102,"end":7312},"definition_location":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":102,"end":7312},"type_parameters":[],"parameters":[],"returns":[],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[103,169,24,233,31,232,113,209,174,110,82,17,119,136,52,139,67,161,201,191,142,219,94,29,103,80,209,55,36,30,13,204],"start":102,"end":7312}},"is_native":false}},"constant_map":{"ENotSystemAddress":6,"SUI_AUTHENTICATOR_STATE_ID":2,"SUI_BRIDGE_ID":5,"SUI_CLOCK_OBJECT_ID":1,"SUI_DENY_LIST_OBJECT_ID":4,"SUI_RANDOM_ID":3,"SUI_SYSTEM_STATE_OBJECT_ID":0}} \ No newline at end of file diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/Sui/tx_context.json b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/Sui/tx_context.json new file mode 100644 index 0000000000000..c887b4de4abfb --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/dependencies/Sui/tx_context.json @@ -0,0 +1 @@ +{"definition_location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":87,"end":97},"module_name":["0000000000000000000000000000000000000000000000000000000000000002","tx_context"],"struct_map":{"0":{"definition_location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":705,"end":714},"type_parameters":[],"fields":[{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":798,"end":804},{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":859,"end":866},{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":917,"end":922},{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":977,"end":995},{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1146,"end":1157}]}},"enum_map":{},"function_map":{"0":{"location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1242,"end":1306},"definition_location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1253,"end":1259},"type_parameters":[],"parameters":[["self#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1260,"end":1264}]],"returns":[{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1279,"end":1286}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1293,"end":1297},"1":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1293,"end":1304}},"is_native":false},"1":{"location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1421,"end":1491},"definition_location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1432,"end":1438},"type_parameters":[],"parameters":[["self#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1439,"end":1443}]],"returns":[{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1458,"end":1469}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1477,"end":1481},"1":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1476,"end":1489}},"is_native":false},"2":{"location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1522,"end":1580},"definition_location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1533,"end":1538},"type_parameters":[],"parameters":[["self#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1539,"end":1543}]],"returns":[{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1558,"end":1561}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1568,"end":1572},"1":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1568,"end":1578}},"is_native":false},"3":{"location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1651,"end":1735},"definition_location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1662,"end":1680},"type_parameters":[],"parameters":[["self#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1681,"end":1685}]],"returns":[{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1700,"end":1703}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1710,"end":1714},"1":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1710,"end":1733}},"is_native":false},"4":{"location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1938,"end":2140},"definition_location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1949,"end":1969},"type_parameters":[],"parameters":[["ctx#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1970,"end":1973}]],"returns":[{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":1992,"end":1999}],"locals":[["id#1#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2049,"end":2051}],["ids_created#1#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2010,"end":2021}]],"nops":{},"code_map":{"0":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2024,"end":2027},"1":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2024,"end":2039},"3":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2010,"end":2021},"4":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2066,"end":2069},"5":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2065,"end":2077},"6":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2064,"end":2077},"7":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2079,"end":2090},"8":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2054,"end":2091},"9":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2049,"end":2051},"10":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2115,"end":2126},"11":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2129,"end":2130},"12":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2127,"end":2128},"13":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2097,"end":2100},"14":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2097,"end":2112},"15":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2097,"end":2130},"16":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2136,"end":2138}},"is_native":false},"5":{"location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2275,"end":2338},"definition_location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2279,"end":2290},"type_parameters":[],"parameters":[["self#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2291,"end":2295}]],"returns":[{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2310,"end":2313}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2320,"end":2324},"1":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2320,"end":2336}},"is_native":false},"6":{"location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2412,"end":2481},"definition_location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2423,"end":2432},"type_parameters":[],"parameters":[["tx_hash#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2433,"end":2440}],["ids_created#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2454,"end":2465}]],"returns":[{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2473,"end":2480}],"locals":[],"nops":{},"code_map":{},"is_native":true},"7":{"location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2567,"end":2853},"definition_location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2578,"end":2581},"type_parameters":[],"parameters":[["sender#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2587,"end":2593}],["tx_hash#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2608,"end":2615}],["epoch#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2633,"end":2638}],["epoch_timestamp_ms#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2649,"end":2667}],["ids_created#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2678,"end":2689}]],"returns":[{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2699,"end":2708}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2723,"end":2730},"1":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2723,"end":2739},"2":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2743,"end":2757},"3":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2740,"end":2742},"4":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2715,"end":2776},"6":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2759,"end":2775},"7":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2715,"end":2776},"8":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2794,"end":2800},"9":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2802,"end":2809},"10":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2811,"end":2816},"11":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2818,"end":2836},"12":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2838,"end":2849},"13":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2782,"end":2851}},"is_native":false},"8":{"location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2948,"end":3176},"definition_location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2959,"end":2972},"type_parameters":[],"parameters":[["addr#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2978,"end":2982}],["hint#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":2997,"end":3001}],["epoch#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3012,"end":3017}],["epoch_timestamp_ms#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3028,"end":3046}],["ids_created#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3057,"end":3068}]],"returns":[{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3078,"end":3087}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3098,"end":3102},"1":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3128,"end":3132},"2":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3104,"end":3133},"3":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3135,"end":3140},"4":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3142,"end":3160},"5":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3162,"end":3173},"6":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3094,"end":3174}},"is_native":false},"9":{"location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3234,"end":3386},"definition_location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3245,"end":3250},"type_parameters":[],"parameters":[],"returns":[{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3254,"end":3263}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3361,"end":3365},"1":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3284,"end":3351},"2":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3376,"end":3377},"3":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3379,"end":3380},"4":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3382,"end":3383},"5":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3357,"end":3384}},"is_native":false},"10":{"location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3523,"end":3706},"definition_location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3527,"end":3550},"type_parameters":[],"parameters":[["hint#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3551,"end":3555}]],"returns":[{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3563,"end":3573}],"locals":[["tx_hash#1#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3588,"end":3595}]],"nops":{},"code_map":{"0":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3617,"end":3622},"1":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3598,"end":3623},"2":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3584,"end":3595},"3":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3636,"end":3643},"4":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3636,"end":3652},"5":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3655,"end":3669},"6":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3653,"end":3654},"7":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3629,"end":3691},"9":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3671,"end":3678},"10":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3689,"end":3690},"11":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3671,"end":3691},"12":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3629,"end":3691},"13":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3697,"end":3704}},"is_native":false},"11":{"location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3721,"end":3796},"definition_location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3732,"end":3747},"type_parameters":[],"parameters":[["self#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3748,"end":3752}]],"returns":[{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3767,"end":3770}],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3789,"end":3793},"1":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3777,"end":3794}},"is_native":false},"12":{"location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3857,"end":4053},"definition_location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3868,"end":3890},"type_parameters":[],"parameters":[["self#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3891,"end":3895}]],"returns":[{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3910,"end":3917}],"locals":[["ids_created#1#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3928,"end":3939}]],"nops":{},"code_map":{"0":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3942,"end":3946},"1":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3942,"end":3958},"3":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3928,"end":3939},"4":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3972,"end":3983},"5":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3986,"end":3987},"6":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3984,"end":3985},"7":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3964,"end":4003},"11":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3989,"end":4002},"12":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":3964,"end":4003},"13":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4021,"end":4025},"14":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4020,"end":4033},"15":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4019,"end":4033},"16":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4035,"end":4046},"17":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4049,"end":4050},"18":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4047,"end":4048},"19":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4009,"end":4051}},"is_native":false},"13":{"location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4068,"end":4159},"definition_location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4079,"end":4101},"type_parameters":[],"parameters":[["self#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4102,"end":4106}]],"returns":[],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4143,"end":4147},"1":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4143,"end":4153},"3":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4156,"end":4157},"4":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4154,"end":4155},"5":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4130,"end":4134},"6":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4130,"end":4140},"7":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4130,"end":4157}},"is_native":false},"14":{"location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4174,"end":4316},"definition_location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4185,"end":4210},"type_parameters":[],"parameters":[["self#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4211,"end":4215}],["delta_ms#0#0",{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4233,"end":4241}]],"returns":[],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4280,"end":4284},"1":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4280,"end":4303},"3":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4306,"end":4314},"4":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4304,"end":4305},"5":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4254,"end":4258},"6":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4254,"end":4277},"7":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":4254,"end":4314}},"is_native":false},"15":{"location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":75,"end":4316},"definition_location":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":75,"end":4316},"type_parameters":[],"parameters":[],"returns":[],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[222,177,27,65,112,21,18,238,244,38,237,149,174,129,82,131,37,75,210,46,15,2,202,133,208,202,6,116,27,117,173,96],"start":75,"end":4316}},"is_native":false}},"constant_map":{"EBadTxHashLength":1,"ENoIDsCreated":2,"TX_HASH_LENGTH":0}} \ No newline at end of file diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/m.json b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/m.json new file mode 100644 index 0000000000000..0498b3e81cfb4 --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/source_maps/m.json @@ -0,0 +1 @@ +{"definition_location":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":86,"end":87},"module_name":["0000000000000000000000000000000000000000000000000000000000000000","m"],"struct_map":{},"enum_map":{},"function_map":{"0":{"location":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":122,"end":665},"definition_location":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":126,"end":130},"type_parameters":[],"parameters":[],"returns":[],"locals":[["%#1",{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":154,"end":173}],["table#1#0",{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":187,"end":192}]],"nops":{},"code_map":{"0":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":154,"end":173},"2":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":149,"end":173},"3":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":195,"end":226},"4":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":183,"end":192},"5":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":232,"end":237},"6":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":248,"end":249},"7":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":251,"end":253},"8":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":232,"end":254},"9":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":622,"end":627},"10":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":638,"end":640},"11":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":642,"end":643},"12":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":622,"end":644},"13":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":650,"end":655},"14":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":650,"end":662},"15":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":662,"end":663}},"is_native":false},"1":{"location":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":65,"end":665},"definition_location":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":65,"end":665},"type_parameters":[],"parameters":[],"returns":[],"locals":[],"nops":{},"code_map":{"0":{"file_hash":[236,192,52,171,254,22,100,62,124,245,221,113,238,213,97,152,169,36,102,67,48,142,226,112,206,244,8,26,40,241,165,204],"start":65,"end":665}},"is_native":false}},"constant_map":{}} \ No newline at end of file diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/MoveStdlib/macros.move b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/MoveStdlib/macros.move new file mode 100644 index 0000000000000..48680c899d702 --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/MoveStdlib/macros.move @@ -0,0 +1,245 @@ +// Copyright (c) Mysten Labs, Inc. +// SPDX-License-Identifier: Apache-2.0 + +/// This module holds shared implementation of macros used in `std` +module std::macros; + +use std::string::String; + +public macro fun num_max($x: _, $y: _): _ { + let x = $x; + let y = $y; + if (x > y) x + else y +} + +public macro fun num_min($x: _, $y: _): _ { + let x = $x; + let y = $y; + if (x < y) x + else y +} + +public macro fun num_diff($x: _, $y: _): _ { + let x = $x; + let y = $y; + if (x > y) x - y + else y - x +} + +public macro fun num_divide_and_round_up($x: _, $y: _): _ { + let x = $x; + let y = $y; + if (x % y == 0) x / y + else x / y + 1 +} + +public macro fun num_pow($base: _, $exponent: u8): _ { + let mut base = $base; + let mut exponent = $exponent; + let mut res = 1; + while (exponent >= 1) { + if (exponent % 2 == 0) { + base = base * base; + exponent = exponent / 2; + } else { + res = res * base; + exponent = exponent - 1; + } + }; + + res +} + +public macro fun num_sqrt<$T, $U>($x: $T, $bitsize: u8): $T { + let x = $x; + let mut bit = (1: $U) << $bitsize; + let mut res = (0: $U); + let mut x = x as $U; + + while (bit != 0) { + if (x >= res + bit) { + x = x - (res + bit); + res = (res >> 1) + bit; + } else { + res = res >> 1; + }; + bit = bit >> 2; + }; + + res as $T +} + +public macro fun num_to_string($x: _): String { + let mut x = $x; + if (x == 0) { + return b"0".to_string() + }; + let mut buffer = vector[]; + while (x != 0) { + buffer.push_back(((48 + x % 10) as u8)); + x = x / 10; + }; + buffer.reverse(); + buffer.to_string() +} + +public macro fun range_do($start: _, $stop: _, $f: |_|) { + let mut i = $start; + let stop = $stop; + while (i < stop) { + $f(i); + i = i + 1; + } +} + +public macro fun range_do_eq($start: _, $stop: _, $f: |_|) { + let mut i = $start; + let stop = $stop; + // we check `i >= stop` inside the loop instead of `i <= stop` as `while` condition to avoid + // incrementing `i` past the MAX integer value. + // Because of this, we need to check if `i > stop` and return early--instead of letting the + // loop bound handle it, like in the `range_do` macro. + if (i > stop) return; + loop { + $f(i); + if (i >= stop) break; + i = i + 1; + } +} + +public macro fun do($stop: _, $f: |_|) { + range_do!(0, $stop, $f) +} + +public macro fun do_eq($stop: _, $f: |_|) { + range_do_eq!(0, $stop, $f) +} + +public macro fun try_as_u8($x: _): Option { + let x = $x; + if (x > 0xFF) option::none() + else option::some(x as u8) +} + +public macro fun try_as_u16($x: _): Option { + let x = $x; + if (x > 0xFFFF) option::none() + else option::some(x as u16) +} + +public macro fun try_as_u32($x: _): Option { + let x = $x; + if (x > 0xFFFF_FFFF) option::none() + else option::some(x as u32) +} + +public macro fun try_as_u64($x: _): Option { + let x = $x; + if (x > 0xFFFF_FFFF_FFFF_FFFF) option::none() + else option::some(x as u64) +} + +public macro fun try_as_u128($x: _): Option { + let x = $x; + if (x > 0xFFFF_FFFF_FFFF_FFFF_FFFF_FFFF_FFFF_FFFF) option::none() + else option::some(x as u128) +} + +/// Creates a fixed-point value from a quotient specified by its numerator and denominator. +/// `$T` is the underlying integer type for the fixed-point value, where `$T` has `$t_bits` bits. +/// `$U` is the type used for intermediate calculations, where `$U` is the next larger integer type. +/// `$max_t` is the maximum value that can be represented by `$T`. +/// `$t_bits` (as mentioned above) is the total number of bits in the fixed-point value (integer +/// plus fractional). +/// `$fractional_bits` is the number of fractional bits in the fixed-point value. +public macro fun uq_from_quotient<$T, $U>( + $numerator: $T, + $denominator: $T, + $max_t: $T, + $t_bits: u8, + $fractional_bits: u8, + $abort_denominator: _, + $abort_quotient_too_small: _, + $abort_quotient_too_large: _, +): $T { + let numerator = $numerator; + let denominator = $denominator; + if (denominator == 0) $abort_denominator; + + // Scale the numerator to have `$t_bits` fractional bits and the denominator to have + // `$t_bits - $fractional_bits` fractional bits, so that the quotient will have + // `$fractional_bits` fractional bits. + let scaled_numerator = numerator as $U << $t_bits; + let scaled_denominator = denominator as $U << ($t_bits - $fractional_bits); + let quotient = scaled_numerator / scaled_denominator; + + // The quotient can only be zero if the numerator is also zero. + if (quotient == 0 && numerator != 0) $abort_quotient_too_small; + + // Return the quotient as a fixed-point number. We first need to check whether the cast + // can succeed. + if (quotient > $max_t as $U) $abort_quotient_too_large; + quotient as $T +} + +public macro fun uq_from_int<$T, $U>($integer: $T, $fractional_bits: u8): $U { + ($integer as $U) << $fractional_bits +} + +public macro fun uq_add<$T, $U>($a: $T, $b: $T, $max_t: $T, $abort_overflow: _): $T { + let sum = $a as $U + ($b as $U); + if (sum > $max_t as $U) $abort_overflow; + sum as $T +} + +public macro fun uq_sub<$T>($a: $T, $b: $T, $abort_overflow: _): $T { + let a = $a; + let b = $b; + if (a < b) $abort_overflow; + a - b +} + +public macro fun uq_to_int<$T, $U>($a: $U, $fractional_bits: u8): $T { + ($a >> $fractional_bits) as $T +} + +public macro fun uq_int_mul<$T, $U>( + $val: $T, + $multiplier: $T, + $max_t: $T, + $fractional_bits: u8, + $abort_overflow: _, +): $T { + // The product of two `$T` bit values has the same number of bits as `$U`, so perform the + // multiplication with `$U` types and keep the full `$U` bit product + // to avoid losing accuracy. + let unscaled_product = $val as $U * ($multiplier as $U); + // The unscaled product has `$fractional_bits` fractional bits (from the multiplier) + // so rescale it by shifting away the low bits. + let product = unscaled_product >> $fractional_bits; + // Check whether the value is too large. + if (product > $max_t as $U) $abort_overflow; + product as $T +} + +public macro fun uq_int_div<$T, $U>( + $val: $T, + $divisor: $T, + $max_t: $T, + $fractional_bits: u8, + $abort_division_by_zero: _, + $abort_overflow: _, +): $T { + let val = $val; + let divisor = $divisor; + // Check for division by zero. + if (divisor == 0) $abort_division_by_zero; + // First convert to $U to increase the number of bits to the next integer size + // and then shift left to add `$fractional_bits` fractional zero bits to the dividend. + let scaled_value = val as $U << $fractional_bits; + let quotient = scaled_value / (divisor as $U); + // Check whether the value is too large. + if (quotient > $max_t as $U) $abort_overflow; + quotient as $T +} diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/MoveStdlib/option.move b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/MoveStdlib/option.move new file mode 100644 index 0000000000000..857e76ae0d2bb --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/MoveStdlib/option.move @@ -0,0 +1,251 @@ +// Copyright (c) Mysten Labs, Inc. +// SPDX-License-Identifier: Apache-2.0 + +/// This module defines the Option type and its methods to represent and handle an optional value. +module std::option; + +/// Abstraction of a value that may or may not be present. Implemented with a vector of size +/// zero or one because Move bytecode does not have ADTs. +public struct Option has copy, drop, store { + vec: vector, +} + +/// The `Option` is in an invalid state for the operation attempted. +/// The `Option` is `Some` while it should be `None`. +const EOPTION_IS_SET: u64 = 0x40000; +/// The `Option` is in an invalid state for the operation attempted. +/// The `Option` is `None` while it should be `Some`. +const EOPTION_NOT_SET: u64 = 0x40001; + +/// Return an empty `Option` +public fun none(): Option { + Option { vec: vector::empty() } +} + +/// Return an `Option` containing `e` +public fun some(e: Element): Option { + Option { vec: vector::singleton(e) } +} + +/// Return true if `t` does not hold a value +public fun is_none(t: &Option): bool { + t.vec.is_empty() +} + +/// Return true if `t` holds a value +public fun is_some(t: &Option): bool { + !t.vec.is_empty() +} + +/// Return true if the value in `t` is equal to `e_ref` +/// Always returns `false` if `t` does not hold a value +public fun contains(t: &Option, e_ref: &Element): bool { + t.vec.contains(e_ref) +} + +/// Return an immutable reference to the value inside `t` +/// Aborts if `t` does not hold a value +public fun borrow(t: &Option): &Element { + assert!(t.is_some(), EOPTION_NOT_SET); + &t.vec[0] +} + +/// Return a reference to the value inside `t` if it holds one +/// Return `default_ref` if `t` does not hold a value +public fun borrow_with_default(t: &Option, default_ref: &Element): &Element { + let vec_ref = &t.vec; + if (vec_ref.is_empty()) default_ref + else &vec_ref[0] +} + +/// Return the value inside `t` if it holds one +/// Return `default` if `t` does not hold a value +public fun get_with_default(t: &Option, default: Element): Element { + let vec_ref = &t.vec; + if (vec_ref.is_empty()) default + else vec_ref[0] +} + +/// Convert the none option `t` to a some option by adding `e`. +/// Aborts if `t` already holds a value +public fun fill(t: &mut Option, e: Element) { + let vec_ref = &mut t.vec; + if (vec_ref.is_empty()) vec_ref.push_back(e) + else abort EOPTION_IS_SET +} + +/// Convert a `some` option to a `none` by removing and returning the value stored inside `t` +/// Aborts if `t` does not hold a value +public fun extract(t: &mut Option): Element { + assert!(t.is_some(), EOPTION_NOT_SET); + t.vec.pop_back() +} + +/// Return a mutable reference to the value inside `t` +/// Aborts if `t` does not hold a value +public fun borrow_mut(t: &mut Option): &mut Element { + assert!(t.is_some(), EOPTION_NOT_SET); + &mut t.vec[0] +} + +/// Swap the old value inside `t` with `e` and return the old value +/// Aborts if `t` does not hold a value +public fun swap(t: &mut Option, e: Element): Element { + assert!(t.is_some(), EOPTION_NOT_SET); + let vec_ref = &mut t.vec; + let old_value = vec_ref.pop_back(); + vec_ref.push_back(e); + old_value +} + +/// Swap the old value inside `t` with `e` and return the old value; +/// or if there is no old value, fill it with `e`. +/// Different from swap(), swap_or_fill() allows for `t` not holding a value. +public fun swap_or_fill(t: &mut Option, e: Element): Option { + let vec_ref = &mut t.vec; + let old_value = if (vec_ref.is_empty()) none() + else some(vec_ref.pop_back()); + vec_ref.push_back(e); + old_value +} + +/// Destroys `t.` If `t` holds a value, return it. Returns `default` otherwise +public fun destroy_with_default(t: Option, default: Element): Element { + let Option { mut vec } = t; + if (vec.is_empty()) default + else vec.pop_back() +} + +/// Unpack `t` and return its contents +/// Aborts if `t` does not hold a value +public fun destroy_some(t: Option): Element { + assert!(t.is_some(), EOPTION_NOT_SET); + let Option { mut vec } = t; + let elem = vec.pop_back(); + vec.destroy_empty(); + elem +} + +/// Unpack `t` +/// Aborts if `t` holds a value +public fun destroy_none(t: Option) { + assert!(t.is_none(), EOPTION_IS_SET); + let Option { vec } = t; + vec.destroy_empty() +} + +/// Convert `t` into a vector of length 1 if it is `Some`, +/// and an empty vector otherwise +public fun to_vec(t: Option): vector { + let Option { vec } = t; + vec +} + +// === Macro Functions === + +/// Destroy `Option` and call the closure `f` on the value inside if it holds one. +public macro fun destroy<$T>($o: Option<$T>, $f: |$T|) { + let o = $o; + o.do!($f); +} + +/// Destroy `Option` and call the closure `f` on the value inside if it holds one. +public macro fun do<$T>($o: Option<$T>, $f: |$T|) { + let o = $o; + if (o.is_some()) $f(o.destroy_some()) + else o.destroy_none() +} + +/// Execute a closure on the value inside `t` if it holds one. +public macro fun do_ref<$T>($o: &Option<$T>, $f: |&$T|) { + let o = $o; + if (o.is_some()) $f(o.borrow()); +} + +/// Execute a closure on the mutable reference to the value inside `t` if it holds one. +public macro fun do_mut<$T>($o: &mut Option<$T>, $f: |&mut $T|) { + let o = $o; + if (o.is_some()) $f(o.borrow_mut()); +} + +/// Select the first `Some` value from the two options, or `None` if both are `None`. +/// Equivalent to Rust's `a.or(b)`. +public macro fun or<$T>($o: Option<$T>, $default: Option<$T>): Option<$T> { + let o = $o; + if (o.is_some()) { + o + } else { + o.destroy_none(); + $default + } +} + +/// If the value is `Some`, call the closure `f` on it. Otherwise, return `None`. +/// Equivalent to Rust's `t.and_then(f)`. +public macro fun and<$T, $U>($o: Option<$T>, $f: |$T| -> Option<$U>): Option<$U> { + let o = $o; + if (o.is_some()) { + $f(o.destroy_some()) + } else { + o.destroy_none(); + none() + } +} + +/// If the value is `Some`, call the closure `f` on it. Otherwise, return `None`. +/// Equivalent to Rust's `t.and_then(f)`. +public macro fun and_ref<$T, $U>($o: &Option<$T>, $f: |&$T| -> Option<$U>): Option<$U> { + let o = $o; + if (o.is_some()) $f(o.borrow()) + else none() +} + +/// Map an `Option` to `Option` by applying a function to a contained value. +/// Equivalent to Rust's `t.map(f)`. +public macro fun map<$T, $U>($o: Option<$T>, $f: |$T| -> $U): Option<$U> { + let o = $o; + if (o.is_some()) { + some($f(o.destroy_some())) + } else { + o.destroy_none(); + none() + } +} + +/// Map an `Option` value to `Option` by applying a function to a contained value by reference. +/// Original `Option` is preserved. +/// Equivalent to Rust's `t.map(f)`. +public macro fun map_ref<$T, $U>($o: &Option<$T>, $f: |&$T| -> $U): Option<$U> { + let o = $o; + if (o.is_some()) some($f(o.borrow())) + else none() +} + +/// Return `None` if the value is `None`, otherwise return `Option` if the predicate `f` returns true. +public macro fun filter<$T: drop>($o: Option<$T>, $f: |&$T| -> bool): Option<$T> { + let o = $o; + if (o.is_some() && $f(o.borrow())) o + else none() +} + +/// Return `false` if the value is `None`, otherwise return the result of the predicate `f`. +public macro fun is_some_and<$T>($o: &Option<$T>, $f: |&$T| -> bool): bool { + let o = $o; + o.is_some() && $f(o.borrow()) +} + +/// Destroy `Option` and return the value inside if it holds one, or `default` otherwise. +/// Equivalent to Rust's `t.unwrap_or(default)`. +/// +/// Note: this function is a more efficient version of `destroy_with_default`, as it does not +/// evaluate the default value unless necessary. The `destroy_with_default` function should be +/// deprecated in favor of this function. +public macro fun destroy_or<$T>($o: Option<$T>, $default: $T): $T { + let o = $o; + if (o.is_some()) { + o.destroy_some() + } else { + o.destroy_none(); + $default + } +} diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/MoveStdlib/u64.move b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/MoveStdlib/u64.move new file mode 100644 index 0000000000000..e3bc76cc45f92 --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/MoveStdlib/u64.move @@ -0,0 +1,111 @@ +// Copyright (c) Mysten Labs, Inc. +// SPDX-License-Identifier: Apache-2.0 + +#[defines_primitive(u64)] +module std::u64; + +use std::string::String; + +/// Returns the bitwise not of the value. +/// Each bit that is 1 becomes 0. Each bit that is 0 becomes 1. +public fun bitwise_not(x: u64): u64 { + x ^ max_value!() +} + +/// Return the larger of `x` and `y` +public fun max(x: u64, y: u64): u64 { + std::macros::num_max!(x, y) +} + +/// Return the smaller of `x` and `y` +public fun min(x: u64, y: u64): u64 { + std::macros::num_min!(x, y) +} + +/// Return the absolute value of x - y +public fun diff(x: u64, y: u64): u64 { + std::macros::num_diff!(x, y) +} + +/// Calculate x / y, but round up the result. +public fun divide_and_round_up(x: u64, y: u64): u64 { + std::macros::num_divide_and_round_up!(x, y) +} + +/// Return the value of a base raised to a power +public fun pow(base: u64, exponent: u8): u64 { + std::macros::num_pow!(base, exponent) +} + +/// Get a nearest lower integer Square Root for `x`. Given that this +/// function can only operate with integers, it is impossible +/// to get perfect (or precise) integer square root for some numbers. +/// +/// Example: +/// ``` +/// math::sqrt(9) => 3 +/// math::sqrt(8) => 2 // the nearest lower square root is 4; +/// ``` +/// +/// In integer math, one of the possible ways to get results with more +/// precision is to use higher values or temporarily multiply the +/// value by some bigger number. Ideally if this is a square of 10 or 100. +/// +/// Example: +/// ``` +/// math::sqrt(8) => 2; +/// math::sqrt(8 * 10000) => 282; +/// // now we can use this value as if it was 2.82; +/// // but to get the actual result, this value needs +/// // to be divided by 100 (because sqrt(10000)). +/// +/// +/// math::sqrt(8 * 1000000) => 2828; // same as above, 2828 / 1000 (2.828) +/// ``` +public fun sqrt(x: u64): u64 { + std::macros::num_sqrt!(x, 64) +} + +/// Try to convert a `u64` to a `u8`. Returns `None` if the value is too large. +public fun try_as_u8(x: u64): Option { + std::macros::try_as_u8!(x) +} + +/// Try to convert a `u64` to a `u16`. Returns `None` if the value is too large. +public fun try_as_u16(x: u64): Option { + std::macros::try_as_u16!(x) +} + +/// Try to convert a `u64` to a `u32`. Returns `None` if the value is too large. +public fun try_as_u32(x: u64): Option { + std::macros::try_as_u32!(x) +} + +public fun to_string(x: u64): String { + std::macros::num_to_string!(x) +} + +/// Maximum value for a `u64` +public macro fun max_value(): u64 { + 0xFFFF_FFFF_FFFF_FFFF +} + +/// Loops applying `$f` to each number from `$start` to `$stop` (exclusive) +public macro fun range_do($start: u64, $stop: u64, $f: |u64|) { + std::macros::range_do!($start, $stop, $f) +} + +/// Loops applying `$f` to each number from `$start` to `$stop` (inclusive) +public macro fun range_do_eq($start: u64, $stop: u64, $f: |u64|) { + std::macros::range_do_eq!($start, $stop, $f) +} + +/// Loops applying `$f` to each number from `0` to `$stop` (exclusive) +public macro fun do($stop: u64, $f: |u64|) { + std::macros::do!($stop, $f) +} + +/// Loops applying `$f` to each number from `0` to `$stop` (inclusive) +public macro fun do_eq($stop: u64, $f: |u64|) { + std::macros::do_eq!($stop, $f) +} diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/MoveStdlib/vector.move b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/MoveStdlib/vector.move new file mode 100644 index 0000000000000..a24d0cd3db9e3 --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/MoveStdlib/vector.move @@ -0,0 +1,372 @@ +// Copyright (c) Mysten Labs, Inc. +// SPDX-License-Identifier: Apache-2.0 + +#[defines_primitive(vector)] +/// A variable-sized container that can hold any type. Indexing is 0-based, and +/// vectors are growable. This module has many native functions. +module std::vector; + +/// Allows calling `.to_string()` on a vector of `u8` to get a utf8 `String`. +public use fun std::string::utf8 as vector.to_string; + +/// Allows calling `.try_to_string()` on a vector of `u8` to get a utf8 `String`. +/// This will return `None` if the vector is not valid utf8. +public use fun std::string::try_utf8 as vector.try_to_string; + +/// Allows calling `.to_ascii_string()` on a vector of `u8` to get an `ascii::String`. +public use fun std::ascii::string as vector.to_ascii_string; + +/// Allows calling `.try_to_ascii_string()` on a vector of `u8` to get an +/// `ascii::String`. This will return `None` if the vector is not valid ascii. +public use fun std::ascii::try_string as vector.try_to_ascii_string; + +/// The index into the vector is out of bounds +const EINDEX_OUT_OF_BOUNDS: u64 = 0x20000; + +#[bytecode_instruction] +/// Create an empty vector. +public native fun empty(): vector; + +#[bytecode_instruction] +/// Return the length of the vector. +public native fun length(v: &vector): u64; + +#[syntax(index)] +#[bytecode_instruction] +/// Acquire an immutable reference to the `i`th element of the vector `v`. +/// Aborts if `i` is out of bounds. +public native fun borrow(v: &vector, i: u64): ∈ + +#[bytecode_instruction] +/// Add element `e` to the end of the vector `v`. +public native fun push_back(v: &mut vector, e: Element); + +#[syntax(index)] +#[bytecode_instruction] +/// Return a mutable reference to the `i`th element in the vector `v`. +/// Aborts if `i` is out of bounds. +public native fun borrow_mut(v: &mut vector, i: u64): &mut Element; + +#[bytecode_instruction] +/// Pop an element from the end of vector `v`. +/// Aborts if `v` is empty. +public native fun pop_back(v: &mut vector): Element; + +#[bytecode_instruction] +/// Destroy the vector `v`. +/// Aborts if `v` is not empty. +public native fun destroy_empty(v: vector); + +#[bytecode_instruction] +/// Swaps the elements at the `i`th and `j`th indices in the vector `v`. +/// Aborts if `i` or `j` is out of bounds. +public native fun swap(v: &mut vector, i: u64, j: u64); + +/// Return an vector of size one containing element `e`. +public fun singleton(e: Element): vector { + let mut v = empty(); + v.push_back(e); + v +} + +/// Reverses the order of the elements in the vector `v` in place. +public fun reverse(v: &mut vector) { + let len = v.length(); + if (len == 0) return (); + + let mut front_index = 0; + let mut back_index = len - 1; + while (front_index < back_index) { + v.swap(front_index, back_index); + front_index = front_index + 1; + back_index = back_index - 1; + } +} + +/// Pushes all of the elements of the `other` vector into the `lhs` vector. +public fun append(lhs: &mut vector, other: vector) { + other.do!(|e| lhs.push_back(e)); +} + +/// Return `true` if the vector `v` has no elements and `false` otherwise. +public fun is_empty(v: &vector): bool { + v.length() == 0 +} + +/// Return true if `e` is in the vector `v`. +/// Otherwise, returns false. +public fun contains(v: &vector, e: &Element): bool { + let mut i = 0; + let len = v.length(); + while (i < len) { + if (&v[i] == e) return true; + i = i + 1; + }; + false +} + +/// Return `(true, i)` if `e` is in the vector `v` at index `i`. +/// Otherwise, returns `(false, 0)`. +public fun index_of(v: &vector, e: &Element): (bool, u64) { + let mut i = 0; + let len = v.length(); + while (i < len) { + if (&v[i] == e) return (true, i); + i = i + 1; + }; + (false, 0) +} + +/// Remove the `i`th element of the vector `v`, shifting all subsequent elements. +/// This is O(n) and preserves ordering of elements in the vector. +/// Aborts if `i` is out of bounds. +public fun remove(v: &mut vector, mut i: u64): Element { + let mut len = v.length(); + // i out of bounds; abort + if (i >= len) abort EINDEX_OUT_OF_BOUNDS; + + len = len - 1; + while (i < len) v.swap(i, { + i = i + 1; + i + }); + v.pop_back() +} + +/// Insert `e` at position `i` in the vector `v`. +/// If `i` is in bounds, this shifts the old `v[i]` and all subsequent elements to the right. +/// If `i == v.length()`, this adds `e` to the end of the vector. +/// This is O(n) and preserves ordering of elements in the vector. +/// Aborts if `i > v.length()` +public fun insert(v: &mut vector, e: Element, mut i: u64) { + let len = v.length(); + // i too big abort + if (i > len) abort EINDEX_OUT_OF_BOUNDS; + + v.push_back(e); + while (i < len) { + v.swap(i, len); + i = i + 1 + } +} + +/// Swap the `i`th element of the vector `v` with the last element and then pop the vector. +/// This is O(1), but does not preserve ordering of elements in the vector. +/// Aborts if `i` is out of bounds. +public fun swap_remove(v: &mut vector, i: u64): Element { + assert!(v.length() != 0, EINDEX_OUT_OF_BOUNDS); + let last_idx = v.length() - 1; + v.swap(i, last_idx); + v.pop_back() +} + +// === Macros === + +/// Create a vector of length `n` by calling the function `f` on each index. +public macro fun tabulate<$T>($n: u64, $f: |u64| -> $T): vector<$T> { + let mut v = vector[]; + let n = $n; + n.do!(|i| v.push_back($f(i))); + v +} + +/// Destroy the vector `v` by calling `f` on each element and then destroying the vector. +/// Does not preserve the order of elements in the vector (starts from the end of the vector). +public macro fun destroy<$T>($v: vector<$T>, $f: |$T|) { + let mut v = $v; + while (v.length() != 0) $f(v.pop_back()); + v.destroy_empty(); +} + +/// Destroy the vector `v` by calling `f` on each element and then destroying the vector. +/// Preserves the order of elements in the vector. +public macro fun do<$T>($v: vector<$T>, $f: |$T|) { + let mut v = $v; + v.reverse(); + v.length().do!(|_| $f(v.pop_back())); + v.destroy_empty(); +} + +/// Perform an action `f` on each element of the vector `v`. The vector is not modified. +public macro fun do_ref<$T>($v: &vector<$T>, $f: |&$T|) { + let v = $v; + v.length().do!(|i| $f(&v[i])) +} + +/// Perform an action `f` on each element of the vector `v`. +/// The function `f` takes a mutable reference to the element. +public macro fun do_mut<$T>($v: &mut vector<$T>, $f: |&mut $T|) { + let v = $v; + v.length().do!(|i| $f(&mut v[i])) +} + +/// Map the vector `v` to a new vector by applying the function `f` to each element. +/// Preserves the order of elements in the vector, first is called first. +public macro fun map<$T, $U>($v: vector<$T>, $f: |$T| -> $U): vector<$U> { + let v = $v; + let mut r = vector[]; + v.do!(|e| r.push_back($f(e))); + r +} + +/// Map the vector `v` to a new vector by applying the function `f` to each element. +/// Preserves the order of elements in the vector, first is called first. +public macro fun map_ref<$T, $U>($v: &vector<$T>, $f: |&$T| -> $U): vector<$U> { + let v = $v; + let mut r = vector[]; + v.do_ref!(|e| r.push_back($f(e))); + r +} + +/// Filter the vector `v` by applying the function `f` to each element. +/// Return a new vector containing only the elements for which `f` returns `true`. +public macro fun filter<$T: drop>($v: vector<$T>, $f: |&$T| -> bool): vector<$T> { + let v = $v; + let mut r = vector[]; + v.do!(|e| if ($f(&e)) r.push_back(e)); + r +} + +/// Split the vector `v` into two vectors by applying the function `f` to each element. +/// Return a tuple containing two vectors: the first containing the elements for which `f` returns `true`, +/// and the second containing the elements for which `f` returns `false`. +public macro fun partition<$T>($v: vector<$T>, $f: |&$T| -> bool): (vector<$T>, vector<$T>) { + let v = $v; + let mut r1 = vector[]; + let mut r2 = vector[]; + v.do!(|e| if ($f(&e)) r1.push_back(e) else r2.push_back(e)); + (r1, r2) +} + +/// Finds the index of first element in the vector `v` that satisfies the predicate `f`. +/// Returns `some(index)` if such an element is found, otherwise `none()`. +public macro fun find_index<$T>($v: &vector<$T>, $f: |&$T| -> bool): Option { + let v = $v; + 'find_index: { + v.length().do!(|i| if ($f(&v[i])) return 'find_index option::some(i)); + option::none() + } +} + +/// Count how many elements in the vector `v` satisfy the predicate `f`. +public macro fun count<$T>($v: &vector<$T>, $f: |&$T| -> bool): u64 { + let v = $v; + let mut count = 0; + v.do_ref!(|e| if ($f(e)) count = count + 1); + count +} + +/// Reduce the vector `v` to a single value by applying the function `f` to each element. +/// Similar to `fold_left` in Rust and `reduce` in Python and JavaScript. +public macro fun fold<$T, $Acc>($v: vector<$T>, $init: $Acc, $f: |$Acc, $T| -> $Acc): $Acc { + let v = $v; + let mut acc = $init; + v.do!(|e| acc = $f(acc, e)); + acc +} + +/// Concatenate the vectors of `v` into a single vector, keeping the order of the elements. +public fun flatten(v: vector>): vector { + let mut r = vector[]; + v.do!(|u| r.append(u)); + r +} + +/// Whether any element in the vector `v` satisfies the predicate `f`. +/// If the vector is empty, returns `false`. +public macro fun any<$T>($v: &vector<$T>, $f: |&$T| -> bool): bool { + let v = $v; + 'any: { + v.do_ref!(|e| if ($f(e)) return 'any true); + false + } +} + +/// Whether all elements in the vector `v` satisfy the predicate `f`. +/// If the vector is empty, returns `true`. +public macro fun all<$T>($v: &vector<$T>, $f: |&$T| -> bool): bool { + let v = $v; + 'all: { + v.do_ref!(|e| if (!$f(e)) return 'all false); + true + } +} + +/// Destroys two vectors `v1` and `v2` by calling `f` to each pair of elements. +/// Aborts if the vectors are not of the same length. +/// The order of elements in the vectors is preserved. +public macro fun zip_do<$T1, $T2>($v1: vector<$T1>, $v2: vector<$T2>, $f: |$T1, $T2|) { + let v1 = $v1; + let mut v2 = $v2; + v2.reverse(); + let len = v1.length(); + assert!(len == v2.length()); + v1.do!(|el1| $f(el1, v2.pop_back())); +} + +/// Destroys two vectors `v1` and `v2` by calling `f` to each pair of elements. +/// Aborts if the vectors are not of the same length. +/// Starts from the end of the vectors. +public macro fun zip_do_reverse<$T1, $T2>($v1: vector<$T1>, $v2: vector<$T2>, $f: |$T1, $T2|) { + let v1 = $v1; + let mut v2 = $v2; + let len = v1.length(); + assert!(len == v2.length()); + v1.destroy!(|el1| $f(el1, v2.pop_back())); +} + +/// Iterate through `v1` and `v2` and apply the function `f` to references of each pair of +/// elements. The vectors are not modified. +/// Aborts if the vectors are not of the same length. +/// The order of elements in the vectors is preserved. +public macro fun zip_do_ref<$T1, $T2>($v1: &vector<$T1>, $v2: &vector<$T2>, $f: |&$T1, &$T2|) { + let v1 = $v1; + let v2 = $v2; + let len = v1.length(); + assert!(len == v2.length()); + len.do!(|i| $f(&v1[i], &v2[i])); +} + +/// Iterate through `v1` and `v2` and apply the function `f` to mutable references of each pair +/// of elements. The vectors may be modified. +/// Aborts if the vectors are not of the same length. +/// The order of elements in the vectors is preserved. +public macro fun zip_do_mut<$T1, $T2>( + $v1: &mut vector<$T1>, + $v2: &mut vector<$T2>, + $f: |&mut $T1, &mut $T2|, +) { + let v1 = $v1; + let v2 = $v2; + let len = v1.length(); + assert!(len == v2.length()); + len.do!(|i| $f(&mut v1[i], &mut v2[i])); +} + +/// Destroys two vectors `v1` and `v2` by applying the function `f` to each pair of elements. +/// The returned values are collected into a new vector. +/// Aborts if the vectors are not of the same length. +/// The order of elements in the vectors is preserved. +public macro fun zip_map<$T1, $T2, $U>( + $v1: vector<$T1>, + $v2: vector<$T2>, + $f: |$T1, $T2| -> $U, +): vector<$U> { + let mut r = vector[]; + zip_do!($v1, $v2, |el1, el2| r.push_back($f(el1, el2))); + r +} + +/// Iterate through `v1` and `v2` and apply the function `f` to references of each pair of +/// elements. The returned values are collected into a new vector. +/// Aborts if the vectors are not of the same length. +/// The order of elements in the vectors is preserved. +public macro fun zip_map_ref<$T1, $T2, $U>( + $v1: &vector<$T1>, + $v2: &vector<$T2>, + $f: |&$T1, &$T2| -> $U, +): vector<$U> { + let mut r = vector[]; + zip_do_ref!($v1, $v2, |el1, el2| r.push_back($f(el1, el2))); + r +} diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/Sui/dynamic_field.move b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/Sui/dynamic_field.move new file mode 100644 index 0000000000000..8b83d9b192aee --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/Sui/dynamic_field.move @@ -0,0 +1,170 @@ +// Copyright (c) Mysten Labs, Inc. +// SPDX-License-Identifier: Apache-2.0 + +#[allow(unused_const)] +/// In addition to the fields declared in its type definition, a Sui object can have dynamic fields +/// that can be added after the object has been constructed. Unlike ordinary field names +/// (which are always statically declared identifiers) a dynamic field name can be any value with +/// the `copy`, `drop`, and `store` abilities, e.g. an integer, a boolean, or a string. +/// This gives Sui programmers the flexibility to extend objects on-the-fly, and it also serves as a +/// building block for core collection types +module sui::dynamic_field; + +/// The object already has a dynamic field with this name (with the value and type specified) +const EFieldAlreadyExists: u64 = 0; +/// Cannot load dynamic field. +/// The object does not have a dynamic field with this name (with the value and type specified) +const EFieldDoesNotExist: u64 = 1; +/// The object has a field with that name, but the value type does not match +const EFieldTypeMismatch: u64 = 2; +/// Failed to serialize the field's name +const EBCSSerializationFailure: u64 = 3; +/// The object added as a dynamic field was previously a shared object +const ESharedObjectOperationNotSupported: u64 = 4; + +/// Internal object used for storing the field and value +public struct Field has key { + /// Determined by the hash of the object ID, the field name value and it's type, + /// i.e. hash(parent.id || name || Name) + id: UID, + /// The value for the name of this field + name: Name, + /// The value bound to this field + value: Value, +} + +/// Adds a dynamic field to the object `object: &mut UID` at field specified by `name: Name`. +/// Aborts with `EFieldAlreadyExists` if the object already has that field with that name. +public fun add( + // we use &mut UID in several spots for access control + object: &mut UID, + name: Name, + value: Value, +) { + let object_addr = object.to_address(); + let hash = hash_type_and_key(object_addr, name); + assert!(!has_child_object(object_addr, hash), EFieldAlreadyExists); + let field = Field { + id: object::new_uid_from_hash(hash), + name, + value, + }; + add_child_object(object_addr, field) +} + +/// Immutably borrows the `object`s dynamic field with the name specified by `name: Name`. +/// Aborts with `EFieldDoesNotExist` if the object does not have a field with that name. +/// Aborts with `EFieldTypeMismatch` if the field exists, but the value does not have the specified +/// type. +public fun borrow(object: &UID, name: Name): &Value { + let object_addr = object.to_address(); + let hash = hash_type_and_key(object_addr, name); + let field = borrow_child_object>(object, hash); + &field.value +} + +/// Mutably borrows the `object`s dynamic field with the name specified by `name: Name`. +/// Aborts with `EFieldDoesNotExist` if the object does not have a field with that name. +/// Aborts with `EFieldTypeMismatch` if the field exists, but the value does not have the specified +/// type. +public fun borrow_mut( + object: &mut UID, + name: Name, +): &mut Value { + let object_addr = object.to_address(); + let hash = hash_type_and_key(object_addr, name); + let field = borrow_child_object_mut>(object, hash); + &mut field.value +} + +/// Removes the `object`s dynamic field with the name specified by `name: Name` and returns the +/// bound value. +/// Aborts with `EFieldDoesNotExist` if the object does not have a field with that name. +/// Aborts with `EFieldTypeMismatch` if the field exists, but the value does not have the specified +/// type. +public fun remove(object: &mut UID, name: Name): Value { + let object_addr = object.to_address(); + let hash = hash_type_and_key(object_addr, name); + let Field { id, name: _, value } = remove_child_object>(object_addr, hash); + id.delete(); + value +} + +/// Returns true if and only if the `object` has a dynamic field with the name specified by +/// `name: Name` but without specifying the `Value` type +public fun exists_(object: &UID, name: Name): bool { + let object_addr = object.to_address(); + let hash = hash_type_and_key(object_addr, name); + has_child_object(object_addr, hash) +} + +/// Removes the dynamic field if it exists. Returns the `some(Value)` if it exists or none otherwise. +public fun remove_if_exists( + object: &mut UID, + name: Name, +): Option { + if (exists_(object, name)) { + option::some(remove(object, name)) + } else { + option::none() + } +} + +/// Returns true if and only if the `object` has a dynamic field with the name specified by +/// `name: Name` with an assigned value of type `Value`. +public fun exists_with_type( + object: &UID, + name: Name, +): bool { + let object_addr = object.to_address(); + let hash = hash_type_and_key(object_addr, name); + has_child_object_with_ty>(object_addr, hash) +} + +public(package) fun field_info( + object: &UID, + name: Name, +): (&UID, address) { + let object_addr = object.to_address(); + let hash = hash_type_and_key(object_addr, name); + let Field { id, name: _, value } = borrow_child_object>(object, hash); + (id, value.to_address()) +} + +public(package) fun field_info_mut( + object: &mut UID, + name: Name, +): (&mut UID, address) { + let object_addr = object.to_address(); + let hash = hash_type_and_key(object_addr, name); + let Field { id, name: _, value } = borrow_child_object_mut>(object, hash); + (id, value.to_address()) +} + +/// May abort with `EBCSSerializationFailure`. +public(package) native fun hash_type_and_key( + parent: address, + k: K, +): address; + +public(package) native fun add_child_object(parent: address, child: Child); + +/// throws `EFieldDoesNotExist` if a child does not exist with that ID +/// or throws `EFieldTypeMismatch` if the type does not match, +/// and may also abort with `EBCSSerializationFailure` +/// we need two versions to return a reference or a mutable reference +public(package) native fun borrow_child_object(object: &UID, id: address): &Child; + +public(package) native fun borrow_child_object_mut( + object: &mut UID, + id: address, +): &mut Child; + +/// throws `EFieldDoesNotExist` if a child does not exist with that ID +/// or throws `EFieldTypeMismatch` if the type does not match, +/// and may also abort with `EBCSSerializationFailure`. +public(package) native fun remove_child_object(parent: address, id: address): Child; + +public(package) native fun has_child_object(parent: address, id: address): bool; + +public(package) native fun has_child_object_with_ty(parent: address, id: address): bool; diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/Sui/linked_table.move b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/Sui/linked_table.move new file mode 100644 index 0000000000000..31bb50f0e4e69 --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/Sui/linked_table.move @@ -0,0 +1,199 @@ +// Copyright (c) Mysten Labs, Inc. +// SPDX-License-Identifier: Apache-2.0 + +/// Similar to `sui::table` but the values are linked together, allowing for ordered insertion and +/// removal +module sui::linked_table; + +use sui::dynamic_field as field; + +// Attempted to destroy a non-empty table +const ETableNotEmpty: u64 = 0; +// Attempted to remove the front or back of an empty table +const ETableIsEmpty: u64 = 1; + +public struct LinkedTable has key, store { + /// the ID of this table + id: UID, + /// the number of key-value pairs in the table + size: u64, + /// the front of the table, i.e. the key of the first entry + head: Option, + /// the back of the table, i.e. the key of the last entry + tail: Option, +} + +public struct Node has store { + /// the previous key + prev: Option, + /// the next key + next: Option, + /// the value being stored + value: V, +} + +/// Creates a new, empty table +public fun new(ctx: &mut TxContext): LinkedTable { + LinkedTable { + id: object::new(ctx), + size: 0, + head: option::none(), + tail: option::none(), + } +} + +/// Returns the key for the first element in the table, or None if the table is empty +public fun front(table: &LinkedTable): &Option { + &table.head +} + +/// Returns the key for the last element in the table, or None if the table is empty +public fun back(table: &LinkedTable): &Option { + &table.tail +} + +/// Inserts a key-value pair at the front of the table, i.e. the newly inserted pair will be +/// the first element in the table +/// Aborts with `sui::dynamic_field::EFieldAlreadyExists` if the table already has an entry with +/// that key `k: K`. +public fun push_front( + table: &mut LinkedTable, + k: K, + value: V, +) { + let old_head = table.head.swap_or_fill(k); + if (table.tail.is_none()) table.tail.fill(k); + let prev = option::none(); + let next = if (old_head.is_some()) { + let old_head_k = old_head.destroy_some(); + field::borrow_mut>(&mut table.id, old_head_k).prev = option::some(k); + option::some(old_head_k) + } else { + option::none() + }; + field::add(&mut table.id, k, Node { prev, next, value }); + table.size = table.size + 1; +} + +/// Inserts a key-value pair at the back of the table, i.e. the newly inserted pair will be +/// the last element in the table +/// Aborts with `sui::dynamic_field::EFieldAlreadyExists` if the table already has an entry with +/// that key `k: K`. +public fun push_back( + table: &mut LinkedTable, + k: K, + value: V, +) { + if (table.head.is_none()) table.head.fill(k); + let old_tail = table.tail.swap_or_fill(k); + let prev = if (old_tail.is_some()) { + let old_tail_k = old_tail.destroy_some(); + field::borrow_mut>(&mut table.id, old_tail_k).next = option::some(k); + option::some(old_tail_k) + } else { + option::none() + }; + let next = option::none(); + field::add(&mut table.id, k, Node { prev, next, value }); + table.size = table.size + 1; +} + +#[syntax(index)] +/// Immutable borrows the value associated with the key in the table `table: &LinkedTable`. +/// Aborts with `sui::dynamic_field::EFieldDoesNotExist` if the table does not have an entry with +/// that key `k: K`. +public fun borrow(table: &LinkedTable, k: K): &V { + &field::borrow>(&table.id, k).value +} + +#[syntax(index)] +/// Mutably borrows the value associated with the key in the table `table: &mut LinkedTable`. +/// Aborts with `sui::dynamic_field::EFieldDoesNotExist` if the table does not have an entry with +/// that key `k: K`. +public fun borrow_mut( + table: &mut LinkedTable, + k: K, +): &mut V { + &mut field::borrow_mut>(&mut table.id, k).value +} + +/// Borrows the key for the previous entry of the specified key `k: K` in the table +/// `table: &LinkedTable`. Returns None if the entry does not have a predecessor. +/// Aborts with `sui::dynamic_field::EFieldDoesNotExist` if the table does not have an entry with +/// that key `k: K` +public fun prev(table: &LinkedTable, k: K): &Option { + &field::borrow>(&table.id, k).prev +} + +/// Borrows the key for the next entry of the specified key `k: K` in the table +/// `table: &LinkedTable`. Returns None if the entry does not have a predecessor. +/// Aborts with `sui::dynamic_field::EFieldDoesNotExist` if the table does not have an entry with +/// that key `k: K` +public fun next(table: &LinkedTable, k: K): &Option { + &field::borrow>(&table.id, k).next +} + +/// Removes the key-value pair in the table `table: &mut LinkedTable` and returns the value. +/// This splices the element out of the ordering. +/// Aborts with `sui::dynamic_field::EFieldDoesNotExist` if the table does not have an entry with +/// that key `k: K`. Note: this is also what happens when the table is empty. +public fun remove(table: &mut LinkedTable, k: K): V { + let Node { prev, next, value } = field::remove(&mut table.id, k); + table.size = table.size - 1; + if (prev.is_some()) { + field::borrow_mut>(&mut table.id, *prev.borrow()).next = next + }; + if (next.is_some()) { + field::borrow_mut>(&mut table.id, *next.borrow()).prev = prev + }; + if (table.head.borrow() == &k) table.head = next; + if (table.tail.borrow() == &k) table.tail = prev; + value +} + +/// Removes the front of the table `table: &mut LinkedTable` and returns the value. +/// Aborts with `ETableIsEmpty` if the table is empty +public fun pop_front(table: &mut LinkedTable): (K, V) { + assert!(table.head.is_some(), ETableIsEmpty); + let head = *table.head.borrow(); + (head, table.remove(head)) +} + +/// Removes the back of the table `table: &mut LinkedTable` and returns the value. +/// Aborts with `ETableIsEmpty` if the table is empty +public fun pop_back(table: &mut LinkedTable): (K, V) { + assert!(table.tail.is_some(), ETableIsEmpty); + let tail = *table.tail.borrow(); + (tail, table.remove(tail)) +} + +/// Returns true iff there is a value associated with the key `k: K` in table +/// `table: &LinkedTable` +public fun contains(table: &LinkedTable, k: K): bool { + field::exists_with_type>(&table.id, k) +} + +/// Returns the size of the table, the number of key-value pairs +public fun length(table: &LinkedTable): u64 { + table.size +} + +/// Returns true iff the table is empty (if `length` returns `0`) +public fun is_empty(table: &LinkedTable): bool { + table.size == 0 +} + +/// Destroys an empty table +/// Aborts with `ETableNotEmpty` if the table still contains values +public fun destroy_empty(table: LinkedTable) { + let LinkedTable { id, size, head: _, tail: _ } = table; + assert!(size == 0, ETableNotEmpty); + id.delete() +} + +/// Drop a possibly non-empty table. +/// Usable only if the value type `V` has the `drop` ability +public fun drop(table: LinkedTable) { + let LinkedTable { id, size: _, head: _, tail: _ } = table; + id.delete() +} diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/Sui/object.move b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/Sui/object.move new file mode 100644 index 0000000000000..8bc0c67c38fc8 --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/Sui/object.move @@ -0,0 +1,233 @@ +// Copyright (c) Mysten Labs, Inc. +// SPDX-License-Identifier: Apache-2.0 + +/// Sui object identifiers +module sui::object; + +use std::bcs; +use sui::address; + +/// Allows calling `.to_address` on an `ID` to get an `address`. +public use fun id_to_address as ID.to_address; + +/// Allows calling `.to_bytes` on an `ID` to get a `vector`. +public use fun id_to_bytes as ID.to_bytes; + +/// Allows calling `.as_inner` on a `UID` to get an `&ID`. +public use fun uid_as_inner as UID.as_inner; + +/// Allows calling `.to_inner` on a `UID` to get an `ID`. +public use fun uid_to_inner as UID.to_inner; + +/// Allows calling `.to_address` on a `UID` to get an `address`. +public use fun uid_to_address as UID.to_address; + +/// Allows calling `.to_bytes` on a `UID` to get a `vector`. +public use fun uid_to_bytes as UID.to_bytes; + +/// The hardcoded ID for the singleton Sui System State Object. +const SUI_SYSTEM_STATE_OBJECT_ID: address = @0x5; + +/// The hardcoded ID for the singleton Clock Object. +const SUI_CLOCK_OBJECT_ID: address = @0x6; + +/// The hardcoded ID for the singleton AuthenticatorState Object. +const SUI_AUTHENTICATOR_STATE_ID: address = @0x7; + +/// The hardcoded ID for the singleton Random Object. +const SUI_RANDOM_ID: address = @0x8; + +/// The hardcoded ID for the singleton DenyList. +const SUI_DENY_LIST_OBJECT_ID: address = @0x403; + +/// The hardcoded ID for the Bridge Object. +const SUI_BRIDGE_ID: address = @0x9; + +/// Sender is not @0x0 the system address. +const ENotSystemAddress: u64 = 0; + +/// An object ID. This is used to reference Sui Objects. +/// This is *not* guaranteed to be globally unique--anyone can create an `ID` from a `UID` or +/// from an object, and ID's can be freely copied and dropped. +/// Here, the values are not globally unique because there can be multiple values of type `ID` +/// with the same underlying bytes. For example, `object::id(&obj)` can be called as many times +/// as you want for a given `obj`, and each `ID` value will be identical. +public struct ID has copy, drop, store { + // We use `address` instead of `vector` here because `address` has a more + // compact serialization. `address` is serialized as a BCS fixed-length sequence, + // which saves us the length prefix we would pay for if this were `vector`. + // See https://github.com/diem/bcs#fixed-and-variable-length-sequences. + bytes: address, +} + +/// Globally unique IDs that define an object's ID in storage. Any Sui Object, that is a struct +/// with the `key` ability, must have `id: UID` as its first field. +/// These are globally unique in the sense that no two values of type `UID` are ever equal, in +/// other words for any two values `id1: UID` and `id2: UID`, `id1` != `id2`. +/// This is a privileged type that can only be derived from a `TxContext`. +/// `UID` doesn't have the `drop` ability, so deleting a `UID` requires a call to `delete`. +public struct UID has store { + id: ID, +} + +// === id === + +/// Get the raw bytes of a `ID` +public fun id_to_bytes(id: &ID): vector { + bcs::to_bytes(&id.bytes) +} + +/// Get the inner bytes of `id` as an address. +public fun id_to_address(id: &ID): address { + id.bytes +} + +/// Make an `ID` from raw bytes. +public fun id_from_bytes(bytes: vector): ID { + address::from_bytes(bytes).to_id() +} + +/// Make an `ID` from an address. +public fun id_from_address(bytes: address): ID { + ID { bytes } +} + +// === uid === + +#[allow(unused_function)] +/// Create the `UID` for the singleton `SuiSystemState` object. +/// This should only be called once from `sui_system`. +fun sui_system_state(ctx: &TxContext): UID { + assert!(ctx.sender() == @0x0, ENotSystemAddress); + UID { + id: ID { bytes: SUI_SYSTEM_STATE_OBJECT_ID }, + } +} + +/// Create the `UID` for the singleton `Clock` object. +/// This should only be called once from `clock`. +public(package) fun clock(): UID { + UID { + id: ID { bytes: SUI_CLOCK_OBJECT_ID }, + } +} + +/// Create the `UID` for the singleton `AuthenticatorState` object. +/// This should only be called once from `authenticator_state`. +public(package) fun authenticator_state(): UID { + UID { + id: ID { bytes: SUI_AUTHENTICATOR_STATE_ID }, + } +} + +/// Create the `UID` for the singleton `Random` object. +/// This should only be called once from `random`. +public(package) fun randomness_state(): UID { + UID { + id: ID { bytes: SUI_RANDOM_ID }, + } +} + +/// Create the `UID` for the singleton `DenyList` object. +/// This should only be called once from `deny_list`. +public(package) fun sui_deny_list_object_id(): UID { + UID { + id: ID { bytes: SUI_DENY_LIST_OBJECT_ID }, + } +} + +#[allow(unused_function)] +/// Create the `UID` for the singleton `Bridge` object. +/// This should only be called once from `bridge`. +fun bridge(): UID { + UID { + id: ID { bytes: SUI_BRIDGE_ID }, + } +} + +/// Get the inner `ID` of `uid` +public fun uid_as_inner(uid: &UID): &ID { + &uid.id +} + +/// Get the raw bytes of a `uid`'s inner `ID` +public fun uid_to_inner(uid: &UID): ID { + uid.id +} + +/// Get the raw bytes of a `UID` +public fun uid_to_bytes(uid: &UID): vector { + bcs::to_bytes(&uid.id.bytes) +} + +/// Get the inner bytes of `id` as an address. +public fun uid_to_address(uid: &UID): address { + uid.id.bytes +} + +// === any object === + +/// Create a new object. Returns the `UID` that must be stored in a Sui object. +/// This is the only way to create `UID`s. +public fun new(ctx: &mut TxContext): UID { + UID { + id: ID { bytes: ctx.fresh_object_address() }, + } +} + +/// Delete the object and it's `UID`. This is the only way to eliminate a `UID`. +// This exists to inform Sui of object deletions. When an object +// gets unpacked, the programmer will have to do something with its +// `UID`. The implementation of this function emits a deleted +// system event so Sui knows to process the object deletion +public fun delete(id: UID) { + let UID { id: ID { bytes } } = id; + delete_impl(bytes) +} + +/// Get the underlying `ID` of `obj` +public fun id(obj: &T): ID { + borrow_uid(obj).id +} + +/// Borrow the underlying `ID` of `obj` +public fun borrow_id(obj: &T): &ID { + &borrow_uid(obj).id +} + +/// Get the raw bytes for the underlying `ID` of `obj` +public fun id_bytes(obj: &T): vector { + bcs::to_bytes(&borrow_uid(obj).id) +} + +/// Get the inner bytes for the underlying `ID` of `obj` +public fun id_address(obj: &T): address { + borrow_uid(obj).id.bytes +} + +/// Get the `UID` for `obj`. +/// Safe because Sui has an extra bytecode verifier pass that forces every struct with +/// the `key` ability to have a distinguished `UID` field. +/// Cannot be made public as the access to `UID` for a given object must be privileged, and +/// restrictable in the object's module. +native fun borrow_uid(obj: &T): &UID; + +/// Generate a new UID specifically used for creating a UID from a hash +public(package) fun new_uid_from_hash(bytes: address): UID { + record_new_uid(bytes); + UID { id: ID { bytes } } +} + +// === internal functions === + +// helper for delete +native fun delete_impl(id: address); + +// marks newly created UIDs from hash +native fun record_new_uid(id: address); + +#[test_only] +/// Return the most recent created object ID. +public fun last_created(ctx: &TxContext): ID { + ID { bytes: ctx.last_created_object_id() } +} diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/Sui/tx_context.move b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/Sui/tx_context.move new file mode 100644 index 0000000000000..1fdef9ff83a81 --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/dependencies/Sui/tx_context.move @@ -0,0 +1,141 @@ +// Copyright (c) Mysten Labs, Inc. +// SPDX-License-Identifier: Apache-2.0 + +module sui::tx_context; + +#[test_only] +/// Number of bytes in an tx hash (which will be the transaction digest) +const TX_HASH_LENGTH: u64 = 32; + +#[test_only] +/// Expected an tx hash of length 32, but found a different length +const EBadTxHashLength: u64 = 0; + +#[test_only] +/// Attempt to get the most recent created object ID when none has been created. +const ENoIDsCreated: u64 = 1; + +/// Information about the transaction currently being executed. +/// This cannot be constructed by a transaction--it is a privileged object created by +/// the VM and passed in to the entrypoint of the transaction as `&mut TxContext`. +public struct TxContext has drop { + /// The address of the user that signed the current transaction + sender: address, + /// Hash of the current transaction + tx_hash: vector, + /// The current epoch number + epoch: u64, + /// Timestamp that the epoch started at + epoch_timestamp_ms: u64, + /// Counter recording the number of fresh id's created while executing + /// this transaction. Always 0 at the start of a transaction + ids_created: u64, +} + +/// Return the address of the user that signed the current +/// transaction +public fun sender(self: &TxContext): address { + self.sender +} + +/// Return the transaction digest (hash of transaction inputs). +/// Please do not use as a source of randomness. +public fun digest(self: &TxContext): &vector { + &self.tx_hash +} + +/// Return the current epoch +public fun epoch(self: &TxContext): u64 { + self.epoch +} + +/// Return the epoch start time as a unix timestamp in milliseconds. +public fun epoch_timestamp_ms(self: &TxContext): u64 { + self.epoch_timestamp_ms +} + +/// Create an `address` that has not been used. As it is an object address, it will never +/// occur as the address for a user. +/// In other words, the generated address is a globally unique object ID. +public fun fresh_object_address(ctx: &mut TxContext): address { + let ids_created = ctx.ids_created; + let id = derive_id(*&ctx.tx_hash, ids_created); + ctx.ids_created = ids_created + 1; + id +} + +#[allow(unused_function)] +/// Return the number of id's created by the current transaction. +/// Hidden for now, but may expose later +fun ids_created(self: &TxContext): u64 { + self.ids_created +} + +/// Native function for deriving an ID via hash(tx_hash || ids_created) +native fun derive_id(tx_hash: vector, ids_created: u64): address; + +// ==== test-only functions ==== + +#[test_only] +/// Create a `TxContext` for testing +public fun new( + sender: address, + tx_hash: vector, + epoch: u64, + epoch_timestamp_ms: u64, + ids_created: u64, +): TxContext { + assert!(tx_hash.length() == TX_HASH_LENGTH, EBadTxHashLength); + TxContext { sender, tx_hash, epoch, epoch_timestamp_ms, ids_created } +} + +#[test_only] +/// Create a `TxContext` for testing, with a potentially non-zero epoch number. +public fun new_from_hint( + addr: address, + hint: u64, + epoch: u64, + epoch_timestamp_ms: u64, + ids_created: u64, +): TxContext { + new(addr, dummy_tx_hash_with_hint(hint), epoch, epoch_timestamp_ms, ids_created) +} + +#[test_only] +/// Create a dummy `TxContext` for testing +public fun dummy(): TxContext { + let tx_hash = x"3a985da74fe225b2045c172d6bd390bd855f086e3e9d525b46bfe24511431532"; + new(@0x0, tx_hash, 0, 0, 0) +} + +#[test_only] +/// Utility for creating 256 unique input hashes. +/// These hashes are guaranteed to be unique given a unique `hint: u64` +fun dummy_tx_hash_with_hint(hint: u64): vector { + let mut tx_hash = std::bcs::to_bytes(&hint); + while (tx_hash.length() < TX_HASH_LENGTH) tx_hash.push_back(0); + tx_hash +} + +#[test_only] +public fun get_ids_created(self: &TxContext): u64 { + ids_created(self) +} + +#[test_only] +/// Return the most recent created object ID. +public fun last_created_object_id(self: &TxContext): address { + let ids_created = self.ids_created; + assert!(ids_created > 0, ENoIDsCreated); + derive_id(*&self.tx_hash, ids_created - 1) +} + +#[test_only] +public fun increment_epoch_number(self: &mut TxContext) { + self.epoch = self.epoch + 1 +} + +#[test_only] +public fun increment_epoch_timestamp(self: &mut TxContext, delta_ms: u64) { + self.epoch_timestamp_ms = self.epoch_timestamp_ms + delta_ms +} diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/m.move b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/m.move new file mode 100644 index 0000000000000..d76d07984738d --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/build/global_write/sources/m.move @@ -0,0 +1,19 @@ +// Test that write to a global location is handled +// correctly. +module global_write::m; + +use sui::linked_table; + +#[test] +fun test() { + let ctx = &mut tx_context::dummy(); + let mut table = linked_table::new(ctx); + table.push_back(7, 42); + // linked table contains the following line which (interestingly) uses global location + // for the write of `next` but only if we call the `push_back` function twice (otherwise + // it looks like it creates a temporary local variable for this assignment) + // + // field::borrow_mut>(&mut table.id, old_tail_k).next = option::some(k); + table.push_back(42, 7); + table.drop(); +} diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/sources/m.move b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/sources/m.move new file mode 100644 index 0000000000000..abf3cb9f805dd --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/sources/m.move @@ -0,0 +1,19 @@ +// Test that write to a global location is handled +// correctly. +module global_write::m; + +use sui::linked_table; + +#[test] +fun test() { + let ctx = &mut tx_context::dummy(); + let mut table = linked_table::new(ctx); + table.push_back(7, 42); + // linked table contains the following line of code which uses global location + // for the write of `next` (we need to call `push_back` twice to actually exercise + // this line of code): + // + // field::borrow_mut>(&mut table.id, old_tail_k).next = option::some(k); + table.push_back(42, 7); + table.drop(); +} diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/test.exp b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/test.exp new file mode 100644 index 0000000000000..e69de29bb2d1d diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/trace.spec.js b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/trace.spec.js new file mode 100644 index 0000000000000..5f351cee9ddb1 --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/trace.spec.js @@ -0,0 +1,4 @@ +let action = (runtime) => { + return ''; +}; +run_spec(__dirname, action); diff --git a/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/traces/global_write__m__test.json b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/traces/global_write__m__test.json new file mode 100644 index 0000000000000..1a3737eccca68 --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-adapter/tests/global_write/traces/global_write__m__test.json @@ -0,0 +1 @@ +{"version":1,"events":[{"OpenFrame":{"frame":{"frame_id":0,"function_name":"test","module":{"address":"0000000000000000000000000000000000000000000000000000000000000000","name":"m"},"binary_member_index":0,"type_instantiation":[],"parameters":[],"return_types":[],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"tx_context","name":"TxContext","type_args":[]}},"ref_type":null},{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"LinkedTable","type_args":["u64","u8"]}},"ref_type":null}],"is_native":false},"gas_left":1000000000}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":1000000000,"instruction":"CALL"}},{"OpenFrame":{"frame":{"frame_id":2,"function_name":"dummy","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"tx_context"},"binary_member_index":9,"type_instantiation":[],"parameters":[],"return_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"tx_context","name":"TxContext","type_args":[]}},"ref_type":null}],"locals_types":[],"is_native":false},"gas_left":1000000000}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999999965,"instruction":"LD_CONST"}},{"Effect":{"Push":{"RuntimeValue":{"value":"0000000000000000000000000000000000000000000000000000000000000000"}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999999930,"instruction":"LD_CONST"}},{"Effect":{"Push":{"RuntimeValue":{"value":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50]}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999999927,"instruction":"LD_U64"}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999999924,"instruction":"LD_U64"}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999999921,"instruction":"LD_U64"}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":5,"gas_left":999999921,"instruction":"CALL"}},{"OpenFrame":{"frame":{"frame_id":14,"function_name":"new","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"tx_context"},"binary_member_index":7,"type_instantiation":[],"parameters":[{"RuntimeValue":{"value":"0000000000000000000000000000000000000000000000000000000000000000"}},{"RuntimeValue":{"value":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50]}},{"RuntimeValue":{"value":0}},{"RuntimeValue":{"value":0}},{"RuntimeValue":{"value":0}}],"return_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"tx_context","name":"TxContext","type_args":[]}},"ref_type":null}],"locals_types":[{"type_":"address","ref_type":null},{"type_":{"vector":"u8"},"ref_type":null},{"type_":"u64","ref_type":null},{"type_":"u64","ref_type":null},{"type_":"u64","ref_type":null}],"is_native":false},"gas_left":999999921}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999999910,"instruction":"IMM_BORROW_LOC"}},{"Effect":{"Read":{"location":{"Local":[14,1]},"root_value_read":{"RuntimeValue":{"value":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50]}},"moved":false}}},{"Effect":{"Push":{"ImmRef":{"location":{"Local":[14,1]},"snapshot":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50]}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999999907,"instruction":"VEC_LEN"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Local":[14,1]},"snapshot":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50]}}}},{"Effect":{"Push":{"RuntimeValue":{"value":32}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999999897,"instruction":"LD_CONST"}},{"Effect":{"Push":{"RuntimeValue":{"value":32}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999999862,"instruction":"EQ"}},{"Effect":{"Pop":{"RuntimeValue":{"value":32}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":32}}}},{"Effect":{"Push":{"RuntimeValue":{"value":true}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999999861,"instruction":"BR_FALSE"}},{"Effect":{"Pop":{"RuntimeValue":{"value":true}}}},{"Instruction":{"type_parameters":[],"pc":5,"gas_left":999999860,"instruction":"BRANCH"}},{"Instruction":{"type_parameters":[],"pc":8,"gas_left":999999826,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[14,0]},"root_value_read":{"RuntimeValue":{"value":"0000000000000000000000000000000000000000000000000000000000000000"}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":"0000000000000000000000000000000000000000000000000000000000000000"}}}},{"Instruction":{"type_parameters":[],"pc":9,"gas_left":999999792,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[14,1]},"root_value_read":{"RuntimeValue":{"value":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50]}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50]}}}},{"Instruction":{"type_parameters":[],"pc":10,"gas_left":999999774,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[14,2]},"root_value_read":{"RuntimeValue":{"value":0}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":11,"gas_left":999999756,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[14,3]},"root_value_read":{"RuntimeValue":{"value":0}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":12,"gas_left":999999738,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[14,4]},"root_value_read":{"RuntimeValue":{"value":0}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":13,"gas_left":999999734,"instruction":"PACK"}},{"Effect":{"Pop":{"RuntimeValue":{"value":0}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":0}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":0}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50]}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":"0000000000000000000000000000000000000000000000000000000000000000"}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}}},{"Instruction":{"type_parameters":[],"pc":14,"gas_left":999999733,"instruction":"RET"}},{"CloseFrame":{"frame_id":14,"return_":[{"RuntimeValue":{"value":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}],"gas_left":999999733}},{"Instruction":{"type_parameters":[],"pc":6,"gas_left":999999732,"instruction":"RET"}},{"CloseFrame":{"frame_id":2,"return_":[{"RuntimeValue":{"value":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}],"gas_left":999999732}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999999731,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}}},{"Effect":{"Write":{"location":{"Local":[0,0]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999999721,"instruction":"MUT_BORROW_LOC"}},{"Effect":{"Read":{"location":{"Local":[0,0]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,0]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999999721,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":63,"function_name":"new","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"linked_table"},"binary_member_index":0,"type_instantiation":["u64","u8"],"parameters":[{"MutRef":{"location":{"Local":[0,0]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}],"return_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"LinkedTable","type_args":["u64","u8"]}},"ref_type":null}],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"tx_context","name":"TxContext","type_args":[]}},"ref_type":"Mut"}],"is_native":false},"gas_left":999999721}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999999710,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[63,0]},"root_value_read":{"MutRef":{"location":{"Local":[0,0]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}},"moved":true}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,0]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999999710,"instruction":"CALL"}},{"OpenFrame":{"frame":{"frame_id":68,"function_name":"new","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"object"},"binary_member_index":14,"type_instantiation":[],"parameters":[{"MutRef":{"location":{"Local":[0,0]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}],"return_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"object","name":"UID","type_args":[]}},"ref_type":null}],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"tx_context","name":"TxContext","type_args":[]}},"ref_type":"Mut"}],"is_native":false},"gas_left":999999710}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999999699,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[68,0]},"root_value_read":{"MutRef":{"location":{"Local":[0,0]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}},"moved":true}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,0]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999999699,"instruction":"CALL"}},{"OpenFrame":{"frame":{"frame_id":73,"function_name":"fresh_object_address","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"tx_context"},"binary_member_index":4,"type_instantiation":[],"parameters":[{"MutRef":{"location":{"Local":[0,0]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}],"return_types":[{"type_":"address","ref_type":null}],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"tx_context","name":"TxContext","type_args":[]}},"ref_type":"Mut"},{"type_":"address","ref_type":null},{"type_":"u64","ref_type":null}],"is_native":false},"gas_left":999999699}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999999688,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[73,0]},"root_value_read":{"MutRef":{"location":{"Local":[0,0]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,0]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999999678,"instruction":"IMM_BORROW_FIELD"}},{"Effect":{"Pop":{"MutRef":{"location":{"Local":[0,0]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[0,0]},4]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999999660,"instruction":"READ_REF"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Local":[0,0]},4]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}}},{"Effect":{"Read":{"location":{"Indexed":[{"Local":[0,0]},4]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999999659,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":0}}}},{"Effect":{"Write":{"location":{"Local":[73,2]},"root_value_after_write":{"RuntimeValue":{"value":0}}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999999649,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[73,0]},"root_value_read":{"MutRef":{"location":{"Local":[0,0]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,0]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}}},{"Instruction":{"type_parameters":[],"pc":5,"gas_left":999999639,"instruction":"IMM_BORROW_FIELD"}},{"Effect":{"Pop":{"MutRef":{"location":{"Local":[0,0]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[0,0]},1]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}}},{"Instruction":{"type_parameters":[],"pc":6,"gas_left":999999605,"instruction":"READ_REF"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Local":[0,0]},1]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}}},{"Effect":{"Read":{"location":{"Indexed":[{"Local":[0,0]},1]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50]}}}},{"Instruction":{"type_parameters":[],"pc":7,"gas_left":999999587,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[73,2]},"root_value_read":{"RuntimeValue":{"value":0}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":8,"gas_left":999999587,"instruction":"CALL"}},{"OpenFrame":{"frame":{"frame_id":101,"function_name":"derive_id","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"tx_context"},"binary_member_index":6,"type_instantiation":[],"parameters":[{"RuntimeValue":{"value":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50]}},{"RuntimeValue":{"value":0}}],"return_types":[{"type_":"address","ref_type":null}],"locals_types":[{"type_":{"vector":"u8"},"ref_type":null},{"type_":"u64","ref_type":null}],"is_native":true},"gas_left":999999587}},{"Effect":{"Push":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},{"CloseFrame":{"frame_id":101,"return_":[{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}],"gas_left":999999500}},{"Instruction":{"type_parameters":[],"pc":9,"gas_left":999999499,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},{"Effect":{"Write":{"location":{"Local":[73,1]},"root_value_after_write":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}}},{"Instruction":{"type_parameters":[],"pc":10,"gas_left":999999481,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[73,2]},"root_value_read":{"RuntimeValue":{"value":0}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":11,"gas_left":999999478,"instruction":"LD_U64"}},{"Effect":{"Push":{"RuntimeValue":{"value":1}}}},{"Instruction":{"type_parameters":[],"pc":12,"gas_left":999999475,"instruction":"ADD"}},{"Effect":{"Pop":{"RuntimeValue":{"value":1}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":0}}}},{"Effect":{"Push":{"RuntimeValue":{"value":1}}}},{"Instruction":{"type_parameters":[],"pc":13,"gas_left":999999465,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[73,0]},"root_value_read":{"MutRef":{"location":{"Local":[0,0]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}},"moved":true}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,0]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}}},{"Instruction":{"type_parameters":[],"pc":14,"gas_left":999999455,"instruction":"MUT_BORROW_FIELD"}},{"Effect":{"Pop":{"MutRef":{"location":{"Local":[0,0]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Local":[0,0]},4]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}}},{"Instruction":{"type_parameters":[],"pc":15,"gas_left":999999437,"instruction":"WRITE_REF"}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Local":[0,0]},4]},"snapshot":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":0}}}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":1}}}},{"Effect":{"Write":{"location":{"Indexed":[{"Local":[0,0]},4]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x2::tx_context::TxContext","fields":{"sender":"0000000000000000000000000000000000000000000000000000000000000000","tx_hash":[58,152,93,167,79,226,37,178,4,92,23,45,107,211,144,189,133,95,8,110,62,157,82,91,70,191,226,69,17,67,21,50],"epoch":0,"epoch_timestamp_ms":0,"ids_created":1}}}}}}},{"Instruction":{"type_parameters":[],"pc":16,"gas_left":999999403,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[73,1]},"root_value_read":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},{"Instruction":{"type_parameters":[],"pc":17,"gas_left":999999402,"instruction":"RET"}},{"CloseFrame":{"frame_id":73,"return_":[{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}],"gas_left":999999402}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999999398,"instruction":"PACK"}},{"Effect":{"Pop":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999999394,"instruction":"PACK"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}}}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999999393,"instruction":"RET"}},{"CloseFrame":{"frame_id":68,"return_":[{"RuntimeValue":{"value":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}}}}],"gas_left":999999393}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999999390,"instruction":"LD_U64"}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999999390,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":142,"function_name":"none","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"option"},"binary_member_index":0,"type_instantiation":["u64"],"parameters":[],"return_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null}],"locals_types":[],"is_native":false},"gas_left":999999390}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999999379,"instruction":"VEC_PACK"}},{"Effect":{"Push":{"RuntimeValue":{"value":[]}}}},{"Instruction":{"type_parameters":["u64"],"pc":1,"gas_left":999999375,"instruction":"PACK_GENERIC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":[]}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999999374,"instruction":"RET"}},{"CloseFrame":{"frame_id":142,"return_":[{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}],"gas_left":999999374}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999999374,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":151,"function_name":"none","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"option"},"binary_member_index":0,"type_instantiation":["u64"],"parameters":[],"return_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null}],"locals_types":[],"is_native":false},"gas_left":999999374}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999999363,"instruction":"VEC_PACK"}},{"Effect":{"Push":{"RuntimeValue":{"value":[]}}}},{"Instruction":{"type_parameters":["u64"],"pc":1,"gas_left":999999359,"instruction":"PACK_GENERIC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":[]}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999999358,"instruction":"RET"}},{"CloseFrame":{"frame_id":151,"return_":[{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}],"gas_left":999999358}},{"Instruction":{"type_parameters":["u64","u8"],"pc":5,"gas_left":999999354,"instruction":"PACK_GENERIC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":0}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":6,"gas_left":999999353,"instruction":"RET"}},{"CloseFrame":{"frame_id":63,"return_":[{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}],"gas_left":999999353}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999999352,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Effect":{"Write":{"location":{"Local":[0,1]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}}},{"Instruction":{"type_parameters":[],"pc":5,"gas_left":999999342,"instruction":"MUT_BORROW_LOC"}},{"Effect":{"Read":{"location":{"Local":[0,1]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":6,"gas_left":999999339,"instruction":"LD_U64"}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":[],"pc":7,"gas_left":999999336,"instruction":"LD_U8"}},{"Effect":{"Push":{"RuntimeValue":{"value":42}}}},{"Instruction":{"type_parameters":[],"pc":8,"gas_left":999999336,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":178,"function_name":"push_back","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"linked_table"},"binary_member_index":4,"type_instantiation":["u64","u8"],"parameters":[{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"RuntimeValue":{"value":7}},{"RuntimeValue":{"value":42}}],"return_types":[],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"LinkedTable","type_args":["u64","u8"]}},"ref_type":"Mut"},{"type_":"u64","ref_type":null},{"type_":"u8","ref_type":null},{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null},{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null},{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null},{"type_":"u64","ref_type":null},{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null}],"is_native":false},"gas_left":999999336}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999999325,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[178,0]},"root_value_read":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":["u64","u8"],"pc":1,"gas_left":999999315,"instruction":"IMM_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},2]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999999315,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":186,"function_name":"is_none","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"option"},"binary_member_index":2,"type_instantiation":["u64"],"parameters":[{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},2]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}],"return_types":[{"type_":"bool","ref_type":null}],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":"Imm"}],"is_native":false},"gas_left":999999315}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999999304,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[186,0]},"root_value_read":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},2]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},"moved":true}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},2]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":["u64"],"pc":1,"gas_left":999999294,"instruction":"IMM_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},2]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999999294,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":194,"function_name":"is_empty","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"vector"},"binary_member_index":11,"type_instantiation":["u64"],"parameters":[{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}],"return_types":[{"type_":"bool","ref_type":null}],"locals_types":[{"type_":{"vector":"u64"},"ref_type":"Imm"}],"is_native":false},"gas_left":999999294}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999999283,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[194,0]},"root_value_read":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},"moved":true}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999999280,"instruction":"VEC_LEN"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999999277,"instruction":"LD_U64"}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999999242,"instruction":"EQ"}},{"Effect":{"Pop":{"RuntimeValue":{"value":0}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":0}}}},{"Effect":{"Push":{"RuntimeValue":{"value":true}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999999241,"instruction":"RET"}},{"CloseFrame":{"frame_id":194,"return_":[{"RuntimeValue":{"value":true}}],"gas_left":999999241}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999999240,"instruction":"RET"}},{"CloseFrame":{"frame_id":186,"return_":[{"RuntimeValue":{"value":true}}],"gas_left":999999240}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999999239,"instruction":"BR_FALSE"}},{"Effect":{"Pop":{"RuntimeValue":{"value":true}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999999229,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[178,0]},"root_value_read":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":["u64","u8"],"pc":5,"gas_left":999999219,"instruction":"MUT_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},2]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":6,"gas_left":999999201,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[178,1]},"root_value_read":{"RuntimeValue":{"value":7}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":[],"pc":7,"gas_left":999999201,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":223,"function_name":"fill","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"option"},"binary_member_index":8,"type_instantiation":["u64"],"parameters":[{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},2]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"RuntimeValue":{"value":7}}],"return_types":[],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":"Mut"},{"type_":"u64","ref_type":null},{"type_":{"vector":"u64"},"ref_type":"Mut"}],"is_native":false},"gas_left":999999201}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999999190,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[223,0]},"root_value_read":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},2]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},"moved":true}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},2]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":["u64"],"pc":1,"gas_left":999999180,"instruction":"MUT_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},2]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999999179,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Effect":{"Write":{"location":{"Local":[223,2]},"root_value_after_write":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999999169,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[223,2]},"root_value_read":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999999159,"instruction":"FREEZE_REF"}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":5,"gas_left":999999159,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":240,"function_name":"is_empty","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"vector"},"binary_member_index":11,"type_instantiation":["u64"],"parameters":[{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}],"return_types":[{"type_":"bool","ref_type":null}],"locals_types":[{"type_":{"vector":"u64"},"ref_type":"Imm"}],"is_native":false},"gas_left":999999159}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999999148,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[240,0]},"root_value_read":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},"moved":true}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999999145,"instruction":"VEC_LEN"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999999142,"instruction":"LD_U64"}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999999107,"instruction":"EQ"}},{"Effect":{"Pop":{"RuntimeValue":{"value":0}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":0}}}},{"Effect":{"Push":{"RuntimeValue":{"value":true}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999999106,"instruction":"RET"}},{"CloseFrame":{"frame_id":240,"return_":[{"RuntimeValue":{"value":true}}],"gas_left":999999106}},{"Instruction":{"type_parameters":[],"pc":6,"gas_left":999999105,"instruction":"BR_FALSE"}},{"Effect":{"Pop":{"RuntimeValue":{"value":true}}}},{"Instruction":{"type_parameters":[],"pc":7,"gas_left":999999104,"instruction":"BRANCH"}},{"Instruction":{"type_parameters":[],"pc":12,"gas_left":999999094,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[223,2]},"root_value_read":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},"moved":true}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":13,"gas_left":999999076,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[223,1]},"root_value_read":{"RuntimeValue":{"value":7}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":[],"pc":14,"gas_left":999999075,"instruction":"VEC_PUSH_BACK"}},{"Effect":{"Pop":{"RuntimeValue":{"value":7}}}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Effect":{"Write":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}}},{"Instruction":{"type_parameters":[],"pc":15,"gas_left":999999074,"instruction":"RET"}},{"CloseFrame":{"frame_id":223,"return_":[],"gas_left":999999074}},{"Instruction":{"type_parameters":[],"pc":8,"gas_left":999999064,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[178,0]},"root_value_read":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":["u64","u8"],"pc":9,"gas_left":999999054,"instruction":"MUT_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},3]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":10,"gas_left":999999036,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[178,1]},"root_value_read":{"RuntimeValue":{"value":7}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":[],"pc":11,"gas_left":999999036,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":280,"function_name":"swap_or_fill","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"option"},"binary_member_index":12,"type_instantiation":["u64"],"parameters":[{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},3]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"RuntimeValue":{"value":7}}],"return_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null}],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":"Mut"},{"type_":"u64","ref_type":null},{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null},{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null},{"type_":{"vector":"u64"},"ref_type":"Mut"}],"is_native":false},"gas_left":999999036}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999999025,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[280,0]},"root_value_read":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},3]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},"moved":true}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},3]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":["u64"],"pc":1,"gas_left":999999015,"instruction":"MUT_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},3]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999999014,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Effect":{"Write":{"location":{"Local":[280,4]},"root_value_after_write":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999999004,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[280,4]},"root_value_read":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999998994,"instruction":"FREEZE_REF"}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":5,"gas_left":999998994,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":297,"function_name":"is_empty","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"vector"},"binary_member_index":11,"type_instantiation":["u64"],"parameters":[{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}],"return_types":[{"type_":"bool","ref_type":null}],"locals_types":[{"type_":{"vector":"u64"},"ref_type":"Imm"}],"is_native":false},"gas_left":999998994}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999998983,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[297,0]},"root_value_read":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},"moved":true}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999998980,"instruction":"VEC_LEN"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999998977,"instruction":"LD_U64"}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999998942,"instruction":"EQ"}},{"Effect":{"Pop":{"RuntimeValue":{"value":0}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":0}}}},{"Effect":{"Push":{"RuntimeValue":{"value":true}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999998941,"instruction":"RET"}},{"CloseFrame":{"frame_id":297,"return_":[{"RuntimeValue":{"value":true}}],"gas_left":999998941}},{"Instruction":{"type_parameters":[],"pc":6,"gas_left":999998940,"instruction":"BR_FALSE"}},{"Effect":{"Pop":{"RuntimeValue":{"value":true}}}},{"Instruction":{"type_parameters":[],"pc":7,"gas_left":999998940,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":315,"function_name":"none","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"option"},"binary_member_index":0,"type_instantiation":["u64"],"parameters":[],"return_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null}],"locals_types":[],"is_native":false},"gas_left":999998940}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999998929,"instruction":"VEC_PACK"}},{"Effect":{"Push":{"RuntimeValue":{"value":[]}}}},{"Instruction":{"type_parameters":["u64"],"pc":1,"gas_left":999998925,"instruction":"PACK_GENERIC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":[]}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999998924,"instruction":"RET"}},{"CloseFrame":{"frame_id":315,"return_":[{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}],"gas_left":999998924}},{"Instruction":{"type_parameters":[],"pc":8,"gas_left":999998923,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Effect":{"Write":{"location":{"Local":[280,2]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}},{"Instruction":{"type_parameters":[],"pc":9,"gas_left":999998922,"instruction":"BRANCH"}},{"Instruction":{"type_parameters":[],"pc":14,"gas_left":999998918,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[280,2]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Instruction":{"type_parameters":[],"pc":15,"gas_left":999998917,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Effect":{"Write":{"location":{"Local":[280,3]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}},{"Instruction":{"type_parameters":[],"pc":16,"gas_left":999998907,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[280,4]},"root_value_read":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},"moved":true}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":17,"gas_left":999998889,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[280,1]},"root_value_read":{"RuntimeValue":{"value":7}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":[],"pc":18,"gas_left":999998888,"instruction":"VEC_PUSH_BACK"}},{"Effect":{"Pop":{"RuntimeValue":{"value":7}}}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Effect":{"Write":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}}},{"Instruction":{"type_parameters":[],"pc":19,"gas_left":999998884,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[280,3]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Instruction":{"type_parameters":[],"pc":20,"gas_left":999998883,"instruction":"RET"}},{"CloseFrame":{"frame_id":280,"return_":[{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}],"gas_left":999998883}},{"Instruction":{"type_parameters":[],"pc":12,"gas_left":999998882,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Effect":{"Write":{"location":{"Local":[178,5]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}},{"Instruction":{"type_parameters":[],"pc":13,"gas_left":999998872,"instruction":"IMM_BORROW_LOC"}},{"Effect":{"Read":{"location":{"Local":[178,5]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}},"moved":false}}},{"Effect":{"Push":{"ImmRef":{"location":{"Local":[178,5]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Instruction":{"type_parameters":[],"pc":14,"gas_left":999998872,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":355,"function_name":"is_some","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"option"},"binary_member_index":3,"type_instantiation":["u64"],"parameters":[{"ImmRef":{"location":{"Local":[178,5]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[]}}}}],"return_types":[{"type_":"bool","ref_type":null}],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":"Imm"}],"is_native":false},"gas_left":999998872}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999998861,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[355,0]},"root_value_read":{"ImmRef":{"location":{"Local":[178,5]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[]}}}},"moved":true}}},{"Effect":{"Push":{"ImmRef":{"location":{"Local":[178,5]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Instruction":{"type_parameters":["u64"],"pc":1,"gas_left":999998851,"instruction":"IMM_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Local":[178,5]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[178,5]},0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999998851,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":363,"function_name":"is_empty","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"vector"},"binary_member_index":11,"type_instantiation":["u64"],"parameters":[{"ImmRef":{"location":{"Indexed":[{"Local":[178,5]},0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[]}}}}],"return_types":[{"type_":"bool","ref_type":null}],"locals_types":[{"type_":{"vector":"u64"},"ref_type":"Imm"}],"is_native":false},"gas_left":999998851}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999998840,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[363,0]},"root_value_read":{"ImmRef":{"location":{"Indexed":[{"Local":[178,5]},0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[]}}}},"moved":true}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[178,5]},0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999998837,"instruction":"VEC_LEN"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Local":[178,5]},0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999998834,"instruction":"LD_U64"}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999998799,"instruction":"EQ"}},{"Effect":{"Pop":{"RuntimeValue":{"value":0}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":0}}}},{"Effect":{"Push":{"RuntimeValue":{"value":true}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999998798,"instruction":"RET"}},{"CloseFrame":{"frame_id":363,"return_":[{"RuntimeValue":{"value":true}}],"gas_left":999998798}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999998795,"instruction":"NOT"}},{"Effect":{"Pop":{"RuntimeValue":{"value":true}}}},{"Effect":{"Push":{"RuntimeValue":{"value":false}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999998794,"instruction":"RET"}},{"CloseFrame":{"frame_id":355,"return_":[{"RuntimeValue":{"value":false}}],"gas_left":999998794}},{"Instruction":{"type_parameters":[],"pc":15,"gas_left":999998793,"instruction":"BR_FALSE"}},{"Effect":{"Pop":{"RuntimeValue":{"value":false}}}},{"Instruction":{"type_parameters":[],"pc":31,"gas_left":999998793,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":386,"function_name":"none","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"option"},"binary_member_index":0,"type_instantiation":["u64"],"parameters":[],"return_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null}],"locals_types":[],"is_native":false},"gas_left":999998793}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999998782,"instruction":"VEC_PACK"}},{"Effect":{"Push":{"RuntimeValue":{"value":[]}}}},{"Instruction":{"type_parameters":["u64"],"pc":1,"gas_left":999998778,"instruction":"PACK_GENERIC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":[]}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999998777,"instruction":"RET"}},{"CloseFrame":{"frame_id":386,"return_":[{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}],"gas_left":999998777}},{"Instruction":{"type_parameters":[],"pc":32,"gas_left":999998776,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Effect":{"Write":{"location":{"Local":[178,3]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}},{"Instruction":{"type_parameters":[],"pc":33,"gas_left":999998772,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[178,3]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Instruction":{"type_parameters":[],"pc":34,"gas_left":999998771,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Effect":{"Write":{"location":{"Local":[178,7]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}},{"Instruction":{"type_parameters":[],"pc":35,"gas_left":999998771,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":404,"function_name":"none","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"option"},"binary_member_index":0,"type_instantiation":["u64"],"parameters":[],"return_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null}],"locals_types":[],"is_native":false},"gas_left":999998771}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999998760,"instruction":"VEC_PACK"}},{"Effect":{"Push":{"RuntimeValue":{"value":[]}}}},{"Instruction":{"type_parameters":["u64"],"pc":1,"gas_left":999998756,"instruction":"PACK_GENERIC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":[]}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999998755,"instruction":"RET"}},{"CloseFrame":{"frame_id":404,"return_":[{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}],"gas_left":999998755}},{"Instruction":{"type_parameters":[],"pc":36,"gas_left":999998754,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Effect":{"Write":{"location":{"Local":[178,4]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}},{"Instruction":{"type_parameters":[],"pc":37,"gas_left":999998744,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[178,0]},"root_value_read":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":["u64","u8"],"pc":38,"gas_left":999998734,"instruction":"MUT_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":39,"gas_left":999998716,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[178,1]},"root_value_read":{"RuntimeValue":{"value":7}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":[],"pc":40,"gas_left":999998712,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[178,7]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Instruction":{"type_parameters":[],"pc":41,"gas_left":999998708,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[178,4]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Instruction":{"type_parameters":[],"pc":42,"gas_left":999998690,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[178,2]},"root_value_read":{"RuntimeValue":{"value":42}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":42}}}},{"Instruction":{"type_parameters":["u64","u8"],"pc":43,"gas_left":999998686,"instruction":"PACK_GENERIC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":42}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}}},{"Instruction":{"type_parameters":[],"pc":44,"gas_left":999998686,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":439,"function_name":"add","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"dynamic_field"},"binary_member_index":0,"type_instantiation":["u64",{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"Node","type_args":["u64","u8"]}}],"parameters":[{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"RuntimeValue":{"value":7}},{"RuntimeValue":{"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}],"return_types":[],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"object","name":"UID","type_args":[]}},"ref_type":"Mut"},{"type_":"u64","ref_type":null},{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"Node","type_args":["u64","u8"]}},"ref_type":null},{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"dynamic_field","name":"Field","type_args":["u64",{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"Node","type_args":["u64","u8"]}}]}},"ref_type":null},{"type_":"address","ref_type":null},{"type_":"address","ref_type":null}],"is_native":false},"gas_left":999998686}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999998675,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[439,0]},"root_value_read":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},"moved":true}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999998665,"instruction":"FREEZE_REF"}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999998665,"instruction":"CALL"}},{"OpenFrame":{"frame":{"frame_id":447,"function_name":"uid_to_address","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"object"},"binary_member_index":13,"type_instantiation":[],"parameters":[{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}],"return_types":[{"type_":"address","ref_type":null}],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"object","name":"UID","type_args":[]}},"ref_type":"Imm"}],"is_native":false},"gas_left":999998665}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999998654,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[447,0]},"root_value_read":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},"moved":true}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999998644,"instruction":"IMM_BORROW_FIELD"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},0]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999998634,"instruction":"IMM_BORROW_FIELD"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},0]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Indexed":[{"Local":[0,1]},0]},0]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999998600,"instruction":"READ_REF"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Indexed":[{"Local":[0,1]},0]},0]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Effect":{"Read":{"location":{"Indexed":[{"Indexed":[{"Indexed":[{"Local":[0,1]},0]},0]},0]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999998599,"instruction":"RET"}},{"CloseFrame":{"frame_id":447,"return_":[{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}],"gas_left":999998599}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999998598,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},{"Effect":{"Write":{"location":{"Local":[439,5]},"root_value_after_write":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999998564,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[439,5]},"root_value_read":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},{"Instruction":{"type_parameters":[],"pc":5,"gas_left":999998546,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[439,1]},"root_value_read":{"RuntimeValue":{"value":7}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":[],"pc":6,"gas_left":999998546,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":473,"function_name":"hash_type_and_key","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"dynamic_field"},"binary_member_index":9,"type_instantiation":["u64"],"parameters":[{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}},{"RuntimeValue":{"value":7}}],"return_types":[{"type_":"address","ref_type":null}],"locals_types":[{"type_":"address","ref_type":null},{"type_":"u64","ref_type":null}],"is_native":true},"gas_left":999998546}},{"Effect":{"Push":{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},{"CloseFrame":{"frame_id":473,"return_":[{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}],"gas_left":999998329}},{"Instruction":{"type_parameters":[],"pc":7,"gas_left":999998328,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},{"Effect":{"Write":{"location":{"Local":[439,4]},"root_value_after_write":{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}}},{"Instruction":{"type_parameters":[],"pc":8,"gas_left":999998294,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[439,5]},"root_value_read":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},{"Instruction":{"type_parameters":[],"pc":9,"gas_left":999998260,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[439,4]},"root_value_read":{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},{"Instruction":{"type_parameters":[],"pc":10,"gas_left":999998260,"instruction":"CALL"}},{"OpenFrame":{"frame":{"frame_id":486,"function_name":"has_child_object","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"dynamic_field"},"binary_member_index":14,"type_instantiation":[],"parameters":[{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}},{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}],"return_types":[{"type_":"bool","ref_type":null}],"locals_types":[{"type_":"address","ref_type":null},{"type_":"address","ref_type":null}],"is_native":true},"gas_left":999998260}},{"Effect":{"Push":{"RuntimeValue":{"value":false}}}},{"CloseFrame":{"frame_id":486,"return_":[{"RuntimeValue":{"value":false}}],"gas_left":999998141}},{"Instruction":{"type_parameters":[],"pc":11,"gas_left":999998138,"instruction":"NOT"}},{"Effect":{"Pop":{"RuntimeValue":{"value":false}}}},{"Effect":{"Push":{"RuntimeValue":{"value":true}}}},{"Instruction":{"type_parameters":[],"pc":12,"gas_left":999998137,"instruction":"BR_FALSE"}},{"Effect":{"Pop":{"RuntimeValue":{"value":true}}}},{"Instruction":{"type_parameters":[],"pc":13,"gas_left":999998136,"instruction":"BRANCH"}},{"Instruction":{"type_parameters":[],"pc":16,"gas_left":999998102,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[439,4]},"root_value_read":{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},{"Instruction":{"type_parameters":[],"pc":17,"gas_left":999998102,"instruction":"CALL"}},{"OpenFrame":{"frame":{"frame_id":499,"function_name":"new_uid_from_hash","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"object"},"binary_member_index":21,"type_instantiation":[],"parameters":[{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}],"return_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"object","name":"UID","type_args":[]}},"ref_type":null}],"locals_types":[{"type_":"address","ref_type":null}],"is_native":false},"gas_left":999998102}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999998067,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[499,0]},"root_value_read":{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999998067,"instruction":"CALL"}},{"OpenFrame":{"frame":{"frame_id":504,"function_name":"record_new_uid","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"object"},"binary_member_index":23,"type_instantiation":[],"parameters":[{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}],"return_types":[],"locals_types":[{"type_":"address","ref_type":null}],"is_native":true},"gas_left":999998067}},{"CloseFrame":{"frame_id":504,"return_":[],"gas_left":999998013}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999997979,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[499,0]},"root_value_read":{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999997975,"instruction":"PACK"}},{"Effect":{"Pop":{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999997971,"instruction":"PACK"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}}}}}},{"Instruction":{"type_parameters":[],"pc":5,"gas_left":999997970,"instruction":"RET"}},{"CloseFrame":{"frame_id":499,"return_":[{"RuntimeValue":{"value":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}}}}],"gas_left":999997970}},{"Instruction":{"type_parameters":[],"pc":18,"gas_left":999997952,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[439,1]},"root_value_read":{"RuntimeValue":{"value":7}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":[],"pc":19,"gas_left":999997928,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[439,2]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}}},{"Instruction":{"type_parameters":["u64",{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"Node","type_args":["u64","u8"]}}],"pc":20,"gas_left":999997924,"instruction":"PACK_GENERIC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":7}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},"name":7,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}}}}},{"Instruction":{"type_parameters":[],"pc":21,"gas_left":999997923,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},"name":7,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}}}}},{"Effect":{"Write":{"location":{"Local":[439,3]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},"name":7,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}}}}}},{"Instruction":{"type_parameters":[],"pc":22,"gas_left":999997889,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[439,5]},"root_value_read":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},{"Instruction":{"type_parameters":[],"pc":23,"gas_left":999997811,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[439,3]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},"name":7,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},"name":7,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}}}}},{"Instruction":{"type_parameters":[],"pc":24,"gas_left":999997811,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":538,"function_name":"add_child_object","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"dynamic_field"},"binary_member_index":10,"type_instantiation":[{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"dynamic_field","name":"Field","type_args":["u64",{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"Node","type_args":["u64","u8"]}}]}}],"parameters":[{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}},{"RuntimeValue":{"value":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},"name":7,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}}}],"return_types":[],"locals_types":[{"type_":"address","ref_type":null},{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"dynamic_field","name":"Field","type_args":["u64",{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"Node","type_args":["u64","u8"]}}]}},"ref_type":null}],"is_native":true},"gas_left":999997811}},{"CloseFrame":{"frame_id":538,"return_":[],"gas_left":999994959}},{"Instruction":{"type_parameters":[],"pc":25,"gas_left":999994958,"instruction":"RET"}},{"CloseFrame":{"frame_id":439,"return_":[],"gas_left":999994958}},{"Instruction":{"type_parameters":[],"pc":45,"gas_left":999994948,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[178,0]},"root_value_read":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":["u64","u8"],"pc":46,"gas_left":999994938,"instruction":"IMM_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":47,"gas_left":999994920,"instruction":"READ_REF"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Effect":{"Read":{"location":{"Indexed":[{"Local":[0,1]},1]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":48,"gas_left":999994917,"instruction":"LD_U64"}},{"Effect":{"Push":{"RuntimeValue":{"value":1}}}},{"Instruction":{"type_parameters":[],"pc":49,"gas_left":999994914,"instruction":"ADD"}},{"Effect":{"Pop":{"RuntimeValue":{"value":1}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":0}}}},{"Effect":{"Push":{"RuntimeValue":{"value":1}}}},{"Instruction":{"type_parameters":[],"pc":50,"gas_left":999994904,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[178,0]},"root_value_read":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},"moved":true}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":["u64","u8"],"pc":51,"gas_left":999994894,"instruction":"MUT_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":52,"gas_left":999994876,"instruction":"WRITE_REF"}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":0,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":1}}}},{"Effect":{"Write":{"location":{"Indexed":[{"Local":[0,1]},1]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}}},{"Instruction":{"type_parameters":[],"pc":53,"gas_left":999994875,"instruction":"RET"}},{"CloseFrame":{"frame_id":178,"return_":[],"gas_left":999994875}},{"Instruction":{"type_parameters":[],"pc":9,"gas_left":999994865,"instruction":"MUT_BORROW_LOC"}},{"Effect":{"Read":{"location":{"Local":[0,1]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":10,"gas_left":999994862,"instruction":"LD_U64"}},{"Effect":{"Push":{"RuntimeValue":{"value":42}}}},{"Instruction":{"type_parameters":[],"pc":11,"gas_left":999994859,"instruction":"LD_U8"}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":[],"pc":12,"gas_left":999994859,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":578,"function_name":"push_back","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"linked_table"},"binary_member_index":4,"type_instantiation":["u64","u8"],"parameters":[{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"RuntimeValue":{"value":42}},{"RuntimeValue":{"value":7}}],"return_types":[],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"LinkedTable","type_args":["u64","u8"]}},"ref_type":"Mut"},{"type_":"u64","ref_type":null},{"type_":"u8","ref_type":null},{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null},{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null},{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null},{"type_":"u64","ref_type":null},{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null}],"is_native":false},"gas_left":999994859}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999994848,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[578,0]},"root_value_read":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":["u64","u8"],"pc":1,"gas_left":999994838,"instruction":"IMM_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},2]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999994838,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":586,"function_name":"is_none","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"option"},"binary_member_index":2,"type_instantiation":["u64"],"parameters":[{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},2]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}],"return_types":[{"type_":"bool","ref_type":null}],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":"Imm"}],"is_native":false},"gas_left":999994838}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999994827,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[586,0]},"root_value_read":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},2]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},"moved":true}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},2]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":["u64"],"pc":1,"gas_left":999994817,"instruction":"IMM_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},2]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999994817,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":594,"function_name":"is_empty","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"vector"},"binary_member_index":11,"type_instantiation":["u64"],"parameters":[{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}],"return_types":[{"type_":"bool","ref_type":null}],"locals_types":[{"type_":{"vector":"u64"},"ref_type":"Imm"}],"is_native":false},"gas_left":999994817}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999994806,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[594,0]},"root_value_read":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},"moved":true}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999994803,"instruction":"VEC_LEN"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},2]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":1}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999994800,"instruction":"LD_U64"}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999994765,"instruction":"EQ"}},{"Effect":{"Pop":{"RuntimeValue":{"value":0}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":1}}}},{"Effect":{"Push":{"RuntimeValue":{"value":false}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999994764,"instruction":"RET"}},{"CloseFrame":{"frame_id":594,"return_":[{"RuntimeValue":{"value":false}}],"gas_left":999994764}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999994763,"instruction":"RET"}},{"CloseFrame":{"frame_id":586,"return_":[{"RuntimeValue":{"value":false}}],"gas_left":999994763}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999994762,"instruction":"BR_FALSE"}},{"Effect":{"Pop":{"RuntimeValue":{"value":false}}}},{"Instruction":{"type_parameters":[],"pc":8,"gas_left":999994752,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[578,0]},"root_value_read":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":["u64","u8"],"pc":9,"gas_left":999994742,"instruction":"MUT_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},3]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":10,"gas_left":999994724,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[578,1]},"root_value_read":{"RuntimeValue":{"value":42}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":42}}}},{"Instruction":{"type_parameters":[],"pc":11,"gas_left":999994724,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":623,"function_name":"swap_or_fill","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"option"},"binary_member_index":12,"type_instantiation":["u64"],"parameters":[{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},3]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"RuntimeValue":{"value":42}}],"return_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null}],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":"Mut"},{"type_":"u64","ref_type":null},{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null},{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null},{"type_":{"vector":"u64"},"ref_type":"Mut"}],"is_native":false},"gas_left":999994724}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999994713,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[623,0]},"root_value_read":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},3]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},"moved":true}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},3]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":["u64"],"pc":1,"gas_left":999994703,"instruction":"MUT_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},3]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999994702,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Effect":{"Write":{"location":{"Local":[623,4]},"root_value_after_write":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999994692,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[623,4]},"root_value_read":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999994682,"instruction":"FREEZE_REF"}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":5,"gas_left":999994682,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":640,"function_name":"is_empty","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"vector"},"binary_member_index":11,"type_instantiation":["u64"],"parameters":[{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}],"return_types":[{"type_":"bool","ref_type":null}],"locals_types":[{"type_":{"vector":"u64"},"ref_type":"Imm"}],"is_native":false},"gas_left":999994682}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999994671,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[640,0]},"root_value_read":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},"moved":true}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999994668,"instruction":"VEC_LEN"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":1}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999994665,"instruction":"LD_U64"}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999994630,"instruction":"EQ"}},{"Effect":{"Pop":{"RuntimeValue":{"value":0}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":1}}}},{"Effect":{"Push":{"RuntimeValue":{"value":false}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999994629,"instruction":"RET"}},{"CloseFrame":{"frame_id":640,"return_":[{"RuntimeValue":{"value":false}}],"gas_left":999994629}},{"Instruction":{"type_parameters":[],"pc":6,"gas_left":999994628,"instruction":"BR_FALSE"}},{"Effect":{"Pop":{"RuntimeValue":{"value":false}}}},{"Instruction":{"type_parameters":[],"pc":10,"gas_left":999994618,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[623,4]},"root_value_read":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":11,"gas_left":999994616,"instruction":"VEC_POP_BACK"}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":[],"pc":12,"gas_left":999994616,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":664,"function_name":"some","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"option"},"binary_member_index":1,"type_instantiation":["u64"],"parameters":[{"RuntimeValue":{"value":7}}],"return_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null}],"locals_types":[{"type_":"u64","ref_type":null}],"is_native":false},"gas_left":999994616}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999994597,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[664,0]},"root_value_read":{"RuntimeValue":{"value":7}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999994597,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":669,"function_name":"singleton","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"vector"},"binary_member_index":8,"type_instantiation":["u64"],"parameters":[{"RuntimeValue":{"value":7}}],"return_types":[{"type_":{"vector":"u64"},"ref_type":null}],"locals_types":[{"type_":"u64","ref_type":null},{"type_":{"vector":"u64"},"ref_type":null}],"is_native":false},"gas_left":999994597}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999994586,"instruction":"VEC_PACK"}},{"Effect":{"Push":{"RuntimeValue":{"value":[]}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999994585,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":[]}}}},{"Effect":{"Write":{"location":{"Local":[669,1]},"root_value_after_write":{"RuntimeValue":{"value":[]}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999994575,"instruction":"MUT_BORROW_LOC"}},{"Effect":{"Read":{"location":{"Local":[669,1]},"root_value_read":{"RuntimeValue":{"value":[]}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[669,1]},"snapshot":[]}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999994557,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[669,0]},"root_value_read":{"RuntimeValue":{"value":7}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999994556,"instruction":"VEC_PUSH_BACK"}},{"Effect":{"Pop":{"RuntimeValue":{"value":7}}}},{"Effect":{"Pop":{"MutRef":{"location":{"Local":[669,1]},"snapshot":[]}}}},{"Effect":{"Write":{"location":{"Local":[669,1]},"root_value_after_write":{"RuntimeValue":{"value":[7]}}}}},{"Instruction":{"type_parameters":[],"pc":5,"gas_left":999994546,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[669,1]},"root_value_read":{"RuntimeValue":{"value":[7]}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":[7]}}}},{"Instruction":{"type_parameters":[],"pc":6,"gas_left":999994545,"instruction":"RET"}},{"CloseFrame":{"frame_id":669,"return_":[{"RuntimeValue":{"value":[7]}}],"gas_left":999994545}},{"Instruction":{"type_parameters":["u64"],"pc":2,"gas_left":999994541,"instruction":"PACK_GENERIC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":[7]}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999994540,"instruction":"RET"}},{"CloseFrame":{"frame_id":664,"return_":[{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}],"gas_left":999994540}},{"Instruction":{"type_parameters":[],"pc":13,"gas_left":999994539,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Effect":{"Write":{"location":{"Local":[623,2]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}},{"Instruction":{"type_parameters":[],"pc":14,"gas_left":999994527,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[623,2]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Instruction":{"type_parameters":[],"pc":15,"gas_left":999994526,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Effect":{"Write":{"location":{"Local":[623,3]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}},{"Instruction":{"type_parameters":[],"pc":16,"gas_left":999994516,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[623,4]},"root_value_read":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},"moved":true}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":17,"gas_left":999994498,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[623,1]},"root_value_read":{"RuntimeValue":{"value":42}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":42}}}},{"Instruction":{"type_parameters":[],"pc":18,"gas_left":999994497,"instruction":"VEC_PUSH_BACK"}},{"Effect":{"Pop":{"RuntimeValue":{"value":42}}}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}}},{"Effect":{"Write":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},3]},0]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}}},{"Instruction":{"type_parameters":[],"pc":19,"gas_left":999994485,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[623,3]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Instruction":{"type_parameters":[],"pc":20,"gas_left":999994484,"instruction":"RET"}},{"CloseFrame":{"frame_id":623,"return_":[{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}],"gas_left":999994484}},{"Instruction":{"type_parameters":[],"pc":12,"gas_left":999994483,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Effect":{"Write":{"location":{"Local":[578,5]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}},{"Instruction":{"type_parameters":[],"pc":13,"gas_left":999994473,"instruction":"IMM_BORROW_LOC"}},{"Effect":{"Read":{"location":{"Local":[578,5]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}},"moved":false}}},{"Effect":{"Push":{"ImmRef":{"location":{"Local":[578,5]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Instruction":{"type_parameters":[],"pc":14,"gas_left":999994473,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":726,"function_name":"is_some","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"option"},"binary_member_index":3,"type_instantiation":["u64"],"parameters":[{"ImmRef":{"location":{"Local":[578,5]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}],"return_types":[{"type_":"bool","ref_type":null}],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":"Imm"}],"is_native":false},"gas_left":999994473}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999994462,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[726,0]},"root_value_read":{"ImmRef":{"location":{"Local":[578,5]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}},"moved":true}}},{"Effect":{"Push":{"ImmRef":{"location":{"Local":[578,5]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Instruction":{"type_parameters":["u64"],"pc":1,"gas_left":999994452,"instruction":"IMM_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Local":[578,5]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[578,5]},0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999994452,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":734,"function_name":"is_empty","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"vector"},"binary_member_index":11,"type_instantiation":["u64"],"parameters":[{"ImmRef":{"location":{"Indexed":[{"Local":[578,5]},0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}],"return_types":[{"type_":"bool","ref_type":null}],"locals_types":[{"type_":{"vector":"u64"},"ref_type":"Imm"}],"is_native":false},"gas_left":999994452}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999994441,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[734,0]},"root_value_read":{"ImmRef":{"location":{"Indexed":[{"Local":[578,5]},0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}},"moved":true}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[578,5]},0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999994438,"instruction":"VEC_LEN"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Local":[578,5]},0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":1}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999994435,"instruction":"LD_U64"}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999994400,"instruction":"EQ"}},{"Effect":{"Pop":{"RuntimeValue":{"value":0}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":1}}}},{"Effect":{"Push":{"RuntimeValue":{"value":false}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999994399,"instruction":"RET"}},{"CloseFrame":{"frame_id":734,"return_":[{"RuntimeValue":{"value":false}}],"gas_left":999994399}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999994396,"instruction":"NOT"}},{"Effect":{"Pop":{"RuntimeValue":{"value":false}}}},{"Effect":{"Push":{"RuntimeValue":{"value":true}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999994395,"instruction":"RET"}},{"CloseFrame":{"frame_id":726,"return_":[{"RuntimeValue":{"value":true}}],"gas_left":999994395}},{"Instruction":{"type_parameters":[],"pc":15,"gas_left":999994394,"instruction":"BR_FALSE"}},{"Effect":{"Pop":{"RuntimeValue":{"value":true}}}},{"Instruction":{"type_parameters":[],"pc":16,"gas_left":999994382,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[578,5]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Instruction":{"type_parameters":[],"pc":17,"gas_left":999994382,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":760,"function_name":"destroy_some","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"option"},"binary_member_index":14,"type_instantiation":["u64"],"parameters":[{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}],"return_types":[{"type_":"u64","ref_type":null}],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null},{"type_":"u64","ref_type":null},{"type_":{"vector":"u64"},"ref_type":null}],"is_native":false},"gas_left":999994382}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999994371,"instruction":"IMM_BORROW_LOC"}},{"Effect":{"Read":{"location":{"Local":[760,0]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}},"moved":false}}},{"Effect":{"Push":{"ImmRef":{"location":{"Local":[760,0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999994371,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":765,"function_name":"is_some","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"option"},"binary_member_index":3,"type_instantiation":["u64"],"parameters":[{"ImmRef":{"location":{"Local":[760,0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}],"return_types":[{"type_":"bool","ref_type":null}],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":"Imm"}],"is_native":false},"gas_left":999994371}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999994360,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[765,0]},"root_value_read":{"ImmRef":{"location":{"Local":[760,0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}},"moved":true}}},{"Effect":{"Push":{"ImmRef":{"location":{"Local":[760,0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Instruction":{"type_parameters":["u64"],"pc":1,"gas_left":999994350,"instruction":"IMM_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Local":[760,0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[760,0]},0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999994350,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":773,"function_name":"is_empty","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"vector"},"binary_member_index":11,"type_instantiation":["u64"],"parameters":[{"ImmRef":{"location":{"Indexed":[{"Local":[760,0]},0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}],"return_types":[{"type_":"bool","ref_type":null}],"locals_types":[{"type_":{"vector":"u64"},"ref_type":"Imm"}],"is_native":false},"gas_left":999994350}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999994339,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[773,0]},"root_value_read":{"ImmRef":{"location":{"Indexed":[{"Local":[760,0]},0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}},"moved":true}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[760,0]},0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999994336,"instruction":"VEC_LEN"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Local":[760,0]},0]},"snapshot":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":1}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999994333,"instruction":"LD_U64"}},{"Effect":{"Push":{"RuntimeValue":{"value":0}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999994298,"instruction":"EQ"}},{"Effect":{"Pop":{"RuntimeValue":{"value":0}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":1}}}},{"Effect":{"Push":{"RuntimeValue":{"value":false}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999994297,"instruction":"RET"}},{"CloseFrame":{"frame_id":773,"return_":[{"RuntimeValue":{"value":false}}],"gas_left":999994297}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999994294,"instruction":"NOT"}},{"Effect":{"Pop":{"RuntimeValue":{"value":false}}}},{"Effect":{"Push":{"RuntimeValue":{"value":true}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999994293,"instruction":"RET"}},{"CloseFrame":{"frame_id":765,"return_":[{"RuntimeValue":{"value":true}}],"gas_left":999994293}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999994292,"instruction":"BR_FALSE"}},{"Effect":{"Pop":{"RuntimeValue":{"value":true}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999994291,"instruction":"BRANCH"}},{"Instruction":{"type_parameters":[],"pc":6,"gas_left":999994279,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[760,0]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Instruction":{"type_parameters":[],"pc":7,"gas_left":999994277,"instruction":"UNPACK_GENERIC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":[7]}}}},{"Instruction":{"type_parameters":[],"pc":8,"gas_left":999994276,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":[7]}}}},{"Effect":{"Write":{"location":{"Local":[760,2]},"root_value_after_write":{"RuntimeValue":{"value":[7]}}}}},{"Instruction":{"type_parameters":[],"pc":9,"gas_left":999994266,"instruction":"MUT_BORROW_LOC"}},{"Effect":{"Read":{"location":{"Local":[760,2]},"root_value_read":{"RuntimeValue":{"value":[7]}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[760,2]},"snapshot":[7]}}}},{"Instruction":{"type_parameters":[],"pc":10,"gas_left":999994264,"instruction":"VEC_POP_BACK"}},{"Effect":{"Pop":{"MutRef":{"location":{"Local":[760,2]},"snapshot":[7]}}}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":[],"pc":11,"gas_left":999994263,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":7}}}},{"Effect":{"Write":{"location":{"Local":[760,1]},"root_value_after_write":{"RuntimeValue":{"value":7}}}}},{"Instruction":{"type_parameters":[],"pc":12,"gas_left":999994261,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[760,2]},"root_value_read":{"RuntimeValue":{"value":[]}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":[]}}}},{"Instruction":{"type_parameters":[],"pc":13,"gas_left":999994260,"instruction":"VEC_UNPACK"}},{"Effect":{"Pop":{"RuntimeValue":{"value":[]}}}},{"Instruction":{"type_parameters":[],"pc":14,"gas_left":999994242,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[760,1]},"root_value_read":{"RuntimeValue":{"value":7}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":[],"pc":15,"gas_left":999994241,"instruction":"RET"}},{"CloseFrame":{"frame_id":760,"return_":[{"RuntimeValue":{"value":7}}],"gas_left":999994241}},{"Instruction":{"type_parameters":[],"pc":18,"gas_left":999994240,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":7}}}},{"Effect":{"Write":{"location":{"Local":[578,6]},"root_value_after_write":{"RuntimeValue":{"value":7}}}}},{"Instruction":{"type_parameters":[],"pc":19,"gas_left":999994222,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[578,1]},"root_value_read":{"RuntimeValue":{"value":42}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":42}}}},{"Instruction":{"type_parameters":[],"pc":20,"gas_left":999994222,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":831,"function_name":"some","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"option"},"binary_member_index":1,"type_instantiation":["u64"],"parameters":[{"RuntimeValue":{"value":42}}],"return_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null}],"locals_types":[{"type_":"u64","ref_type":null}],"is_native":false},"gas_left":999994222}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999994203,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[831,0]},"root_value_read":{"RuntimeValue":{"value":42}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":42}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999994203,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":836,"function_name":"singleton","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"vector"},"binary_member_index":8,"type_instantiation":["u64"],"parameters":[{"RuntimeValue":{"value":42}}],"return_types":[{"type_":{"vector":"u64"},"ref_type":null}],"locals_types":[{"type_":"u64","ref_type":null},{"type_":{"vector":"u64"},"ref_type":null}],"is_native":false},"gas_left":999994203}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999994192,"instruction":"VEC_PACK"}},{"Effect":{"Push":{"RuntimeValue":{"value":[]}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999994191,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":[]}}}},{"Effect":{"Write":{"location":{"Local":[836,1]},"root_value_after_write":{"RuntimeValue":{"value":[]}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999994181,"instruction":"MUT_BORROW_LOC"}},{"Effect":{"Read":{"location":{"Local":[836,1]},"root_value_read":{"RuntimeValue":{"value":[]}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[836,1]},"snapshot":[]}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999994163,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[836,0]},"root_value_read":{"RuntimeValue":{"value":42}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":42}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999994162,"instruction":"VEC_PUSH_BACK"}},{"Effect":{"Pop":{"RuntimeValue":{"value":42}}}},{"Effect":{"Pop":{"MutRef":{"location":{"Local":[836,1]},"snapshot":[]}}}},{"Effect":{"Write":{"location":{"Local":[836,1]},"root_value_after_write":{"RuntimeValue":{"value":[42]}}}}},{"Instruction":{"type_parameters":[],"pc":5,"gas_left":999994152,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[836,1]},"root_value_read":{"RuntimeValue":{"value":[42]}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":[42]}}}},{"Instruction":{"type_parameters":[],"pc":6,"gas_left":999994151,"instruction":"RET"}},{"CloseFrame":{"frame_id":836,"return_":[{"RuntimeValue":{"value":[42]}}],"gas_left":999994151}},{"Instruction":{"type_parameters":["u64"],"pc":2,"gas_left":999994147,"instruction":"PACK_GENERIC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":[42]}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999994146,"instruction":"RET"}},{"CloseFrame":{"frame_id":831,"return_":[{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}],"gas_left":999994146}},{"Instruction":{"type_parameters":[],"pc":21,"gas_left":999994136,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[578,0]},"root_value_read":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":["u64","u8"],"pc":22,"gas_left":999994126,"instruction":"MUT_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":23,"gas_left":999994108,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[578,6]},"root_value_read":{"RuntimeValue":{"value":7}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":[],"pc":24,"gas_left":999994108,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":872,"function_name":"borrow_mut","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"dynamic_field"},"binary_member_index":2,"type_instantiation":["u64",{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"Node","type_args":["u64","u8"]}}],"parameters":[{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},{"RuntimeValue":{"value":7}}],"return_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"Node","type_args":["u64","u8"]}},"ref_type":"Mut"}],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"object","name":"UID","type_args":[]}},"ref_type":"Mut"},{"type_":"u64","ref_type":null},{"type_":"address","ref_type":null}],"is_native":false},"gas_left":999994108}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999994097,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[872,0]},"root_value_read":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999994087,"instruction":"FREEZE_REF"}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999994087,"instruction":"CALL"}},{"OpenFrame":{"frame":{"frame_id":880,"function_name":"uid_to_address","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"object"},"binary_member_index":13,"type_instantiation":[],"parameters":[{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}],"return_types":[{"type_":"address","ref_type":null}],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"object","name":"UID","type_args":[]}},"ref_type":"Imm"}],"is_native":false},"gas_left":999994087}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999994076,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[880,0]},"root_value_read":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},"moved":true}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999994066,"instruction":"IMM_BORROW_FIELD"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},0]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999994056,"instruction":"IMM_BORROW_FIELD"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},0]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Indexed":[{"Local":[0,1]},0]},0]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999994022,"instruction":"READ_REF"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Indexed":[{"Local":[0,1]},0]},0]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Effect":{"Read":{"location":{"Indexed":[{"Indexed":[{"Indexed":[{"Local":[0,1]},0]},0]},0]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999994021,"instruction":"RET"}},{"CloseFrame":{"frame_id":880,"return_":[{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}],"gas_left":999994021}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999994003,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[872,1]},"root_value_read":{"RuntimeValue":{"value":7}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999994003,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":900,"function_name":"hash_type_and_key","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"dynamic_field"},"binary_member_index":9,"type_instantiation":["u64"],"parameters":[{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}},{"RuntimeValue":{"value":7}}],"return_types":[{"type_":"address","ref_type":null}],"locals_types":[{"type_":"address","ref_type":null},{"type_":"u64","ref_type":null}],"is_native":true},"gas_left":999994003}},{"Effect":{"Push":{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},{"CloseFrame":{"frame_id":900,"return_":[{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}],"gas_left":999993786}},{"Instruction":{"type_parameters":[],"pc":5,"gas_left":999993785,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},{"Effect":{"Write":{"location":{"Local":[872,2]},"root_value_after_write":{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}}},{"Instruction":{"type_parameters":[],"pc":6,"gas_left":999993775,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[872,0]},"root_value_read":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},"moved":true}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":7,"gas_left":999993741,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[872,2]},"root_value_read":{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},{"Instruction":{"type_parameters":[],"pc":8,"gas_left":999993741,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":913,"function_name":"borrow_child_object_mut","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"dynamic_field"},"binary_member_index":12,"type_instantiation":[{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"dynamic_field","name":"Field","type_args":["u64",{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"Node","type_args":["u64","u8"]}}]}}],"parameters":[{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},{"RuntimeValue":{"value":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}],"return_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"dynamic_field","name":"Field","type_args":["u64",{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"Node","type_args":["u64","u8"]}}]}},"ref_type":"Mut"}],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"object","name":"UID","type_args":[]}},"ref_type":"Mut"},{"type_":"address","ref_type":null}],"is_native":true},"gas_left":999993741}},{"Effect":{"DataLoad":{"ref_type":"Mut","location":{"Global":914},"snapshot":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},"name":7,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}}}},{"Effect":{"Push":{"MutRef":{"location":{"Global":914},"snapshot":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},"name":7,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}}}}},{"CloseFrame":{"frame_id":913,"return_":[{"MutRef":{"location":{"Global":914},"snapshot":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},"name":7,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}}}],"gas_left":999993500}},{"Instruction":{"type_parameters":["u64",{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"Node","type_args":["u64","u8"]}}],"pc":9,"gas_left":999993490,"instruction":"MUT_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Global":914},"snapshot":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},"name":7,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}}}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Global":914},2]},"snapshot":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},"name":7,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}}}}},{"Instruction":{"type_parameters":[],"pc":10,"gas_left":999993489,"instruction":"RET"}},{"CloseFrame":{"frame_id":872,"return_":[{"MutRef":{"location":{"Indexed":[{"Global":914},2]},"snapshot":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},"name":7,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}}}],"gas_left":999993489}},{"Instruction":{"type_parameters":["u64","u8"],"pc":25,"gas_left":999993479,"instruction":"MUT_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Global":914},2]},"snapshot":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},"name":7,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}}}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Global":914},2]},1]},"snapshot":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},"name":7,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}}}}},{"Instruction":{"type_parameters":[],"pc":26,"gas_left":999993467,"instruction":"WRITE_REF"}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Indexed":[{"Global":914},2]},1]},"snapshot":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},"name":7,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},{"Effect":{"Write":{"location":{"Indexed":[{"Indexed":[{"Global":914},2]},1]},"root_value_after_write":{"MutRef":{"location":{"Global":914},"snapshot":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"7a7c970a2d2d96f16bd55c21ad8386296c539e7901bb6cd685faaf41250c094e"}}}},"name":7,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":42}}}}}}}}},{"Instruction":{"type_parameters":[],"pc":27,"gas_left":999993449,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[578,6]},"root_value_read":{"RuntimeValue":{"value":7}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":[],"pc":28,"gas_left":999993449,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":933,"function_name":"some","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"option"},"binary_member_index":1,"type_instantiation":["u64"],"parameters":[{"RuntimeValue":{"value":7}}],"return_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null}],"locals_types":[{"type_":"u64","ref_type":null}],"is_native":false},"gas_left":999993449}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999993430,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[933,0]},"root_value_read":{"RuntimeValue":{"value":7}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999993430,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":938,"function_name":"singleton","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"vector"},"binary_member_index":8,"type_instantiation":["u64"],"parameters":[{"RuntimeValue":{"value":7}}],"return_types":[{"type_":{"vector":"u64"},"ref_type":null}],"locals_types":[{"type_":"u64","ref_type":null},{"type_":{"vector":"u64"},"ref_type":null}],"is_native":false},"gas_left":999993430}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999993419,"instruction":"VEC_PACK"}},{"Effect":{"Push":{"RuntimeValue":{"value":[]}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999993418,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":[]}}}},{"Effect":{"Write":{"location":{"Local":[938,1]},"root_value_after_write":{"RuntimeValue":{"value":[]}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999993408,"instruction":"MUT_BORROW_LOC"}},{"Effect":{"Read":{"location":{"Local":[938,1]},"root_value_read":{"RuntimeValue":{"value":[]}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[938,1]},"snapshot":[]}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999993390,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[938,0]},"root_value_read":{"RuntimeValue":{"value":7}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999993389,"instruction":"VEC_PUSH_BACK"}},{"Effect":{"Pop":{"RuntimeValue":{"value":7}}}},{"Effect":{"Pop":{"MutRef":{"location":{"Local":[938,1]},"snapshot":[]}}}},{"Effect":{"Write":{"location":{"Local":[938,1]},"root_value_after_write":{"RuntimeValue":{"value":[7]}}}}},{"Instruction":{"type_parameters":[],"pc":5,"gas_left":999993379,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[938,1]},"root_value_read":{"RuntimeValue":{"value":[7]}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":[7]}}}},{"Instruction":{"type_parameters":[],"pc":6,"gas_left":999993378,"instruction":"RET"}},{"CloseFrame":{"frame_id":938,"return_":[{"RuntimeValue":{"value":[7]}}],"gas_left":999993378}},{"Instruction":{"type_parameters":["u64"],"pc":2,"gas_left":999993374,"instruction":"PACK_GENERIC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":[7]}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999993373,"instruction":"RET"}},{"CloseFrame":{"frame_id":933,"return_":[{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}],"gas_left":999993373}},{"Instruction":{"type_parameters":[],"pc":29,"gas_left":999993372,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Effect":{"Write":{"location":{"Local":[578,3]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}},{"Instruction":{"type_parameters":[],"pc":30,"gas_left":999993371,"instruction":"BRANCH"}},{"Instruction":{"type_parameters":[],"pc":33,"gas_left":999993359,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[578,3]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Instruction":{"type_parameters":[],"pc":34,"gas_left":999993358,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Effect":{"Write":{"location":{"Local":[578,7]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}}},{"Instruction":{"type_parameters":[],"pc":35,"gas_left":999993358,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":975,"function_name":"none","module":{"address":"0000000000000000000000000000000000000000000000000000000000000001","name":"option"},"binary_member_index":0,"type_instantiation":["u64"],"parameters":[],"return_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000001","module":"option","name":"Option","type_args":["u64"]}},"ref_type":null}],"locals_types":[],"is_native":false},"gas_left":999993358}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999993347,"instruction":"VEC_PACK"}},{"Effect":{"Push":{"RuntimeValue":{"value":[]}}}},{"Instruction":{"type_parameters":["u64"],"pc":1,"gas_left":999993343,"instruction":"PACK_GENERIC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":[]}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999993342,"instruction":"RET"}},{"CloseFrame":{"frame_id":975,"return_":[{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}],"gas_left":999993342}},{"Instruction":{"type_parameters":[],"pc":36,"gas_left":999993341,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Effect":{"Write":{"location":{"Local":[578,4]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}}},{"Instruction":{"type_parameters":[],"pc":37,"gas_left":999993331,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[578,0]},"root_value_read":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":["u64","u8"],"pc":38,"gas_left":999993321,"instruction":"MUT_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":39,"gas_left":999993303,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[578,1]},"root_value_read":{"RuntimeValue":{"value":42}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":42}}}},{"Instruction":{"type_parameters":[],"pc":40,"gas_left":999993291,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[578,7]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Instruction":{"type_parameters":[],"pc":41,"gas_left":999993287,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[578,4]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Instruction":{"type_parameters":[],"pc":42,"gas_left":999993269,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[578,2]},"root_value_read":{"RuntimeValue":{"value":7}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":7}}}},{"Instruction":{"type_parameters":["u64","u8"],"pc":43,"gas_left":999993265,"instruction":"PACK_GENERIC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":7}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[]}}}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[7]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":7}}}}}},{"Instruction":{"type_parameters":[],"pc":44,"gas_left":999993265,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":1010,"function_name":"add","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"dynamic_field"},"binary_member_index":0,"type_instantiation":["u64",{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"Node","type_args":["u64","u8"]}}],"parameters":[{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},{"RuntimeValue":{"value":42}},{"RuntimeValue":{"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[7]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":7}}}}],"return_types":[],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"object","name":"UID","type_args":[]}},"ref_type":"Mut"},{"type_":"u64","ref_type":null},{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"Node","type_args":["u64","u8"]}},"ref_type":null},{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"dynamic_field","name":"Field","type_args":["u64",{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"Node","type_args":["u64","u8"]}}]}},"ref_type":null},{"type_":"address","ref_type":null},{"type_":"address","ref_type":null}],"is_native":false},"gas_left":999993265}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999993254,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[1010,0]},"root_value_read":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},"moved":true}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999993244,"instruction":"FREEZE_REF"}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999993244,"instruction":"CALL"}},{"OpenFrame":{"frame":{"frame_id":1018,"function_name":"uid_to_address","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"object"},"binary_member_index":13,"type_instantiation":[],"parameters":[{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}],"return_types":[{"type_":"address","ref_type":null}],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"object","name":"UID","type_args":[]}},"ref_type":"Imm"}],"is_native":false},"gas_left":999993244}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999993233,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[1018,0]},"root_value_read":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},"moved":true}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999993223,"instruction":"IMM_BORROW_FIELD"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},0]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999993213,"instruction":"IMM_BORROW_FIELD"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Local":[0,1]},0]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Indexed":[{"Local":[0,1]},0]},0]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999993179,"instruction":"READ_REF"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Indexed":[{"Indexed":[{"Local":[0,1]},0]},0]},0]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Effect":{"Read":{"location":{"Indexed":[{"Indexed":[{"Indexed":[{"Local":[0,1]},0]},0]},0]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999993178,"instruction":"RET"}},{"CloseFrame":{"frame_id":1018,"return_":[{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}],"gas_left":999993178}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999993177,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},{"Effect":{"Write":{"location":{"Local":[1010,5]},"root_value_after_write":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999993143,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[1010,5]},"root_value_read":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},{"Instruction":{"type_parameters":[],"pc":5,"gas_left":999993125,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[1010,1]},"root_value_read":{"RuntimeValue":{"value":42}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":42}}}},{"Instruction":{"type_parameters":[],"pc":6,"gas_left":999993125,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":1044,"function_name":"hash_type_and_key","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"dynamic_field"},"binary_member_index":9,"type_instantiation":["u64"],"parameters":[{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}},{"RuntimeValue":{"value":42}}],"return_types":[{"type_":"address","ref_type":null}],"locals_types":[{"type_":"address","ref_type":null},{"type_":"u64","ref_type":null}],"is_native":true},"gas_left":999993125}},{"Effect":{"Push":{"RuntimeValue":{"value":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}}},{"CloseFrame":{"frame_id":1044,"return_":[{"RuntimeValue":{"value":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}],"gas_left":999992908}},{"Instruction":{"type_parameters":[],"pc":7,"gas_left":999992907,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}}},{"Effect":{"Write":{"location":{"Local":[1010,4]},"root_value_after_write":{"RuntimeValue":{"value":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}}}},{"Instruction":{"type_parameters":[],"pc":8,"gas_left":999992873,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[1010,5]},"root_value_read":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},{"Instruction":{"type_parameters":[],"pc":9,"gas_left":999992839,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[1010,4]},"root_value_read":{"RuntimeValue":{"value":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}}},{"Instruction":{"type_parameters":[],"pc":10,"gas_left":999992839,"instruction":"CALL"}},{"OpenFrame":{"frame":{"frame_id":1057,"function_name":"has_child_object","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"dynamic_field"},"binary_member_index":14,"type_instantiation":[],"parameters":[{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}},{"RuntimeValue":{"value":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}],"return_types":[{"type_":"bool","ref_type":null}],"locals_types":[{"type_":"address","ref_type":null},{"type_":"address","ref_type":null}],"is_native":true},"gas_left":999992839}},{"Effect":{"Push":{"RuntimeValue":{"value":false}}}},{"CloseFrame":{"frame_id":1057,"return_":[{"RuntimeValue":{"value":false}}],"gas_left":999992720}},{"Instruction":{"type_parameters":[],"pc":11,"gas_left":999992717,"instruction":"NOT"}},{"Effect":{"Pop":{"RuntimeValue":{"value":false}}}},{"Effect":{"Push":{"RuntimeValue":{"value":true}}}},{"Instruction":{"type_parameters":[],"pc":12,"gas_left":999992716,"instruction":"BR_FALSE"}},{"Effect":{"Pop":{"RuntimeValue":{"value":true}}}},{"Instruction":{"type_parameters":[],"pc":13,"gas_left":999992715,"instruction":"BRANCH"}},{"Instruction":{"type_parameters":[],"pc":16,"gas_left":999992681,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[1010,4]},"root_value_read":{"RuntimeValue":{"value":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}}},{"Instruction":{"type_parameters":[],"pc":17,"gas_left":999992681,"instruction":"CALL"}},{"OpenFrame":{"frame":{"frame_id":1070,"function_name":"new_uid_from_hash","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"object"},"binary_member_index":21,"type_instantiation":[],"parameters":[{"RuntimeValue":{"value":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}],"return_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"object","name":"UID","type_args":[]}},"ref_type":null}],"locals_types":[{"type_":"address","ref_type":null}],"is_native":false},"gas_left":999992681}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999992646,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[1070,0]},"root_value_read":{"RuntimeValue":{"value":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999992646,"instruction":"CALL"}},{"OpenFrame":{"frame":{"frame_id":1075,"function_name":"record_new_uid","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"object"},"binary_member_index":23,"type_instantiation":[],"parameters":[{"RuntimeValue":{"value":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}],"return_types":[],"locals_types":[{"type_":"address","ref_type":null}],"is_native":true},"gas_left":999992646}},{"CloseFrame":{"frame_id":1075,"return_":[],"gas_left":999992592}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999992558,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[1070,0]},"root_value_read":{"RuntimeValue":{"value":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999992554,"instruction":"PACK"}},{"Effect":{"Pop":{"RuntimeValue":{"value":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::object::ID","fields":{"bytes":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999992550,"instruction":"PACK"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x2::object::ID","fields":{"bytes":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}}}}}}},{"Instruction":{"type_parameters":[],"pc":5,"gas_left":999992549,"instruction":"RET"}},{"CloseFrame":{"frame_id":1070,"return_":[{"RuntimeValue":{"value":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}}}}}],"gas_left":999992549}},{"Instruction":{"type_parameters":[],"pc":18,"gas_left":999992531,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[1010,1]},"root_value_read":{"RuntimeValue":{"value":42}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":42}}}},{"Instruction":{"type_parameters":[],"pc":19,"gas_left":999992499,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[1010,2]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[7]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":7}}}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[7]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":7}}}}}},{"Instruction":{"type_parameters":["u64",{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"Node","type_args":["u64","u8"]}}],"pc":20,"gas_left":999992495,"instruction":"PACK_GENERIC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[7]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":7}}}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":42}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}}},"name":42,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[7]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":7}}}}}}}},{"Instruction":{"type_parameters":[],"pc":21,"gas_left":999992494,"instruction":"ST_LOC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}}},"name":42,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[7]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":7}}}}}}}},{"Effect":{"Write":{"location":{"Local":[1010,3]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}}},"name":42,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[7]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":7}}}}}}}}},{"Instruction":{"type_parameters":[],"pc":22,"gas_left":999992460,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[1010,5]},"root_value_read":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},{"Instruction":{"type_parameters":[],"pc":23,"gas_left":999992374,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[1010,3]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}}},"name":42,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[7]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":7}}}}}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}}},"name":42,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[7]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":7}}}}}}}},{"Instruction":{"type_parameters":[],"pc":24,"gas_left":999992374,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":1109,"function_name":"add_child_object","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"dynamic_field"},"binary_member_index":10,"type_instantiation":[{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"dynamic_field","name":"Field","type_args":["u64",{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"Node","type_args":["u64","u8"]}}]}}],"parameters":[{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}},{"RuntimeValue":{"value":{"type":"0x2::dynamic_field::Field>","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"ca7fbe0d5c44e48a8314750aed86b52302bc8db067948e28ec90a4292adb24cf"}}}},"name":42,"value":{"type":"0x2::linked_table::Node","fields":{"prev":{"type":"0x1::option::Option","fields":{"vec":[7]}},"next":{"type":"0x1::option::Option","fields":{"vec":[]}},"value":7}}}}}}],"return_types":[],"locals_types":[{"type_":"address","ref_type":null},{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"dynamic_field","name":"Field","type_args":["u64",{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"Node","type_args":["u64","u8"]}}]}},"ref_type":null}],"is_native":true},"gas_left":999992374}},{"CloseFrame":{"frame_id":1109,"return_":[],"gas_left":999989442}},{"Instruction":{"type_parameters":[],"pc":25,"gas_left":999989441,"instruction":"RET"}},{"CloseFrame":{"frame_id":1010,"return_":[],"gas_left":999989441}},{"Instruction":{"type_parameters":[],"pc":45,"gas_left":999989431,"instruction":"COPY_LOC"}},{"Effect":{"Read":{"location":{"Local":[578,0]},"root_value_read":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},"moved":false}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":["u64","u8"],"pc":46,"gas_left":999989421,"instruction":"IMM_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Effect":{"Push":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":47,"gas_left":999989403,"instruction":"READ_REF"}},{"Effect":{"Pop":{"ImmRef":{"location":{"Indexed":[{"Local":[0,1]},1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Effect":{"Read":{"location":{"Indexed":[{"Local":[0,1]},1]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},"moved":false}}},{"Effect":{"Push":{"RuntimeValue":{"value":1}}}},{"Instruction":{"type_parameters":[],"pc":48,"gas_left":999989400,"instruction":"LD_U64"}},{"Effect":{"Push":{"RuntimeValue":{"value":1}}}},{"Instruction":{"type_parameters":[],"pc":49,"gas_left":999989397,"instruction":"ADD"}},{"Effect":{"Pop":{"RuntimeValue":{"value":1}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":1}}}},{"Effect":{"Push":{"RuntimeValue":{"value":2}}}},{"Instruction":{"type_parameters":[],"pc":50,"gas_left":999989387,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[578,0]},"root_value_read":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},"moved":true}}},{"Effect":{"Push":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":["u64","u8"],"pc":51,"gas_left":999989377,"instruction":"MUT_BORROW_FIELD_GENERIC"}},{"Effect":{"Pop":{"MutRef":{"location":{"Local":[0,1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Effect":{"Push":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":52,"gas_left":999989359,"instruction":"WRITE_REF"}},{"Effect":{"Pop":{"MutRef":{"location":{"Indexed":[{"Local":[0,1]},1]},"snapshot":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":1,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Effect":{"Pop":{"RuntimeValue":{"value":2}}}},{"Effect":{"Write":{"location":{"Indexed":[{"Local":[0,1]},1]},"root_value_after_write":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":2,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}}},{"Instruction":{"type_parameters":[],"pc":53,"gas_left":999989358,"instruction":"RET"}},{"CloseFrame":{"frame_id":578,"return_":[],"gas_left":999989358}},{"Instruction":{"type_parameters":[],"pc":13,"gas_left":999989282,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[0,1]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":2,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":2,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":14,"gas_left":999989282,"instruction":"CALL_GENERIC"}},{"OpenFrame":{"frame":{"frame_id":1145,"function_name":"drop","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"linked_table"},"binary_member_index":16,"type_instantiation":["u64","u8"],"parameters":[{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":2,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}],"return_types":[],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"linked_table","name":"LinkedTable","type_args":["u64","u8"]}},"ref_type":null}],"is_native":false},"gas_left":999989282}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999989205,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[1145,0]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":2,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":2,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999989200,"instruction":"UNPACK_GENERIC"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x2::linked_table::LinkedTable","fields":{"id":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},"size":2,"head":{"type":"0x1::option::Option","fields":{"vec":[7]}},"tail":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":2}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999989199,"instruction":"POP"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[42]}}}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999989198,"instruction":"POP"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x1::option::Option","fields":{"vec":[7]}}}}}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999989197,"instruction":"POP"}},{"Effect":{"Pop":{"RuntimeValue":{"value":2}}}},{"Instruction":{"type_parameters":[],"pc":5,"gas_left":999989197,"instruction":"CALL"}},{"OpenFrame":{"frame":{"frame_id":1162,"function_name":"delete","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"object"},"binary_member_index":15,"type_instantiation":[],"parameters":[{"RuntimeValue":{"value":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}}}}],"return_types":[],"locals_types":[{"type_":{"struct":{"address":"0000000000000000000000000000000000000000000000000000000000000002","module":"object","name":"UID","type_args":[]}},"ref_type":null}],"is_native":false},"gas_left":999989197}},{"Instruction":{"type_parameters":[],"pc":0,"gas_left":999989158,"instruction":"MOVE_LOC"}},{"Effect":{"Read":{"location":{"Local":[1162,0]},"root_value_read":{"RuntimeValue":{"value":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}}}},"moved":true}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}}}}}},{"Instruction":{"type_parameters":[],"pc":1,"gas_left":999989156,"instruction":"UNPACK"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x2::object::UID","fields":{"id":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}}}},{"Instruction":{"type_parameters":[],"pc":2,"gas_left":999989154,"instruction":"UNPACK"}},{"Effect":{"Pop":{"RuntimeValue":{"value":{"type":"0x2::object::ID","fields":{"bytes":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}}}},{"Effect":{"Push":{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}}},{"Instruction":{"type_parameters":[],"pc":3,"gas_left":999989154,"instruction":"CALL"}},{"OpenFrame":{"frame":{"frame_id":1173,"function_name":"delete_impl","module":{"address":"0000000000000000000000000000000000000000000000000000000000000002","name":"object"},"binary_member_index":22,"type_instantiation":[],"parameters":[{"RuntimeValue":{"value":"381dd9078c322a4663c392761a0211b527c127b29583851217f948d62131f409"}}],"return_types":[],"locals_types":[{"type_":"address","ref_type":null}],"is_native":true},"gas_left":999989154}},{"CloseFrame":{"frame_id":1173,"return_":[],"gas_left":999989100}},{"Instruction":{"type_parameters":[],"pc":4,"gas_left":999989099,"instruction":"RET"}},{"CloseFrame":{"frame_id":1162,"return_":[],"gas_left":999989099}},{"Instruction":{"type_parameters":[],"pc":6,"gas_left":999989098,"instruction":"RET"}},{"CloseFrame":{"frame_id":1145,"return_":[],"gas_left":999989098}},{"Instruction":{"type_parameters":[],"pc":15,"gas_left":999989097,"instruction":"RET"}},{"CloseFrame":{"frame_id":0,"return_":[],"gas_left":999989097}}]} \ No newline at end of file diff --git a/external-crates/move/crates/move-analyzer/trace-debug/.gitignore b/external-crates/move/crates/move-analyzer/trace-debug/.gitignore new file mode 100644 index 0000000000000..0fa8a76bdaf60 --- /dev/null +++ b/external-crates/move/crates/move-analyzer/trace-debug/.gitignore @@ -0,0 +1 @@ +/out/ \ No newline at end of file diff --git a/external-crates/move/crates/move-analyzer/trace-debug/package.json b/external-crates/move/crates/move-analyzer/trace-debug/package.json index d048bff472981..3c2f72c4d5a2a 100644 --- a/external-crates/move/crates/move-analyzer/trace-debug/package.json +++ b/external-crates/move/crates/move-analyzer/trace-debug/package.json @@ -5,7 +5,7 @@ "publisher": "mysten", "icon": "images/move.png", "license": "Apache-2.0", - "version": "0.0.1", + "version": "0.0.2", "preview": true, "repository": { "url": "https://github.com/MystenLabs/sui.git",