diff --git a/Builds/Windows/Engine/Content/Slate/Cursor/invisible.cur b/Builds/Windows/Engine/Content/Slate/Cursor/invisible.cur
new file mode 100644
index 0000000000000000000000000000000000000000..0b2a2a425cb6baa1049a20864987d879dd31450b
Binary files /dev/null and b/Builds/Windows/Engine/Content/Slate/Cursor/invisible.cur differ
diff --git a/Builds/Windows/Engine/Content/SlateDebug/Fonts/LastResort.tps b/Builds/Windows/Engine/Content/SlateDebug/Fonts/LastResort.tps
new file mode 100644
index 0000000000000000000000000000000000000000..1e9b8837c41871098a58ca9690bd2137e91b8b85
--- /dev/null
+++ b/Builds/Windows/Engine/Content/SlateDebug/Fonts/LastResort.tps
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<TpsData xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <Name>Last Resort Font</Name>
+  <Location>/Engine/Content/SlateDebug/Fonts/LastResort.ttf</Location>
+  <Date>2016-06-10T14:17:31.3888811-04:00</Date>
+  <Function>The Last Resort font is a collection of glyphs to represent types of Unicode characters</Function>
+  <Justification>These glyphs are designed to allow users to recognize an encoded value in scenarios where the desired font doesn’t provide a character</Justification>
+  <Eula>http://www.unicode.org/policies/lastresortfont_eula.html</Eula>
+  <RedistributeTo>
+    <EndUserGroup>Licensees</EndUserGroup>
+    <EndUserGroup>Git</EndUserGroup>
+    <EndUserGroup>P4</EndUserGroup>
+  </RedistributeTo>
+  <LicenseFolder>/Engine/Source/ThirdParty/Licenses/LastResortFont_License.txt</LicenseFolder>
+</TpsData>
\ No newline at end of file
diff --git a/Builds/Windows/Engine/Content/SlateDebug/Fonts/LastResort.ttf b/Builds/Windows/Engine/Content/SlateDebug/Fonts/LastResort.ttf
new file mode 100644
index 0000000000000000000000000000000000000000..58348ffd32858c00ac655b9358dda50e7c0c3a38
Binary files /dev/null and b/Builds/Windows/Engine/Content/SlateDebug/Fonts/LastResort.ttf differ
diff --git a/Builds/Windows/Engine/Extras/GPUDumpViewer/GPUDumpViewer.html b/Builds/Windows/Engine/Extras/GPUDumpViewer/GPUDumpViewer.html
new file mode 100644
index 0000000000000000000000000000000000000000..e968894ebb29a8094c7dc5f306e46f3535c87685
--- /dev/null
+++ b/Builds/Windows/Engine/Extras/GPUDumpViewer/GPUDumpViewer.html
@@ -0,0 +1,6408 @@
+<!-- Copyright Epic Games, Inc. All Rights Reserved. -->
+<html>
+<title>GPU Dump Viewer</title>
+
+<script type="text/javascript">
+
+
+// -------------------------------------------------------------------- CONSTANTS
+
+const k_current_dir = "./";
+
+const k_style_scroll_width = 8;
+const k_style_padding_size = 10;
+const k_style_main_div_margin = 15;
+
+const k_null_json_ptr = "0000000000000000";
+
+
+// -------------------------------------------------------------------- GLOBALS
+
+var g_dump_service = {};
+var g_infos = {};
+var g_dump_cvars = {};
+var g_passes = [];
+var g_descs = {};
+
+var g_view = null;
+
+
+// -------------------------------------------------------------------- GLOBALS
+
+class IView
+{
+	constructor()
+	{
+
+	}
+
+	setup_html(parent)
+	{
+		parent.innerHTML = '';
+	}
+
+	resize(ctx)
+	{
+
+	}
+
+	get navigations()
+	{
+		return [];
+	}
+
+	release()
+	{
+
+	}
+}
+
+function set_main_view(new_view)
+{
+	var parent_dom = document.getElementById('main_right_pannel');
+	if (g_view !== null)
+	{
+		g_view.release();
+		delete g_view;
+		parent_dom.innerHTML = '';
+	}
+	g_view = new_view;
+	if (g_view !== null)
+	{
+		g_view.setup_html(parent_dom);
+		onresize_body();
+	}
+}
+
+
+// -------------------------------------------------------------------- FILE LOADING
+
+function does_file_exists(relative_path)
+{
+	try
+	{
+		var request = new XMLHttpRequest();
+		request.open('HEAD', k_current_dir + relative_path, false);
+		request.send(null);
+		return request.status != 404;
+	}
+	catch (error)
+	{
+		return false;
+	}
+	return false;
+}
+
+function load_text_file(relative_path)
+{
+	try
+	{
+		var request = new XMLHttpRequest();
+		request.open('GET', k_current_dir + relative_path, false);
+		request.send(null);
+		if (request.status === 0 || request.status === 200)
+		{
+			return request.responseText;
+		}
+		add_console_event('error', `couldn't load ${relative_path}: Returned HTTP status ${request.status}`);
+	}
+	catch (error)
+	{
+		add_console_event('error', `couldn't load ${relative_path}: ${error}`);
+	}
+	return null;
+}
+
+function load_binary_file(relative_path, callback)
+{
+	try
+	{
+		var request = new XMLHttpRequest();
+		request.open('GET', k_current_dir + relative_path, true);
+		request.responseType = "arraybuffer";
+
+		request.onload = function(event)
+		{
+			var array_buffer = request.response;
+			if ((request.status === 0 || request.status === 200) && array_buffer)
+			{
+				callback(array_buffer);
+			}
+			else
+			{
+				add_console_event('error', `couldn't load ${relative_path}: Returned HTTP status ${request.status}`);
+				callback(null);
+			}
+		};
+
+		request.onerror = function() {
+			add_console_event('error', `couldn't load ${relative_path}`);
+			callback(null);
+		};
+
+		request.send(null);
+	}
+	catch (error)
+	{
+		add_console_event('error', `couldn't load ${relative_path}: ${error}`);
+		callback(null);
+	}
+}
+
+function load_resource_binary_file(relative_path, callback)
+{
+	return load_binary_file(relative_path, function(raw_texture_data)
+	{
+		var compression_type = '';
+		if (g_dump_service['CompressionName'] == 'Zlib')
+		{
+			compression_type = 'deflate';
+		}
+		else if (g_dump_service['CompressionName'] == 'GZip')
+		{
+			compression_type = 'gzip';
+		}
+
+		if (raw_texture_data === null || compression_type == '')
+		{
+			return callback(raw_texture_data);
+		}
+
+		var decompressor = new DecompressionStream(compression_type);
+		var decompressed_stream = new Blob([raw_texture_data]).stream().pipeThrough(decompressor);
+		new Response(decompressed_stream).arrayBuffer().then(callback, function() { callback(null); });
+	});
+}
+
+function load_json(relative_path)
+{
+	var txt = load_text_file(relative_path);
+
+	if (txt === null)
+	{
+		return null;
+	}
+
+	return JSON.parse(load_text_file(relative_path));
+}
+
+function load_json_dict_sequence(relative_path)
+{
+	var text_file = load_text_file(relative_path);
+	if (text_file == '')
+	{
+		return new Array();
+	}
+	var dicts = text_file.split("}{");
+	var dict_sequence = [];
+	dicts.forEach(function(value, index, array) {
+		if (!value.startsWith('{'))
+		{
+			value = '{' + value;
+		}
+		if (!value.endsWith('}'))
+		{
+			value = value + '}';
+		}
+		dict_sequence.push(JSON.parse(value));
+	});
+	return dict_sequence;
+}
+
+function get_resource_desc(unique_resource_name)
+{
+	return g_descs[unique_resource_name];
+}
+
+function load_structure_metadata(structure_ptr)
+{
+	var cache = {};
+
+	function load_nested_structure_metadata(nested_structure_ptr)
+	{
+		if (nested_structure_ptr in cache)
+		{
+			return cache[nested_structure_ptr];
+		}
+
+		var metadata = load_json(`StructuresMetadata/${nested_structure_ptr}.json`);
+		cache[nested_structure_ptr] = metadata;
+ 
+		for (var member of metadata['Members'])
+		{
+			if (member['StructMetadata'] == k_null_json_ptr)
+			{
+				member['StructMetadata'] = null;
+			}
+			else
+			{
+				member['StructMetadata'] = load_nested_structure_metadata(member['StructMetadata']);
+			}
+		}
+
+		return metadata;
+	}
+
+	return load_nested_structure_metadata(structure_ptr);
+}
+
+
+// -------------------------------------------------------------------- UTILITY
+
+function get_filename(file_path)
+{
+	return file_path.split(/(\\|\/)/g).pop();
+}
+
+function px_string_to_int(str)
+{
+	if (Number.isInteger(str))
+	{
+		return str;
+	}
+	if (str.endsWith('px'))
+	{
+		return Number(str.substring(0, str.length - 2));
+	}
+	return Number(str);
+}
+
+function parse_subresource_unique_name(subresource_unique_name)
+{
+	var splitted_name = subresource_unique_name.split(".");
+
+	var subresource_info = {};
+	subresource_info['subresource'] = null;
+	subresource_info['array_slice'] = null;
+
+	if (splitted_name[splitted_name.length - 1].startsWith('mip') || splitted_name[splitted_name.length - 1] == 'stencil')
+	{
+		subresource_info['subresource'] = splitted_name.pop();
+	}
+
+	if (splitted_name[splitted_name.length - 1].startsWith('[') && splitted_name[splitted_name.length - 1].endsWith(']'))
+	{
+		var array_slice_bracket = splitted_name.pop();
+		subresource_info['array_slice'] = parseInt(array_slice_bracket.substring(1, array_slice_bracket.length - 1));
+	}
+
+	subresource_info['resource'] = splitted_name.join('.');
+
+	return subresource_info;
+}
+
+function get_subresource_unique_name(subresource_info)
+{
+	var subresource_unique_name = subresource_info['resource'];
+	if (subresource_info['array_slice'] !== null)
+	{
+		subresource_unique_name += `.[${subresource_info['array_slice']}]`;
+	}
+	if (subresource_info['subresource'] !== null)
+	{
+		subresource_unique_name += `.${subresource_info['subresource']}`;
+	}
+	return subresource_unique_name;
+}
+
+function prettify_subresource_unique_name(subresource_info, resource_desc)
+{
+	if (!resource_desc)
+	{
+		return get_subresource_unique_name(subresource_info);
+	}
+
+	var name = resource_desc['Name'];
+
+	if (subresource_info['array_slice'] !== null)
+	{
+		name += ` slice[${subresource_info['array_slice']}]`;
+	}
+
+	if (subresource_info['subresource'] !== null && (subresource_info['subresource'] == 'stencil' || resource_desc['NumMips'] > 1))
+	{
+		name += ` ${subresource_info['subresource']}`;
+	}
+	
+	return name;
+}
+
+function parse_subresource_unique_version_name(subresource_unique_version_name)
+{
+	var splitted_name = subresource_unique_version_name.split(".");
+
+	var pass_ptr = -1;
+	var draw_id = -1;
+
+	var last = splitted_name.pop();
+	if (last.startsWith('d'))
+	{
+		draw_id = parseInt(last.substring(1));
+		last = splitted_name.pop();
+	}
+	
+	if (last.startsWith('v'))
+	{
+		pass_ptr = last.substring(1);
+	}
+
+	var subresource_unique_name = splitted_name.join('.');
+	var subresource_version_info = parse_subresource_unique_name(subresource_unique_name);
+
+	subresource_version_info['pass'] = pass_ptr;
+	subresource_version_info['draw'] = draw_id;
+	return subresource_version_info;
+}
+
+function get_subresource_unique_version_name(subresource_version_info)
+{
+	if (subresource_version_info['draw'] >= 0)
+	{
+		return `${get_subresource_unique_name(subresource_version_info)}.v${subresource_version_info['pass']}.d${subresource_version_info['draw']}`;
+	}
+	return `${get_subresource_unique_name(subresource_version_info)}.v${subresource_version_info['pass']}`;
+}
+
+
+// -------------------------------------------------------------------- SHADER PARAMETERS
+
+function iterate_structure_members(root_structure_metadata, callback)
+{
+	function iterate_recursive(structure_metadata, offset, cpp_prefix, shader_prefix)
+	{
+		for (var member of structure_metadata['Members'])
+		{
+			var base_type = member['BaseType'];
+
+			if (base_type == 'UBMT_NESTED_STRUCT')
+			{
+				iterate_recursive(member['StructMetadata'], offset + member['Offset'], cpp_prefix + member['Name'] + '.', shader_prefix + member['Name'] + '_');
+			}
+			else if (base_type == 'UBMT_INCLUDED_STRUCT')
+			{
+				iterate_recursive(member['StructMetadata'], offset + member['Offset'], cpp_prefix + member['Name'] + '.', shader_prefix);
+			}
+			else
+			{
+				var params = {
+					member: member,
+					base_type: base_type,
+					byte_offset: offset + member['Offset'],
+					cpp_name: cpp_prefix + member['Name'],
+					shader_name: shader_prefix + member['Name'],
+				};
+				callback(params);
+			}
+		}
+	}
+
+	iterate_recursive(root_structure_metadata, /* offset = */ 0, /* cpp_prefix = */ '', /* shader_prefix = */ '');
+}
+
+
+// -------------------------------------------------------------------- FLOAT ENCODING
+
+function decode_float(raw, total_bit_count, exp_bit_count, has_sign)
+{
+	var exp_bias = (1 << (exp_bit_count - 1)) - 1;
+	var mantissa_bit_count = total_bit_count - exp_bit_count - (has_sign ? 1 : 0);
+
+	var sign_bit      = (raw >> (total_bit_count - 1)) & 0x1;
+	var mantissa_bits = (raw >> 0)                     & ((0x1 << mantissa_bit_count) - 1);
+	var exp_bits      = (raw >> mantissa_bit_count)    & ((0x1 << exp_bit_count) - 1);
+
+	var is_max_exp = exp_bits == ((0x1 << exp_bit_count) - 1);
+
+	var is_denormal = exp_bits == 0;
+	var is_infinity = is_max_exp && mantissa_bits == 0;
+	var is_nan = is_max_exp && mantissa_bits != 0;
+
+	var exp = exp_bits - exp_bias;
+	var mantissa = mantissa_bits * Math.pow(0.5, mantissa_bit_count);
+	var sign = (has_sign && (sign_bit == 1)) ? -1 : 1;
+
+	if (is_nan)
+	{
+		return 'nan';
+	}
+	else if (is_infinity)
+	{
+		return sign == -1 ? '-inf' : '+inf';
+	}
+	else if (is_denormal)
+	{
+		var value = sign * mantissa * Math.pow(0.5, exp_bias - 1);
+		return value;
+	}
+	else
+	{
+		var value = sign * (1.0 + mantissa) * Math.pow(2.0, exp);
+		return value;
+	}
+}
+
+function decode_float10(raw)
+{
+	return decode_float(raw, /* total_bit_count = */ 10, /* exp_bit_count = */ 5, /* has_sign = */ false);
+}
+
+function decode_float11(raw)
+{
+	return decode_float(raw, /* total_bit_count = */ 11, /* exp_bit_count = */ 5, /* has_sign = */ false);
+}
+
+function decode_float16(raw)
+{
+	return decode_float(raw, /* total_bit_count = */ 16, /* exp_bit_count = */ 5, /* has_sign = */ true);
+}
+
+function decode_float32(raw)
+{
+	return decode_float(raw, /* total_bit_count = */ 32, /* exp_bit_count = */ 8, /* has_sign = */ true);
+}
+
+function test_decode_float()
+{
+	var tests = [
+		// Zero
+		[0x0000,  0.0],
+		[0x8000, -0.0],
+
+		// normals
+		[0x4000,  2.0],
+		[0xc000, -2.0],
+
+		// denormals
+		[0x0001,  5.960464477539063e-8],
+		[0x8001, -5.960464477539063e-8],
+
+		// exotics
+		[0x7c00, '+inf'],
+		[0xFc00, '-inf'],
+		[0x7c01, 'nan'],
+		[0xFc01, 'nan'],
+	];
+
+	for (var i = 0; i < tests.length; i++)
+	{
+		var encoded = tests[i][0];
+		var ref = tests[i][1];
+		var computed = decode_float16(encoded);
+
+		console.assert(computed == ref);
+	}
+}
+
+
+// -------------------------------------------------------------------- PASS ANALYSIS
+
+var g_analysis = {};
+
+function get_frame_number(pass_data)
+{
+	var pass_event_scopes = pass_data['ParentEventScopes'];
+	var frame_event_scope_name = pass_event_scopes[pass_event_scopes.length - 1];
+
+	const regex = new RegExp("Frame (?<FrameNumber>\\d+).*");
+	//const regex = /Frame (?<FrameNumber>\d+) .*"/;
+
+	var found = frame_event_scope_name.match(regex);
+	return Number(found.groups['FrameNumber']);
+}
+
+function compare_draw_events(ref_draw_event, tested_draw_event)
+{
+	ref_draw_event = ref_draw_event.replace(/\d+\.d*/g, '');
+	ref_draw_event = ref_draw_event.replace(/\d+/g, '');
+
+	tested_draw_event = tested_draw_event.replace(/\d+\.d*/g, '');
+	tested_draw_event = tested_draw_event.replace(/\d+/g, '');
+
+	return ref_draw_event == tested_draw_event;
+}
+
+function is_pass_output_resource(pass_data, subresource_version_info)
+{
+	var subresource_unique_name = get_subresource_unique_name(subresource_version_info);
+
+	var is_output_resource = null;
+	if (pass_data['InputResources'].includes(subresource_unique_name))
+	{
+		is_output_resource = false;
+	}
+	else if (pass_data['OutputResources'].includes(subresource_unique_name))
+	{
+		is_output_resource = true;
+	}
+	console.assert(is_output_resource !== null);
+	return is_output_resource;
+}
+
+function find_similar_pass_id_in_frame(current_frame_pass_data, new_frame_id)
+{
+	var current_pass_event_scopes = current_frame_pass_data['ParentEventScopes'];
+
+	for (var pass_id in g_passes)
+	{
+		var pass_data = g_passes[pass_id];
+		if (!compare_draw_events(pass_data['EventName'], current_frame_pass_data['EventName']))
+		{
+			continue;
+		}
+
+		var frame_id = get_frame_number(pass_data);
+		if (frame_id != new_frame_id)
+		{
+			continue;
+		}
+
+		var pass_event_scopes = pass_data['ParentEventScopes'];
+		if (pass_event_scopes.length != current_pass_event_scopes.length)
+		{
+			continue;
+		}
+		else
+		{
+			var is_same_parent = true;
+			for (var parent_scope_id = 0; parent_scope_id < pass_event_scopes.length - 1; parent_scope_id++)
+			{
+				is_same_parent = is_same_parent && compare_draw_events(current_pass_event_scopes[parent_scope_id], pass_event_scopes[parent_scope_id]);
+			}
+			if (!is_same_parent)
+			{
+				continue;
+			}
+		}
+
+		return Number(pass_id);
+	}
+
+	return null;
+}
+
+function find_similar_resource_in_pass(current_frame_pass_data, current_frame_resource_desc, current_frame_subresource_info, new_pass_data)
+{
+	var is_output_resource = is_pass_output_resource(current_frame_pass_data, current_frame_subresource_info);
+
+	var new_pass_resource_list = is_output_resource ? new_pass_data['OutputResources'] : new_pass_data['InputResources'];
+
+	for (var new_pass_subresource_unique_name of new_pass_resource_list)
+	{
+		var new_pass_subresource_info = parse_subresource_unique_name(new_pass_subresource_unique_name);
+		if (new_pass_subresource_info['subresource'] !== current_frame_subresource_info['subresource'])
+		{
+			continue;
+		}
+		if (new_pass_subresource_info['array_slice'] !== current_frame_subresource_info['array_slice'])
+		{
+			continue;
+		}
+
+		var new_pass_resource_desc = get_resource_desc(new_pass_subresource_info['resource']);
+		if (new_pass_resource_desc['Name'] !== current_frame_resource_desc['Name'])
+		{
+			continue;
+		}
+
+		return new_pass_subresource_info;
+	}
+
+	// try to find with non matching array_slice
+	for (var new_pass_subresource_unique_name of new_pass_resource_list)
+	{
+		var new_pass_subresource_info = parse_subresource_unique_name(new_pass_subresource_unique_name);
+		if (new_pass_subresource_info['subresource'] !== current_frame_subresource_info['subresource'])
+		{
+			continue;
+		}
+
+		var new_pass_resource_desc = get_resource_desc(new_pass_subresource_info['resource']);
+		if (new_pass_resource_desc['Name'] !== current_frame_resource_desc['Name'])
+		{
+			continue;
+		}
+
+		return new_pass_subresource_info;
+	}
+
+
+	return null;
+}
+
+function analyses_passes()
+{
+	var frames = [];
+
+	for (var pass_id in g_passes)
+	{
+		var pass_data = g_passes[pass_id];
+		
+		var frame_id = get_frame_number(pass_data);
+
+		if (!frames.includes(frame_id))
+		{
+			frames.push(frame_id);
+		}
+	}
+
+	g_analysis['FrameList'] = frames;
+}
+
+
+// -------------------------------------------------------------------- DISPLAY PASS
+
+function display_pass_hierarchy()
+{
+	var search_pass = document.getElementById('pass_search_input').value;
+	var search_resource = document.getElementById('resource_search_input').value;
+	var html = '';
+	var parent_event_scopes = [];
+
+	g_passes.forEach(function(pass_data, pass_id) {
+		var pass_event_scopes = pass_data['ParentEventScopes'];
+
+		var show_pass = true;
+		if (search_pass != '')
+		{
+			show_pass = pass_data['EventName'].toLowerCase().includes(search_pass.toLowerCase());
+
+			for (var i = 0; i < pass_event_scopes.length; i++)
+			{
+				show_pass = show_pass || pass_event_scopes[i].toLowerCase().includes(search_pass.toLowerCase());
+			}
+		}
+
+		var show_resource = true;
+		if (search_resource != '')
+		{
+			show_resource = false;
+			for (var subresource_unique_name of pass_data['InputResources'])
+			{
+				var resource_unique_name = parse_subresource_unique_name(subresource_unique_name)['resource'];
+				var resource_name = get_resource_desc(resource_unique_name)['Name'];
+				show_resource = show_resource || resource_name.toLowerCase().includes(search_resource.toLowerCase());
+			}
+			for (var subresource_unique_name of pass_data['OutputResources'])
+			{
+				var resource_unique_name = parse_subresource_unique_name(subresource_unique_name)['resource'];
+				var resource_name = get_resource_desc(resource_unique_name)['Name'];
+				show_resource = show_resource || resource_name.toLowerCase().includes(search_resource.toLowerCase());
+			}
+		}
+
+		var has_input_or_outputs = pass_data['InputResources'].length > 0 || pass_data['OutputResources'].length > 0;
+
+		if (show_pass && show_resource && has_input_or_outputs)
+		{
+			var shared_scope = 0;
+			for (var i = 0; i < Math.min(parent_event_scopes.length, pass_event_scopes.length); i++)
+			{
+				if (parent_event_scopes[i] == pass_event_scopes[pass_event_scopes.length - 1 - i])
+				{
+					shared_scope++;
+				}
+				else
+				{
+					break;
+				}
+			}
+
+			parent_event_scopes = parent_event_scopes.slice(0, shared_scope);
+
+			for (var i = shared_scope; i < pass_event_scopes.length; i++)
+			{
+				var scope = pass_event_scopes[pass_event_scopes.length - 1 - i];
+				html += `<a style="padding-left: ${10 + 16 * i}px;" class="disabled">${scope}</a>`;
+				parent_event_scopes.push(scope);
+			}
+
+			html += `<a style="padding-left: ${10 + 16 * pass_event_scopes.length}px;" href="#display_pass(${pass_id});">${pass_data['EventName']}</a>`;
+		}
+	});
+	document.getElementById('pass_hierarchy').innerHTML = html;
+	update_href_selection(document.getElementById('pass_hierarchy'));
+}
+
+class ResourceView extends IView
+{
+	constructor(subresource_version_info, resource_desc)
+	{
+		super();
+		this.subresource_version_info = subresource_version_info;
+		this.resource_desc = resource_desc;
+		this.onload = function() { };
+	}
+
+	get navigations()
+	{
+		return [];
+	}
+}
+
+class PassView extends IView
+{
+	constructor(pass_id)
+	{
+		super();
+		this.pass_id = pass_id;
+		this.pass_data = g_passes[pass_id];
+		this.pass_draws_data = [];
+		this.resource_view = null;
+
+		if (this.pass_data['DrawCount'] > 0)
+		{
+			this.pass_draws_data = load_json_dict_sequence(`Passes/Pass.${this.pass_data['Pointer']}.Draws.json`);
+		}
+	}
+
+	setup_html(parent_dom)
+	{
+		var column_width = '50%';
+		var draw_column_display = 'none';
+
+		if (this.pass_draws_data.length > 0)
+		{
+			column_width = '33%';
+			draw_column_display = 'block';
+		}
+
+		parent_dom.innerHTML = `
+			<div class="pass_title main_div">
+				<div id="pass_frame_list" style="display:none;"></div>
+				${this.pass_data['EventName']}
+				<div class="button_list" style="display:inline-block;"><a href="#display_pass_parameters(${this.pass_id});">PassParameters</a></div>
+			</div>
+			<table width="100%">
+				<tr>
+					<td width="${column_width}">
+						<div class="main_div">
+							<div class="selection_list_title">Input resources</div>
+							<div class="selection_list_search">
+								<input type="search" id="pass_input_resource_search" oninput="g_view.refresh_input_resource_list();" onchange="g_view.refresh_input_resource_list();" placeholder="Search input resource..." />
+							</div>
+							<div class="selection_list" id="pass_input_resource_list"></div>
+						</div>
+					</td>
+					<td width="${column_width}">
+						<div class="main_div">
+							<div class="selection_list_title">Output resources</div>
+							<div class="selection_list_search">
+								<input type="search" id="pass_output_resource_search" oninput="g_view.refresh_output_resource_list();" onchange="g_view.refresh_output_resource_list();" placeholder="Search output resource..." />
+							</div>
+							<div class="selection_list" id="pass_output_resource_list"></div>
+						</div>
+					</td>
+					<td width="${column_width}">
+						<div class="main_div" style="display: ${draw_column_display};">
+							<div class="selection_list_title">Draws</div>
+							<div class="selection_list_search">
+								<input type="search" id="pass_draw_search" oninput="g_view.refresh_draw_resource_list();" onchange="g_view.refresh_draw_resource_list();" placeholder="Search draw..." />
+							</div>
+							<div class="selection_list" id="pass_draw_list"></div>
+						</div>
+					</td>
+				</tr>
+			</table>
+			<div id="display_resource_pannel"></div>
+			<table width="100%">
+				<tr>
+					<td width="50%">
+						<div class="main_div" id="resource_pass_modifying_outter">
+							<div class="selection_list_title" id="resource_pass_modifying_title"></div>
+							<div class="selection_list_search">
+								<input type="search" id="resource_pass_modifying_search" oninput="g_view.refresh_resource_modifying_list();" onchange="g_view.refresh_resource_modifying_list();" placeholder="Search modifying pass..." />
+							</div>
+							<div class="selection_list" id="resource_pass_modifying_list"></div>
+						</div>
+					</td>
+					<td width="50%">
+						<div class="main_div" id="resource_pass_reading_outter">
+							<div class="selection_list_title" id="resource_pass_reading_title"></div>
+							<div class="selection_list_search">
+								<input type="search" id="resource_pass_reading_search" oninput="g_view.refresh_resource_reading_list();" onchange="g_view.refresh_resource_reading_list();" placeholder="Search reading pass..." />
+							</div>
+							<div class="selection_list" id="resource_pass_reading_list"></div>
+						</div>
+					</td>
+				</tr>
+			</table>
+			`;
+	}
+
+	refresh_all_lists()
+	{
+		this.refresh_frames_lists();
+		this.refresh_input_resource_list();
+		this.refresh_output_resource_list();
+		this.refresh_draw_resource_list();
+		this.refresh_resource_modifying_list();
+		this.refresh_resource_reading_list();
+	}
+
+	refresh_frames_lists()
+	{
+		if (g_analysis['FrameList'].length == 1)
+		{
+			return;
+		}
+
+		if (this.resource_view === null)
+		{
+			document.getElementById('pass_frame_list').style.display = 'none';
+			return;
+		}
+
+		var pass_data = this.pass_data;
+		var subresource_version_info = this.resource_view.subresource_version_info;
+
+		var current_frame_number = get_frame_number(this.pass_data);
+		var prev_frame_number = g_analysis['FrameList'].includes(current_frame_number - 1) ? current_frame_number - 1 : g_analysis['FrameList'][g_analysis['FrameList'].length - 1];
+		var next_frame_number = g_analysis['FrameList'].includes(current_frame_number + 1) ? current_frame_number + 1 : g_analysis['FrameList'][0];
+
+		var prev_frame_pass_id = find_similar_pass_id_in_frame(this.pass_data, prev_frame_number);
+		var next_frame_pass_id = find_similar_pass_id_in_frame(this.pass_data, next_frame_number);
+
+		if (prev_frame_pass_id == null || next_frame_pass_id == null)
+		{
+			document.getElementById('pass_frame_list').style.display = 'none';
+			return;
+		}
+
+		var prev_frame_href = '';
+		var next_frame_href = '';
+		if (this.resource_view.resource_desc['Desc'] == 'FRDGParameterStruct')
+		{
+			prev_frame_href = `#display_pass_parameters(${prev_frame_pass_id});`;
+			next_frame_href = `#display_pass_parameters(${next_frame_pass_id});`;
+		}
+		else
+		{
+			var prev_frame_pass_data = g_passes[prev_frame_pass_id];
+			var next_frame_pass_data = g_passes[next_frame_pass_id];
+
+			var is_output_resource = is_pass_output_resource(this.pass_data, this.resource_view.subresource_version_info);
+			var prev_frame_subresource_info = find_similar_resource_in_pass(this.pass_data, this.resource_view.resource_desc, this.resource_view.subresource_version_info, prev_frame_pass_data);
+			var next_frame_subresource_info = find_similar_resource_in_pass(this.pass_data, this.resource_view.resource_desc, this.resource_view.subresource_version_info, next_frame_pass_data);
+
+			var prev_frame_href = '';
+			var next_frame_href = '';
+			if (prev_frame_subresource_info == null || next_frame_subresource_info == null)
+			{
+				document.getElementById('pass_frame_list').style.display = 'none';
+				return;
+			}
+			else if (is_output_resource)
+			{
+				prev_frame_href = `#display_output_resource(${prev_frame_pass_id},'${get_subresource_unique_name(prev_frame_subresource_info)}');`;
+				next_frame_href = `#display_output_resource(${next_frame_pass_id},'${get_subresource_unique_name(next_frame_subresource_info)}');`;
+			}
+			else
+			{
+				prev_frame_href = `#display_input_resource(${prev_frame_pass_id},'${get_subresource_unique_name(prev_frame_subresource_info)}');`;
+				next_frame_href = `#display_input_resource(${next_frame_pass_id},'${get_subresource_unique_name(next_frame_subresource_info)}');`;
+			}
+		}
+
+		document.getElementById('pass_frame_list').style.display = 'inline-block';
+		document.getElementById('pass_frame_list').innerHTML = `
+			<div class="button_list" style="display:inline-block;"><a href="${prev_frame_href}">-</a><a title="Id of the current frame">${current_frame_number}</a><a href="${next_frame_href}">+</a></div>
+			`;
+	}
+
+	refresh_input_resource_list()
+	{
+		var display_list = [];
+		for (const subresource_unique_name of this.pass_data['InputResources'])
+		{
+			var subresource_info = parse_subresource_unique_name(subresource_unique_name);
+			var resource_desc = get_resource_desc(subresource_info['resource']);
+
+			var name = prettify_subresource_unique_name(subresource_info, resource_desc);
+			var href = null;
+			if (resource_desc)
+			{
+				href = `#display_input_resource(${this.pass_id},'${subresource_unique_name}');`
+			}
+
+			display_list.push({'name': name, 'href': href});
+		}
+
+		render_selection_list_html(
+			document.getElementById('pass_input_resource_list'),
+			display_list,
+			{
+				'search': document.getElementById('pass_input_resource_search').value,
+				'deduplicate': true,
+				'sort': true
+			});
+	}
+
+	refresh_output_resource_list()
+	{
+		var draw_id = -1;
+		if (this.resource_view)
+		{
+			draw_id = this.resource_view.subresource_version_info['draw'];
+		}
+
+		var display_list = [];
+		for (const subresource_unique_name of this.pass_data['OutputResources'])
+		{
+			var subresource_info = parse_subresource_unique_name(subresource_unique_name);
+			var resource_desc = get_resource_desc(subresource_info['resource']);
+
+			var name = prettify_subresource_unique_name(subresource_info, resource_desc);
+			var href = null;
+			if (resource_desc)
+			{
+				if (draw_id >= 0)
+				{
+					href = `#display_draw_output_resource(${this.pass_id},'${subresource_unique_name}',${draw_id});`;
+				}
+				else
+				{
+					href = `#display_output_resource(${this.pass_id},'${subresource_unique_name}');`;
+				}
+			}
+
+			display_list.push({'name': name, 'href': href});
+		}
+
+		render_selection_list_html(
+			document.getElementById('pass_output_resource_list'),
+			display_list,
+			{
+				'search': document.getElementById('pass_output_resource_search').value,
+			});
+	}
+
+	refresh_draw_resource_list()
+	{
+		var is_output_resource = false;
+		var subresource_unique_name = '';
+		if (this.resource_view)
+		{
+			is_output_resource = is_pass_output_resource(this.pass_data, this.resource_view.subresource_version_info);
+			subresource_unique_name = get_subresource_unique_name(this.resource_view.subresource_version_info);
+		}
+
+		var display_list = [];
+		for (var draw_id = 0; draw_id < this.pass_draws_data.length; draw_id++)
+		{
+			var href = null;
+			if (subresource_unique_name && is_output_resource)
+			{
+				href = `#display_draw_output_resource(${this.pass_id},'${subresource_unique_name}',${draw_id});`;
+			}
+
+			display_list.push({
+				'name': `${draw_id}: ${this.pass_draws_data[draw_id]['DrawName']}`,
+				'href': href
+			});
+		}
+
+		if (subresource_unique_name)
+		{
+			var href = null;
+			if (is_output_resource)
+			{
+				href = `#display_output_resource(${this.pass_id},'${subresource_unique_name}');`;
+			}
+
+			display_list.push({
+				'name': 'Final pass output',
+				'href': href
+			});
+		}
+
+		render_selection_list_html(
+			document.getElementById('pass_draw_list'),
+			display_list,
+			{
+				'search': document.getElementById('pass_draw_search').value,
+			});
+	}
+
+	refresh_resource_modifying_list()
+	{
+		if (this.resource_view === null || this.resource_view.resource_desc['Desc'] == 'FRDGParameterStruct')
+		{
+			document.getElementById('resource_pass_modifying_outter').style.display = 'none';
+			return;
+		}
+		document.getElementById('resource_pass_modifying_outter').style.display = 'block';
+
+		var subresource_unique_name = get_subresource_unique_name(this.resource_view.subresource_version_info);
+		var resource_desc = get_resource_desc(this.resource_view.subresource_version_info['resource']);
+
+		var display_list = [];
+		for (var pass_id = 0; pass_id < g_passes.length; pass_id++)
+		{
+			var producer = false;
+			g_passes[pass_id]['OutputResources'].forEach(function(value) {
+				if (value == subresource_unique_name)
+				{
+					producer = true;
+				}
+			});
+
+			if (producer)
+			{
+				display_list.push({
+					'name': g_passes[pass_id]['EventName'],
+					'href': `#display_output_resource(${pass_id},'${subresource_unique_name}');`,
+				});
+			}
+		}
+
+		document.getElementById('resource_pass_modifying_title').innerHTML = `Passes modifying ${resource_desc['Name']}`;
+		render_selection_list_html(
+			document.getElementById('resource_pass_modifying_list'),
+			display_list,
+			{
+				'search': document.getElementById('resource_pass_modifying_search').value,
+			});
+	}
+
+	refresh_resource_reading_list()
+	{
+		if (this.resource_view === null || this.resource_view.resource_desc['Desc'] == 'FRDGParameterStruct')
+		{
+			document.getElementById('resource_pass_reading_outter').style.display = 'none';
+			return;
+		}
+		document.getElementById('resource_pass_reading_outter').style.display = 'block';
+
+		var subresource_unique_name = get_subresource_unique_name(this.resource_view.subresource_version_info);
+		var resource_desc = get_resource_desc(this.resource_view.subresource_version_info['resource']);
+
+		var display_list = [];
+		for (var pass_id = 0; pass_id < g_passes.length; pass_id++)
+		{
+			var reader = false;
+			g_passes[pass_id]['InputResources'].forEach(function(value) {
+				if (value == subresource_unique_name)
+				{
+					reader = true;
+				}
+			});
+
+			if (reader)
+			{
+				display_list.push({
+					'name': g_passes[pass_id]['EventName'],
+					'href': `#display_input_resource(${pass_id},'${subresource_unique_name}');`,
+				});
+			}
+		}
+
+		document.getElementById('resource_pass_reading_title').innerHTML = `Passes reading ${resource_desc['Name']}`;
+		render_selection_list_html(
+			document.getElementById('resource_pass_reading_list'),
+			display_list,
+			{
+				'search': document.getElementById('resource_pass_reading_search').value,
+			});
+	}
+
+	resize(ctx)
+	{
+		if (this.resource_view !== null)
+		{
+			this.resource_view.resize(ctx);
+		}
+	}
+
+	set_resource_view(new_resource_view)
+	{
+		var parent_dom = document.getElementById('display_resource_pannel');
+		if (this.resource_view !== null)
+		{
+			this.resource_view.release();
+			delete this.resource_view;
+			parent_dom.innerHTML = '';
+		}
+
+		this.resource_view = new_resource_view;
+		if (this.resource_view !== null)
+		{
+			this.resource_view.setup_html(parent_dom);
+			this.refresh_all_lists();
+			onresize_body();
+		}
+	}
+
+	get navigations()
+	{
+		var navs = [`display_pass(${this.pass_id});`];
+
+		if (this.resource_view !== null)
+		{
+			navs.concat(this.resource_view.navigations);
+		}
+
+		return navs;
+	}
+
+	release()
+	{
+		this.set_resource_view(null);
+	}
+}
+
+function display_pass_internal(pass_id)
+{
+	if (g_view instanceof PassView && pass_id == g_view.pass_id)
+	{
+		return;
+	}
+
+	set_main_view(new PassView(pass_id));
+}
+
+function display_resource_internal(subresource_version_info)
+{
+	var resource_desc = get_resource_desc(subresource_version_info['resource']);
+	if (!resource_desc)
+	{
+		return;
+	}
+
+	if (g_view.resource_view !== null && get_subresource_unique_version_name(g_view.resource_view.subresource_version_info) == get_subresource_unique_version_name(subresource_version_info))
+	{
+		return;
+	}
+
+	if (resource_desc['Desc'] == 'FRDGBufferDesc')
+	{
+		if (resource_desc['Usage'].includes('AccelerationStructure'))
+		{
+			g_view.set_resource_view(new RaytracingAccelerationStructureView(subresource_version_info, resource_desc));
+		}
+		else
+		{
+			g_view.set_resource_view(new BufferView(subresource_version_info, resource_desc));
+		}
+	}
+	else if (resource_desc['Desc'] == 'FRDGTextureDesc' && (resource_desc['Type'] == 'Texture2D' || resource_desc['Type'] == 'Texture2DArray'))
+	{
+		var new_texture_view = new TextureView(subresource_version_info, resource_desc);
+
+		// Keep the same zoom settings if the subresources are exactly the same extent
+		if (g_view && 'resource_view' in g_view && g_view.resource_view instanceof TextureView)
+		{
+			var zoom_settings = g_view.resource_view.get_zoom_settings();
+
+			if (new_texture_view.is_zoom_settings_compatible(zoom_settings))
+			{
+				new_texture_view.onload = function() {
+					new_texture_view.apply_zoom_settings(zoom_settings);
+				};
+			}
+		}
+
+		g_view.set_resource_view(new_texture_view);
+	}
+}
+
+
+// -------------------------------------------------------------------- HREF FUNCTIONS
+
+function display_pass(pass_id)
+{
+	// Load first resource
+	if (g_passes[pass_id]['OutputResources'][0])
+	{
+		redirect_to_hash(`display_output_resource(${pass_id},'${g_passes[pass_id]['OutputResources'][0]}');`);
+	}
+	else if (g_passes[pass_id]['InputResources'][0])
+	{
+		redirect_to_hash(`display_input_resource(${pass_id},'${g_passes[pass_id]['InputResources'][0]}');`);
+	}
+	else
+	{
+		display_pass_internal(pass_id);
+	}
+}
+
+function display_input_resource(pass_id, subresource_unique_name)
+{
+	var previous_producer_pass = -1;
+	for (var i = 0; i < pass_id; i++)
+	{
+		var cur_outputs = g_passes[i]['OutputResources'];
+
+		cur_outputs.forEach(function(value) {
+			if (value == subresource_unique_name)
+			{
+				previous_producer_pass = i;
+			}
+		});
+	}
+
+	var subresource_version_info = parse_subresource_unique_name(subresource_unique_name);
+	if (previous_producer_pass >= 0)
+	{
+		subresource_version_info['pass'] = g_passes[previous_producer_pass]['Pointer'];
+	}
+	else
+	{
+		subresource_version_info['pass'] = k_null_json_ptr;
+	}
+
+	display_pass_internal(pass_id);
+	display_resource_internal(subresource_version_info);
+}
+
+function display_output_resource(pass_id, subresource_unique_name)
+{
+	var subresource_version_info = parse_subresource_unique_name(subresource_unique_name);
+	subresource_version_info['pass'] = g_passes[pass_id]['Pointer'];
+
+	display_pass_internal(pass_id);
+	display_resource_internal(subresource_version_info);
+}
+
+function display_draw_output_resource(pass_id, subresource_unique_name, draw_id)
+{
+	var subresource_version_info = parse_subresource_unique_name(subresource_unique_name);
+	subresource_version_info['pass'] = g_passes[pass_id]['Pointer'];
+	subresource_version_info['draw'] = draw_id;
+
+	display_pass_internal(pass_id);
+	display_resource_internal(subresource_version_info);
+}
+
+
+// -------------------------------------------------------------------- DISPLAY VIEWER CONSOLE
+
+var g_console_events = [];
+var g_console_error_count = 0;
+
+class ConsoleEvent
+{
+	constructor(type, message)
+	{
+		this.type = type;
+		this.message = message;
+	}
+}
+
+class ConsoleView extends IView
+{
+	constructor()
+	{
+		super();
+	}
+
+	setup_html(parent_dom)
+	{
+		parent_dom.innerHTML = `
+			<div class="main_div">
+				<div class="pass_title">Viewer Console</div>
+				<div id="console_events_pannel"></div>
+			</div>`;
+
+		document.title = 'Viewer Console';
+		this.update_console_events();
+	}
+
+	update_console_events()
+	{
+		var html = `
+			<table width="100%" class="pretty_table">`;
+
+		for (var console_event of g_console_events)
+		{
+			html += `
+				<tr class="${console_event.type}">
+					<td>${console_event.type}: ${console_event.message}</td>
+				</tr>`;
+		};
+
+		html += `
+			</table>`;
+
+		document.getElementById('console_events_pannel').innerHTML = html;
+	}
+
+	get navigations()
+	{
+		return [`display_console();`];
+	}
+}
+
+function update_console_button()
+{
+	if (document.getElementById('console_button') && g_console_error_count > 0)
+	{
+		document.getElementById('console_button').classList.add('error');
+		document.getElementById('console_button').innerHTML = `Console (${g_console_error_count} Errors)`;
+	}
+}
+
+function add_console_event(type, message)
+{
+	console.assert(['error', 'log'].includes(type));
+	g_console_events.push(new ConsoleEvent(type, message));
+
+	if (type == 'error')
+	{
+		g_console_error_count += 1;
+		update_console_button();
+	}
+
+	if (g_view instanceof ConsoleView)
+	{
+		g_view.update_console_events();
+	}
+}
+
+function display_console(tip_id)
+{
+	set_main_view(new ConsoleView());
+}
+
+function init_console()
+{
+	window.addEventListener('error', function(event) {
+		add_console_event('error', `${event.filename}:${event.fileno}: ${event.message}`);
+	});
+}
+
+
+// -------------------------------------------------------------------- DISPLAY INFOS
+
+class InfosView extends IView
+{
+	constructor()
+	{
+		super();
+	}
+
+	setup_html(parent_dom)
+	{
+		var info_htmls = '';
+		{
+			info_htmls += `
+				<table width="100%" class="pretty_table">`;
+			
+			for (var key in g_infos)
+			{
+			    if (g_infos.hasOwnProperty(key))
+			    {
+					info_htmls += `
+						<tr>
+							<td width="100px">${key}</td>
+							<td>${g_infos[key]}</td>
+						</tr>`;
+			    }
+			}
+
+			info_htmls += `
+				</table>`;
+		}
+
+		parent_dom.innerHTML = `
+			<div class="main_div">
+				<div class="pass_title">Infos</div>
+				<div id="infos_pannel">${info_htmls}</div>
+			</div>`;
+
+		if (does_file_exists('Base/Screenshot.png'))
+		{
+			parent_dom.innerHTML += `
+				<div class="main_div">
+					<div class="pass_title">Screenshot</div>
+					<img src="${k_current_dir}/Base/Screenshot.png" style="width: 100%;" />
+				</div>`;
+		}
+
+		document.title = 'Dump infos';
+	}
+
+	get navigations()
+	{
+		return [`display_infos();`];
+	}
+}
+
+function display_infos(tip_id)
+{
+	set_main_view(new InfosView());
+}
+
+
+// -------------------------------------------------------------------- DISPLAY TIP
+
+const k_tips = [
+	// Dumping process
+	'Can use the CTRL+SHIFT+/ keyboard shortcut to summon the DumpGPU command.',
+	'Speed up your frame dump by only selecting the passes you need with r.DumpGPU.Root. For instance r.DumpGPU.Root="*PostProcessing*".',
+	'Uses r.DumpGPU.Delay to delay the dump of few seconds to have time to repro the issue with gameplay logic (for instance moving arround in the map).',
+	'Uses r.DumpGPU.FrameCount to dump more than one frame. This is useful when artifact may be produced only some frames but end up stucked in temporal histories.',
+	'Uses r.DumpGPU.FixedTickRate to automatically override the engine\'s tick rate to fixed value when dumping multiple frames.',
+	'Uses r.DumpGPU.DumpOnScreenshotTest=1 to automatically produce a GPU dump of the frame producing screenshot in the automated AScreenshotFunctionalTest',
+	'GPU dumps can be large and accumulate on your hard drive in your various projects\' Saved/ directories. Set r.DumpGPU.Directory="D:/tmp/DumpGPU/" in your console variables or UE-DumpGPUPath environment variable to dump them all at the same location on your machine.',
+	'Uses -cvarsini to override console variables with your own ConsoleVariables.ini file on a cooked build.',
+
+	// General navigations
+	'All navigation links can be open in a new tab.',
+	'Uses the browser\'s back button to navigate to previously inspected resource.',
+	'Make sure to browse the dump informations.',
+	'Make sure to browse the console variables.',
+	'Make sure to browse the log file.',
+	'Share the part of the URL after the # (for instance #display_input_resource(96,\'TSR.AntiAliasing.Noise.000000006b9b2c00.mip0\');) to anyone else whom have this GPU dump to so they too can navigate to the exact same resource view.',
+	'Set r.DumpGPU.Viewer.Visualize in your ConsoleVariables.ini so the dump viewer automatically open this RDG output resource at startup.',
+
+	// Buffer visualization
+	'Uses the templated FRDGBufferDesc::Create*<FMyStructure>(NumElements) to display your buffer more conveniently with FMyStructure layout in the buffer visualization.',
+	'Buffer visualization supports float, half, int, uint, short, ushort, char, uchar, as well as hexadecimal with hex(uint) and binary with bin(uint).',
+	'Uses the "Address..." field at the very left of the buffer view\'s header to navigate to a specific address. Supports decimal and 0x prefixed hexadecimal notations.',
+
+	// Texture visualization
+	'Click the texture viewer to then zoom in and out with your mouse wheel.',
+	'Right click to drag texture viewport arround when zoomed in.',
+	'Uses the texture viewer\'s "copy to clipboard" to share your texture visualization to anyone.',
+];
+
+class TipView extends IView
+{
+	constructor(tip_id)
+	{
+		super();
+		this.tip_id = tip_id;
+	}
+
+	setup_html(parent_dom)
+	{
+		parent_dom.innerHTML = `
+			<div style="padding-top: 20%; width: 50%; margin: 0 auto; font-size: 14;">
+				<div>User tip:</div>
+				<div style="padding: 20px;">${k_tips[this.tip_id]}</div>
+				<div class="button_list" style="margin-left: auto; display: block; width: 100px;">
+						<a href="#display_tip(${(this.tip_id + 1) % k_tips.length});">Next</a>
+				</div>
+			</div>`;
+	}
+
+	get navigations()
+	{
+		return [`display_tip(${this.tip_id});`];
+	}
+}
+
+function display_tip(tip_id)
+{
+	if (tip_id === undefined)
+	{
+		tip_id = Math.floor(Math.random() * k_tips.length);
+		document.title = 'GPU Dump Viewer';
+	}
+	else
+	{
+		document.title = `User tip #${tip_id + 1}`;
+	}
+
+	set_main_view(new TipView(tip_id));
+}
+
+
+// -------------------------------------------------------------------- DISPLAY CONSOLE VARIABLES
+
+class CVarsView extends IView
+{
+	constructor()
+	{
+		super();
+		this.load_cvars();
+	}
+
+	setup_html(parent_dom)
+	{
+		parent_dom.innerHTML = `
+			<div class="main_div">
+				<div class="pass_title">Console variables</div>
+				<div class="selection_list_search">
+					<input type="search" id="cvars_search_input" oninput="g_view.refresh_cvars();" onchange="g_view.refresh_cvars();" style="width: 100%;" placeholder="Search console variables..." />
+				</div>
+				<div id="cvars_pannel"></div>
+			</div>`;
+
+		this.refresh_cvars();
+		document.title = 'Console variables';
+	}
+
+	load_cvars()
+	{
+		var cvars_csv = load_text_file('Base/ConsoleVariables.csv');
+
+		this.cvars = [];
+		var cvars_set = new Set();
+		var csv_lines = cvars_csv.split('\n');
+		for (var i = 1; i < csv_lines.length - 1; i++)
+		{
+			var csv_line = csv_lines[i].split(',');
+			var entry = {};
+			entry['name'] = csv_line[0];
+			entry['type'] = csv_line[1];
+			entry['set_by'] = csv_line[2];
+			entry['value'] = csv_line[3];
+
+			if (!cvars_set.has(entry['name']))
+			{
+				cvars_set.add(entry['name']);
+				this.cvars.push(entry);
+			}
+		}
+
+		this.cvars.sort(function(a, b)
+		{
+			if (a['name'] < b['name'])
+			{
+				return -1;
+			}
+			else if (a['name'] > b['name'])
+			{
+				return 1;
+			}
+			return 0;
+		});
+	}
+
+	refresh_cvars()
+	{
+		var html = `
+			<table width="100%" class="pretty_table">
+				<tr class="header">
+					<td>Name</td>
+					<td width="15%">Value</td>
+					<td width="30px">Type</td>
+					<td width="100px">Set by</td>
+				</tr>`;
+
+		var cvar_search = document.getElementById('cvars_search_input').value.toLowerCase();
+
+		this.cvars.forEach(function(cvar)
+		{
+			var display = true;
+			if (cvar_search)
+			{
+				display = cvar['name'].toLowerCase().includes(cvar_search);
+			}
+
+			if (display)
+			{
+				html += `
+					<tr>
+						<td>${cvar['name']}</td>
+						<td>${cvar['value']}</td>
+						<td>${cvar['type']}</td>
+						<td>${cvar['set_by']}</td>
+					</tr>`;
+			}
+		});
+
+		html += `
+			</table>`;
+
+		document.getElementById('cvars_pannel').innerHTML = html;
+	}
+
+	get navigations()
+	{
+		return [`display_cvars();`];
+	}
+
+	release()
+	{
+		this.cvars = null;
+	}
+}
+
+function display_cvars()
+{
+	set_main_view(new CVarsView());
+}
+
+
+// -------------------------------------------------------------------- DISPLAY LOG
+
+function get_log_path()
+{
+	return `Base/${g_infos['LogFilename']}`;
+}
+
+class LogView extends IView
+{
+	constructor()
+	{
+		super();
+
+		this.log = [];
+
+		var log = load_text_file(get_log_path());
+		if (log)
+		{
+			this.log = log.split('\n');
+		}
+	}
+
+	setup_html(parent_dom)
+	{
+		parent_dom.innerHTML = `
+			<div class="main_div">
+				<div class="pass_title">${g_infos['LogFilename']}</div>
+				<div class="selection_list_search">
+					<input type="search" id="log_search_input" oninput="g_view.refresh_log();" onchange="g_view.refresh_log();" style="width: 100%;" placeholder="Search log..." />
+				</div>
+				<div id="log_pannel"></div>
+			</div>`;
+
+		this.refresh_log();
+		document.title = 'Log';
+	}
+
+	refresh_log()
+	{
+		var html = `
+			<table width="100%" class="pretty_table">`;
+
+		var log_search = document.getElementById('log_search_input').value.toLowerCase();
+
+		this.log.forEach(function(log_line)
+		{
+			var display = true;
+			if (log_search)
+			{
+				display = log_line.toLowerCase().includes(log_search);
+			}
+
+			if (display)
+			{
+				html += `
+					<tr>
+						<td>${log_line}</td>
+					</tr>`;
+			}
+		});
+
+		html += `
+			</table>`;
+
+		document.getElementById('log_pannel').innerHTML = html;
+	}
+
+	get navigations()
+	{
+		return [`display_log();`];
+	}
+
+	resize(ctx)
+	{
+		document.getElementById('log_pannel').style.width = `${ctx.width - 2 * k_style_padding_size}px`;
+		document.getElementById('log_pannel').style.height = `${ctx.height - 2 * k_style_padding_size - 75}px`;
+		document.getElementById('log_pannel').style.overflow = `scroll`;
+	}
+
+	release()
+	{
+		this.log = null;
+	}
+}
+
+function display_log()
+{
+	set_main_view(new LogView());
+}
+
+
+
+// -------------------------------------------------------------------- WEBGL UTILS
+
+function copy_canvas_to_clipboard(canvas, text)
+{
+	canvas.toBlob(function(image_blob) {
+		var text_blob = new Blob([text], { type: 'text/plain' });
+		var clipboard_data = {
+			[text_blob.type]: text_blob,
+			[image_blob.type]: image_blob,
+		};
+
+		navigator.clipboard.write([new ClipboardItem(clipboard_data)]);
+	}, 'image/png');
+}
+
+function gl_create_vertex_buffer(gl, vertices)
+{
+	var webgl_vertex_buffer = gl.createBuffer();
+	gl.bindBuffer(gl.ARRAY_BUFFER, webgl_vertex_buffer);
+	gl.bufferData(gl.ARRAY_BUFFER, vertices, gl.STATIC_DRAW);
+	gl.bindBuffer(gl.ARRAY_BUFFER, null);
+	return webgl_vertex_buffer;
+}
+
+function gl_create_index_buffer(gl, indices)
+{
+	var webgl_index_buffer = gl.createBuffer();
+	gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, webgl_index_buffer);
+	gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, indices, gl.STATIC_DRAW);
+	gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, null);
+	return webgl_index_buffer;
+}
+
+function gl_create_shader(gl, shader_type, shader_code)
+{
+	const shader_std = `#version 300 es
+
+precision highp float;
+precision highp int;
+precision highp sampler2D;
+precision highp usampler2D;
+
+struct FloatInfos
+{
+	bool is_denormal;
+	bool is_infinity;
+	bool is_nan;
+};
+
+FloatInfos decodeFloat(float x)
+{
+	const uint mantissa_bit_count = 23u;
+	const uint exp_bit_count = 8u;
+
+	uint raw = floatBitsToUint(x);
+
+	uint sign_bit      = (raw >> (mantissa_bit_count + exp_bit_count)) & 0x1u;
+	uint mantissa_bits = (raw >> 0u)                     & ((0x1u << mantissa_bit_count) - 1u);
+	uint exp_bits      = (raw >> mantissa_bit_count)     & ((0x1u << exp_bit_count) - 1u);
+
+	bool is_max_exp = exp_bits == ((0x1u << exp_bit_count) - 1u);
+
+	FloatInfos infos;
+	infos.is_denormal = exp_bits == 0u;
+	infos.is_infinity = is_max_exp && mantissa_bits == 0u;
+	infos.is_nan = is_max_exp && mantissa_bits != 0u;
+
+	return infos;
+}
+
+#define isnan(x) decodeFloat(x).is_nan
+#define isinf(x) decodeFloat(x).is_infinity
+#define isdenorm(x) decodeFloat(x).is_denormal
+
+`;
+	
+	var gl_shader = gl.createShader(shader_type);
+	gl.shaderSource(gl_shader, shader_std + shader_code);
+	gl.compileShader(gl_shader);
+
+	var compilation_status = gl.getShaderParameter(gl_shader, gl.COMPILE_STATUS);
+	if (!compilation_status)
+	{
+		var compilation_log = gl.getShaderInfoLog(gl_shader);
+		console.error('Shader compiler log: ' + compilation_log);
+		return compilation_log;
+	}
+	return gl_shader;
+}
+
+function gl_create_shader_program(gl, vert_shader, frag_shader)
+{
+	var gl_vert_shader = null;
+	if (typeof vert_shader === 'string')
+	{
+		gl_vert_shader = gl_create_shader(gl, gl.VERTEX_SHADER, vert_shader);
+		if (typeof gl_vert_shader === 'string')
+		{
+			return gl_vert_shader;
+		}
+	}
+	else if (typeof vert_shader === 'WebGLShader')
+	{
+		gl_vert_shader = vert_shader;
+	}
+	else
+	{
+		console.error('wrong vert_shader');
+		return null;
+	}
+
+	var gl_frag_shader = null;
+	if (typeof frag_shader === 'string')
+	{
+		gl_frag_shader = gl_create_shader(gl, gl.FRAGMENT_SHADER, frag_shader);
+		if (typeof gl_frag_shader === 'string')
+		{
+			return gl_frag_shader;
+		}
+	}
+	else if (typeof frag_shader === 'WebGLShader')
+	{
+		gl_frag_shader = frag_shader;
+	}
+	else
+	{
+		console.error('wrong vert_shader');
+		return null;
+	}
+
+	var shader_program = gl.createProgram();
+	gl.attachShader(shader_program, gl_vert_shader);
+	gl.attachShader(shader_program, gl_frag_shader);
+	gl.linkProgram(shader_program);
+
+	var link_status = gl.getProgramParameter(shader_program, gl.LINK_STATUS);
+	if (!link_status)
+	{
+		var link_log = gl.getProgramInfoLog(shader_program);
+		console.error('Program compiler log: ' + link_log);
+		return null;
+	}
+	return shader_program;
+}
+
+function gl_set_uniform_uint(gl, program, name, value)
+{
+	var uniform_loc = gl.getUniformLocation(program, name);
+	if (uniform_loc)
+	{
+		gl.uniform1ui(uniform_loc, value);
+	}
+}
+
+function gl_set_uniform_mat4(gl, program, name, matrix)
+{
+	var uniform_loc = gl.getUniformLocation(program, name);
+	if (uniform_loc)
+	{
+		gl.uniformMatrix4fv(uniform_loc, false, new Float32Array(matrix));
+	}
+}
+
+
+// -------------------------------------------------------------------- MATH UTILS
+
+function create_null_matrix()
+{
+	return new Array(4 * 4).fill(0.0);
+}
+
+function create_identity_matrix()
+{
+	var matrix = create_null_matrix();
+	matrix[0 + 0 * 4] = 1.0;
+	matrix[1 + 1 * 4] = 1.0;
+	matrix[2 + 2 * 4] = 1.0;
+	matrix[3 + 3 * 4] = 1.0;
+	return matrix;
+}
+
+function create_view_matrix(camera_pos, camera_dir)
+{
+	var camera_pos_x = camera_pos[0];
+	var camera_pos_y = camera_pos[1];
+	var camera_pos_z = camera_pos[2];
+
+	var camera_dir_len = Math.sqrt(
+		camera_dir[0] * camera_dir[0] +
+		camera_dir[1] * camera_dir[1] +
+		camera_dir[2] * camera_dir[2]);
+	var camera_dir_x = camera_dir[0] / camera_dir_len;
+	var camera_dir_y = camera_dir[1] / camera_dir_len;
+	var camera_dir_z = camera_dir[2] / camera_dir_len;
+
+	var horizon_dir_len = Math.sqrt(camera_dir_x * camera_dir_x + camera_dir_y * camera_dir_y);
+	var horizon_dir_x = camera_dir_y / horizon_dir_len;
+	var horizon_dir_y = -camera_dir_x / horizon_dir_len;
+	var horizon_dir_z = 0.0;
+
+	var vertical_dir_x = - camera_dir_y * horizon_dir_z + camera_dir_z * horizon_dir_y;
+	var vertical_dir_y = - camera_dir_z * horizon_dir_x + camera_dir_x * horizon_dir_z;
+	var vertical_dir_z = - camera_dir_x * horizon_dir_y + camera_dir_y * horizon_dir_x;
+
+	// column major
+	var matrix = create_identity_matrix();
+	matrix[0 + 0 * 4] = horizon_dir_x;
+	matrix[0 + 1 * 4] = horizon_dir_y;
+	matrix[0 + 2 * 4] = horizon_dir_z;
+	matrix[0 + 3 * 4] = -(horizon_dir_x * camera_pos_x + horizon_dir_y * camera_pos_y + horizon_dir_z * camera_pos_z);
+
+	matrix[1 + 0 * 4] = vertical_dir_x;
+	matrix[1 + 1 * 4] = vertical_dir_y;
+	matrix[1 + 2 * 4] = vertical_dir_z;
+	matrix[1 + 3 * 4] = -(vertical_dir_x * camera_pos_x + vertical_dir_y * camera_pos_y + vertical_dir_z * camera_pos_z);
+
+	matrix[2 + 0 * 4] = camera_dir_x;
+	matrix[2 + 1 * 4] = camera_dir_y;
+	matrix[2 + 2 * 4] = camera_dir_z;
+	matrix[2 + 3 * 4] = -(camera_dir_x * camera_pos_x + camera_dir_y * camera_pos_y + camera_dir_z * camera_pos_z);
+
+	return matrix;
+}
+
+// Matches TPerspectiveMatrix
+function create_projection_matrix_reverse_z_persepective(half_fov, aspect_ratio, clipping_plane)
+{
+	const z_precision = 0.0;
+
+	var half_fov_x = half_fov * Math.PI / 180.0;
+	var half_fov_y = half_fov_x;
+	var mult_fov_x = 1.0;
+	var mult_fov_y = aspect_ratio;
+	var min_z = clipping_plane;
+	var max_z = clipping_plane;
+
+	// column major
+	var matrix = create_null_matrix();
+	matrix[0 + 0 * 4] = mult_fov_x / Math.tan(half_fov_x);
+	matrix[1 + 1 * 4] = mult_fov_y / Math.tan(half_fov_y);
+	matrix[2 + 3 * 4] = min_z;
+	matrix[3 + 2 * 4] = 1.0;
+
+	return matrix;
+}
+
+
+// -------------------------------------------------------------------- DISPLAY TEXTURE
+
+var k_exotic_raw_channel_bit_depth = 0;
+var g_shader_code_dict = {};
+
+class TextureView extends ResourceView
+{
+	constructor(subresource_version_info, resource_desc)
+	{
+		super(subresource_version_info, resource_desc);
+		this.is_ready = false;
+		this.raw_texture_data = null;
+		this.subresource_desc = null;
+		this.release_gl();
+		this.viewport_width = 1;
+		this.pixel_scaling = 0;
+		this.viewport_selected = false;
+		this.is_draging_canvas = false;
+		this.src_channels = 'RGB';
+		this.src_color_space = 'sRGB/Rec709';
+		this.display_mode = 'Visualization';
+	}
+
+	setup_html(parent_dom)
+	{
+		var subresource_extent = this.get_subresource_extent();
+
+		var dpi = window.devicePixelRatio || 1;
+
+		var canvas_rendering_res_x = subresource_extent['x'];
+		var canvas_rendering_res_y = subresource_extent['y'];
+
+		var canvas_display_w = canvas_rendering_res_x / dpi;
+		var canvas_display_h = canvas_rendering_res_y / dpi;
+
+		var resource_info_htmls = '';
+		{
+			resource_info_htmls += `
+				<table width="100%" class="pretty_table resource_desc">`;
+			
+			for (var key in this.resource_desc)
+			{
+			    if (this.resource_desc.hasOwnProperty(key)){
+					resource_info_htmls += `
+						<tr>
+							<td>${key}</td>
+							<td>${this.resource_desc[key]}</td>
+						</tr>`;
+			    }
+			}
+
+			resource_info_htmls += `
+				</table>`;
+		}
+
+		var title = prettify_subresource_unique_name(this.subresource_version_info, this.resource_desc);
+		if (this.subresource_version_info['draw'] >= 0)
+		{
+			title += ` draw:${this.subresource_version_info['draw']}`;
+		}
+
+		var html = `
+			<div class="main_div">
+				<div class="selection_list_title">Texture visualization: ${title}</div>
+				<div id="canvas_outter" style="margin-bottom: 10px;">
+					<div id="canvas_header">
+						<div class="button_list" id="texture_visualization_change_pixel_scaling"><!---
+							---><input type="button" onclick="g_view.resource_view.change_pixel_scaling(this);" value="Fit"/><!--- 
+							---><input type="button" onclick="g_view.resource_view.change_pixel_scaling(this);" value="1:1"/><!--- 
+							---><input type="button" onclick="g_view.resource_view.change_pixel_scaling(this);" value="2:1"/><!--- 
+							---><input type="button" onclick="g_view.resource_view.change_pixel_scaling(this);" value="4:1"/><!--- 
+							---><input type="button" onclick="g_view.resource_view.change_pixel_scaling(this);" value="8:1"/><!--- 
+							---><input type="button" onclick="g_view.resource_view.change_pixel_scaling(this);" value="16:1"/>
+						</div>
+						<div class="button_list" id="texture_visualization_change_src_channels"><!---
+							---><input type="button" onclick="g_view.resource_view.change_src_channels(this);" value="RGB" title="Display the WebGL's visualization shader's display.rgb channels (default)."/><!---
+							---><input type="button" onclick="g_view.resource_view.change_src_channels(this);" value="R" title="Display the WebGL's visualization shader's display.r channel."/><!---
+							---><input type="button" onclick="g_view.resource_view.change_src_channels(this);" value="G" title="Display the WebGL's visualization shader's display.g channel."/><!---
+							---><input type="button" onclick="g_view.resource_view.change_src_channels(this);" value="B" title="Display the WebGL's visualization shader's display.b channel."/><!---
+							---><input type="button" onclick="g_view.resource_view.change_src_channels(this);" value="A" title="Display the WebGL's visualization shader's display.a channel."/>
+						</div>
+						<div class="button_list" id="texture_visualization_change_src_color"><!---
+							---><span>Src color:</span><!---
+							---><input type="button" onclick="g_view.resource_view.change_src_color(this);" value="sRGB/Rec709" title="Performs no modifications to display to WebGL's sRGB backbuffer (default)."/><!---
+							---><input type="button" onclick="g_view.resource_view.change_src_color(this);" value="RGB Linear[0;1]" title="Applies a pow(display.rgb, 2.2); to output WebGL's sRGB backbuffer."/>
+						</div>
+						<div class="button_list" id="texture_visualization_change_display_modes"><!---
+							---><input type="button" onclick="g_view.resource_view.change_display_mode(this);" value="Visualization" title="Display the WebGL's visualization shader's display.rgb."/><!---
+							---><input type="button" onclick="g_view.resource_view.change_display_mode(this);" value="NaN" title="Display any NaN in the raw texture."/><!---
+							---><input type="button" onclick="g_view.resource_view.change_display_mode(this);" value="Inf" title="Display any Inf in the raw texture."/>
+						</div>
+						<div class="button_list">
+							<input type="button" onclick="g_view.resource_view.copy_canvas_to_clipboard();" value="Copy to clipboard"/>
+						</div>
+					</div>
+					<div id="canvas_viewport">
+						<canvas
+							id="texture_visualization_canvas"
+							width="${canvas_rendering_res_x}"
+							height="${canvas_rendering_res_y}"
+							style="width: ${canvas_display_w}px; height: ${canvas_display_h}px;"></canvas>
+					</div>
+					<div id="canvas_footer">
+						<table>
+							<tr>
+								<td>Cursor texel pos:</td>
+								<td id="canvas_hover_texel_info"></td>
+							</tr>
+							<tr>
+								<td>Selected texel pos:</td>
+								<td id="canvas_selected_texel_info"></td>
+							</tr>
+						</table>
+					</div>
+				</div>
+				<table width="100%">
+					<tr>
+						<td width="50%">
+							<div class="selection_list_title">Texture descriptor</div>
+							${resource_info_htmls}
+						</td>
+						<td style="width: 50%;">
+							<textarea id="texture_visualization_code_input" oninput="g_view.resource_view.shader_user_code_change();" onchange="g_view.resource_view.shader_user_code_change();"></textarea>
+							<textarea id="texture_visualization_code_log" readonly></textarea>
+							<div style="padding: 3px 10px;"><a class="external_link" href="https://www.khronos.org/files/webgl20-reference-guide.pdf">WebGL 2.0's quick reference card</a></div>
+						</td>
+					</tr>
+				</table>
+			</div>`;
+
+		parent_dom.innerHTML = html;
+
+		update_value_selection(document.getElementById('texture_visualization_change_pixel_scaling'), `Fit`);
+		update_value_selection(document.getElementById('texture_visualization_change_src_channels'), this.src_channels);
+		update_value_selection(document.getElementById('texture_visualization_change_src_color'), this.src_color_space);
+		update_value_selection(document.getElementById('texture_visualization_change_display_modes'), this.display_mode);
+
+		// Init WebGL 2.0
+		this.init_gl();
+
+		// Translate the descriptor of the subresource.
+		this.subresource_desc = this.translate_subresource_desc();
+		if (this.subresource_desc === null)
+		{
+			return;
+		}
+
+		// Setup mouse motion callback
+		{
+			var texture_view = this;
+
+			this.canvas.onclick = function(event) { texture_view.canvas_click(event); }
+			this.canvas.onmouseenter = function(event) { texture_view.canvas_onmousemove(event); };
+			this.canvas.onmousemove = function(event) { texture_view.canvas_onmousemove(event); };
+			this.canvas.onmousedown = function(event) { texture_view.canvas_onmousedown(event); };
+			this.canvas.onmouseup = function(event) { texture_view.canvas_onmouseup(event); };
+			this.canvas.oncontextmenu = function(event) { return false; };
+
+			document.getElementById('canvas_viewport').oncontextmenu = function(event) { return false; };
+
+			document.getElementById('canvas_outter').onclick = function(event) { texture_view.onclick_canvas_outter(); };
+			document.getElementById('canvas_outter').onmouseleave = function(event) { texture_view.set_select_viewport(false); };
+		}
+
+		if (this.subresource_desc['raw_channel_format'] == 'float')
+		{
+			update_value_selection(document.getElementById('texture_visualization_change_display_modes'), this.display_mode);
+		}
+		else
+		{
+			document.getElementById('texture_visualization_change_display_modes').style.display = 'none';
+		}
+
+		// Fill out the default visualization shader code in the textarea for the user to customise.
+		{
+			var user_shader_code_dom = document.getElementById('texture_visualization_code_input');
+
+			if (this.shader_code_saving_key in g_shader_code_dict)
+			{
+				user_shader_code_dom.value = g_shader_code_dict[this.shader_code_saving_key];
+			}
+			else
+			{
+				if (!this.subresource_desc)
+				{
+					user_shader_code_dom.value = `// Sorry but ${this.resource_desc['Format']} is not supported for display :(`;
+				}
+				else
+				{
+					user_shader_code_dom.value = this.subresource_desc['webgl_pixel_shader_public'];
+				}
+			}
+		}
+
+		var texture_view = this;
+		var subresource_version_name = get_subresource_unique_version_name(this.subresource_version_info);
+		load_resource_binary_file(`Resources/${subresource_version_name}.bin`, function(raw_texture_data)
+		{
+			if (raw_texture_data)
+			{
+				texture_view.is_ready = true;
+				texture_view.raw_texture_data = raw_texture_data;
+				texture_view.resize_canvas(texture_view.pixel_scaling);
+				texture_view.process_texture_data_for_visualization();
+				texture_view.refresh_texture_visualization();
+				texture_view.onload();
+			}
+			else
+			{
+				texture_view.error(`Error: Resources/${subresource_version_name}.bin couldn't be loaded.`);
+			}
+		});
+
+		document.title = `${g_view.pass_data['EventName']} - ${this.resource_desc['Name']} ${this.subresource_version_info['subresource']}`;
+	}
+
+	error(error_msg)
+	{
+		console.error(error_msg);
+		document.getElementById('canvas_viewport').innerHTML = `
+			<div class="error_msg">
+				${error_msg}
+			</div>`;
+		document.getElementById('texture_visualization_code_input').readOnly = true;
+	}
+
+	image_load_uint(texel_x, texel_y)
+	{
+		console.assert(this.is_ready);
+
+		var extent = this.get_subresource_extent();
+		var pixel_data_offset = texel_x + (extent['y'] - 1 - texel_y) * extent['x'];
+
+		var texel_value = [0];
+		for (var c = 1; c < this.subresource_desc['raw_channel_count']; c++)
+		{
+			texel_value.push(0);
+		}
+
+		if (this.subresource_desc['webgl_src_type'] === this.gl.UNSIGNED_SHORT_5_6_5)
+		{
+			var data = new Uint16Array(this.raw_texture_data, pixel_data_offset * 2, 1);
+
+			texel_value[0] = (data[0] >>  0) & 0x1F;
+			texel_value[1] = (data[0] >>  5) & 0x3F;
+			texel_value[2] = (data[0] >> 11) & 0x1F;
+		}
+		else if (this.subresource_desc['webgl_src_type'] === this.gl.UNSIGNED_INT_10F_11F_11F_REV)
+		{
+			var data = new Uint32Array(this.raw_texture_data, pixel_data_offset * 4, 1);
+
+			texel_value[0] = (data[0] >>  0) & 0x7FF;
+			texel_value[1] = (data[0] >> 11) & 0x7FF;
+			texel_value[2] = (data[0] >> 22) & 0x3FF;
+		}
+		else if (this.subresource_desc['webgl_src_type'] === this.gl.UNSIGNED_INT_2_10_10_10_REV)
+		{
+			var data = new Uint32Array(this.raw_texture_data, pixel_data_offset * 4, 1);
+
+			texel_value[0] = (data[0] >>  0) & 0x3FF;
+			texel_value[1] = (data[0] >> 10) & 0x3FF;
+			texel_value[2] = (data[0] >> 20) & 0x3FF;
+			texel_value[3] = (data[0] >> 30) &   0x3;
+		}
+		else
+		{
+			var data = null;
+			if (this.subresource_desc['raw_channel_bit_depth'] === 8)
+			{
+				data = new Uint8Array(this.raw_texture_data, this.subresource_desc['raw_channel_count'] * pixel_data_offset * 1, this.subresource_desc['raw_channel_count']);
+			}
+			else if (this.subresource_desc['raw_channel_bit_depth'] === 16)
+			{
+				data = new Uint16Array(this.raw_texture_data, this.subresource_desc['raw_channel_count'] * pixel_data_offset * 2, this.subresource_desc['raw_channel_count']);
+			}
+			else if (this.subresource_desc['raw_channel_bit_depth'] === 32)
+			{
+				data = new Uint32Array(this.raw_texture_data, this.subresource_desc['raw_channel_count'] * pixel_data_offset * 4, this.subresource_desc['raw_channel_count']);
+			}
+			else
+			{
+				return;
+			}
+
+			for (var c = 0; c < this.subresource_desc['raw_channel_count']; c++)
+			{
+				texel_value[c] = data[this.subresource_desc['raw_channel_swizzling'][c]];
+			}
+		}
+
+		return texel_value;
+	}
+
+	decode_texel_uint(value)
+	{
+		console.assert(this.is_ready);
+
+		value = [...value];
+
+		if (this.subresource_desc['ue_pixel_format'] === 'PF_FloatRGB' || this.subresource_desc['ue_pixel_format'] === 'PF_FloatR11G11B10')
+		{
+			value[0] = decode_float11(value[0]);
+			value[1] = decode_float11(value[1]);
+			value[2] = decode_float10(value[2]);
+		}
+		else if (this.subresource_desc['ue_pixel_format'] === 'PF_A2B10G10R10')
+		{
+			value[0] = value[0] / 1023.0;
+			value[1] = value[1] / 1023.0;
+			value[2] = value[2] / 1023.0;
+			value[3] = value[3] / 3.0;
+		}
+		else if (this.subresource_desc['ue_pixel_format'] === 'PF_R5G6B5_UNORM')
+		{
+			value[0] = value[0] / 31.0;
+			value[1] = value[1] / 63.0;
+			value[2] = value[2] / 31.0;
+		}
+		else if (this.subresource_desc['raw_channel_format'] == 'uint')
+		{
+			// NOP
+		}
+		else if (this.subresource_desc['raw_channel_format'] == 'float')
+		{
+			for (var c = 0; c < value.length; c++)
+			{
+				if (this.subresource_desc['raw_channel_bit_depth'] == 16)
+				{
+					value[c] = decode_float16(value[c]);
+				}
+				else if (this.subresource_desc['raw_channel_bit_depth'] == 32)
+				{
+					value[c] = decode_float32(value[c]);
+				}
+				else
+				{
+					console.error('Unknown float bit depth');
+				}
+			}
+		}
+		else if (this.subresource_desc['raw_channel_format'] == 'unorm')
+		{
+			var divide = Number((BigInt(1) << BigInt(this.subresource_desc['raw_channel_bit_depth'])) - 1n);
+
+			for (var c = 0; c < value.length; c++)
+			{
+				value[c] = Number(value[c]) / divide;
+			}
+		}
+		else
+		{
+			console.error('Unknown pixel format to convert');
+		}
+
+		return value;
+	}
+
+	update_texel_cursor_pos(texel_x, texel_y, parent_dom_name)
+	{
+		console.assert(this.is_ready);
+
+		var parent_dom = document.getElementById(parent_dom_name);
+		parent_dom.innerHTML = `<span style="width: 40px; display: inline-block; text-align: right;">${texel_x}</span> <span style="width: 40px; display: inline-block; text-align: right; margin-right: 60px;">${texel_y}</span> `;
+
+		// Find out pixel value.
+		{
+			var texel_raw = this.image_load_uint(texel_x, texel_y);
+			var texel_value = this.decode_texel_uint(texel_raw);
+
+			const channel_name = ['R', 'G', 'B', 'A'];
+			const channel_color = ['rgb(255, 38, 38)', 'rgb(38, 255, 38)', 'rgb(38, 187, 255)', 'white'];
+
+			var texel_string = [];
+			for (var c = 0; c < this.subresource_desc['raw_channel_count']; c++)
+			{
+				texel_string.push(`${texel_value[c].toString()} (0x${texel_raw[c].toString(16)})`);
+			}
+
+			if (this.subresource_version_info['subresource'] == 'stencil')
+			{
+				texel_string[0] = '0b' + texel_value[0].toString(2).padStart(8, 0);
+			}
+
+			var html = ``;
+			for (var c = 0; c < this.subresource_desc['raw_channel_count']; c++)
+			{
+				html += `<span style="margin-left: 20px; color: ${channel_color[c]};">${channel_name[c]}: <span style="min-width: 170px; display: inline-block; text-align: right;">${texel_string[c]}</span></span>`;
+			}
+
+			parent_dom.innerHTML += html;
+		}
+	}
+
+	get_texel_coordinate_of_mouse(event)
+	{
+		console.assert(this.is_ready);
+		
+		var rect = event.target.getBoundingClientRect();
+		var html_x = event.clientX - rect.left;
+		var html_y = event.clientY - rect.top;
+
+		var texel_x = Math.floor(html_x * px_string_to_int(this.canvas.width) / px_string_to_int(this.canvas.style.width));
+		var texel_y = Math.floor(html_y * px_string_to_int(this.canvas.height) / px_string_to_int(this.canvas.style.height));
+
+		return [texel_x, texel_y];
+	}
+
+	onclick_canvas_outter()
+	{
+		if (!this.is_ready)
+		{
+			return;
+		}
+
+		this.set_select_viewport(true);
+	}
+
+	onmousewheel(event)
+	{
+		if (!this.is_ready)
+		{
+			return;
+		}
+
+		if (this.viewport_selected == false)
+		{
+			// forward scroll event to parent
+			document.getElementById('main_right_pannel').scrollTop += event.deltaY;
+			return false;
+		}
+
+		var dpi = window.devicePixelRatio || 1;
+		var zooming_in = event.deltaY < 0.0;
+
+		var subresource_extent = this.get_subresource_extent();
+
+		// Find new pixel scaling to scale the viewport to.
+		var new_pixel_scaling = 0;
+		{
+			var viewport_width = (px_string_to_int(document.getElementById('canvas_viewport').style.width) - k_style_scroll_width) * dpi;
+
+			var min_pixel_scaling = Math.ceil(viewport_width / subresource_extent['x']);
+			if (min_pixel_scaling <= 1)
+			{
+				min_pixel_scaling = 1;
+			}
+			else if (min_pixel_scaling <= 2)
+			{
+				min_pixel_scaling = 2;
+			}
+			else if (min_pixel_scaling <= 4)
+			{
+				min_pixel_scaling = 4;
+			}
+			else if (min_pixel_scaling <= 8)
+			{
+				min_pixel_scaling = 8;
+			}
+			else if (min_pixel_scaling <= 16)
+			{
+				min_pixel_scaling = 16;
+			}
+
+			if (zooming_in)
+			{
+				if (this.pixel_scaling == 0)
+				{
+					if (min_pixel_scaling <= 16)
+					{
+						new_pixel_scaling = min_pixel_scaling;
+					}
+				}
+				else
+				{
+					new_pixel_scaling = this.pixel_scaling * 2;
+				}
+			}
+			else
+			{
+				if (this.pixel_scaling <= min_pixel_scaling)
+				{
+					new_pixel_scaling = 0;
+				}
+				else
+				{
+					new_pixel_scaling = this.pixel_scaling / 2;
+				}
+			}
+
+			new_pixel_scaling = Math.min(Math.max(new_pixel_scaling, 0), 16);
+		}
+
+		var [texel_x, texel_y] = this.get_texel_coordinate_of_mouse(event);
+
+		this.resize_canvas(new_pixel_scaling, texel_x, texel_y);
+		this.update_change_pixel_scaling_button();
+
+		return false;
+	}
+
+	update_change_pixel_scaling_button()
+	{
+		const pixel_scaling_names = {
+			0: 'Fit',
+			1: '1:1',
+			2: '2:1',
+			4: '4:1',
+			8: '8:1',
+			16: '16:1',
+		};
+		update_value_selection(document.getElementById('texture_visualization_change_pixel_scaling'), pixel_scaling_names[this.pixel_scaling]);
+	}
+
+	canvas_click(event)
+	{
+		if (!this.is_ready)
+		{
+			return;
+		}
+		
+		var subresource_extent = this.get_subresource_extent();
+
+		var [texel_x, texel_y] = this.get_texel_coordinate_of_mouse(event);
+
+		texel_x = Math.min(Math.max(texel_x, 0), subresource_extent['x'] - 1);
+		texel_y = Math.min(Math.max(texel_y, 0), subresource_extent['y'] - 1);
+
+		this.update_texel_cursor_pos(texel_x, texel_y, 'canvas_selected_texel_info');
+	}
+
+	canvas_onmousemove(event)
+	{
+		if (!this.is_ready)
+		{
+			return;
+		}
+		
+		if (this.is_draging_canvas)
+		{
+			this.drag_canvas(event);
+		}
+
+		var subresource_extent = this.get_subresource_extent();
+
+		var [texel_x, texel_y] = this.get_texel_coordinate_of_mouse(event);
+
+		texel_x = Math.min(Math.max(texel_x, 0), subresource_extent['x'] - 1);
+		texel_y = Math.min(Math.max(texel_y, 0), subresource_extent['y'] - 1);
+
+		this.update_texel_cursor_pos(texel_x, texel_y, 'canvas_hover_texel_info');
+	}
+
+	canvas_onmousedown(event)
+	{
+		if (!this.is_ready)
+		{
+			return;
+		}
+		
+		if (event.button == 2)
+		{
+			this.set_select_viewport(true);
+			this.is_draging_canvas = true;
+		}
+	}
+
+	canvas_onmouseup(event)
+	{
+		if (!this.is_ready)
+		{
+			return;
+		}
+		
+		if (event.button == 2)
+		{
+			this.is_draging_canvas = false;
+		}
+	}
+
+	drag_canvas(event)
+	{
+		if (!this.is_ready)
+		{
+			return;
+		}
+		
+		var canvas_viewport = document.getElementById('canvas_viewport');
+		canvas_viewport.scrollLeft -= event.movementX;
+		canvas_viewport.scrollTop -= event.movementY;
+	}
+
+	set_select_viewport(selected)
+	{
+		if (this.viewport_selected === selected)
+		{
+			return;
+		}
+
+		this.viewport_selected = selected;
+		if (this.viewport_selected)
+		{
+			var texture_view = this;
+			document.getElementById('main_right_pannel').onwheel = function(event) { return false; };
+			document.getElementById('canvas_outter').classList.add('selected');
+			document.getElementById('canvas_viewport').style.overflow = 'scroll';
+			this.canvas.onwheel = function(event) { return texture_view.onmousewheel(event); };
+		}
+		else
+		{
+			document.getElementById('main_right_pannel').onwheel = null;
+			document.getElementById('canvas_outter').classList.remove('selected');
+			document.getElementById('canvas_viewport').style.overflow = 'hidden';
+			this.canvas.onwheel = null;
+			this.is_draging_canvas = false;
+		}
+	}
+
+	resize(ctx)
+	{
+		var dpi = window.devicePixelRatio || 1;
+		var viewport_width = ctx.width - 2 * k_style_padding_size - 2;
+		var viewport_width_no_scroll = viewport_width - k_style_scroll_width;
+
+		var subresource_extent = this.get_subresource_extent();
+		var canvas_rendering_res_x = subresource_extent['x'];
+		var canvas_rendering_res_y = subresource_extent['y'];
+
+		var canvas_outter = document.getElementById('canvas_outter');
+		var canvas_viewport = document.getElementById('canvas_viewport');
+		canvas_outter.style.width = `${viewport_width}px`;
+		canvas_viewport.style.width = `${viewport_width_no_scroll + k_style_scroll_width}px`;
+		canvas_viewport.style.height = `${viewport_width_no_scroll * canvas_rendering_res_y / canvas_rendering_res_x + k_style_scroll_width}px`;
+
+		this.viewport_width = viewport_width;
+		if (this.is_ready)
+		{
+			this.resize_canvas(this.pixel_scaling);
+		}
+	}
+
+	resize_canvas(new_pixel_scaling, fix_texel_x, fix_texel_y)
+	{
+		console.assert(this.is_ready);
+		var dpi = window.devicePixelRatio || 1;
+		var viewport_width = this.viewport_width;
+		var viewport_width_no_scroll = viewport_width - k_style_scroll_width;
+
+		var canvas_viewport = document.getElementById('canvas_viewport');
+		var canvas_viewport_rect = canvas_viewport.getBoundingClientRect();
+		var viewport_height = px_string_to_int(canvas_viewport.style.height);
+		var viewport_height_no_scroll = viewport_height - k_style_scroll_width;
+
+		var subresource_extent = this.get_subresource_extent();
+		var canvas_rendering_res_x = subresource_extent['x'];
+		var canvas_rendering_res_y = subresource_extent['y'];
+
+		if (fix_texel_x === undefined || fix_texel_y === undefined)
+		{
+			fix_texel_x = canvas_rendering_res_x / 2;
+			fix_texel_y = canvas_rendering_res_y / 2;
+		}
+
+		// Compute the pixel coordinate of the fixed texel.
+		var fix_texel_pixel_pos_x;
+		var fix_texel_pixel_pos_y;
+		{
+			var rect = this.canvas.getBoundingClientRect();
+
+			fix_texel_pixel_pos_x = rect.left + rect.width * fix_texel_x / canvas_rendering_res_x - canvas_viewport_rect.left;
+			fix_texel_pixel_pos_y = rect.top + rect.height * fix_texel_y / canvas_rendering_res_y - canvas_viewport_rect.top;
+		}
+
+		// Compute new canvas dimensions
+		var canvas_display_w = new_pixel_scaling * canvas_rendering_res_x / dpi;
+		var canvas_display_h = new_pixel_scaling * canvas_rendering_res_y / dpi;
+		if (new_pixel_scaling == 0)
+		{
+			canvas_display_w = viewport_width_no_scroll;
+			canvas_display_h = viewport_width_no_scroll * canvas_rendering_res_y / canvas_rendering_res_x;
+		}
+
+		// Compute new canvas scroll such that the fixed texel ends up at the same pixel coordinate.
+		var canvas_scroll_x;
+		var canvas_scroll_y;
+		{
+			canvas_scroll_x = fix_texel_x * canvas_display_w / canvas_rendering_res_x - fix_texel_pixel_pos_x;
+			canvas_scroll_y = fix_texel_y * canvas_display_h / canvas_rendering_res_y - fix_texel_pixel_pos_y;
+		}
+
+		this.canvas.style.width = `${canvas_display_w}px`;
+		this.canvas.style.height = `${canvas_display_h}px`;
+		canvas_viewport.scrollLeft = canvas_scroll_x;
+		canvas_viewport.scrollTop = canvas_scroll_y;
+		this.pixel_scaling = new_pixel_scaling;
+	}
+
+	get_zoom_settings()
+	{
+		var subresource_extent = this.get_subresource_extent();
+
+		var canvas_viewport = document.getElementById('canvas_viewport');
+
+		var zoom_settings = {
+			'subresource_extent_x': subresource_extent['x'],
+			'subresource_extent_y': subresource_extent['y'],
+			'pixel_scaling': this.pixel_scaling,
+			'canvas_width': this.canvas.style.width,
+			'canvas_height': this.canvas.style.height,
+			'canvas_viewport_scoll_left': canvas_viewport.scrollLeft,
+			'canvas_viewport_scoll_top': canvas_viewport.scrollTop,
+		};
+		return zoom_settings;
+	}
+
+	is_zoom_settings_compatible(zoom_settings)
+	{
+		var subresource_extent = this.get_subresource_extent();
+
+		return (zoom_settings['subresource_extent_x'] == subresource_extent['x'] && zoom_settings['subresource_extent_y'] == subresource_extent['y']);
+	}
+
+	apply_zoom_settings(zoom_settings)
+	{
+		var canvas_viewport = document.getElementById('canvas_viewport');
+
+		this.pixel_scaling = zoom_settings['pixel_scaling'];
+		this.canvas.style.width = zoom_settings['canvas_width'];
+		this.canvas.style.height = zoom_settings['canvas_height'];
+		canvas_viewport.scrollLeft = zoom_settings['canvas_viewport_scoll_left'];
+		canvas_viewport.scrollTop = zoom_settings['canvas_viewport_scoll_top'];
+
+		this.update_change_pixel_scaling_button();
+	}
+
+	init_gl()
+	{
+		var gl_ctx_attributes = {
+			antialias: false,
+  			depth: false
+		};
+
+		// Init WebGL 2.0
+		this.canvas = document.getElementById('texture_visualization_canvas');
+
+		var gl_ctx_attributes = {
+			alpha: false,
+  			// premultipliedAlpha: true, // TODO
+			antialias: false,
+  			depth: false,
+  			stencil: false,
+  			powerPreference: "low-power",
+  			preserveDrawingBuffer: true,
+  			xrCompatible: false,
+		};
+
+		var gl = this.canvas.getContext('webgl2', gl_ctx_attributes);
+		this.gl = gl;
+
+		// Init WebGL extensions
+		{
+			var available_extensions = this.gl.getSupportedExtensions();
+			var required_extensions = ['EXT_texture_norm16'];
+
+			this.gl_ext = {};
+
+			var gl = this.gl;
+			var gl_ext = this.gl_ext;
+			required_extensions.forEach(function(ext_name)
+			{
+				gl_ext[ext_name] = gl.getExtension(ext_name);
+			});
+		}
+
+		// Set unpacking alignement to 1 to allow uploading texture size not multple of 4 
+		gl.pixelStorei(gl.UNPACK_ALIGNMENT, 1);
+
+		// Create buffers
+		{
+			this.gl_vertex_buffer = gl_create_vertex_buffer(gl, new Float32Array([
+				-1.0,+1.0,0.0,
+				-1.0,-1.0,0.0,
+				+1.0,-1.0,0.0,
+				+1.0,+1.0,0.0, 
+			]));
+
+			this.gl_index_buffer = gl_create_index_buffer(gl, new Uint16Array([0, 1, 2, 2, 0, 3]));
+		}
+
+		// Create simple shader program for NaN display mode
+		{
+			var frag_code = `
+uniform sampler2D texture0;
+
+in vec2 uv;
+out vec4 display;
+
+void main(void) {
+	ivec2 texel_coord = ivec2(uv * vec2(textureSize(texture0, 0)));
+	display = texelFetch(texture0, texel_coord, 0);
+}`;
+			this.gl_simple_program = this.compile_screen_shader_program(frag_code);
+		}
+
+		// Create simple shader program for NaN display mode
+		{
+			var frag_code = `
+uniform sampler2D texture0;
+
+in vec2 uv;
+out vec4 display;
+
+void main(void)
+{
+	ivec2 texel_coord = ivec2(uv * vec2(textureSize(texture0, 0)));
+	vec4 raw = texelFetch(texture0, texel_coord, 0);
+
+	display.r = (isnan(raw.r) || isnan(raw.g) || isnan(raw.b) || isnan(raw.a)) ? 1.0 : 0.0;
+	display.g = 0.0;
+	display.b = 0.0;
+	display.a = 1.0;
+}`;
+			this.gl_nan_program = this.compile_screen_shader_program(frag_code);
+		}
+
+		// Create simple shader program for Inf display mode
+		{
+			var frag_code = `
+uniform sampler2D texture0;
+
+in vec2 uv;
+out vec4 display;
+
+void main(void)
+{
+	ivec2 texel_coord = ivec2(uv * vec2(textureSize(texture0, 0)));
+	vec4 raw = texelFetch(texture0, texel_coord, 0);
+
+	display.r = (isinf(raw.r) || isinf(raw.g) || isinf(raw.b) || isinf(raw.a)) ? 1.0 : 0.0;
+	display.g = 0.0;
+	display.b = 0.0;
+	display.a = 1.0;
+}`;
+			this.gl_inf_program = this.compile_screen_shader_program(frag_code);
+		}
+	}
+
+	release_gl()
+	{
+		this.canvas = null;
+		this.gl = null;
+		this.gl_ext = null;
+		this.gl_vertex_buffer = null;
+		this.gl_index_buffer = null;
+		this.gl_simple_program = null;
+		this.gl_nan_program = null;
+		this.gl_textures = null;
+	}
+
+	release()
+	{
+		this.is_ready = false;
+		this.raw_texture_data = null;
+		this.release_gl();
+		this.set_select_viewport(false);
+	}
+
+	shader_user_code_change()
+	{
+		if (!this.is_ready)
+		{
+			return;
+		}
+		
+		this.refresh_texture_visualization();
+	}
+
+	copy_canvas_to_clipboard()
+	{
+		if (!this.is_ready)
+		{
+			return;
+		}
+		
+		var pass_data = g_view.pass_data;
+
+		var is_output_resource = is_pass_output_resource(pass_data, this.subresource_version_info);
+
+		var text = '';
+		text += `Dump:\n\t${g_infos['Project']} - ${g_infos['Platform']} - ${g_infos['RHI']} - ${g_infos['BuildVersion']} - ${g_infos['DumpTime']}\n\t${get_current_navigation()}\n`
+		text += `Pass:\n\t${pass_data['EventName']}\n`;
+
+		{
+			var name = prettify_subresource_unique_name(this.subresource_version_info, this.resource_desc);
+			text += `${is_output_resource ? 'Output' : 'Input'} resource:\n\t${name}\n`;
+			if (this.display_mode == 'Visualization')
+			{
+				text += `\tDisplay shader: \n${g_shader_code_dict[this.shader_code_saving_key]}\n`;
+				text += `\tDisplay channels: ${this.src_channels}\n`;
+				text += `\tDisplay src color: ${this.src_color_space}\n`;
+			}
+			else
+			{
+				text += `\tSrc color: ${this.display_mode}\n`;
+			}
+		}
+
+		if (this.subresource_version_info['draw'] >= 0)
+		{
+			text += `Draw ${this.subresource_version_info['draw']}:\n\t${g_view.pass_draws_data[this.subresource_version_info['draw']]['DrawName']}\n`;
+		}
+
+		copy_canvas_to_clipboard(this.canvas, text);
+	}
+
+	get shader_code_saving_key()
+	{
+		var name = '';
+		if (this.resource_desc['Name'])
+		{
+			name = this.resource_desc['Name'];
+		}
+		else
+		{
+			name = this.subresource_version_info['resource'];
+		}
+
+		name = `${name}.${this.resource_desc['Format']}`;
+
+		if (this.subresource_version_info['subresource'] && !this.subresource_version_info['subresource'].startsWith('mip'))
+		{
+			name = `${name}.${this.subresource_version_info['subresource']}`;
+		}
+
+		return name;
+	}
+
+	get_default_texture_shader_code()
+	{
+		if (this.shader_code_saving_key in g_shader_code_dict)
+		{
+			return g_shader_code_dict[this.shader_code_saving_key];
+		}
+
+		if (!this.subresource_desc)
+		{
+			return `// Sorry but ${this.resource_desc['Format']} is not supported for display :(`;
+		}
+
+		return this.subresource_desc['webgl_pixel_shader'];
+	}
+
+	translate_subresource_desc()
+	{
+		var gl = this.gl;
+		var ue_pixel_format = this.resource_desc['Format'];
+
+		// Missing formats:
+		//PF_R8G8B8A8_SNORM
+		//PF_R16G16B16A16_UNORM
+		//PF_R16G16B16A16_SNORN
+
+		if (this.resource_desc['NumSamples'] > 1)
+		{
+			this.error(`MSAA is not supported for visualization.`);
+			return null;
+		}
+
+		var webgl_texture_internal_format = null;
+		var webgl_texture_src_format = null;
+		var webgl_texture_src_type = null;
+		var webgl_texture_count = 1;
+		var raw_channel_swizzling = [0, 1, 2, 3];
+		var raw_channel_bit_depth = 0;
+		var raw_channel_count = 0;
+		var raw_channel_format = 'exotic';
+
+		// 32bit floats
+		if (ue_pixel_format === 'PF_A32B32G32R32F')
+		{
+			webgl_texture_internal_format = gl.RGBA32F;
+			webgl_texture_src_format = gl.RGBA;
+			webgl_texture_src_type = gl.FLOAT;
+			raw_channel_bit_depth = 32;
+			raw_channel_count = 4;
+			raw_channel_format = 'float';
+		}
+		else if (ue_pixel_format === 'PF_G32R32F')
+		{
+			webgl_texture_internal_format = gl.RG32F;
+			webgl_texture_src_format = gl.RG;
+			webgl_texture_src_type = gl.FLOAT;
+			raw_channel_bit_depth = 32;
+			raw_channel_count = 2;
+			raw_channel_format = 'float';
+		}
+		else if (ue_pixel_format === 'PF_R32_FLOAT' || ue_pixel_format === 'PF_BC4')
+		{
+			webgl_texture_internal_format = gl.R32F;
+			webgl_texture_src_format = gl.RED;
+			webgl_texture_src_type = gl.FLOAT;
+			raw_channel_bit_depth = 32;
+			raw_channel_count = 1;
+			raw_channel_format = 'float';
+		}
+		// 16bit floats
+		else if (ue_pixel_format === 'PF_FloatRGBA' || ue_pixel_format === 'PF_BC6H' || ue_pixel_format === 'PF_BC7')
+		{
+			webgl_texture_internal_format = gl.RGBA16F;
+			webgl_texture_src_format = gl.RGBA;
+			webgl_texture_src_type = gl.HALF_FLOAT;
+			raw_channel_bit_depth = 16;
+			raw_channel_count = 4;
+			raw_channel_format = 'float';
+		}
+		else if (ue_pixel_format === 'PF_G16R16F' || ue_pixel_format === 'PF_G16R16F_FILTER' || ue_pixel_format === 'PF_BC5')
+		{
+			webgl_texture_internal_format = gl.RG16F;
+			webgl_texture_src_format = gl.RG;
+			webgl_texture_src_type = gl.HALF_FLOAT;
+			raw_channel_bit_depth = 16;
+			raw_channel_count = 2;
+			raw_channel_format = 'float';
+		}
+		else if (ue_pixel_format === 'PF_R16F' || ue_pixel_format === 'PF_R16F_FILTER')
+		{
+			webgl_texture_internal_format = gl.R16F;
+			webgl_texture_src_format = gl.RED;
+			webgl_texture_src_type = gl.HALF_FLOAT;
+			raw_channel_bit_depth = 16;
+			raw_channel_count = 1;
+			raw_channel_format = 'float';
+		}
+		// 16bit unorms
+		else if (ue_pixel_format === 'PF_A16B16G16R16')
+		{
+			webgl_texture_internal_format = this.gl_ext['EXT_texture_norm16'].RGBA16_EXT;
+			webgl_texture_src_format = gl.RGBA;
+			webgl_texture_src_type = gl.UNSIGNED_SHORT;
+			raw_channel_bit_depth = 16;
+			raw_channel_count = 4;
+			raw_channel_format = 'unorm';
+		}
+		else if (ue_pixel_format === 'PF_G16R16')
+		{
+			webgl_texture_internal_format = this.gl_ext['EXT_texture_norm16'].RG16_EXT;
+			webgl_texture_src_format = gl.RG;
+			webgl_texture_src_type = gl.UNSIGNED_SHORT;
+			raw_channel_bit_depth = 16;
+			raw_channel_count = 2;
+			raw_channel_format = 'unorm';
+		}
+		else if (ue_pixel_format === 'PF_G16')
+		{
+			webgl_texture_internal_format = this.gl_ext['EXT_texture_norm16'].R16_EXT;
+			webgl_texture_src_format = gl.RED;
+			webgl_texture_src_type = gl.UNSIGNED_SHORT;
+			raw_channel_bit_depth = 16;
+			raw_channel_count = 1;
+			raw_channel_format = 'unorm';
+		}
+		// 8bit unorms
+		else if (ue_pixel_format === 'PF_B8G8R8A8' || ue_pixel_format === 'PF_R8G8B8A8')
+		{
+			webgl_texture_internal_format = gl.RGBA;
+			webgl_texture_src_format = gl.RGBA;
+			webgl_texture_src_type = gl.UNSIGNED_BYTE;
+			raw_channel_bit_depth = 8;
+			raw_channel_count = 4;
+			raw_channel_format = 'unorm';
+
+			if (ue_pixel_format === 'PF_B8G8R8A8' && g_infos['RHI'] !== 'OpenGL')
+			{
+				raw_channel_swizzling = [2, 1, 0, 3];
+			}
+		}
+		else if (ue_pixel_format === 'PF_R8G8')
+		{
+			webgl_texture_internal_format = gl.RG8;
+			webgl_texture_src_format = gl.RG;
+			webgl_texture_src_type = gl.UNSIGNED_BYTE;
+			raw_channel_bit_depth = 8;
+			raw_channel_count = 2;
+			raw_channel_format = 'unorm';
+		}
+		else if (ue_pixel_format === 'PF_R8' || ue_pixel_format === 'PF_G8' || ue_pixel_format === 'PF_A8' || ue_pixel_format === 'PF_L8')
+		{
+			webgl_texture_internal_format = gl.R8;
+			webgl_texture_src_format = gl.RED;
+			webgl_texture_src_type = gl.UNSIGNED_BYTE;
+			raw_channel_bit_depth = 8;
+			raw_channel_count = 1;
+			raw_channel_format = 'unorm';
+		}
+		// 32bit uint
+		else if (ue_pixel_format === 'PF_R32_UINT' || ue_pixel_format === 'PF_R32_SINT')
+		{
+			webgl_texture_internal_format = gl.R8UI;
+			webgl_texture_src_format = gl.RED_INTEGER;
+			webgl_texture_src_type = gl.UNSIGNED_BYTE;
+			webgl_texture_count = 4;
+			raw_channel_bit_depth = 32;
+			raw_channel_count = 1;
+			raw_channel_format = 'uint';
+		}
+		else if (ue_pixel_format === 'PF_R32G32B32A32_UINT')
+		{
+			webgl_texture_internal_format = gl.RGBA8UI;
+			webgl_texture_src_format = gl.RGBA_INTEGER;
+			webgl_texture_src_type = gl.UNSIGNED_BYTE;
+			webgl_texture_count = 4;
+			raw_channel_bit_depth = 32;
+			raw_channel_count = 4;
+			raw_channel_format = 'uint';
+		}
+		else if (ue_pixel_format === 'PF_R32G32_UINT')
+		{
+			webgl_texture_internal_format = gl.RGBA8UI;
+			webgl_texture_src_format = gl.RGBA_INTEGER;
+			webgl_texture_src_type = gl.UNSIGNED_BYTE;
+			webgl_texture_count = 4;
+			raw_channel_bit_depth = 32;
+			raw_channel_count = 2;
+			raw_channel_format = 'uint';
+		}
+		// 16bit uint
+		else if (ue_pixel_format === 'PF_R16_UINT' || ue_pixel_format === 'PF_R16_SINT')
+		{
+			webgl_texture_internal_format = gl.R8UI;
+			webgl_texture_src_format = gl.RED_INTEGER;
+			webgl_texture_src_type = gl.UNSIGNED_BYTE;
+			webgl_texture_count = 2;
+			raw_channel_bit_depth = 16;
+			raw_channel_count = 1;
+			raw_channel_format = 'uint';
+		}
+		else if (ue_pixel_format === 'PF_R16G16B16A16_UINT' || ue_pixel_format === 'PF_R16G16B16A16_SINT')
+		{
+			webgl_texture_internal_format = gl.RGBA8UI;
+			webgl_texture_src_format = gl.RGBA_INTEGER;
+			webgl_texture_src_type = gl.UNSIGNED_BYTE;
+			webgl_texture_count = 2;
+			raw_channel_bit_depth = 16;
+			raw_channel_count = 4;
+			raw_channel_format = 'uint';
+		}
+		else if (ue_pixel_format === 'PF_R16G16_UINT')
+		{
+			webgl_texture_internal_format = gl.RGBA8UI;
+			webgl_texture_src_format = gl.RGBA_INTEGER;
+			webgl_texture_src_type = gl.UNSIGNED_BYTE;
+			webgl_texture_count = 2;
+			raw_channel_bit_depth = 16;
+			raw_channel_count = 2;
+			raw_channel_format = 'uint';
+		}
+		// 8bit uint
+		else if (ue_pixel_format === 'PF_R8G8B8A8_UINT')
+		{
+			webgl_texture_internal_format = gl.RGBA8UI;
+			webgl_texture_src_format = gl.RGBA_INTEGER;
+			webgl_texture_src_type = gl.UNSIGNED_BYTE;
+			raw_channel_bit_depth = 8;
+			raw_channel_count = 4;
+			raw_channel_format = 'uint';
+		}
+		else if (ue_pixel_format === 'PF_R8_UINT')
+		{
+			webgl_texture_internal_format = gl.R8UI;
+			webgl_texture_src_format = gl.RED_INTEGER;
+			webgl_texture_src_type = gl.UNSIGNED_BYTE;
+			raw_channel_bit_depth = 8;
+			raw_channel_count = 1;
+			raw_channel_format = 'uint';
+		}
+		// exotic bit depth
+		else if (ue_pixel_format === 'PF_FloatRGB' || ue_pixel_format === 'PF_FloatR11G11B10')
+		{
+			webgl_texture_internal_format = gl.R11F_G11F_B10F;
+			webgl_texture_src_format = gl.RGB;
+			webgl_texture_src_type = gl.UNSIGNED_INT_10F_11F_11F_REV;
+			raw_channel_bit_depth = k_exotic_raw_channel_bit_depth;
+			raw_channel_count = 3;
+			raw_channel_format = 'float';
+		}
+		else if (ue_pixel_format === 'PF_A2B10G10R10')
+		{
+			webgl_texture_internal_format = gl.RGB10_A2;
+			webgl_texture_src_format = gl.RGBA;
+			webgl_texture_src_type = gl.UNSIGNED_INT_2_10_10_10_REV;
+			raw_channel_bit_depth = k_exotic_raw_channel_bit_depth;
+			raw_channel_count = 4;
+			raw_channel_format = 'unorm';
+		}
+		else if (ue_pixel_format === 'PF_R5G6B5_UNORM')
+		{
+			webgl_texture_internal_format = gl.RGB565;
+			webgl_texture_src_format = gl.RGB;
+			webgl_texture_src_type = gl.UNSIGNED_SHORT_5_6_5;
+			raw_channel_bit_depth = k_exotic_raw_channel_bit_depth;
+			raw_channel_count = 3;
+			raw_channel_format = 'unorm';
+		}
+		// depth stencil
+		else if (ue_pixel_format === 'PF_DepthStencil' || ue_pixel_format === 'PF_ShadowDepth' || ue_pixel_format === 'PF_D24')
+		{
+			if (this.subresource_version_info['subresource'] == 'stencil')
+			{
+				webgl_texture_internal_format = gl.R8UI;
+				webgl_texture_src_format = gl.RED_INTEGER;
+				webgl_texture_src_type = gl.UNSIGNED_BYTE;
+				raw_channel_bit_depth = 8;
+				raw_channel_count = 1;
+				raw_channel_format = 'uint';
+			}
+			else
+			{
+				webgl_texture_internal_format = gl.R32F;
+				webgl_texture_src_format = gl.RED;
+				webgl_texture_src_type = gl.FLOAT;
+				raw_channel_bit_depth = 32;
+				raw_channel_count = 1;
+				raw_channel_format = 'float';
+			}
+		}
+		else
+		{
+			this.error(`Pixel format ${ue_pixel_format} is not supported for visualization.`);
+			return null;
+		}
+
+		var shader_float_vector = [null, 'float', 'vec2', 'vec3', 'vec4'];
+
+		var shader_sampler_type = 'sampler2D';
+		var shader_sampler_return_type = shader_float_vector;
+		var shader_display_operation = 'texel';
+		if (webgl_texture_src_format === gl.RED_INTEGER || webgl_texture_src_format === gl.RG_INTEGER || webgl_texture_src_format === gl.RGBA_INTEGER)
+		{
+			var divide = (BigInt(1) << BigInt(raw_channel_bit_depth)) - 1n;
+			shader_sampler_type = 'usampler2D';
+			shader_sampler_return_type = [null, 'uint', 'uvec2', 'uvec3', 'uvec4'];
+			shader_display_operation = `${shader_float_vector[raw_channel_count]}(${shader_display_operation}) / ${divide}.0`;
+		}
+
+		var webgl_channel_count = 0;
+		if (webgl_texture_src_format === gl.RED || webgl_texture_src_format === gl.RED_INTEGER)
+		{
+			webgl_channel_count = 1;
+		}
+		else if (webgl_texture_src_format === gl.RG)
+		{
+			webgl_channel_count = 2;
+		}
+		else if (webgl_texture_src_format === gl.RGB)
+		{
+			webgl_channel_count = 3;
+		}
+		else if (webgl_texture_src_format === gl.RGBA || webgl_texture_src_format === gl.RGBA_INTEGER)
+		{
+			webgl_channel_count = 4;
+		}
+
+		var webgl_pixel_shader_private = ``;
+
+		var shader_fetch_operation = '(\n';
+		for (var i = 0; i < webgl_texture_count; i++)
+		{
+			webgl_pixel_shader_private += `uniform ${shader_sampler_type} texture${i};\n`;
+
+			shader_fetch_operation += `\t\t(texelFetch(texture${i}, texel_coord, 0) << ${8 * i})`;
+			if (i + 1 == webgl_texture_count)
+			{
+				shader_fetch_operation += `)`;
+			}
+			else
+			{
+				shader_fetch_operation += ` |\n`;
+			}
+		}
+
+		if (webgl_texture_count == 1)
+		{
+			shader_fetch_operation = `texelFetch(texture0, texel_coord , 0)`;
+		}
+
+		const k_get_n_channels = new Array(
+			'',
+			'.r',
+			'.rg',
+			'.rgb',
+			'.rgba'
+		);
+
+		var shader_display_assignment = `display${k_get_n_channels[raw_channel_count]}`;
+
+		webgl_pixel_shader_private += `
+${shader_sampler_return_type[raw_channel_count]} fetchTexel(vec2 uv)
+{
+	ivec2 texel_coord = ivec2(uv * vec2(textureSize(texture0, 0)));
+	${shader_sampler_return_type[4]} raw = ${shader_fetch_operation};
+	return raw${k_get_n_channels[raw_channel_count]};
+}
+
+in vec2 uv;
+out vec4 display;
+`;
+
+		var webgl_pixel_shader_public = `// WebGL 2.0 visualization shader for a ${ue_pixel_format} ${this.subresource_version_info['subresource']}
+
+${shader_sampler_return_type[raw_channel_count]} texel = fetchTexel(uv);
+${shader_display_assignment} = ${shader_display_operation};`;
+
+		var gl_format = {};
+		gl_format['webgl_internal_format'] = webgl_texture_internal_format;
+		gl_format['webgl_src_format'] = webgl_texture_src_format;
+		gl_format['webgl_src_type'] = webgl_texture_src_type;
+		gl_format['webgl_texture_count'] = webgl_texture_count;
+		gl_format['webgl_pixel_shader_public'] = webgl_pixel_shader_public;
+		gl_format['webgl_pixel_shader_private'] = webgl_pixel_shader_private;
+		gl_format['webgl_channel_count'] = webgl_channel_count;
+		gl_format['raw_channel_swizzling'] = raw_channel_swizzling;
+		gl_format['raw_channel_bit_depth'] = raw_channel_bit_depth;
+		gl_format['raw_channel_count'] = raw_channel_count;
+		gl_format['raw_channel_format'] = raw_channel_format;
+		gl_format['ue_pixel_format'] = ue_pixel_format;
+
+		return gl_format;
+	}
+
+	change_pixel_scaling(pixel_scaling_button)
+	{
+		if (!this.is_ready)
+		{
+			return;
+		}
+		
+		const pixel_scalings = {
+			'Fit': 0,
+			'1:1': 1,
+			'2:1': 2,
+			'4:1': 4,
+			'8:1': 8,
+			'16:1': 16,
+		};
+		this.resize_canvas(pixel_scalings[pixel_scaling_button.value]);
+		update_value_selection(document.getElementById('texture_visualization_change_pixel_scaling'), pixel_scaling_button.value);
+	}
+
+	change_src_channels(new_src_channels)
+	{
+		if (!this.is_ready)
+		{
+			return;
+		}
+		
+		if (new_src_channels.value == this.src_channels)
+		{
+			return;
+		}
+
+		this.src_channels = new_src_channels.value;
+
+		update_value_selection(document.getElementById('texture_visualization_change_src_channels'), this.src_channels);
+
+		this.refresh_texture_visualization();
+	}
+
+	change_src_color(new_src_color_space)
+	{
+		if (!this.is_ready)
+		{
+			return;
+		}
+		
+		if (new_src_color_space.value == this.src_color_space)
+		{
+			return;
+		}
+
+		this.src_color_space = new_src_color_space.value;
+
+		update_value_selection(document.getElementById('texture_visualization_change_src_color'), this.src_color_space);
+
+		this.refresh_texture_visualization();
+	}
+
+	change_display_mode(new_mode)
+	{
+		if (!this.is_ready)
+		{
+			return;
+		}
+		
+		if (new_mode.value == this.display_mode)
+		{
+			return;
+		}
+
+		this.display_mode = new_mode.value;
+
+		update_value_selection(document.getElementById('texture_visualization_change_display_modes'), this.display_mode);
+
+		if (this.display_mode == 'Visualization')
+		{
+			document.getElementById('texture_visualization_code_input').readOnly = false;
+		}
+		else
+		{
+			document.getElementById('texture_visualization_code_input').readOnly = true;
+		}
+
+		this.refresh_texture_visualization();
+	}
+
+	get_subresource_extent()
+	{
+		var extent = {};
+		extent['x'] = this.resource_desc['ExtentX'];
+		extent['y'] = this.resource_desc['ExtentY'];
+
+		if (this.subresource_version_info['subresource'].startsWith('mip'))
+		{
+			var mip_id = Number(this.subresource_version_info['subresource'].substring(3));
+
+			for (var i = 0; i < mip_id; i++)
+			{
+				extent['x'] = Math.floor(extent['x'] / 2);
+				extent['y'] = Math.floor(extent['y'] / 2);
+			}
+		}
+
+		return extent;
+	}
+
+	create_gl_texture(webgl_internal_format, webgl_src_format, webgl_src_type, extent, converted_data)
+	{
+		console.assert(this.is_ready);
+		var gl = this.gl;
+
+		var texture = gl.createTexture();
+		gl.activeTexture(gl.TEXTURE0);
+		gl.bindTexture(gl.TEXTURE_2D, texture);
+		gl.texImage2D(
+			gl.TEXTURE_2D,
+			/* level = */ 0,
+			webgl_internal_format,
+		    extent['x'],
+		    extent['y'],
+		    /* border = */ 0,
+		    webgl_src_format,
+		    webgl_src_type,
+		    converted_data);
+		gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.NEAREST);
+		gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.NEAREST);
+		gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE);
+		gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE);
+		gl.bindTexture(gl.TEXTURE_2D, null);
+
+		return texture;
+	}
+
+	process_texture_data_for_visualization()
+	{
+		console.assert(this.is_ready);
+		var gl = this.gl;
+
+		if (this.raw_texture_data === null)
+		{
+			console.error(`failed to load ${get_subresource_unique_version_name(this.subresource_version_info)}`);
+			return null;
+		}
+
+		var extent = this.get_subresource_extent();
+		var webgl_array_size = this.subresource_desc['webgl_channel_count'] * extent['x'] * extent['y'];
+
+		// Reset the gl textures
+		this.gl_textures = [];
+
+		// Exotic pixel format
+		if (this.subresource_desc['raw_channel_bit_depth'] == k_exotic_raw_channel_bit_depth)
+		{
+			var gl = this.gl;
+			var original_converted_data = null;
+			if (this.subresource_desc['webgl_src_type'] === gl.UNSIGNED_SHORT_5_6_5)
+			{
+				original_converted_data = new Uint16Array(this.raw_texture_data);
+			}
+			else if (this.subresource_desc['webgl_src_type'] === gl.UNSIGNED_INT_10F_11F_11F_REV || this.subresource_desc['webgl_src_type'] === gl.UNSIGNED_INT_2_10_10_10_REV)
+			{
+				original_converted_data = new Uint32Array(this.raw_texture_data);
+			}
+			else
+			{
+				return null;
+			}
+
+			var texture = this.create_gl_texture(this.subresource_desc['webgl_internal_format'], this.subresource_desc['webgl_src_format'], this.subresource_desc['webgl_src_type'], extent, original_converted_data);
+			this.gl_textures.push(texture);
+		}
+		else if (this.subresource_desc['webgl_texture_count'] > 1)
+		{
+			var original_converted_data = null;
+			if (this.subresource_desc['raw_channel_bit_depth'] === 8)
+			{
+				original_converted_data = new Uint8Array(this.raw_texture_data);
+			}
+			else if (this.subresource_desc['raw_channel_bit_depth'] === 16)
+			{
+				original_converted_data = new Uint16Array(this.raw_texture_data);
+			}
+			else if (this.subresource_desc['raw_channel_bit_depth'] === 32)
+			{
+				original_converted_data = new Uint32Array(this.raw_texture_data);
+			}
+			else
+			{
+				return null;
+			}
+
+			for (var tex_id = 0; tex_id < this.subresource_desc['webgl_texture_count']; tex_id++)
+			{
+				var converted_data = new Uint8Array(webgl_array_size);
+
+				for (var y = 0; y < extent['y']; y++)
+				{
+					for (var x = 0; x < extent['x']; x++)
+					{
+						for (var c = 0; c < this.subresource_desc['webgl_channel_count']; c++)
+						{
+							var texel_offset = x + extent['x'] * y;
+
+							var value = 0;
+							if (c < this.subresource_desc['raw_channel_count'])
+							{
+								var src = original_converted_data[texel_offset * this.subresource_desc['raw_channel_count'] + this.subresource_desc['raw_channel_swizzling'][c]];
+								value = (src >> (8 * tex_id)) % 256;
+							}
+							converted_data[texel_offset * this.subresource_desc['webgl_channel_count'] + c] = value;
+						}
+					}
+				}
+
+				var texture = this.create_gl_texture(this.subresource_desc['webgl_internal_format'], this.subresource_desc['webgl_src_format'], this.subresource_desc['webgl_src_type'], extent, converted_data);
+				this.gl_textures.push(texture);
+			}
+		}
+		else
+		{
+			var gl = this.gl;
+			var converted_data = null;
+			var original_converted_data = null;
+			if (this.subresource_desc['webgl_src_type'] === gl.UNSIGNED_BYTE)
+			{
+				original_converted_data = new Uint8Array(this.raw_texture_data);
+				converted_data = new Uint8Array(webgl_array_size);
+			}
+			else if (this.subresource_desc['webgl_src_type'] === gl.UNSIGNED_SHORT || this.subresource_desc['webgl_src_type'] === gl.HALF_FLOAT)
+			{
+				original_converted_data = new Uint16Array(this.raw_texture_data);
+				converted_data = new Uint16Array(webgl_array_size);
+			}
+			else if (this.subresource_desc['webgl_src_type'] === gl.FLOAT)
+			{
+				original_converted_data = new Float32Array(this.raw_texture_data);
+				converted_data = new Float32Array(webgl_array_size);
+			}
+			else
+			{
+				return null;
+			}
+
+			for (var y = 0; y < extent['y']; y++)
+			{
+				for (var x = 0; x < extent['x']; x++)
+				{
+					for (var c = 0; c < this.subresource_desc['webgl_channel_count']; c++)
+					{
+						var i = this.subresource_desc['webgl_channel_count'] * (x + extent['x'] * y);
+
+						var value = 0;
+						if (c < this.subresource_desc['raw_channel_count'])
+						{
+							value = original_converted_data[i + this.subresource_desc['raw_channel_swizzling'][c]];
+						}
+						converted_data[i + c] = value;
+					}
+				}
+			}
+
+			var texture = this.create_gl_texture(this.subresource_desc['webgl_internal_format'], this.subresource_desc['webgl_src_format'], this.subresource_desc['webgl_src_type'], extent, converted_data);
+			this.gl_textures.push(texture);
+		}
+	}
+
+	compile_screen_shader_program(frag_code)
+	{
+		var vert_code = `
+in vec3 coordinates;
+out highp vec2 uv;
+void main(void) {
+	gl_Position = vec4(coordinates, 1.0);
+	uv = coordinates.xy * 0.5 + 0.5;
+}`;
+
+		var shader_program = gl_create_shader_program(this.gl, vert_code, frag_code);
+		if (typeof shader_program === 'string')
+		{
+			document.getElementById('texture_visualization_code_log').value = 'Compilation failed:\n' + shader_program;
+			return null;
+		}
+		else
+		{
+			document.getElementById('texture_visualization_code_log').value = 'Compilation succeeded';
+		}
+		return shader_program;
+	}
+
+	refresh_texture_visualization()
+	{
+		console.assert(this.is_ready);
+		console.assert(this.gl_textures);
+
+		var shader_program = null;
+		if (this.display_mode == 'NaN')
+		{
+			shader_program = this.gl_nan_program;
+		}
+		else if (this.display_mode == 'Inf')
+		{
+			shader_program = this.gl_inf_program;
+		}
+		else
+		{
+			var user_frag_code = document.getElementById('texture_visualization_code_input').value;
+
+			var final_frag_code = this.subresource_desc['webgl_pixel_shader_private'] + 'void main(void) { display = vec4(0.0, 0.0, 0.0, 0.0);\n';
+			final_frag_code += user_frag_code;
+			final_frag_code += '\n';
+
+			if (this.src_channels == 'R')
+			{
+				final_frag_code += 'display.rgb = vec3(display.r, 0.0, 0.0);';
+			}
+			else if (this.src_channels == 'G')
+			{
+				final_frag_code += 'display.rgb = vec3(0.0, display.g, 0.0);';
+			}
+			else if (this.src_channels == 'B')
+			{
+				final_frag_code += 'display.rgb = vec3(0.0, 0.0, display.b);';
+			}
+			else if (this.src_channels == 'A')
+			{
+				final_frag_code += 'display.rgb = display.aaa;';
+			}
+
+			if (this.src_color_space == 'sRGB/Rec709')
+			{
+				// NOP because src gamma = webgl display gamma.
+			}
+			else if (this.src_color_space == 'RGB Linear[0;1]')
+			{
+				// Apply webgl's 2.2 gamma curve on the display color so linear gradients look linear in web browser.
+				final_frag_code += 'display.rgb = pow(display.rgb, vec3(2.2));';
+			}
+			final_frag_code += '}';
+
+			shader_program = this.compile_screen_shader_program(final_frag_code);
+
+			if (!shader_program)
+			{
+				return;
+			}
+
+			// Save the user code if compilation have succeeded.
+			g_shader_code_dict[this.shader_code_saving_key] = user_frag_code;
+		}
+
+		var gl = this.gl;
+		gl.clearColor(0.0, 0.0, 0.0, 1.0);
+		gl.clear(gl.COLOR_BUFFER_BIT);
+
+		{
+			gl.useProgram(shader_program);
+			gl.bindBuffer(gl.ARRAY_BUFFER, this.gl_vertex_buffer);
+			gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, this.gl_index_buffer);
+
+			var coord = gl.getAttribLocation(shader_program, "coordinates");
+			gl.vertexAttribPointer(coord, 3, gl.FLOAT, false, 0, 0); 
+			gl.enableVertexAttribArray(coord);
+
+			for (var tex_id = 0; tex_id < this.gl_textures.length; tex_id++)
+			{
+				gl.activeTexture(gl.TEXTURE0 + tex_id);
+				gl.bindTexture(gl.TEXTURE_2D, this.gl_textures[tex_id]);
+
+				var texture_sampler = gl.getUniformLocation(shader_program, 'texture' + tex_id);
+				gl.uniform1i(texture_sampler, tex_id);
+			}
+
+			gl.viewport(0, 0, this.canvas.width, this.canvas.height);
+			gl.drawElements(gl.TRIANGLES, 6, gl.UNSIGNED_SHORT, 0);
+		}
+	}
+} // class TextureView
+
+function display_texture(subresource_version_info)
+{
+	if (g_view.resource_view !== null && get_subresource_unique_version_name(g_view.resource_view.subresource_version_info) == get_subresource_unique_version_name(subresource_version_info))
+	{
+		return;
+	}
+
+	var resource_desc = get_resource_desc(subresource_version_info['resource']);
+	g_view.set_resource_view(new TextureView(subresource_version_info, resource_desc));
+}
+
+
+// -------------------------------------------------------------------- DISPLAY BUFFER
+
+const k_buffer_pixel_per_row = 20;
+const k_buffer_max_display_row_count = 50;
+const k_buffer_display_row_buffer = 50;
+
+
+class GenericBufferView extends ResourceView
+{
+	constructor(subresource_version_info, resource_desc)
+	{
+		super(subresource_version_info, resource_desc);
+		this.raw_buffer_data = null;
+		this.raw_buffer_data_path = null;
+		this.viewport_selected = false;
+		this.display_row_start = 0;
+		this.selected_address = -1;
+		this.structure_metadata = null;
+		this.display_elem_using_rows = resource_desc['NumElements'] == 1;
+	}
+
+	setup_html(parent_dom)
+	{
+		var html = '';
+
+		if (this.resource_desc['Desc'] != 'FRDGParameterStruct')
+		{
+			var resource_info_htmls = `
+				<table width="100%" class="resource_desc pretty_table">`;
+			
+			for (var key in this.resource_desc)
+			{
+			    if (this.resource_desc.hasOwnProperty(key))
+			    {
+			    	var value = this.resource_desc[key];
+
+			    	if (key == 'Metadata')
+			    	{
+			    		if (this.resource_desc[key] == k_null_json_ptr)
+			    		{
+			    			value = 'nullptr';
+			    		}
+			    		else if (this.structure_metadata)
+			    		{
+			    			value = `${this.structure_metadata['StructTypeName']} (${get_filename(this.structure_metadata['FileName'])}:${this.structure_metadata['FileLine']})`;
+			    		}
+			    	}
+
+					resource_info_htmls += `
+						<tr>
+							<td>${key}</td>
+							<td>${value}</td>
+						</tr>`;
+			    }
+			}
+
+			resource_info_htmls += `
+				</table>`;
+
+			html += `
+				<div class="main_div">
+					<div class="selection_list_title">Buffer descriptor: ${this.resource_desc['Name']}</div>
+					<div>
+						${resource_info_htmls}
+					</div>
+				</div>`;
+		}
+
+		html += `
+			<div class="main_div">
+				<div class="selection_list_title" style="width: auto;">Buffer visualization: ${this.resource_desc['Name']}</div>
+				<div id="buffer_outter">
+					<div id="buffer_viewport_header">
+						<table width="100%" id="buffer_visualization_format_outter">
+							<tr>
+								<td style="padding: 4px 20px 0 20px; text-align: right;" width="40px">Format:</td>
+								<td>
+									<input type="text" id="buffer_visualization_format" onchange="g_view.resource_view.refresh_buffer_visualization(true);" style="width: 100%;" />
+								</td>
+							</tr>
+						</table>
+						<div id="buffer_visualization_member_search_outter">
+							<input type="search" id="buffer_visualization_member_search" oninput="g_view.resource_view.refresh_members();" onchange="g_view.resource_view.refresh_members();" style="width: 100%;" placeholder="Search member..." />
+						</div>
+					</div>
+					<div id="buffer_viewport">
+						<div id="buffer_content_pannel"></div>
+					</div>
+				</div>
+			</div>`;
+
+		parent_dom.innerHTML = html;
+
+		if (this.structure_metadata)
+		{
+			// document.getElementById('buffer_visualization_format').value = `${this.structure_metadata['StructTypeName']} (${get_filename(this.structure_metadata['FileName'])}:${this.structure_metadata['FileLine']})`;
+			// document.getElementById('buffer_visualization_format').readOnly = true;
+			document.getElementById('buffer_visualization_format_outter').style.display = 'none';
+		}
+		else
+		{
+			var default_format = '';
+			{
+				var byte_per_element = this.resource_desc['BytesPerElement'];
+				var member_count = byte_per_element / 4;
+
+				var default_format = 'hex(uint)';
+
+				// DrawIndirect flags means this is certainly a 32bit uint.
+				if ('Usage' in this.resource_desc && this.resource_desc['Usage'].includes('DrawIndirect'))
+				{
+					default_format = 'uint';
+				}
+
+				var format_per_column = [];
+				for (var i = 0; i < member_count; i++)
+				{
+					format_per_column.push(default_format);
+				}
+
+				default_format = format_per_column.join(', ');
+			}
+
+			document.getElementById('buffer_visualization_format').value = default_format;
+			document.getElementById('buffer_visualization_member_search_outter').style.display = 'none';
+		}
+
+		// Setup mouse callbacks
+		{
+			var buffer_view = this;
+
+			document.getElementById('buffer_outter').onclick = function(event) { buffer_view.onclick_buffer_outter(event); };
+			document.getElementById('buffer_outter').onmouseleave = function(event) { buffer_view.set_select_viewport(false); };
+			document.getElementById('buffer_viewport').onclick = function(event) { buffer_view.onclick_buffer_viewport(event); };
+			document.getElementById('buffer_viewport').onscroll = function(event) { buffer_view.update_buffer_scroll(/* force_refresh = */ false); };
+		}
+
+		var buffer_view = this;
+		console.assert(this.raw_buffer_data_path);
+		load_resource_binary_file(this.raw_buffer_data_path, function(raw_buffer_data)
+		{
+			if (raw_buffer_data)
+			{
+				buffer_view.raw_buffer_data = raw_buffer_data;
+				buffer_view.refresh_buffer_visualization(/* refresh header = */ true);
+				buffer_view.onload();
+			}
+			else
+			{
+				document.getElementById('buffer_content_pannel').innerHTML = `
+					Error: ${this.raw_buffer_data_path} couldn't be loaded.`;
+			}
+		});
+
+		document.title = `${g_view.pass_data['EventName']} - ${this.resource_desc['Name']}`;
+	}
+
+	refresh_members()
+	{
+		this.refresh_buffer_visualization(/* refresh_header = */ !this.display_elem_using_rows);
+	}
+
+	onclick_buffer_outter(event)
+	{
+		this.set_select_viewport(true);
+
+		if (this.display_elem_using_rows)
+		{
+			return;
+		}
+
+		var content_rect = document.getElementById('buffer_content_pannel').getBoundingClientRect();
+		var header_rect = document.getElementById('buffer_content_header').getBoundingClientRect();
+
+		var html_x = event.clientX - content_rect.left;
+		var html_y = event.clientY - content_rect.top - header_rect.height;
+
+		var new_selected_address = Math.floor(html_y / k_buffer_pixel_per_row);
+
+		if (new_selected_address != this.selected_address && new_selected_address < this.resource_desc['NumElements'])
+		{
+			this.selected_address = new_selected_address;
+			this.refresh_buffer_visualization();
+		}
+	}
+
+	onclick_buffer_viewport(event)
+	{
+		this.set_select_viewport(true);
+	}
+
+	set_select_viewport(selected)
+	{
+		if (this.viewport_selected === selected)
+		{
+			return;
+		}
+
+		this.viewport_selected = selected;
+		if (this.viewport_selected)
+		{
+			var buffer_view = this;
+			document.getElementById('buffer_outter').classList.add('selected');
+			document.getElementById('buffer_viewport').style.overflow = 'scroll';
+			//document.getElementById('buffer_viewport').style.margin = '0px 0px 0px 0px';
+		}
+		else
+		{
+			document.getElementById('buffer_outter').classList.remove('selected');
+			document.getElementById('buffer_viewport').style.overflow = 'hidden';
+			//document.getElementById('buffer_viewport').style.margin = `0px ${k_scroll_width}px ${k_scroll_width}px 0px`;
+		}
+	}
+
+	update_buffer_scroll(force_refresh)
+	{
+		var buffer_viewport = document.getElementById('buffer_viewport');
+
+		var new_display_row_start = Math.max(2 * Math.floor((buffer_viewport.scrollTop / k_buffer_pixel_per_row) * 0.5), 0);
+
+		if (new_display_row_start != this.display_row_start || force_refresh)
+		{
+			this.display_row_start = new_display_row_start;
+			this.refresh_buffer_visualization(/* refresh_header = */ false);
+		}
+	}
+
+	go_to_address()
+	{
+		var byte_per_element = this.resource_desc['BytesPerElement'];
+
+		var address = document.getElementById('buffer_address_input').value;
+		if (address == '')
+		{
+			if (this.selected_address != -1)
+			{
+				this.selected_address = -1;
+				this.update_buffer_scroll(/* force_refresh = */ true);
+			}
+			return;
+		}
+
+		var element_id = Math.floor(Number(address) / byte_per_element);
+		if (element_id < this.resource_desc['NumElements'])
+		{
+			this.selected_address = element_id;
+
+			var buffer_viewport = document.getElementById('buffer_viewport');
+			buffer_viewport.scrollTop = (element_id - 5) * k_buffer_pixel_per_row;
+
+			this.update_buffer_scroll(/* force_refresh = */ true);
+		}
+	}
+
+	refresh_buffer_visualization(refresh_header)
+	{
+		var byte_per_element = this.resource_desc['BytesPerElement'];
+		var num_element = this.resource_desc['NumElements'];
+
+		var member_count = 0;
+		var member_names = [];
+		var member_byte_offset = [];
+		var member_format = [];
+		if (this.structure_metadata)
+		{
+			var member_search = document.getElementById('buffer_visualization_member_search').value;
+
+			iterate_structure_members(this.structure_metadata, function(it) {
+				var column_format = undefined;
+				if (it.base_type == 'UBMT_INT32')
+				{
+					column_format = 'int';
+				}
+				else if (it.base_type == 'UBMT_UINT32')
+				{
+					column_format = 'uint';
+				}
+				else if (it.base_type == 'UBMT_FLOAT32')
+				{
+					column_format = 'float';
+				}
+				else
+				{
+					return;
+				}
+
+				if (member_search)
+				{
+					if (!it.cpp_name.toLowerCase().includes(member_search.toLowerCase()))
+					{
+						return;
+					}
+				}
+
+				const k_suffixes = ['.x', '.y', '.z', '.w'];
+
+				var relative_offset = 0;
+				for (var elem_id = 0; elem_id < Math.max(it.member['NumElements'], 1); elem_id++)
+				{
+					for (var row_id = 0; row_id < Math.max(it.member['NumRows'], 1); row_id++)
+					{
+						for (var column_id = 0; column_id < it.member['NumColumns']; column_id++)
+						{
+							var name = it.cpp_name;
+
+							if (it.member['NumElements'] > 0)
+							{
+								name += `[${elem_id}]`;
+							}
+							if (it.member['NumRows'] > 1)
+							{
+								name += k_suffixes[row_id];
+							}
+							if (it.member['NumColumns'] > 1)
+							{
+								name += k_suffixes[column_id];
+							}
+
+							member_count += 1;
+							member_byte_offset.push(it.byte_offset + relative_offset);
+							member_format.push(column_format);
+							member_names.push(name);
+
+							relative_offset += 4;
+						}
+					}
+				}
+			});
+		}
+		else
+		{
+			member_count = byte_per_element / 4;
+
+			var text_format = document.getElementById('buffer_visualization_format').value;
+
+			var column_formats = text_format.split(',');
+
+			var byte_offset = 0;
+
+			column_formats.forEach(function(value, index) {
+				var format_to_use = value.trim();
+
+				member_byte_offset.push(byte_offset);
+				member_format.push(format_to_use);
+				member_names.push(format_to_use);
+
+				byte_offset += 4;
+			});
+
+			for (var i = member_format.length; i < member_count; i++)
+			{
+				var format_to_use = member_format[i % column_formats.length];
+
+				member_byte_offset.push(byte_offset);
+				member_format.push(format_to_use);
+				member_names.push(format_to_use);
+
+				byte_offset += 4;
+			}
+
+		}
+
+		var column_count = member_count;
+		var row_count = num_element;
+		if (this.display_elem_using_rows)
+		{
+			if (this.structure_metadata)
+			{
+				column_count = 2;
+			}
+			else
+			{
+				column_count = 1;
+			}
+			row_count = member_count;
+		}
+
+		var display_start_row_id = Math.max(this.display_row_start - k_buffer_display_row_buffer, 0);
+		var display_row_count = Math.min(row_count - display_start_row_id, k_buffer_max_display_row_count + 2 * k_buffer_display_row_buffer);
+		var display_end_row_id = display_start_row_id + display_row_count;
+
+		var scroll_top = document.getElementById('buffer_viewport').scrollTop;
+
+		if (refresh_header)
+		{
+			var address_search_value = '';
+			if (document.getElementById('buffer_address_input'))
+			{
+				address_search_value = document.getElementById('buffer_address_input').value;
+			}
+
+			var classes = 'pretty_table';
+			if (this.display_elem_using_rows)
+			{
+				classes += ' display_elem_using_rows';
+			}
+
+			var resource_content = `
+				<table id="buffer_content_table" class="${classes}" width="100%">
+					<tr class="header" id="buffer_content_header">`;
+
+			if (this.display_elem_using_rows)
+			{
+				resource_content += `<td>Member</td><td>Value</td>`;
+				if (this.structure_metadata)
+				{
+					resource_content += `<td>Hex</td>`;
+				}
+			}
+			else
+			{
+				resource_content += `<td><input type="text" id="buffer_address_input" onchange="g_view.resource_view.go_to_address();" style="width: 100%;" placeholder="Address..." value="${address_search_value}" /></td>`;
+				for (var i = 0; i < member_count; i++)
+				{
+					resource_content += `<td>${member_names[i]}</td>`;
+				}
+			}
+
+			resource_content += `
+						<td></td>
+					</tr>
+				</table>`;
+
+			document.getElementById('buffer_content_pannel').innerHTML = resource_content;
+		}
+		else
+		{
+			var table_dom = document.getElementById("buffer_content_table");
+			while (table_dom.lastElementChild != table_dom.firstElementChild)
+			{
+				table_dom.removeChild(table_dom.lastElementChild);
+			}
+		}
+
+		{
+			// Start padding
+			var resource_content = ``;
+			{
+				resource_content += `
+					<tr>
+						<td style="height: ${k_buffer_pixel_per_row * display_start_row_id}px; padding: 0;"></td>
+					</tr>`;
+			}
+
+			for (var row_id = display_start_row_id; row_id < display_end_row_id; row_id++)
+			{
+				var elem_id = row_id;
+				if (this.display_elem_using_rows)
+				{
+					elem_id = 0;
+				}
+
+				var classes = '';
+				if (elem_id == this.selected_address)
+				{
+					classes = 'highlighted';
+				}
+
+				resource_content += `
+					<tr class="${classes}">`;
+
+				if (this.display_elem_using_rows)
+				{
+					resource_content += `
+						<td>${member_names[row_id]}</td>`;
+				}
+				else
+				{
+					resource_content += `
+						<td>0x${(elem_id * byte_per_element).toString(16)}</td>`;
+				}
+
+				for (var i = 0; i < column_count; i++)
+				{
+					var member_id = i;
+					if (this.display_elem_using_rows)
+					{
+						member_id = row_id;
+					}
+
+					var byte_offset = byte_per_element * elem_id + member_byte_offset[member_id];
+
+					var value = null;
+					var display = member_format[member_id];
+
+					if (this.display_elem_using_rows && i == 1 && this.structure_metadata)
+					{
+						display = `hex(${display})`;
+					}
+
+					if (display == 'float')
+					{
+						value = decode_float32((new Uint32Array(this.raw_buffer_data, byte_offset, 1))[0]);
+					}
+					else if (display == 'half')
+					{
+						value = decode_float16((new Uint16Array(this.raw_buffer_data, byte_offset, 1))[0]);
+					}
+					else if (display == 'int')
+					{
+						value = (new Int32Array(this.raw_buffer_data, byte_offset, 1))[0];
+					}
+					else if (display == 'uint')
+					{
+						value = (new Uint32Array(this.raw_buffer_data, byte_offset, 1))[0];
+					}
+					else if (display == 'short')
+					{
+						value = (new Int16Array(this.raw_buffer_data, byte_offset, 1))[0];
+					}
+					else if (display == 'ushort')
+					{
+						value = (new Uint16Array(this.raw_buffer_data, byte_offset, 1))[0];
+					}
+					else if (display == 'char')
+					{
+						value = (new Int8Array(this.raw_buffer_data, byte_offset, 1))[0];
+					}
+					else if (display == 'uchar')
+					{
+						value = (new Uint8Array(this.raw_buffer_data, byte_offset, 1))[0];
+					}
+					else if (display == 'hex(int)' || display == 'hex(uint)' || display == 'hex(float)')
+					{
+						value = '0x' + (new Uint32Array(this.raw_buffer_data, byte_offset, 1))[0].toString(16).padStart(8, 0);
+					}
+					else if (display == 'hex(short)' || display == 'hex(ushort)' || display == 'hex(half)')
+					{
+						value = '0x' + (new Uint16Array(this.raw_buffer_data, byte_offset, 1))[0].toString(16).padStart(4, 0);
+					}
+					else if (display == 'hex(char)' || display == 'hex(uchar)')
+					{
+						value = '0x' + (new Uint8Array(this.raw_buffer_data, byte_offset, 1))[0].toString(16).padStart(2, 0);
+					}
+					else if (display == 'bin(int)' || display == 'bin(uint)' || display == 'bin(float)')
+					{
+						value = '0b' + (new Uint32Array(this.raw_buffer_data, byte_offset, 1))[0].toString(2).padStart(32, 0);
+					}
+					else if (display == 'bin(short)' || display == 'bin(ushort)' || display == 'bin(half)')
+					{
+						value = '0b' + (new Uint16Array(this.raw_buffer_data, byte_offset, 1))[0].toString(2).padStart(16, 0);
+					}
+					else if (display == 'bin(char)' || display == 'bin(uchar)')
+					{
+						value = '0b' + (new Uint8Array(this.raw_buffer_data, byte_offset, 1))[0].toString(2).padStart(8, 0);
+					}
+					else
+					{
+						value = `Unknown ${display}`;
+					}
+
+					resource_content += `<td>${value}</td>`;
+				}
+
+				resource_content += `
+						<td></td>
+					</tr>`;
+			} // for (var row_id = display_start_row_id; row_id < display_end_row_id; row_id++)
+
+			if (row_count == 0)
+			{
+				resource_content += `
+					<tr>
+						<td colspan="${column_count + 2}" class="empty" align="center">Empty</td>
+					</tr>`;
+			}
+
+			// End padding
+			{
+				resource_content += `
+					<tr>
+						<td style="height: ${k_buffer_pixel_per_row * (row_count - display_end_row_id)}px; padding: 0;"></td>
+					</tr>`;
+			}
+
+			document.getElementById('buffer_content_table').innerHTML += resource_content;
+		}
+
+		document.getElementById('buffer_viewport').scrollTop = scroll_top;
+
+		{
+			var min_row_count = 10;
+			document.getElementById('buffer_viewport').style.height = `${k_style_scroll_width + Math.min(Math.max(row_count + 1, min_row_count), k_buffer_max_display_row_count) * k_buffer_pixel_per_row}px`;
+		}
+	}
+
+	release()
+	{
+		this.raw_buffer_data = null;
+	}
+} // class GenericBufferView
+
+
+class BufferView extends GenericBufferView
+{
+	constructor(subresource_version_info, resource_desc)
+	{
+		super(subresource_version_info, resource_desc);
+		this.raw_buffer_data_path = `Resources/${get_subresource_unique_version_name(this.subresource_version_info)}.bin`;
+
+		if (resource_desc['Metadata'] != k_null_json_ptr)
+		{
+			this.structure_metadata = load_structure_metadata(resource_desc['Metadata']);
+		}
+	}
+} // class BufferView
+
+
+// -------------------------------------------------------------------- PARAMETER STRUCTURE
+
+class ParameterStructureView extends GenericBufferView
+{
+	constructor(subresource_version_info, resource_desc, structure_metadata)
+	{
+		super(subresource_version_info, resource_desc);
+		this.raw_buffer_data_path = `Structures/${subresource_version_info['resource']}.bin`;
+		this.structure_metadata = structure_metadata;
+	}
+
+} // class ParameterStructureView
+
+function display_pass_parameters(pass_id)
+{
+	display_pass_internal(pass_id);
+
+	var pass_data = g_passes[pass_id];
+	var structure_metadata = load_structure_metadata(pass_data['ParametersMetadata']);
+
+	var subresource_version_info = {};
+	subresource_version_info['subresource'] = null;
+	subresource_version_info['resource'] = pass_data['Parameters'];
+	subresource_version_info['pass'] = pass_data['Pointer'];
+	subresource_version_info['draw'] = -1;
+
+	var resource_desc = {};
+	resource_desc['Name'] = 'PassParameters';
+	resource_desc['ByteSize'] = structure_metadata['Size'];
+	resource_desc['Desc'] = 'FRDGParameterStruct';
+	resource_desc['BytesPerElement'] = resource_desc['ByteSize'];
+	resource_desc['NumElements'] = 1;
+	resource_desc['Metadata'] = pass_data['ParametersMetadata'];
+	resource_desc['Usage'] = [];
+
+	g_view.set_resource_view(new ParameterStructureView(subresource_version_info, resource_desc, structure_metadata));
+}
+
+
+// -------------------------------------------------------------------- GENERIC 3D STRUCTURE VIEW
+
+class Generic3DStructureView extends ResourceView
+{
+	constructor(subresource_version_info, resource_desc)
+	{
+		super(subresource_version_info, resource_desc);
+		this.is_ready = false;
+		this.release();
+		this.camera_pos = [200.0, 200.0, 200.0];
+		this.camera_fov = 90.0;
+		this.camera_longitude = 0.0;
+		this.camera_latitude = 0.0;
+		this.camera_look_at([0.0, 0.0, 0.0]);
+		this.camera_movement_u = 0;
+		this.camera_movement_v = 0;
+		this.camera_movement_z = 0;
+		this.camera_movement_speed = 100.0; // 1 m/s
+		this.prev_time = 0;
+	}
+
+	setup_html(parent_dom)
+	{
+		var resource_info_htmls = '';
+		{
+			resource_info_htmls += `
+				<table width="100%" class="pretty_table resource_desc">`;
+			
+			for (var key in this.resource_desc)
+			{
+			    if (this.resource_desc.hasOwnProperty(key)){
+					resource_info_htmls += `
+						<tr>
+							<td>${key}</td>
+							<td>${this.resource_desc[key]}</td>
+						</tr>`;
+			    }
+			}
+
+			resource_info_htmls += `
+				</table>`;
+		}
+
+		var title = prettify_subresource_unique_name(this.subresource_version_info, this.resource_desc);
+		if (this.subresource_version_info['draw'] >= 0)
+		{
+			title += ` draw:${this.subresource_version_info['draw']}`;
+		}
+
+		var html = `
+			<div class="main_div">
+				<div class="selection_list_title">Ray-tracing Acceleration Structure visualization: ${title}</div>
+				<div id="canvas_outter">
+					<div id="canvas_header">
+						<div class="button_list">
+							<input type="button" onclick="g_view.resource_view.copy_canvas_to_clipboard();" value="Copy to clipboard"/>
+						</div>
+					</div>
+					<canvas
+						id="generic_3d_visualization_canvas"
+						width="100"
+						height="100"
+						style="width: 100px; height: 100px;"></canvas>
+				</div>
+				<table width="100%">
+					<tr>
+						<td width="50%">
+							<div class="selection_list_title">Buffer descriptor</div>
+							${resource_info_htmls}
+						</td>
+					</tr>
+				</table>
+			</div>`;
+
+		parent_dom.innerHTML = html;
+
+		// Init WebGL 2.0
+		this.init_gl();
+
+		// Setup mouse motion callback
+		{
+			var generic_3d_view = this;
+
+			this.canvas.onclick = function(event) { generic_3d_view.onclick_canvas(); };
+			document.getElementById('canvas_outter').onmouseleave = function(event) { generic_3d_view.set_select_viewport(false); }
+		}
+
+		this.init();
+	}
+
+	init_gl()
+	{
+		var gl_ctx_attributes = {
+			antialias: false,
+  			depth: false
+		};
+
+		// Init WebGL 2.0
+		this.canvas = document.getElementById('generic_3d_visualization_canvas');
+
+		var gl_ctx_attributes = {
+			alpha: true,
+  			// premultipliedAlpha: true, // TODO
+			antialias: false,
+  			depth: true,
+  			stencil: false,
+  			powerPreference: "low-power",
+  			preserveDrawingBuffer: true,
+  			xrCompatible: false,
+		};
+
+		var gl = this.canvas.getContext('webgl2', gl_ctx_attributes);
+		this.gl = gl;
+
+		// Init WebGL extensions
+		{
+			var available_extensions = this.gl.getSupportedExtensions();
+			var required_extensions = ['EXT_texture_norm16'];
+
+			this.gl_ext = {};
+
+			var gl = this.gl;
+			var gl_ext = this.gl_ext;
+			required_extensions.forEach(function(ext_name)
+			{
+				gl_ext[ext_name] = gl.getExtension(ext_name);
+			});
+		}
+
+		// Create unit cube buffers exactly like GUnitCubeVertexBuffer and GUnitCubeIndexBuffer
+		{
+			var unit_cube_vertices = new Array(8 * 3);
+			for (var z = 0; z < 2; z++)
+			{
+				for (var y = 0; y < 2; y++)
+				{
+					for (var x = 0; x < 2; x++)
+					{
+						var dest = x * 4 + y * 2 + z;
+						unit_cube_vertices[dest * 3 + 0] = x ? -100.0 : 100.0;
+						unit_cube_vertices[dest * 3 + 1] = y ? -100.0 : 100.0;
+						unit_cube_vertices[dest * 3 + 2] = z ? -100.0 : 100.0;
+					}
+				}
+			}
+
+			var unit_cube_indices = [
+				0, 2, 3,
+				0, 3, 1,
+				4, 5, 7,
+				4, 7, 6,
+				0, 1, 5,
+				0, 5, 4,
+				2, 6, 7,
+				2, 7, 3,
+				0, 4, 6,
+				0, 6, 2,
+				1, 3, 7,
+				1, 7, 5,
+			];
+
+			this.gl_unit_cube = {}
+			this.gl_unit_cube.vertex_buffer = gl_create_vertex_buffer(gl, new Float32Array(unit_cube_vertices));
+			this.gl_unit_cube.index_buffer = gl_create_index_buffer(gl, new Uint16Array(unit_cube_indices));
+			this.gl_unit_cube.index_count = unit_cube_indices.length;
+		}
+
+		// Create simple shader program
+		{
+			var vert_code = `
+uniform mat4 local_to_world;
+uniform mat4 world_to_view;
+uniform mat4 view_to_clip;
+
+in vec3 vertex_coordinates;
+out vec3 interpolator_world;
+
+void main(void) {
+	vec4 world_pos = local_to_world * vec4(vertex_coordinates.xyz, 1.0);
+	vec4 view_pos = world_to_view * world_pos;
+	vec4 clip_pos = view_to_clip * view_pos;
+
+	gl_Position = clip_pos;
+	interpolator_world = world_pos.xyz;
+}`;
+
+			var frag_code = `
+in vec3 interpolator_world;
+out vec4 display;
+
+void main(void) {
+	vec3 normal = normalize(cross(dFdx(interpolator_world), dFdy(interpolator_world)));
+
+	display = vec4(normal * 0.5 + 0.5, 1.0);
+}`;
+
+			this.gl_shader_program_simple = gl_create_shader_program(gl, vert_code, frag_code);
+		}
+
+		// Set unpacking alignement to 1 to allow uploading texture size not multple of 4 
+		gl.pixelStorei(gl.UNPACK_ALIGNMENT, 1);
+	}
+
+	release_gl()
+	{
+		this.canvas = null;
+		this.gl = null;
+		this.gl_ext = null;
+		this.gl_unit_cube_vertex_buffer = null;
+		this.gl_unit_cube_index_buffer = null;
+		this.gl_shader_program_simple = null;
+	}
+
+	draw_canvas()
+	{
+		console.error('unimplemented');
+	}
+
+	init()
+	{
+		console.error('unimplemented');
+	}
+
+	release()
+	{
+		this.viewport_selected = false;
+		this.release_gl();
+		this.set_select_viewport(false);
+	}
+
+	resize(ctx)
+	{
+		var dpi = window.devicePixelRatio || 1;
+		var viewport_width = ctx.width - 2 * k_style_padding_size - 2;
+		var viewport_height = viewport_width * 9.0 / 16.0;
+
+		var canvas_outter = document.getElementById('canvas_outter');
+
+		this.canvas.style.width = `${viewport_width}px`;
+		this.canvas.style.height = `${viewport_height}px`;
+		this.canvas.width = Math.round(viewport_width * dpi);
+		this.canvas.height = Math.round(viewport_height * dpi);
+	}
+
+	onclick_canvas()
+	{
+		if (!this.is_ready)
+		{
+			return;
+		}
+
+		this.set_select_viewport(!this.viewport_selected);
+	}
+
+	set_select_viewport(selected)
+	{
+		if (this.viewport_selected === selected)
+		{
+			return;
+		}
+
+		this.viewport_selected = selected;
+
+		this.canvas.oncontextmenu = function(event) { return false; };
+
+		var canvas_outter = document.getElementById('canvas_outter');
+
+		if (this.viewport_selected)
+		{
+			var generic_3d_view = this;
+			canvas_outter.classList.add('selected');
+			//this.canvas.style.cursor = 'none';
+			this.canvas.onmousemove = function(event) { generic_3d_view.canvas_onmousemove(event); };
+			this.canvas.onwheel = function(event) { return generic_3d_view.canvas_onmousewheel(event); };
+
+			this.keydown_event = function(event) { generic_3d_view.canvas_onkeydown(event); };
+			this.keyup_event = function(event) { generic_3d_view.canvas_onkeyup(event); };
+			document.addEventListener(
+				"keydown",
+				this.keydown_event,
+				false);
+			document.addEventListener(
+				"keyup",
+				this.keyup_event,
+				false);
+
+			this.shedule_next_tick(performance.now());
+		}
+		else
+		{
+			canvas_outter.classList.remove('selected');
+			this.canvas.style.cursor = 'default';
+			this.canvas.onmousemove = null;
+			this.canvas.onwheel = null;
+
+			document.removeEventListener(
+				"keydown",
+				this.keydown_event);
+			document.removeEventListener(
+				"keyup",
+				this.keyup_event);
+
+			this.camera_movement_u = 0;
+			this.camera_movement_v = 0;
+			this.camera_movement_z = 0;
+		}
+	}
+
+	canvas_onmousemove(event)
+	{
+		var dx = event.movementX;
+		var dy = event.movementY;
+
+		var speed = (Math.PI / 180.0);
+
+		this.camera_longitude -= dx * speed;
+		this.camera_latitude = Math.min(Math.max(this.camera_latitude - dy * speed, -0.4 * Math.PI), 0.4 * Math.PI);
+	}
+
+	canvas_onmousewheel(event)
+	{
+		var zooming_in = event.deltaY < 0.0;
+
+		if (zooming_in)
+		{
+			this.camera_movement_speed *= 2.0;
+		}
+		else
+		{
+			this.camera_movement_speed *= 0.5;
+		}
+
+		return false;
+	}
+
+	canvas_onkeydown(event)
+	{
+		if (event.key == 'w')
+		{
+			this.camera_movement_z = 1.0;
+		}
+		else if (event.key == 's')
+		{
+			this.camera_movement_z = -1.0;
+		}
+		else if (event.key == 'q')
+		{
+			this.camera_movement_v = 1.0;
+		}
+		else if (event.key == 'e')
+		{
+			this.camera_movement_v = -1.0;
+		}
+		else if (event.key == 'a')
+		{
+			this.camera_movement_u = -1.0;
+		}
+		else if (event.key == 'd')
+		{
+			this.camera_movement_u = 1.0;
+		}
+	}
+
+	canvas_onkeyup(event)
+	{
+		if (event.key == 'w' && this.camera_movement_z > 0.0)
+		{
+			this.camera_movement_z = 0.0;
+		}
+		else if (event.key == 's' && this.camera_movement_z < 0.0)
+		{
+			this.camera_movement_z = 0.0;
+		}
+		else if (event.key == 'q' && this.camera_movement_v > 0.0)
+		{
+			this.camera_movement_v = 0.0;
+		}
+		else if (event.key == 'e' && this.camera_movement_v < 0.0)
+		{
+			this.camera_movement_v = 0.0;
+		}
+		else if (event.key == 'a' && this.camera_movement_u < 0.0)
+		{
+			this.camera_movement_u = 0.0;
+		}
+		else if (event.key == 'd' && this.camera_movement_u > 0.0)
+		{
+			this.camera_movement_u = 0.0;
+		}
+	}
+
+	copy_canvas_to_clipboard()
+	{
+		if (!this.is_ready)
+		{
+			return;
+		}
+		
+		var pass_data = g_view.pass_data;
+
+		var is_output_resource = is_pass_output_resource(pass_data, this.subresource_version_info);
+
+		var text = '';
+		text += `Dump:\n\t${g_infos['Project']} - ${g_infos['Platform']} - ${g_infos['RHI']} - ${g_infos['BuildVersion']} - ${g_infos['DumpTime']}\n\t${get_current_navigation()}\n`
+		text += `Pass:\n\t${pass_data['EventName']}\n`;
+
+		{
+			var name = prettify_subresource_unique_name(this.subresource_version_info, this.resource_desc);
+			text += `${is_output_resource ? 'Output' : 'Input'} resource:\n\t${name}\n`;
+		}
+
+		copy_canvas_to_clipboard(this.canvas, text);
+	}
+
+	camera_look_at(pos)
+	{
+		var camera_dir_x = pos[0] - this.camera_pos[0];
+		var camera_dir_y = pos[1] - this.camera_pos[1];
+		var camera_dir_z = pos[2] - this.camera_pos[2];
+		var camera_dir_len = Math.sqrt(camera_dir_x * camera_dir_x + camera_dir_y * camera_dir_y + camera_dir_z * camera_dir_z);
+
+		this.camera_longitude = Math.atan2(camera_dir_y / camera_dir_len, camera_dir_x / camera_dir_len);
+		this.camera_latitude = Math.asin(camera_dir_z / camera_dir_len);
+	}
+
+	get_view_matrix()
+	{
+		var camera_dir = [
+			Math.cos(this.camera_longitude) * Math.cos(this.camera_latitude),
+			Math.sin(this.camera_longitude) * Math.cos(this.camera_latitude),
+			Math.sin(this.camera_latitude),
+		];
+
+		return create_view_matrix(this.camera_pos, camera_dir);
+	}
+
+	get_proj_matrix()
+	{
+		if (false)
+		{
+			var width = 4.0;
+			var depth = 100.0;
+
+			var matrix = create_null_matrix();
+			matrix[0 + 0 * 4] = 1.0 / width;
+			matrix[1 + 1 * 4] = matrix[0 + 0 * 4] * this.canvas.width / this.canvas.height;
+			matrix[2 + 2 * 4] = - 1.0 / depth;
+			matrix[2 + 3 * 4] = 1.0;
+			matrix[3 + 3 * 4] = 1.0;
+			return matrix;
+		}
+
+		return create_projection_matrix_reverse_z_persepective(
+			this.camera_fov * 0.5, this.canvas.width / this.canvas.height, /* clipping_plane = */ 10.0);
+	}
+
+	shedule_next_tick(current_time)
+	{
+		var generic_3d_view = this;
+		this.prev_time = current_time;
+		requestAnimationFrame((new_time) => {
+    		generic_3d_view.tick(new_time);
+  		});
+	}
+
+	tick(current_time)
+	{
+		if (!this.viewport_selected)
+		{
+			return;
+		}
+
+		var delta_seconds = current_time - this.prev_time;
+
+		{
+			var delta_movements = 0.01 * delta_seconds * this.camera_movement_speed;
+
+			var camera_dir = [
+				Math.cos(this.camera_longitude) * Math.cos(this.camera_latitude),
+				Math.sin(this.camera_longitude) * Math.cos(this.camera_latitude),
+				Math.sin(this.camera_latitude),
+			];
+
+			var camera_dir_u = [
+				Math.sin(this.camera_longitude),
+				-Math.cos(this.camera_longitude),
+				0.0,
+			];
+
+			var camera_dir_v = [
+				Math.cos(this.camera_longitude) * Math.sin(-this.camera_latitude),
+				Math.sin(this.camera_longitude) * Math.sin(-this.camera_latitude),
+				Math.cos(this.camera_latitude),
+			];
+
+			this.camera_pos[0] += delta_movements * (
+				this.camera_movement_z * camera_dir[0] +
+				this.camera_movement_u * camera_dir_u[0] +
+				this.camera_movement_v * camera_dir_v[0]);
+			this.camera_pos[1] += delta_movements * (
+				this.camera_movement_z * camera_dir[1] +
+				this.camera_movement_u * camera_dir_u[1] +
+				this.camera_movement_v * camera_dir_v[1]);
+			this.camera_pos[2] += delta_movements * (
+				this.camera_movement_z * camera_dir[2] +
+				this.camera_movement_u * camera_dir_u[2] +
+				this.camera_movement_v * camera_dir_v[2]);
+		}
+
+		this.draw_canvas();
+		this.shedule_next_tick(current_time);
+	}
+} // class Generic3DStructureView
+
+
+// -------------------------------------------------------------------- HARDWARE ACCELERATION STRUCTURE
+
+class RaytracingAccelerationStructureView extends Generic3DStructureView
+{
+	constructor(subresource_version_info, resource_desc)
+	{
+		super(subresource_version_info, resource_desc);
+		this.draw_calls = [];
+		this.scene_visualization_shader_programs = {};
+		this.scene_visualization = 'Instances';
+	}
+
+	init()
+	{
+		document.getElementById('canvas_header').innerHTML += `
+			<div class="button_list" id="change_scene_visualization"><!---
+				---><input type="button" onclick="g_view.resource_view.change_scene_visualization(this);" value="Instances"/><!--- 
+				---><input type="button" onclick="g_view.resource_view.change_scene_visualization(this);" value="Normals"/>
+			</div>`;
+
+		update_value_selection(document.getElementById('change_scene_visualization'), this.scene_visualization);
+
+		// Create visualization shader programs
+		this.scene_visualization_shader_programs = {};
+		{
+			var vert_code = `
+uniform mat4 local_to_world;
+uniform mat4 world_to_view;
+uniform mat4 view_to_clip;
+
+in vec3 vertex_coordinates;
+out vec3 interpolator_world;
+
+void main(void) {
+	vec4 world_pos = local_to_world * vec4(vertex_coordinates.xyz, 1.0);
+	vec4 view_pos = world_to_view * world_pos;
+	vec4 clip_pos = view_to_clip * view_pos;
+
+	gl_Position = clip_pos;
+	interpolator_world = world_pos.xyz;
+}`;
+
+			var frag_normals_code = `
+in vec3 interpolator_world;
+out vec4 display;
+
+void main(void) {
+	vec3 normal = normalize(cross(dFdx(interpolator_world), dFdy(interpolator_world)));
+
+	display = vec4(normal * 0.5 + 0.5, 1.0);
+}`;
+
+			var frag_instances_code = `
+uniform uint instance_index;
+
+in vec3 interpolator_world;
+out vec4 display;
+
+uint MurmurMix(uint Hash)
+{
+	Hash ^= Hash >> 16u;
+	Hash *= 0x85ebca6bu;
+	Hash ^= Hash >> 13u;
+	Hash *= 0xc2b2ae35u;
+	Hash ^= Hash >> 16u;
+	return Hash;
+}
+
+vec3 IntToColor(uint Index)
+{
+	uint Hash = MurmurMix(Index);
+
+	vec3 Color = vec3
+	(
+		(Hash >>  0u) & 255u,
+		(Hash >>  8u) & 255u,
+		(Hash >> 16u) & 255u
+	);
+
+	return Color * (1.0f / 255.0f);
+}
+
+void main(void) {
+	vec3 normal = normalize(cross(dFdx(interpolator_world), dFdy(interpolator_world)));
+
+	vec3 vert_color = IntToColor(1u + instance_index);
+	vec3 base_color = vert_color * pow(gl_FragCoord.w, 0.1);
+
+	display = vec4(mix(base_color, normal * 0.5 + 0.5, 1.0 / 3.0), 1.0);
+}`;
+
+			this.scene_visualization_shader_programs['Normals'] = gl_create_shader_program(
+				this.gl, vert_code, frag_normals_code);
+			this.scene_visualization_shader_programs['Instances'] = gl_create_shader_program(
+				this.gl, vert_code, frag_instances_code);
+		}
+
+		var raytracing_view = this;
+		var subresource_version_name = get_subresource_unique_version_name(this.subresource_version_info);
+
+		load_resource_binary_file(`Resources/${subresource_version_name}.bin`, function(raw_raytracing_data)
+		{
+			if (raw_raytracing_data)
+			{
+				raytracing_view.parse_raw_raytracing_data(raw_raytracing_data);
+				raytracing_view.is_ready = true;
+			}
+			else
+			{
+				raytracing_view.error(`Error: Resources/${subresource_version_name}.bin couldn't be loaded.`);
+			}
+		});
+
+		document.title = `${g_view.pass_data['EventName']} - ${this.resource_desc['Name']}`;
+	}
+
+	parse_raw_raytracing_data(raw_raytracing_data)
+	{
+		var is_little_endian = true;
+
+		var data_view = new DataView(raw_raytracing_data);
+		var data_byte_offset = 0;
+
+		function set_byte_offset(byte_offset)
+		{
+			data_byte_offset = byte_offset;
+		}
+
+		function skip_bytes(byte_offset)
+		{
+			data_byte_offset += byte_offset;
+		}
+
+		function read_uint8()
+		{
+			var r = data_view.getUint8(data_byte_offset);
+			data_byte_offset += 1;
+			return r;
+		}
+
+		function read_uint32()
+		{
+			var r = data_view.getUint32(data_byte_offset, is_little_endian);
+			data_byte_offset += 4;
+			return r;
+		}
+
+		function read_uint64()
+		{
+			var l = BigInt(data_view.getUint32(data_byte_offset, is_little_endian));
+			var r = BigInt(data_view.getUint32(data_byte_offset + 4, is_little_endian));
+			data_byte_offset += 8;
+			return is_little_endian
+    			? l + BigInt(2 ** 32) * r
+    			: BigInt(2 ** 32) * l + r;
+		}
+
+		function read_uint32_array(size)
+		{
+			var r = new Array(size);
+			for (var i = 0; i < size; i++)
+			{
+				r[i] = data_view.getUint32(data_byte_offset, is_little_endian);
+				data_byte_offset += 4;
+			}
+			return r;
+		}
+
+		function read_float32_array(size)
+		{
+			var r = new Array(size);
+			for (var i = 0; i < size; i++)
+			{
+				r[i] = data_view.getFloat32(data_byte_offset, is_little_endian);
+				data_byte_offset += 4;
+			}
+			return r;
+		}
+
+		function assert_magic(magic)
+		{
+			var m = read_uint64();
+			if (magic !== m)
+			{
+				throw new Error(`Magic assertion ${magic} failed`);
+			}
+		}
+
+		const MaxNumLayers = 64;
+
+		// UE::HWRTScene::FSceneHeader
+		assert_magic(0x72ffa3376f48683bn);
+		assert_magic(1n);
+		var Offsets_Instances = read_uint32();
+		var Offsets_Geometries = read_uint32();
+		var Offsets_Buffers = read_uint32();
+		var Offsets_Strings = read_uint32();
+		var NumLayers = read_uint32();
+		var PerLayerNumInstances = read_uint32_array(MaxNumLayers);
+		var NumInstances = read_uint32();
+		var NumGeometries = read_uint32();
+		var NumBuffers = read_uint32();
+		var NumStrings = read_uint32();
+		skip_bytes(4 * 2);
+
+		set_byte_offset(Offsets_Instances);
+		var Instances = [];
+		for (var i = 0; i < NumInstances; i++)
+		{
+			var NewInstance = {};
+			Instances.push(NewInstance);
+
+			set_byte_offset(Offsets_Instances + i * (3 * 4 * 4 + 4 * 2 + 8));
+
+			// UE::HWRTScene::FInstanceDesc
+			NewInstance.Transform = read_float32_array(3 * 4);
+			var A = read_uint32();
+			var B = read_uint32();
+			NewInstance.InstanceID   = (A >>  0) & 0xFFFFFF;
+			NewInstance.InstanceMask = (A >> 24) & 0xFF;
+			NewInstance.InstanceContributionToHitGroupIndex = (B >>  0) & 0xFFFFFF;
+			NewInstance.Flags        = (B >> 24) & 0xFF;
+			NewInstance.AccelerationStructure = read_uint64();
+		}
+
+		// UE::HWRTScene::FGeometryHeader
+		set_byte_offset(Offsets_Geometries);
+		var Geometries = [];
+		for (var GeometryIndex = 0; GeometryIndex < NumGeometries; GeometryIndex++)
+		{
+			var Geometry = {};
+			Geometries.push(Geometry);
+
+			assert_magic(0x47226e42ad539683n);
+			Geometry.IndexBuffer = read_uint32();
+			Geometry.NumSegments = read_uint32();
+			skip_bytes(4 + 4 + 8);
+
+			// UE::HWRTScene::FSegmentHeader
+			Geometry.Segments = [];
+			for (var SegmentIndex = 0; SegmentIndex < Geometry.NumSegments; SegmentIndex++)
+			{
+				var Segment = {};
+				Geometry.Segments.push(Segment);
+
+				Segment.VertexBuffer = read_uint32();
+				Segment.VertexType = read_uint32();
+				Segment.VertexBufferOffset = read_uint32();
+				Segment.VertexBufferStride = read_uint32();
+				Segment.MaxVertices = read_uint32();
+				Segment.FirstPrimitive = read_uint32();
+				Segment.NumPrimitives = read_uint32();
+
+				Segment.bForceOpaque = read_uint8();
+				Segment.bAllowDuplicateAnyHitShaderInvocation = read_uint8();
+				Segment.bEnabled = read_uint8();
+				skip_bytes(1);
+			}
+		}
+
+		// UE::HWRTScene::FBufferHeader
+		set_byte_offset(Offsets_Buffers);
+		var RawBuffers = [];
+		for (var BufferIndex = 0; BufferIndex < NumBuffers; BufferIndex++)
+		{
+			var RawBuffer = {};
+			RawBuffers.push(RawBuffer);
+
+			assert_magic(0x7330d54d0195a6den);
+			RawBuffer.SizeInBytes = read_uint32();
+			RawBuffer.StrideInBytes = read_uint32();
+			RawBuffer.ByteOffset = data_byte_offset;
+			skip_bytes(RawBuffer.SizeInBytes);
+		}
+
+		// Translate UE::HWRTScene to webgl draw calls
+		var webgl_buffers = new Array(RawBuffers.length);
+		var min_position = [0, 0, 0];
+		var max_position = [0, 0, 0];
+		var gl = this.gl;
+		for (var instance_index = 0; instance_index < NumInstances; instance_index++)
+		{
+			var Instance = Instances[instance_index];
+			var Geometry = Geometries[Instance.AccelerationStructure];
+			var IndexBuffer = RawBuffers[Geometry.IndexBuffer];
+
+			// only support indexed geometry right now
+			if (IndexBuffer.SizeInBytes == 0)
+			{
+				continue;
+			}
+
+			// Upload index buffer to GPU if not already.
+			if (!webgl_buffers[Geometry.IndexBuffer])
+			{
+				var indices = null;
+				if (IndexBuffer.StrideInBytes == 4)
+				{
+					indices = new Uint32Array(raw_raytracing_data, IndexBuffer.ByteOffset, IndexBuffer.SizeInBytes / 4);
+				}
+				else if (IndexBuffer.StrideInBytes == 2)
+				{
+					indices = new Uint16Array(raw_raytracing_data, IndexBuffer.ByteOffset, IndexBuffer.SizeInBytes / 2);
+				}
+				else if (IndexBuffer.StrideInBytes == 1)
+				{
+					indices = new Uint8Array(raw_raytracing_data, IndexBuffer.ByteOffset, IndexBuffer.SizeInBytes / 1);
+				}
+				else
+				{
+					throw Error(`Unknown IndexBuffer.StrideInBytes=${IndexBuffer.StrideInBytes}`);
+				}
+				console.assert(indices.byteOffset == IndexBuffer.ByteOffset);
+				console.assert(indices.byteLength == IndexBuffer.SizeInBytes);
+
+				webgl_buffers[Geometry.IndexBuffer] = gl_create_index_buffer(gl, indices);
+			}
+
+			// setup local to world
+			var local_to_world = create_identity_matrix();
+			{
+				local_to_world[0 + 0 * 4] = Instance.Transform[0 * 4 + 0];
+				local_to_world[1 + 0 * 4] = Instance.Transform[1 * 4 + 0];
+				local_to_world[2 + 0 * 4] = Instance.Transform[2 * 4 + 0];
+				local_to_world[0 + 1 * 4] = Instance.Transform[0 * 4 + 1];
+				local_to_world[1 + 1 * 4] = Instance.Transform[1 * 4 + 1];
+				local_to_world[2 + 1 * 4] = Instance.Transform[2 * 4 + 1];
+				local_to_world[0 + 2 * 4] = Instance.Transform[0 * 4 + 2];
+				local_to_world[1 + 2 * 4] = Instance.Transform[1 * 4 + 2];
+				local_to_world[2 + 2 * 4] = Instance.Transform[2 * 4 + 2];
+				local_to_world[0 + 3 * 4] = Instance.Transform[0 * 4 + 3];
+				local_to_world[1 + 3 * 4] = Instance.Transform[1 * 4 + 3];
+				local_to_world[2 + 3 * 4] = Instance.Transform[2 * 4 + 3];
+			}
+
+			for (var SegmentIndex = 0; SegmentIndex < Geometry.NumSegments; SegmentIndex++)
+			{
+				var Segment = Geometry.Segments[SegmentIndex];
+				var VertexBuffer = RawBuffers[Segment.VertexBuffer];
+
+				console.assert(Segment.VertexType == 3); // VET_Float3
+
+				// Upload vertex buffer to GPU if not already.
+				if (!webgl_buffers[Segment.VertexBuffer])
+				{
+					var vertices = new Float32Array(raw_raytracing_data, VertexBuffer.ByteOffset, VertexBuffer.SizeInBytes / 4);
+					console.assert(vertices.byteOffset == VertexBuffer.ByteOffset);
+					console.assert(vertices.byteLength == VertexBuffer.SizeInBytes);
+					webgl_buffers[Segment.VertexBuffer] = gl_create_vertex_buffer(gl, vertices);
+				}
+
+				var draw_call = {};
+				this.draw_calls.push(draw_call);
+
+				draw_call.local_to_world = local_to_world;
+				draw_call.instance_index = instance_index;
+				if (IndexBuffer.StrideInBytes == 4)
+				{
+					draw_call.index_type = gl.UNSIGNED_INT;
+				}
+				else if (IndexBuffer.StrideInBytes == 2)
+				{
+					draw_call.index_type = gl.UNSIGNED_SHORT;
+				}
+				else if (IndexBuffer.StrideInBytes == 1)
+				{
+					draw_call.index_type = gl.UNSIGNED_BYTE;
+				}
+				else
+				{
+					throw Error(`Unknown IndexBuffer.StrideInBytes=${IndexBuffer.StrideInBytes}`);
+				}
+				draw_call.index_byte_offset = Segment.FirstPrimitive * 3 * IndexBuffer.StrideInBytes;
+				draw_call.index_count = Segment.NumPrimitives * 3;
+
+				// create vertex array.
+				{
+					console.assert(Segment.VertexBufferStride == 12);
+					console.assert((Segment.VertexBufferOffset % Segment.VertexBufferStride) == 0);
+
+					draw_call.vertex_array = gl.createVertexArray();
+					gl.bindVertexArray(draw_call.vertex_array);
+					gl.bindBuffer(gl.ARRAY_BUFFER, webgl_buffers[Segment.VertexBuffer]);
+					gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, webgl_buffers[Geometry.IndexBuffer]);
+					gl.enableVertexAttribArray(0);
+					gl.vertexAttribPointer(0, 3, gl.FLOAT, false, Segment.VertexBufferStride, Segment.VertexBufferOffset);
+					gl.bindVertexArray(null);
+					console.assert(gl.getError() == gl.NO_ERROR); 
+				}
+
+				// Track the min and max instance position for seting up the camera over the entire scene.
+				if (instance_index == 0)
+				{
+					min_position[0] = Instance.Transform[0 * 4 + 3];
+					min_position[1] = Instance.Transform[1 * 4 + 3];
+					min_position[2] = Instance.Transform[2 * 4 + 3];
+
+					max_position[0] = Instance.Transform[0 * 4 + 3];
+					max_position[1] = Instance.Transform[1 * 4 + 3];
+					max_position[2] = Instance.Transform[2 * 4 + 3];
+				}
+				else
+				{
+					min_position[0] = Math.min(min_position[0], Instance.Transform[0 * 4 + 3]);
+					min_position[1] = Math.min(min_position[0], Instance.Transform[1 * 4 + 3]);
+					min_position[2] = Math.min(min_position[0], Instance.Transform[2 * 4 + 3]);
+
+					max_position[0] = Math.max(max_position[0], Instance.Transform[0 * 4 + 3]);
+					max_position[1] = Math.max(max_position[0], Instance.Transform[1 * 4 + 3]);
+					max_position[2] = Math.max(max_position[0], Instance.Transform[2 * 4 + 3]);
+				}
+			}
+		}
+
+		if (true)
+		{
+			this.camera_pos = max_position;
+			this.camera_look_at([(min_position[0] + max_position[0]) / 2, (min_position[1] + max_position[1]) / 2, (min_position[2] + max_position[2]) / 2]);
+		}
+
+		this.draw_canvas();
+	} // parse_raw_raytracing_data()
+
+	change_scene_visualization(new_scene_visualization)
+	{
+		if (!this.is_ready)
+		{
+			return;
+		}
+		
+		if (new_scene_visualization.value == this.scene_visualization)
+		{
+			return;
+		}
+
+		this.scene_visualization = new_scene_visualization.value;
+		update_value_selection(document.getElementById('change_scene_visualization'), this.scene_visualization);
+		this.draw_canvas();
+	}
+
+	draw_canvas()
+	{
+		var gl = this.gl;
+
+		var world_to_view = this.get_view_matrix();
+		var view_to_clip = this.get_proj_matrix();
+
+		// view_matrix[0 + 0 * 4] = 0.5;
+		// view_matrix[0 + 1 * 4] = 0.5;
+		// view_matrix[1 + 1 * 4] = 0.5;
+		// view_matrix[2 + 2 * 4] = 0.5;
+
+		gl.viewport(0, 0, this.canvas.width, this.canvas.height);
+		gl.clearColor(0.0, 0.0, 0.0, 0.0);
+		gl.clear(gl.COLOR_BUFFER_BIT);
+		
+		gl.clearDepth(0.0);
+		gl.clear(gl.DEPTH_BUFFER_BIT);
+
+		gl.enable(gl.DEPTH_TEST);
+		gl.depthFunc(gl.GEQUAL);
+
+		gl.disable(gl.CULL_FACE);
+		gl.cullFace(gl.FRONT_AND_BACK);
+
+		{
+			var shader_program = this.scene_visualization_shader_programs[this.scene_visualization];
+			gl.useProgram(shader_program);
+
+			var coord = gl.getAttribLocation(shader_program, "vertex_coordinates");
+			console.assert(coord == 0);
+
+			gl_set_uniform_mat4(gl, shader_program, 'local_to_world', create_identity_matrix());
+			gl_set_uniform_mat4(gl, shader_program, 'world_to_view', world_to_view);
+			gl_set_uniform_mat4(gl, shader_program, 'view_to_clip', view_to_clip);
+
+			for (var draw_call of this.draw_calls)
+			{
+				gl_set_uniform_mat4(gl, shader_program, 'local_to_world', draw_call.local_to_world);
+				gl_set_uniform_uint(gl, shader_program, 'instance_index', draw_call.instance_index);
+
+				gl.bindVertexArray(draw_call.vertex_array);
+				gl.drawElementsInstanced(
+					gl.TRIANGLES,
+					/* index_count = */       draw_call.index_count,
+					/* index_type = */        draw_call.index_type,
+					/* index_byte_offset = */ draw_call.index_byte_offset,
+					/* instanceCount = */     1);
+			}
+
+			gl.useProgram(null);
+			gl.bindVertexArray(null);
+		}
+	}
+
+	release()
+	{
+		super.release();
+		this.draw_calls = []
+		this.scene_visualization_shader_programs = {};
+	}
+} // class RaytracingAccelerationStructureView
+
+
+// -------------------------------------------------------------------- UI
+
+function update_href_selection(parent)
+{
+	var all_a = parent.getElementsByTagName("a");
+
+	var navs = [location.hash.substring(1)];
+	if (g_view)
+	{
+		navs = navs.concat(g_view.navigations);
+	}
+
+	for (let a of all_a)
+	{
+		var href = a.href.split('#');
+
+		if (navs.includes(`${href[1]}`))
+		{
+			a.classList.add('match_location_hash');
+		}
+		else if (a.classList.contains('match_location_hash'))
+		{
+			a.classList.remove('match_location_hash');
+		}
+	};
+}
+
+function update_value_selection(parent, selected_value)
+{
+	var all_a = parent.getElementsByTagName("input");
+
+	for (let a of all_a)
+	{
+		if (a.value == selected_value)
+		{
+			a.classList.add('match_value');
+		}
+		else if (a.classList.contains('match_value'))
+		{
+			a.classList.remove('match_value');
+		}
+	};
+}
+
+function render_selection_list_html(parent_dom, display_list, options)
+{
+	if ('deduplicate' in options)
+	{
+		var href_set = new Set();
+		var new_display_list = [];
+		for (const display_list_item of display_list)
+		{
+			if (display_list_item['href'])
+			{
+				if (!href_set.has(display_list_item['href']))
+				{
+					href_set.add(display_list_item['href']);
+					new_display_list.push(display_list_item);
+				}
+			}
+			else
+			{
+				new_display_list.push(display_list_item);
+			}
+		}
+		display_list = new_display_list;
+	}
+
+	if ('sort' in options)
+	{
+		display_list.sort(function(a, b)
+		{
+			if (a['name'] < b['name'])
+			{
+				return -1;
+			}
+			else if (a['name'] > b['name'])
+			{
+				return 1;
+			}
+			return 0;
+		});
+	}
+
+	var search = '';
+	if ('search' in options)
+	{
+		search = options['search'];
+	}
+
+	var html = '';
+	for (const display_list_item of display_list)
+	{
+		if (search && !display_list_item['name'].toLowerCase().includes(search.toLowerCase()))
+		{
+			continue;
+		}
+
+		if (display_list_item['href'])
+		{
+			html += `<a href="${display_list_item['href']}">${display_list_item['name']}</a>`;
+		}
+		else
+		{
+			html += `<a>${display_list_item['name']}</a>`;
+		}
+	}
+
+	if (html == '')
+	{
+		if (search)
+		{
+			html += `<div class="empty">No matches for "${search}"</div>`;
+		}
+		else
+		{
+			html += `<div class="empty">None</div>`;
+		}
+	}
+
+	parent_dom.innerHTML = html;
+	update_href_selection(parent_dom);
+}
+
+
+// -------------------------------------------------------------------- WINDOW LAYOUT
+
+function init_top()
+{
+	document.getElementById('top_bar').innerHTML = `${g_infos['Project']} - ${g_infos['Platform']} - ${g_infos['RHI']} - ${g_infos['BuildVersion']} - ${g_infos['DumpTime']} `;
+}
+
+function init_top_buttons()
+{
+	document.getElementById('top_buttons').innerHTML = `
+		<a href="#display_infos();">Infos</a>
+		<a href="#display_cvars();">CVars</a>
+		<a href="#display_log();">Log</a>`;
+	document.getElementById('top_viewer_buttons').innerHTML = `
+		<a id="console_button" href="#display_console();">Console</a>`;
+	update_console_button();
+}
+
+function init_page()
+{
+	// Load the dump service information to know how to read files. This is independent of Base/Infos.json because may depends whether it was uploaded through the DumpGPUServices plugin.
+	g_dump_service = load_json('Base/DumpService.json');
+
+	// Load the base information of the page.
+	g_infos = load_json('Base/Infos.json');
+
+	if (!g_dump_service || !g_infos)
+	{
+		document.body.innerHTML = 'Please use OpenGPUDumpViewer script for the viewer to work correctly.';
+		return;
+	}
+
+	// Verify the status of the dump, to check whether a crash happened during the dump.
+	{
+		var dump_status = load_text_file('Base/Status.txt');
+		if (dump_status == 'ok')
+		{
+			add_console_event('log', `The dump completed gracefully.`);
+		}
+		else if (dump_status == 'crash')
+		{
+			add_console_event('error', `A crash happened while the frame was being dumped.`);
+		}
+		else if (dump_status == 'dumping')
+		{
+			add_console_event('error', `The dump has not completed. This may be due to opening the viewer before completion, or serious problem that has not been handled with FCoreDelegates::OnShutdownAfterError`);
+		}
+		else
+		{
+			add_console_event('error', `The dump completed with status: ${dump_status}`);
+		}
+	}
+
+	// Load the cvars used for dumping.
+	{
+		g_dump_cvars = {};
+
+		var cvars_csv = load_text_file('Base/ConsoleVariables.csv');
+		var csv_lines = cvars_csv.split('\n');
+		for (var i = 1; i < csv_lines.length - 1; i++)
+		{
+			var csv_line = csv_lines[i].split(',');
+			var entry = {};
+			entry['name'] = csv_line[0];
+			if (entry['name'].startsWith('r.DumpGPU.'))
+			{
+				entry['type'] = csv_line[1];
+				entry['set_by'] = csv_line[2];
+				entry['value'] = csv_line[3];
+				g_dump_cvars[entry['name']] = entry['value'];
+			}
+		}
+
+	}
+
+	// Load all the passes.
+	g_passes = load_json_dict_sequence('Base/Passes.json');
+	{
+		for (var pass_id = 0; pass_id < g_passes.length; pass_id++)
+		{
+			g_passes[pass_id]['DrawCount'] = 0;
+			if (!g_passes[pass_id]['EventName'])
+			{
+				g_passes[pass_id]['EventName'] = 'Unnamed pass';
+			}
+		}
+
+		var pass_draw_counts = load_json_dict_sequence('Base/PassDrawCounts.json');
+		if (pass_draw_counts)
+		{
+			pass_draw_counts.forEach(function(pass_draw_count_data) {
+				for (var pass_id = 0; pass_id < g_passes.length; pass_id++)
+				{
+					if (g_passes[pass_id]['Pointer'] == pass_draw_count_data['Pointer'])
+					{
+						g_passes[pass_id]['DrawCount'] = pass_draw_count_data['DrawCount'];
+						break;
+					}
+				}
+			});
+		}
+	}
+
+	// Load all the resource descriptors
+	{
+		g_descs = {};
+
+		var desc_list = load_json_dict_sequence('Base/ResourceDescs.json');
+		for (const desc of desc_list)
+		{
+			g_descs[desc['UniqueResourceName']] = desc;
+		}
+	}
+
+	if (!does_file_exists(get_log_path()))
+	{
+		add_console_event('error', `The dump does not contain ${get_log_path()}. The log is normally copied into the dump directory once the dump is completed. Failing to have is may be due to a premature end of the dumping process.`);
+	}
+	else
+	{
+		add_console_event('log', `Viewer init ok`);
+	}
+
+	// Analyses the capture.
+	{
+		analyses_passes();
+	}
+
+	init_top();
+	init_top_buttons();
+	display_pass_hierarchy();
+
+	// Find the last passes that have a displayable texture 2D.
+	if (location.hash)
+	{
+		return navigate_to_hash();
+	}
+	
+	// Find the last pass that modify the RDG resource set by 'r.DumpGPU.Viewer.Visualize'
+	if ('r.DumpGPU.Viewer.Visualize' in g_dump_cvars && g_dump_cvars['r.DumpGPU.Viewer.Visualize'] != '')
+	{
+		var pass_id_to_open = -1;
+		var subresource_unique_name_to_open = null;
+
+		document.getElementById('resource_search_input').value = g_dump_cvars['r.DumpGPU.Viewer.Visualize'];
+		display_pass_hierarchy();
+
+		for (var pass_id = 0; pass_id < g_passes.length && pass_id_to_open == -1; pass_id++)
+		{
+			var pass_data = g_passes[g_passes.length - 1 - pass_id];
+
+			for (var subresource_unique_name of pass_data['OutputResources'])
+			{
+				var subresource_info = parse_subresource_unique_name(subresource_unique_name);
+				var resource_desc = get_resource_desc(subresource_info['resource']);
+
+				if (resource_desc === null)
+				{
+					continue;
+				}
+
+				if (resource_desc['Name'] == g_dump_cvars['r.DumpGPU.Viewer.Visualize'] && pass_id_to_open == -1)
+				{
+					pass_id_to_open = g_passes.length - 1 - pass_id;
+					subresource_unique_name_to_open = subresource_unique_name;
+					break;
+				}
+			}
+		}
+
+		if (pass_id_to_open != -1)
+		{
+			return redirect_to_hash(`display_output_resource(${pass_id_to_open},'${subresource_unique_name_to_open}');`);
+		}
+	}
+	
+	return display_tip();
+}
+
+function onresize_body()
+{
+	var window_width = window.innerWidth;
+	var window_height = window.innerHeight;
+
+	const top_h = 45;
+
+	document.getElementById('onresize_body_table').style.width = `${window_width}px`;
+	document.getElementById('onresize_body_table').style.height = `${window_height}px`;
+
+	const top_height = 45;
+
+	var body_left_width = Math.floor(window_width * 0.25);
+	var body_right_width = window_width - body_left_width;
+	var body_height = window_height - top_height;
+	{
+		document.getElementById('onresize_body_top_bar').style.width = `${window_width}px`;
+		document.getElementById('onresize_body_top_bar').style.height = `${top_height}px`;
+		document.getElementById('onresize_body_top_bar').style.overflow = `hidden`;
+
+		document.getElementById('onresize_body_left').style.width = `${body_left_width}px`;
+		document.getElementById('onresize_body_left').style.height = `${body_height}px`;
+
+		document.getElementById('onresize_body_right').style.width = `${body_right_width}px`;
+		document.getElementById('onresize_body_right').style.height = `${body_height}px`;
+	}
+
+	{
+		const search_h = (30 + 2 * 5) * 2;
+
+		document.getElementById('pass_hierarchy').style.width = `${body_left_width - k_style_padding_size * 2}px`;
+		document.getElementById('pass_hierarchy').style.height = `${body_height - search_h - k_style_padding_size * 2 - k_style_scroll_width}px`;
+		document.getElementById('pass_hierarchy').style.overflow = `scroll`;
+	}
+
+	{
+		document.getElementById('main_right_pannel').style.width = `${body_right_width}px`;
+		document.getElementById('main_right_pannel').style.height = `${body_height}px`;
+		document.getElementById('main_right_pannel').style.overflow = `scroll`;
+	}
+
+	if (g_view !== null)
+	{
+		var ctx = {};
+		ctx.width = body_right_width - k_style_scroll_width;
+		ctx.height = body_height - k_style_scroll_width;
+		g_view.resize(ctx);
+	}
+}
+
+
+// -------------------------------------------------------------------- NAVIGATION
+
+var g_previous_location_hash = null;
+
+function redirect_to_hash(new_hash)
+{
+	if (new_hash === g_previous_location_hash)
+	{
+		return;
+	}
+
+	location.hash = new_hash;
+}
+
+function navigate_to_hash()
+{
+	if (location.hash === g_previous_location_hash)
+	{
+		return;
+	}
+
+	g_previous_location_hash = location.hash;
+
+	if (location.hash)
+	{
+		var js = location.hash.substring(1);
+		eval(js);
+	}
+	else
+	{
+		display_tip();
+	}
+
+	update_href_selection(document);
+}
+
+function get_current_navigation()
+{
+	return g_previous_location_hash;
+}
+
+</script>
+
+
+<style type="text/css">
+
+
+/* ----------------------------------------------------- them colors */
+
+:root
+{
+	--border-radius: 2px;
+
+	--body-bg-color: rgb(21, 21, 21);
+	--body-txt-size: 12px;
+
+	--div-bg-color: rgb(36, 36, 36);
+	--div-txt-color: rgb(192, 192, 192);
+	--a-bg-color-odd: rgb(26, 26, 26);
+	--a-bg-color-hover: #332222;
+	--a-bg-color-hoverhref: rgb(38, 67, 81);
+	--a-txt-color-disabled: rgb(113, 113, 113);
+
+	--a-bg-color-selected: rgb(38, 187, 255);
+	--a-txt-color-selected: rgb(15, 15, 15);
+
+	--channel-red-color: rgb(255, 38, 38);
+	--channel-green-color: rgb(38, 255, 38);
+	--channel-blue-color: rgb(38, 187, 255);
+	--channel-alpha-color: white;
+
+	--error-txt-color: var(--channel-red-color);
+
+	--header-bg-color: rgb(47, 47, 47);
+
+	--button-border-radius: var(--border-radius);
+	--button-bg-color: rgb(56, 56, 56);
+	--button-bg-color-hover: rgb(87, 87, 87);
+	--button-bg-color-selected: rgb(15, 15, 15);
+	--button-txt-color: var(--div-txt-color);
+	--button-txt-color-hover: rgb(255, 255, 255);
+	--button-txt-color-selected: rgb(38, 187, 255);
+
+
+	--scroll-bg-color: var(--a-bg-color-odd);
+	--scroll-color: rgb(87, 87, 87);
+	--scroll-color-hover: rgb(128, 128, 128);
+
+	--input-bg-color: rgb(15, 15, 15);
+	--input-border: 1px solid rgb(55, 55, 55);
+	--input-border-hover: rgb(83, 83, 83);
+	--input-border-focus: rgb(38, 176, 239);
+}
+
+
+/* ----------------------------------------------------- override default */
+
+body
+{
+	overflow: hidden;
+	background: var(--body-bg-color);
+	color: var(--div-txt-color);
+	margin: 0;
+	padding: 0;
+	/*font-family: Arial, Helvetica, sans-serif;*/
+	font-family: consolas, "Liberation Mono", courier, monospace;
+	font-size: var(--body-txt-size);
+	/* overflow: hidden; */
+}
+
+table, tr, td, div, a
+{
+	margin: 0;
+	padding: 0;
+	border-spacing: 0;
+	border-collapse: collapse;
+	vertical-align: top;
+	cursor: default;
+	font-size: inherit;
+}
+
+td
+{
+	cursor: default;
+}
+
+div, a
+{
+	display: block;
+	cursor: default;
+}
+
+a, a:hover, a:visited
+{
+	color: inherit;
+	font: inherit;
+	text-decoration: none;
+	cursor: default;
+}
+
+
+/* ----------------------------------------------------- external link */
+
+a.external_link
+{
+	color: inherit;
+	cursor: pointer;
+}
+
+a.external_link:hover
+{
+	color: var(--button-txt-color-hover);
+}
+
+a.external_link:active
+{
+	color: var(--button-txt-color-selected);
+}
+
+
+/* ----------------------------------------------------- inputs scroll bars */
+
+input
+{
+	padding: 3px 5px;
+	border-radius: var(--border-radius);
+}
+
+input[type=search]
+{
+	padding: 3px 13px;
+	border-radius: 20px;
+}
+
+textarea
+{
+	padding: 3px 3px;
+}
+
+input, textarea
+{
+	background-color: var(--input-bg-color);
+	color: var(--div-txt-color);
+	border: var(--input-border);
+	outline:  none;
+	font-size: inherit;
+	font: inherit;
+}
+
+input[readonly], textarea[readonly]
+{
+	color: var(--a-txt-color-disabled);
+}
+
+input:not([readonly]):hover,
+textarea:not([readonly]):hover
+{
+	border-color: var(--input-border-hover);
+}
+
+input[type=text]:not([readonly]):focus,
+input[type=search]:not([readonly]):focus,
+textarea:not([readonly]):focus
+{
+	color: rgb(254, 254, 254);
+	border-color: var(--input-border-focus);
+}
+
+input:focus, textarea:focus
+{
+	outline: none;
+}
+
+input::placeholder
+{
+	color: rgb(76, 76, 76);
+}
+
+
+/* ----------------------------------------------------- webkit scroll bars */
+
+*::-webkit-scrollbar {
+	width: 8px;
+	height: 8px;
+	background: var(--scroll-bg-color);
+}
+
+*::-webkit-scrollbar-corner, *::-webkit-scrollbar-track {
+	background: var(--scroll-bg-color);
+}
+
+*::-webkit-scrollbar-thumb {
+	background-color: var(--scroll-color);
+	border-radius: 20px;
+}
+
+*::-webkit-scrollbar-thumb:hover {
+	background-color: var(--scroll-color-hover);
+	border-radius: 20px;
+}
+
+
+/* ----------------------------------------------------- common layout */
+
+.main_div
+{
+	background: var(--div-bg-color);
+	padding: 5px;
+	margin: 5px;
+	border-radius: 3px;
+}
+
+#main_right_pannel .main_div
+{
+	margin-bottom: 20px;
+}
+
+#main_right_pannel .main_div:last-child
+{
+	margin-bottom: 5px;
+}
+
+
+/* ----------------------------------------------------- Selection list */
+
+.selection_list_title
+{
+	font-size: 20;
+	font-weight: bold;
+	padding: 5px 20px 10px 20px;
+}
+
+.selection_list_search
+{
+	padding: 0px 5px;
+	height: 30px;
+	width: auto;
+}
+
+.selection_list_search input[type=search]
+{
+	width: 100%;
+}
+
+.selection_list
+{
+	max-height: inherit;
+	overflow-x: auto;
+	overflow-y: scroll;
+}
+
+.selection_list a
+{
+	width: auto;
+	padding: 5px 20px;
+	white-space: nowrap;
+}
+
+.selection_list a:nth-child(odd)
+{
+	background: var(--a-bg-color-odd);
+}
+
+.selection_list a:not(.match_location_hash):hover
+{
+	background: var(--a-bg-color-hover);
+}
+
+.selection_list a:not(.match_location_hash)[href]:hover
+{
+	background: var(--a-bg-color-hoverhref);
+	color: var(--button-txt-color-hover);
+	cursor: pointer;
+}
+
+/*.selection_list a.match_location_hash
+{
+	background: var(--a-bg-color-selected);
+	color: var(--a-txt-color-selected);
+}*/
+
+.selection_list a.match_location_hash
+{
+	background: var(--button-bg-color-selected);
+	color: var(--button-txt-color-selected);
+}
+
+.selection_list a.disabled
+{
+	color: var(--a-txt-color-disabled);
+}
+
+.selection_list div.empty
+{
+	width: 100%;
+	margin: 20px 0 0 0;
+	color: var(--a-txt-color-disabled);
+	text-align: center;
+}
+
+#main_right_pannel .selection_list
+{
+	min-height: 100px;
+	max-height: 200px;
+}
+
+
+/* ----------------------------------------------------- table */
+
+.pretty_table tr.header
+{
+	background: var(--header-bg-color);
+	font-weight: bold;
+}
+
+.pretty_table tr:not(.header):nth-child(odd) td
+{
+	background: var(--a-bg-color-odd);
+}
+
+.pretty_table tr:not(.header):hover td:not(.empty)
+{
+	background: var(--a-bg-color-hover);
+}
+
+.pretty_table tr td
+{
+	display: table-cell;
+	padding: 5px 20px;
+}
+
+.pretty_table tr td:first-child
+{
+	width: 150px;
+}
+
+.pretty_table tr.header td
+{
+	padding: 5px 30px;
+}
+
+.pretty_table tr.header td:not(:first-child)
+{
+	border-left: 1px solid rgb(36, 36, 36);
+}
+
+.pretty_table .empty
+{
+	padding: 20px 0 0 0;
+	color: var(--a-txt-color-disabled);
+	text-align: center;
+}
+
+.pretty_table tr.error td
+{
+	color: var(--error-txt-color);
+}
+
+.resource_desc tr td:not(.empty)
+{
+	width: 150px;
+	text-align: right;
+}
+
+
+/* ----------------------------------------------------- button */
+
+.button_list a,
+.button_list input
+{
+	margin: 0;
+	display: inline-block;
+	display: table-cell;
+	padding: 3px 10px;
+	background-color: var(--button-bg-color);
+	color: var(--button-txt-color);
+	border-radius: 0;
+}
+
+.button_list a[href],
+.button_list input
+{
+	cursor: pointer;
+}
+
+.button_list a:first-child,
+.button_list input:first-child
+{
+	border-top-left-radius: var(--button-border-radius);
+	border-bottom-left-radius: var(--button-border-radius);
+}
+
+.button_list a:last-child,
+.button_list input:last-child
+{
+	border-top-right-radius: var(--button-border-radius);
+	border-bottom-right-radius: var(--button-border-radius);
+}
+
+.button_list a[href]:not(.match_location_hash):not(:active):hover,
+.button_list input:not(.match_value):not(:active):hover
+{
+	background-color: var(--button-bg-color-hover);
+}
+
+.button_list a[href]:not(.match_location_hash):not(.error):not(:active):hover,
+.button_list input:not(.match_value):not(:active):hover
+{
+	color: var(--button-txt-color-hover);
+}
+
+.button_list a[href]:active,
+.button_list a[href].match_location_hash,
+.button_list input:active,
+.button_list input.match_value
+{
+	background-color: var(--button-bg-color-selected);
+	color: var(--button-txt-color-selected);
+}
+
+.button_list a[href].error,
+.button_list a[href].error:active
+{
+	color: var(--error-txt-color);
+}
+
+.button_list span
+{
+	margin-left: 5px;
+	margin-right: 3px;
+}
+
+
+/* ----------------------------------------------------- top bar */
+
+#top_bar
+{
+	font-size: 20;
+	font-weight: bold;
+	padding: 10px;
+	display: inline-block;
+}
+
+#top_buttons,
+#top_viewer_buttons
+{
+	padding: 12px;
+	display: inline-block;
+}
+
+
+/* ----------------------------------------------------- main_right_pannel */
+
+#main_right_pannel .pass_title
+{
+	font-size: 20;
+	font-weight: bolder;
+	padding: 10px 40px;
+}
+
+#main_right_pannel .pass_title .button_list
+{
+	font-size: var(--body-txt-size);
+	margin-top: 3px;
+}
+
+#cvars_pannel
+{
+	height: auto;
+	max-height: none;
+}
+
+#cvars_pannel .pretty_table tr td:nth-child(2)
+{
+	text-align: right;
+}
+
+
+/* ----------------------------------------------------- TextureView */
+
+#canvas_outter
+{
+	background-color: var(--input-bg-color);
+	color: var(--div-txt-color);
+	border: var(--input-border);
+}
+
+#canvas_outter:not(.selected):hover
+{
+	border-color: var(--input-border-hover);
+}
+
+#canvas_outter.selected
+{
+	border-color: var(--input-border-focus);
+}
+
+#canvas_outter #canvas_header
+{
+	padding: 3px;
+	border-bottom: var(--input-border);
+}
+
+#canvas_outter #canvas_header .button_list
+{
+	display: inline-block;
+}
+
+#canvas_outter #canvas_footer
+{
+	padding: 3px 10px;
+	border-top: var(--input-border);
+}
+
+#canvas_outter #canvas_viewport
+{
+	overflow: hidden;
+    background-image:
+		linear-gradient(45deg, #000 25%, transparent 25%),
+		linear-gradient(45deg, transparent 75%, #000 75%),
+		linear-gradient(45deg, transparent 75%, #000 75%),
+		linear-gradient(45deg, #000 25%, var(--input-bg-color) 25%);
+    background-size:16px 16px;
+    background-position:0 0, 0 0, -8px -8px, 8px 8px;
+}
+
+#canvas_outter .error_msg
+{
+	width: 100%;
+	height: 100%;
+	text-align: center;
+	color: var(--error-txt-color);
+}
+
+#canvas_outter canvas
+{
+	cursor: crosshair;
+	image-rendering: optimizeSpeed;
+	image-rendering: -moz-crisp-edges;
+	image-rendering: -webkit-optimize-contrast;
+	image-rendering: -o-crisp-edges;
+	image-rendering: pixelated;
+	-ms-interpolation-mode: nearest-neighbor;
+}
+
+#texture_visualization_code_input
+{
+	min-width: 800px;
+	min-height: 200px;
+	display: block;
+	width: auto;
+}
+
+#texture_visualization_code_log
+{
+	margin-top: 10px;
+	min-width: 800px;
+	min-height: 200px;
+	display: block;
+	width: auto;
+}
+
+
+/* ----------------------------------------------------- BufferView */
+
+#buffer_outter
+{
+	background-color: var(--input-bg-color);
+	color: var(--div-txt-color);
+	border: var(--input-border);
+}
+
+#buffer_outter:not(.selected):hover
+{
+	border-color: var(--input-border-hover);
+}
+
+#buffer_outter.selected
+{
+	border-color: var(--input-border-focus);
+}
+
+#buffer_outter #buffer_viewport_header
+{
+	padding: 3px;
+	border-bottom: var(--input-border);
+}
+
+#buffer_outter #buffer_viewport
+{
+	overflow: hidden;
+}
+
+#buffer_outter #buffer_viewport #buffer_content_table tr.header
+{
+	position: sticky;
+	top: 0;
+}
+
+#buffer_outter #buffer_viewport #buffer_content_table:not(.display_elem_using_rows) tr.header td:first-child
+{
+	padding: 0 3px;
+}
+
+#buffer_outter #buffer_viewport #buffer_content_table tr td:not(.empty)
+{
+	padding: 3px 5px 0px 5px;
+	width: 60px;
+	height: 20px;
+	overflow: hidden;
+	text-align: right;
+	/*font-family: consolas, "Liberation Mono", courier, monospace;*/
+}
+
+#buffer_outter #buffer_viewport #buffer_content_table.display_elem_using_rows tr td:not(.empty):first-child
+{
+	text-align: left;
+}
+
+#buffer_outter #buffer_viewport #buffer_content_table tr td:first-child
+{
+	width: 100px;
+}
+
+#buffer_outter #buffer_viewport #buffer_content_table tr td:last-child
+{
+	width: auto;
+}
+
+#buffer_outter #buffer_viewport #buffer_content_table tr.highlighted
+{
+	color: var(--button-txt-color-selected);
+}
+
+</style>
+
+
+<body onload="init_console(); onresize_body(); init_page();" onresize="onresize_body();" onhashchange="navigate_to_hash();">
+	<table cellpadding="0" cellspacing="0" border="0" id="onresize_body_table">
+		<tr>
+			<td colspan="2" id="onresize_body_top_bar">
+				<div id="top_bar"></div>
+				<div id="top_buttons" class="button_list"></div>
+				<div id="top_viewer_buttons" class="button_list"></div>
+			</td>
+		</tr>
+		<tr>
+			<td valign="top" id="onresize_body_left">
+				<div class="main_div">
+					<div id="pass_hierarchy_search" style="padding: 5px; height: 70px;">
+						<input type="search" id="pass_search_input" oninput="display_pass_hierarchy();" onchange="display_pass_hierarchy();" style="width: 100%;" placeholder="Search pass..." />
+						<input type="search" id="resource_search_input" oninput="display_pass_hierarchy();" onchange="display_pass_hierarchy();" style="width: 100%; margin-top: 10px;" placeholder="Search resource..." />
+					</div>
+					<div id="pass_hierarchy" class="selection_list"></div>
+				</div>
+			</td>
+			<td valign="top" id="onresize_body_right">
+				<div id="main_right_pannel"></div>
+			</td>
+		</tr>
+	</table>
+</body>
+</html>
diff --git a/Builds/Windows/Engine/Extras/GPUDumpViewer/OpenGPUDumpViewer.bat b/Builds/Windows/Engine/Extras/GPUDumpViewer/OpenGPUDumpViewer.bat
new file mode 100644
index 0000000000000000000000000000000000000000..c43b74f33b4727dbf1115e4faba707f59ca23afc
--- /dev/null
+++ b/Builds/Windows/Engine/Extras/GPUDumpViewer/OpenGPUDumpViewer.bat
@@ -0,0 +1,24 @@
+@echo off
+
+set CWD=%cd%
+set CHROME_USER_DATA=%CWD%/.tmp_chrome_data/
+
+echo "Opening chrome..."
+
+
+set CHROME="C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
+if exist "C:\Program Files\Google\Chrome\Application\chrome.exe" (
+	set CHROME="C:\Program Files\Google\Chrome\Application\chrome.exe"
+)
+
+REM --allow-file-access-from-files allow to load a file from a file:// webpage required for GPUDumpViewer.html to work.
+REM --user-data-dir is required to force chrome to open a new instance so that --allow-file-access-from-files is honored.
+%CHROME% "file://%CWD%/GPUDumpViewer.html" --allow-file-access-from-files --new-window --incognito --user-data-dir="%CHROME_USER_DATA%"
+
+echo "Closing chrome..."
+
+REM Wait for 2s to shut down so that CHROME_USER_DATA can be deleted completly
+timeout /t 2 /nobreak > NUL
+
+rmdir /S /Q "%CHROME_USER_DATA%"
+
diff --git a/Builds/Windows/Engine/Extras/GPUDumpViewer/OpenGPUDumpViewer.sh b/Builds/Windows/Engine/Extras/GPUDumpViewer/OpenGPUDumpViewer.sh
new file mode 100644
index 0000000000000000000000000000000000000000..c72f63c6a076bf876ffff13f17f36f00cd1341c6
--- /dev/null
+++ b/Builds/Windows/Engine/Extras/GPUDumpViewer/OpenGPUDumpViewer.sh
@@ -0,0 +1,105 @@
+#!/usr/bin/env bash
+# Copyright Epic Games, Inc. All Rights Reserved.
+
+set -eu
+
+UNAMEOS="$(uname -s)"
+ADDRESS="127.0.0.1"
+PORT="8000"
+URL="http://$ADDRESS:$PORT/GPUDumpViewer.html"
+
+SCRIPT=$(readlink -f "$0")
+# Absolute path this script is in, thus /home/user/bin
+SCRIPTPATH=$(dirname "$SCRIPT")
+
+pushd "$SCRIPTPATH"
+
+
+GetAllChildProcesses() {
+	local Children=$(ps -o pid= ppid "$1")
+
+	for PID in $Children
+	do
+		GetAllChildProcesses "$PID"
+	done
+
+	echo "$Children"
+}
+
+# Gather all the descendant children of this process, and first kill -TERM. If any child process
+# is still alive finally send a -KILL
+TermHandler() {
+	MaxWait=30
+	CurrentWait=0
+
+	ProcessesToKill=$(GetAllChildProcesses $$)
+	kill -s TERM $ProcessesToKill 2> /dev/null
+
+	ProcessesStillAlive=$(ps -o pid= -p $ProcessesToKill)
+
+	# Wait until all the processes have been gracefully killed, or max Wait time
+	while [ -n "$ProcessesStillAlive" ] && [ "$CurrentWait" -lt "$MaxWait" ]
+	do
+		CurrentWait=$((CurrentWait + 1))
+		sleep 1
+
+		ProcessesStillAlive=$(ps -o pid= -p $ProcessesToKill)
+	done
+
+	# If some processes are still alive after MaxWait, lets just force kill them
+	if [ -n "$ProcessesStillAlive" ]; then
+		kill -s KILL $ProcessesStillAlive 2> /dev/null
+	fi
+}
+
+# trap when SIGINT or SIGTERM are received with a custom function
+trap TermHandler SIGTERM SIGINT
+
+APPS=()
+APPS+=(xdg-open)
+
+if [[ "${UNAMEOS}" =~ "Darwin" ]]; then
+	APPS+=(open)
+fi
+
+CMD=
+for val in "${APPS[@]}"; do
+	CMD="$(command -v "${val}")" || true
+	if [[ -n "${CMD}" ]]; then
+		break
+	fi
+done
+
+if [[ -z "${CMD}" ]]; then
+	echo "ERROR: Browser launch command not found"
+	exit 1
+fi
+
+ARGS=("${CMD}")
+
+ARGS+=("$URL")
+
+echo "Executing:"
+echo
+
+echo "Starting simple webserver..."
+exec python3 -m http.server "$PORT" --bind "$ADDRESS" &
+P1=$!
+sleep 1
+
+echo "${ARGS[0]} \\"
+for ((i=1; i < ${#ARGS[@]}; i++ )); do
+	echo "  ${ARGS[$i]} \\";
+done
+echo
+
+# Start the browser now that the server is running
+"${ARGS[@]}"
+
+# Wait on the webserver - in general this will be killed by a Ctrl-C
+wait $P1
+
+echo
+echo "Closing ${CMD}..."
+
+popd
diff --git a/Builds/Windows/Engine/Saved/Config/Windows/Manifest.ini b/Builds/Windows/Engine/Saved/Config/Windows/Manifest.ini
new file mode 100644
index 0000000000000000000000000000000000000000..5573bb7293d630bbb2b3cba1e2e4275a3c885fef
--- /dev/null
+++ b/Builds/Windows/Engine/Saved/Config/Windows/Manifest.ini
@@ -0,0 +1,3 @@
+[Manifest]
+Version=2
+
diff --git a/Builds/Windows/Manifest_DebugFiles_Win64.txt b/Builds/Windows/Manifest_DebugFiles_Win64.txt
new file mode 100644
index 0000000000000000000000000000000000000000..5f4086a4878b30d32862ca8e20e1933486b2b293
--- /dev/null
+++ b/Builds/Windows/Manifest_DebugFiles_Win64.txt
@@ -0,0 +1,8 @@
+MetaCastBachelor/Binaries/Win64/MetaCastBachelor.pdb	2024-08-02T07:05:29.768Z
+MetaCastBachelor/Binaries/Win64/tbb.pdb	2023-10-10T10:33:38.817Z
+MetaCastBachelor/Binaries/Win64/tbbmalloc.pdb	2023-10-10T10:33:38.822Z
+Engine/Content/SlateDebug/Fonts/LastResort.tps	2023-10-10T10:34:50.732Z
+Engine/Content/SlateDebug/Fonts/LastResort.ttf	2023-10-10T10:34:50.744Z
+Engine/Extras/GPUDumpViewer/GPUDumpViewer.html	2023-10-10T10:35:22.284Z
+Engine/Extras/GPUDumpViewer/OpenGPUDumpViewer.bat	2023-10-10T10:35:22.285Z
+Engine/Extras/GPUDumpViewer/OpenGPUDumpViewer.sh	2023-10-10T10:35:22.286Z
diff --git a/Builds/Windows/Manifest_NonUFSFiles_Win64.txt b/Builds/Windows/Manifest_NonUFSFiles_Win64.txt
new file mode 100644
index 0000000000000000000000000000000000000000..14bb985709cec35d81cebfefe163fbf796e0e47d
--- /dev/null
+++ b/Builds/Windows/Manifest_NonUFSFiles_Win64.txt
@@ -0,0 +1,25 @@
+MetaCastBachelor/Binaries/Win64/D3D12/D3D12Core.dll	2023-12-14T09:22:46.505Z
+MetaCastBachelor/Binaries/Win64/D3D12/d3d12SDKLayers.dll	2023-12-14T09:22:46.531Z
+MetaCastBachelor/Binaries/Win64/MetaCastBachelor.exe	2024-08-02T07:05:29.125Z
+MetaCastBachelor/Binaries/Win64/OpenImageDenoise.dll	2023-12-14T09:25:33.385Z
+MetaCastBachelor/Binaries/Win64/tbb.dll	2023-12-14T09:22:42.319Z
+MetaCastBachelor/Binaries/Win64/tbb12.dll	2023-12-14T09:25:27.375Z
+MetaCastBachelor/Binaries/Win64/tbbmalloc.dll	2023-12-14T09:22:42.320Z
+Engine/Extras/Redist/en-us/UEPrereqSetup_x64.exe	2023-12-14T09:23:48.401Z
+Engine/Binaries/ThirdParty/DbgHelp/dbghelp.dll	2023-12-14T09:22:11.696Z
+Engine/Binaries/ThirdParty/MsQuic/v220/win64/msquic.dll	2023-12-14T09:22:45.137Z
+Engine/Binaries/ThirdParty/NVIDIA/GPUDirect/Win64/dvp.dll	2023-12-14T09:22:45.149Z
+Engine/Binaries/ThirdParty/NVIDIA/NVaftermath/Win64/GFSDK_Aftermath_Lib.x64.dll	2023-12-14T09:22:45.154Z
+Engine/Binaries/ThirdParty/Ogg/Win64/VS2015/libogg_64.dll	2023-12-14T09:22:45.186Z
+Engine/Binaries/ThirdParty/OpenXR/win64/openxr_loader.dll	2023-12-14T09:22:45.215Z
+Engine/Binaries/ThirdParty/Vorbis/Win64/VS2015/libvorbis_64.dll	2023-12-14T09:22:46.491Z
+Engine/Binaries/ThirdParty/Vorbis/Win64/VS2015/libvorbisfile_64.dll	2023-12-14T09:22:46.492Z
+Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64/WinPixEventRuntime.dll	2023-12-14T09:22:46.543Z
+Engine/Binaries/ThirdParty/Windows/XAudio2_9/x64/xaudio2_9redist.dll	2023-12-14T09:22:46.546Z
+Engine/Content/Slate/Cursor/invisible.cur	2023-10-10T10:34:50.163Z
+Engine/Plugins/Runtime/OpenCV/Binaries/ThirdParty/Win64/opencv_world455.dll	2023-12-14T09:25:24.762Z
+Engine/Plugins/Runtime/nDisplay/ThirdParty/Domeprojection/DLL/WibuCm64.dll	2023-12-14T09:25:23.904Z
+Engine/Plugins/Runtime/nDisplay/ThirdParty/Domeprojection/DLL/dpLib.dll	2023-12-14T09:25:23.901Z
+Engine/Plugins/Runtime/nDisplay/ThirdParty/EasyBlend/DLL/mplEasyBlendSDKDX1164.dll	2023-12-14T09:25:23.908Z
+Engine/Plugins/Runtime/nDisplay/ThirdParty/VIOSO/DLL/VIOSOWarpBlend64.dll	2023-12-14T09:25:23.911Z
+MetaCastBachelor.exe	2024-08-02T07:20:44.780Z
diff --git a/Builds/Windows/Manifest_UFSFiles_Win64.txt b/Builds/Windows/Manifest_UFSFiles_Win64.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1660910126793ef5f165a0c20bdd2f9509e7a439
--- /dev/null
+++ b/Builds/Windows/Manifest_UFSFiles_Win64.txt
@@ -0,0 +1,10485 @@
+Engine/Content/Slate/Automation/DeveloperDirectoryContent.png	2023-10-10T10:34:50.073Z
+Engine/Content/Slate/Automation/EditorGroupBorder.png	2023-10-10T10:34:50.074Z
+Engine/Content/Slate/Automation/ErrorFilter.png	2023-10-10T10:34:50.075Z
+Engine/Content/Slate/Automation/ExcludedTestsFilter.png	2023-10-10T10:34:50.075Z
+Engine/Content/Slate/Automation/Fail.png	2023-10-10T10:49:32.084Z
+Engine/Content/Slate/Automation/GameGroupBorder.png	2023-10-10T10:34:50.077Z
+Engine/Content/Slate/Automation/Groups.png	2023-10-10T10:34:50.077Z
+Engine/Content/Slate/Automation/InProcess.png	2023-10-10T10:34:50.078Z
+Engine/Content/Slate/Automation/NoSessionWarning.png	2023-10-10T10:34:31.846Z
+Engine/Content/Slate/Automation/NotEnoughParticipants.png	2023-10-10T10:49:32.095Z
+Engine/Content/Slate/Automation/NotRun.png	2023-10-10T10:34:50.079Z
+Engine/Content/Slate/Automation/Participant.png	2023-10-10T10:34:50.080Z
+Engine/Content/Slate/Automation/ParticipantsWarning.png	2023-10-10T10:34:50.079Z
+Engine/Content/Slate/Automation/RefreshTests.png	2023-10-10T10:34:50.081Z
+Engine/Content/Slate/Automation/RefreshWorkers.png	2023-10-10T10:34:50.081Z
+Engine/Content/Slate/Automation/RunTests.png	2023-10-10T10:34:50.082Z
+Engine/Content/Slate/Automation/SmokeTest.png	2023-10-10T10:34:50.083Z
+Engine/Content/Slate/Automation/SmokeTestFilter.png	2023-10-10T10:34:50.083Z
+Engine/Content/Slate/Automation/SmokeTestParent.png	2023-10-10T10:34:50.084Z
+Engine/Content/Slate/Automation/StopTests.png	2023-10-10T10:34:50.085Z
+Engine/Content/Slate/Automation/Success.png	2023-10-10T10:49:32.114Z
+Engine/Content/Slate/Automation/TrackTestHistory.png	2023-10-10T10:34:50.086Z
+Engine/Content/Slate/Automation/VisualCommandlet.png	2023-10-10T10:34:50.087Z
+Engine/Content/Slate/Automation/Warning.png	2023-10-10T10:49:32.122Z
+Engine/Content/Slate/Automation/WarningFilter.png	2023-10-10T10:34:50.088Z
+Engine/Content/Slate/Checkerboard.png	2023-10-10T10:34:50.089Z
+Engine/Content/Slate/Common/BoxShadow.png	2023-10-10T10:34:50.089Z
+Engine/Content/Slate/Common/Button.png	2023-10-10T10:34:50.090Z
+Engine/Content/Slate/Common/Button_Disabled.png	2023-10-10T10:34:50.091Z
+Engine/Content/Slate/Common/Button_Hovered.png	2023-10-10T10:34:29.024Z
+Engine/Content/Slate/Common/Button_Pressed.png	2023-10-10T10:34:29.025Z
+Engine/Content/Slate/Common/Check.png	2023-10-10T10:34:50.092Z
+Engine/Content/Slate/Common/CheckBox.png	2023-10-10T10:34:50.092Z
+Engine/Content/Slate/Common/CheckBox_Checked.png	2023-10-10T10:34:50.093Z
+Engine/Content/Slate/Common/CheckBox_Checked_Hovered.png	2023-10-10T10:34:50.094Z
+Engine/Content/Slate/Common/CheckBox_Hovered.png	2023-10-10T10:34:50.094Z
+Engine/Content/Slate/Common/CheckBox_Undetermined.png	2023-10-10T10:34:50.095Z
+Engine/Content/Slate/Common/CheckBox_Undetermined_Hovered.png	2023-10-10T10:34:50.095Z
+Engine/Content/Slate/Common/Checker.png	2023-10-10T10:34:50.096Z
+Engine/Content/Slate/Common/Circle.png	2023-10-10T10:34:50.096Z
+Engine/Content/Slate/Common/ColorGradingWheel.png	2023-10-10T10:34:50.097Z
+Engine/Content/Slate/Common/ColorPicker_Mode_16x.png	2023-10-10T10:34:50.098Z
+Engine/Content/Slate/Common/ColorPicker_Separator.png	2023-10-10T10:34:50.099Z
+Engine/Content/Slate/Common/ColorPicker_SliderHandle.png	2023-10-10T10:34:50.099Z
+Engine/Content/Slate/Common/ColorSpectrum.png	2023-10-10T10:34:50.100Z
+Engine/Content/Slate/Common/ColorWheel.png	2023-10-10T10:34:31.728Z
+Engine/Content/Slate/Common/ColumnHeader.png	2023-10-10T10:34:50.101Z
+Engine/Content/Slate/Common/ColumnHeaderMenuButton_Hovered.png	2023-10-10T10:34:50.103Z
+Engine/Content/Slate/Common/ColumnHeaderMenuButton_Normal.png	2023-10-10T10:34:50.103Z
+Engine/Content/Slate/Common/ColumnHeader_Arrow.png	2023-10-10T10:34:29.035Z
+Engine/Content/Slate/Common/ColumnHeader_Hovered.png	2023-10-10T10:34:50.102Z
+Engine/Content/Slate/Common/ComboArrow.png	2023-10-10T10:34:50.104Z
+Engine/Content/Slate/Common/CursorPing.png	2023-10-10T10:34:50.105Z
+Engine/Content/Slate/Common/DarkGroupBorder.png	2023-10-10T10:34:50.106Z
+Engine/Content/Slate/Common/DebugBorder.PNG	2023-10-10T10:34:50.106Z
+Engine/Content/Slate/Common/Delimiter.png	2023-10-10T10:34:50.107Z
+Engine/Content/Slate/Common/DownArrow.png	2023-10-10T10:34:50.108Z
+Engine/Content/Slate/Common/DropZoneIndicator_Above.png	2023-10-10T10:34:29.045Z
+Engine/Content/Slate/Common/DropZoneIndicator_Below.png	2023-10-10T10:34:29.046Z
+Engine/Content/Slate/Common/DropZoneIndicator_Onto.png	2023-10-10T10:34:29.046Z
+Engine/Content/Slate/Common/EditableTextSelectionBackground.png	2023-10-10T10:34:50.108Z
+Engine/Content/Slate/Common/EventMessage_Default.png	2023-10-10T10:34:50.109Z
+Engine/Content/Slate/Common/ExpansionButton_CloseOverlay.png	2023-10-10T10:34:31.755Z
+Engine/Content/Slate/Common/GroupBorder.png	2023-10-10T10:34:50.110Z
+Engine/Content/Slate/Common/GroupBorder_Shape.png	2023-10-10T10:34:50.110Z
+Engine/Content/Slate/Common/HeaderSplitterGrip.PNG	2023-10-10T10:34:50.111Z
+Engine/Content/Slate/Common/LastColumnHeader_Hovered.png	2023-10-10T10:34:50.112Z
+Engine/Content/Slate/Common/LeftArrow.png	2023-10-10T10:34:29.063Z
+Engine/Content/Slate/Common/LightGroupBorder.png	2023-10-10T10:34:50.112Z
+Engine/Content/Slate/Common/NoiseBackground.png	2023-10-10T10:34:50.113Z
+Engine/Content/Slate/Common/PlainBorder.png	2023-10-10T10:34:50.114Z
+Engine/Content/Slate/Common/ProfileVisualizer_Mono.png	2023-10-10T10:34:50.114Z
+Engine/Content/Slate/Common/ProfileVisualizer_Normal.png	2023-10-10T10:34:50.115Z
+Engine/Content/Slate/Common/ProfileVisualizer_Selected.png	2023-10-10T10:34:50.116Z
+Engine/Content/Slate/Common/ProgressBar_Background.png	2023-10-10T10:34:50.116Z
+Engine/Content/Slate/Common/ProgressBar_Fill.png	2023-10-10T10:34:50.117Z
+Engine/Content/Slate/Common/ProgressBar_Marquee.PNG	2023-10-10T10:34:50.118Z
+Engine/Content/Slate/Common/RadioButton_SelectedBack_16x.png	2023-10-10T10:34:29.079Z
+Engine/Content/Slate/Common/RadioButton_Selected_16x.png	2023-10-10T10:34:50.118Z
+Engine/Content/Slate/Common/RadioButton_Unselected_16x.png	2023-10-10T10:34:50.119Z
+Engine/Content/Slate/Common/RoundedSelection_16x.PNG	2023-10-10T10:34:50.120Z
+Engine/Content/Slate/Common/ScrollBorderShadowBottom.png	2023-10-10T10:34:50.122Z
+Engine/Content/Slate/Common/ScrollBorderShadowTop.png	2023-10-10T10:34:50.123Z
+Engine/Content/Slate/Common/ScrollBoxShadowBottom.png	2023-10-10T10:34:50.123Z
+Engine/Content/Slate/Common/ScrollBoxShadowLeft.png	2023-10-10T10:34:50.124Z
+Engine/Content/Slate/Common/ScrollBoxShadowRight.png	2023-10-10T10:34:50.125Z
+Engine/Content/Slate/Common/ScrollBoxShadowTop.png	2023-10-10T10:34:50.126Z
+Engine/Content/Slate/Common/Scrollbar_Background_Horizontal.png	2023-10-10T10:34:50.120Z
+Engine/Content/Slate/Common/Scrollbar_Background_Vertical.png	2023-10-10T10:34:50.121Z
+Engine/Content/Slate/Common/Scrollbar_Thumb.png	2023-10-10T10:34:50.122Z
+Engine/Content/Slate/Common/SearchGlass.PNG	2023-10-10T10:34:50.126Z
+Engine/Content/Slate/Common/Selection.png	2023-10-10T10:34:50.127Z
+Engine/Content/Slate/Common/Selector.png	2023-10-10T10:34:50.127Z
+Engine/Content/Slate/Common/Separator.png	2023-10-10T10:34:50.128Z
+Engine/Content/Slate/Common/SmallCheck.png	2023-10-10T10:34:50.129Z
+Engine/Content/Slate/Common/SmallCheckBox.png	2023-10-10T10:34:50.129Z
+Engine/Content/Slate/Common/SmallCheckBox_Checked.png	2023-10-10T10:34:50.130Z
+Engine/Content/Slate/Common/SmallCheckBox_Checked_Hovered.png	2023-10-10T10:34:50.131Z
+Engine/Content/Slate/Common/SmallCheckBox_Hovered.png	2023-10-10T10:34:50.131Z
+Engine/Content/Slate/Common/SmallCheckBox_Undetermined.png	2023-10-10T10:34:29.101Z
+Engine/Content/Slate/Common/SmallCheckBox_Undetermined_Hovered.png	2023-10-10T10:34:29.102Z
+Engine/Content/Slate/Common/SortDownArrow.png	2023-10-10T10:34:50.132Z
+Engine/Content/Slate/Common/SortDownArrows.png	2023-10-10T10:34:29.112Z
+Engine/Content/Slate/Common/SortUpArrow.png	2023-10-10T10:34:50.133Z
+Engine/Content/Slate/Common/SortUpArrows.png	2023-10-10T10:34:29.114Z
+Engine/Content/Slate/Common/SpinArrows.png	2023-10-10T10:34:50.134Z
+Engine/Content/Slate/Common/Spinbox.PNG	2023-10-10T10:34:50.134Z
+Engine/Content/Slate/Common/Spinbox_Fill.png	2023-10-10T10:34:50.135Z
+Engine/Content/Slate/Common/Spinbox_Fill_Dark.png	2023-10-10T10:34:50.136Z
+Engine/Content/Slate/Common/Spinbox_Fill_Hovered.png	2023-10-10T10:34:50.136Z
+Engine/Content/Slate/Common/Spinbox_Fill_Hovered_Dark.png	2023-10-10T10:34:50.137Z
+Engine/Content/Slate/Common/Spinbox_Hovered.png	2023-10-10T10:34:50.138Z
+Engine/Content/Slate/Common/SplitterHandleHighlight.png	2023-10-10T10:34:50.138Z
+Engine/Content/Slate/Common/SubmenuArrow.png	2023-10-10T10:34:50.139Z
+Engine/Content/Slate/Common/TableViewHeader.png	2023-10-10T10:34:50.140Z
+Engine/Content/Slate/Common/TableViewMajorColumn.png	2023-10-10T10:34:29.121Z
+Engine/Content/Slate/Common/TextBlockHighlightShape.png	2023-10-10T10:34:50.140Z
+Engine/Content/Slate/Common/TextBlockHighlightShape_Empty.png	2023-10-10T10:34:50.141Z
+Engine/Content/Slate/Common/TextBox.png	2023-10-10T10:34:50.142Z
+Engine/Content/Slate/Common/TextBoxLabelBorder.PNG	2023-10-10T10:34:50.146Z
+Engine/Content/Slate/Common/TextBox_Dark.png	2023-10-10T10:34:50.142Z
+Engine/Content/Slate/Common/TextBox_Hovered.png	2023-10-10T10:34:50.143Z
+Engine/Content/Slate/Common/TextBox_Hovered_Dark.png	2023-10-10T10:34:50.143Z
+Engine/Content/Slate/Common/TextBox_ReadOnly.png	2023-10-10T10:34:50.144Z
+Engine/Content/Slate/Common/TextBox_Special.png	2023-10-10T10:34:50.145Z
+Engine/Content/Slate/Common/TextBox_Special_Hovered.png	2023-10-10T10:34:50.145Z
+Engine/Content/Slate/Common/Throbber_Piece.png	2023-10-10T10:34:50.147Z
+Engine/Content/Slate/Common/TreeArrow_Collapsed.png	2023-10-10T10:34:50.147Z
+Engine/Content/Slate/Common/TreeArrow_Collapsed_Hovered.png	2023-10-10T10:34:50.148Z
+Engine/Content/Slate/Common/TreeArrow_Expanded.png	2023-10-10T10:34:50.148Z
+Engine/Content/Slate/Common/TreeArrow_Expanded_Hovered.png	2023-10-10T10:34:50.149Z
+Engine/Content/Slate/Common/UpArrow.png	2023-10-10T10:34:50.150Z
+Engine/Content/Slate/Common/VerticalBoxDragIndicator.png	2023-10-10T10:34:50.151Z
+Engine/Content/Slate/Common/VerticalBoxDragIndicatorShort.png	2023-10-10T10:34:50.151Z
+Engine/Content/Slate/Common/VolumeControl_High.png	2023-10-10T10:34:50.152Z
+Engine/Content/Slate/Common/VolumeControl_Low.png	2023-10-10T10:34:50.152Z
+Engine/Content/Slate/Common/VolumeControl_Mid.png	2023-10-10T10:34:50.153Z
+Engine/Content/Slate/Common/VolumeControl_Muted.png	2023-10-10T10:34:50.154Z
+Engine/Content/Slate/Common/VolumeControl_Off.png	2023-10-10T10:34:50.154Z
+Engine/Content/Slate/Common/WhiteGroupBorder.png	2023-10-10T10:34:50.155Z
+Engine/Content/Slate/Common/Window/WindowBackground.png	2023-10-10T10:34:50.156Z
+Engine/Content/Slate/Common/Window/WindowBorder.png	2023-10-10T10:34:31.963Z
+Engine/Content/Slate/Common/Window/WindowButton_Close_Hovered.png	2023-10-10T10:34:50.156Z
+Engine/Content/Slate/Common/Window/WindowButton_Close_Normal.png	2023-10-10T10:34:31.964Z
+Engine/Content/Slate/Common/Window/WindowButton_Close_Pressed.png	2023-10-10T10:34:31.965Z
+Engine/Content/Slate/Common/Window/WindowButton_Maximize_Disabled.png	2023-10-10T10:34:31.966Z
+Engine/Content/Slate/Common/Window/WindowButton_Maximize_Hovered.png	2023-10-10T10:34:50.157Z
+Engine/Content/Slate/Common/Window/WindowButton_Maximize_Normal.png	2023-10-10T10:34:31.968Z
+Engine/Content/Slate/Common/Window/WindowButton_Maximize_Pressed.png	2023-10-10T10:34:31.969Z
+Engine/Content/Slate/Common/Window/WindowButton_Minimize_Disabled.png	2023-10-10T10:34:31.970Z
+Engine/Content/Slate/Common/Window/WindowButton_Minimize_Hovered.png	2023-10-10T10:34:50.158Z
+Engine/Content/Slate/Common/Window/WindowButton_Minimize_Normal.png	2023-10-10T10:34:31.971Z
+Engine/Content/Slate/Common/Window/WindowButton_Minimize_Pressed.png	2023-10-10T10:34:31.972Z
+Engine/Content/Slate/Common/Window/WindowButton_Restore_Hovered.png	2023-10-10T10:34:50.158Z
+Engine/Content/Slate/Common/Window/WindowButton_Restore_Normal.png	2023-10-10T10:34:31.974Z
+Engine/Content/Slate/Common/Window/WindowButton_Restore_Pressed.png	2023-10-10T10:34:31.975Z
+Engine/Content/Slate/Common/Window/WindowOutline.png	2023-10-10T10:34:50.159Z
+Engine/Content/Slate/Common/Window/WindowTitle.png	2023-10-10T10:34:50.160Z
+Engine/Content/Slate/Common/Window/WindowTitle_Flashing.png	2023-10-10T10:34:50.160Z
+Engine/Content/Slate/Common/Window/WindowTitle_Inactive.png	2023-10-10T10:34:50.161Z
+Engine/Content/Slate/Common/X.PNG	2023-10-10T10:34:50.162Z
+Engine/Content/Slate/CrashTracker/MouseCursor.png	2023-10-10T10:34:29.069Z
+Engine/Content/Slate/CrashTracker/Record.png	2023-10-10T10:34:50.162Z
+Engine/Content/Slate/Docking/AppTabContentArea.png	2023-10-10T10:34:50.166Z
+Engine/Content/Slate/Docking/AppTabWellSeparator.png	2023-10-10T10:34:29.210Z
+Engine/Content/Slate/Docking/AppTab_Active.png	2023-10-10T10:34:29.203Z
+Engine/Content/Slate/Docking/AppTab_ColorOverlay.png	2023-10-10T10:34:50.164Z
+Engine/Content/Slate/Docking/AppTab_ColorOverlayIcon.png	2023-10-10T10:49:32.354Z
+Engine/Content/Slate/Docking/AppTab_Foreground.png	2023-10-10T10:34:50.164Z
+Engine/Content/Slate/Docking/AppTab_Hovered.png	2023-10-10T10:34:50.165Z
+Engine/Content/Slate/Docking/AppTab_Inactive.png	2023-10-10T10:34:50.166Z
+Engine/Content/Slate/Docking/CloseApp_Hovered.png	2023-10-10T10:34:50.167Z
+Engine/Content/Slate/Docking/CloseApp_Normal.png	2023-10-10T10:34:50.168Z
+Engine/Content/Slate/Docking/CloseApp_Pressed.png	2023-10-10T10:34:50.168Z
+Engine/Content/Slate/Docking/DockingIndicator_Center.png	2023-10-10T10:34:50.169Z
+Engine/Content/Slate/Docking/OuterDockingIndicator.png	2023-10-10T10:34:29.216Z
+Engine/Content/Slate/Docking/ShowTabwellButton_Hovered.png	2023-10-10T10:34:50.170Z
+Engine/Content/Slate/Docking/ShowTabwellButton_Normal.png	2023-10-10T10:34:50.171Z
+Engine/Content/Slate/Docking/ShowTabwellButton_Pressed.png	2023-10-10T10:34:50.171Z
+Engine/Content/Slate/Docking/TabContentArea.png	2023-10-10T10:34:29.226Z
+Engine/Content/Slate/Docking/TabWellSeparator.png	2023-10-10T10:34:29.227Z
+Engine/Content/Slate/Docking/Tab_Active.png	2023-10-10T10:34:29.220Z
+Engine/Content/Slate/Docking/Tab_ColorOverlay.png	2023-10-10T10:34:50.172Z
+Engine/Content/Slate/Docking/Tab_ColorOverlayIcon.png	2023-10-10T10:34:29.205Z
+Engine/Content/Slate/Docking/Tab_Foreground.png	2023-10-10T10:34:29.222Z
+Engine/Content/Slate/Docking/Tab_Hovered.png	2023-10-10T10:34:29.224Z
+Engine/Content/Slate/Docking/Tab_Inactive.png	2023-10-10T10:34:29.225Z
+Engine/Content/Slate/Docking/Tab_Shape.png	2023-10-10T10:34:50.172Z
+Engine/Content/Slate/Fonts/DroidSans.tps	2023-10-10T10:34:50.173Z
+Engine/Content/Slate/Fonts/DroidSansFallback.ttf	2023-10-10T10:34:50.182Z
+Engine/Content/Slate/Fonts/DroidSansMono.ttf	2023-10-10T10:49:32.403Z
+Engine/Content/Slate/Fonts/Noto.tps	2023-10-10T10:34:50.184Z
+Engine/Content/Slate/Fonts/NotoNaskhArabicUI-Regular.ttf	2023-10-10T10:34:50.185Z
+Engine/Content/Slate/Fonts/NotoSansThai-Regular.ttf	2023-10-10T10:34:50.186Z
+Engine/Content/Slate/Fonts/Roboto-Black.ttf	2023-10-10T10:34:50.187Z
+Engine/Content/Slate/Fonts/Roboto-BlackItalic.ttf	2023-10-10T10:34:50.188Z
+Engine/Content/Slate/Fonts/Roboto-Bold.ttf	2023-10-10T10:49:32.418Z
+Engine/Content/Slate/Fonts/Roboto-BoldCondensed.ttf	2023-10-10T10:34:50.190Z
+Engine/Content/Slate/Fonts/Roboto-BoldCondensedItalic.ttf	2023-10-10T10:34:50.191Z
+Engine/Content/Slate/Fonts/Roboto-BoldItalic.ttf	2023-10-10T10:34:50.192Z
+Engine/Content/Slate/Fonts/Roboto-Italic.ttf	2023-10-10T10:34:50.193Z
+Engine/Content/Slate/Fonts/Roboto-Light.ttf	2023-10-10T10:34:50.194Z
+Engine/Content/Slate/Fonts/Roboto-Medium.ttf	2023-10-10T10:34:50.195Z
+Engine/Content/Slate/Fonts/Roboto-Regular.ttf	2023-10-10T10:34:50.196Z
+Engine/Content/Slate/Fonts/Roboto.tps	2023-10-10T10:34:50.197Z
+Engine/Content/Slate/Icons/BackIcon.png	2023-10-10T10:34:50.198Z
+Engine/Content/Slate/Icons/Cross_12x.png	2023-10-10T10:34:50.199Z
+Engine/Content/Slate/Icons/DefaultAppIcon.png	2023-10-10T10:49:32.445Z
+Engine/Content/Slate/Icons/Edit/icon_Edit_Copy_16x.png	2023-10-10T10:34:50.201Z
+Engine/Content/Slate/Icons/Edit/icon_Edit_Cut_16x.png	2023-10-10T10:34:50.202Z
+Engine/Content/Slate/Icons/Edit/icon_Edit_Delete_16x.png	2023-10-10T10:34:50.203Z
+Engine/Content/Slate/Icons/Edit/icon_Edit_Duplicate_16x.png	2023-10-10T10:34:50.203Z
+Engine/Content/Slate/Icons/Edit/icon_Edit_Paste_16x.png	2023-10-10T10:34:50.204Z
+Engine/Content/Slate/Icons/Edit/icon_Edit_Rename_16x.png	2023-10-10T10:34:50.205Z
+Engine/Content/Slate/Icons/Empty_14x.png	2023-10-10T10:34:50.206Z
+Engine/Content/Slate/Icons/NextIcon.png	2023-10-10T10:34:50.215Z
+Engine/Content/Slate/Icons/PIEWindow/SmallRoundedButton.png	2023-10-10T10:34:29.102Z
+Engine/Content/Slate/Icons/PIEWindow/SmallRoundedButtonBottom.png	2023-10-10T10:34:29.103Z
+Engine/Content/Slate/Icons/PIEWindow/SmallRoundedButtonCentre.png	2023-10-10T10:34:29.104Z
+Engine/Content/Slate/Icons/PIEWindow/SmallRoundedButtonLeft.png	2023-10-10T10:34:29.105Z
+Engine/Content/Slate/Icons/PIEWindow/SmallRoundedButtonRight.png	2023-10-10T10:34:29.106Z
+Engine/Content/Slate/Icons/PIEWindow/SmallRoundedButtonTop.png	2023-10-10T10:34:29.107Z
+Engine/Content/Slate/Icons/PIEWindow/WindowButton_025x_Hovered.png	2023-10-10T10:34:50.217Z
+Engine/Content/Slate/Icons/PIEWindow/WindowButton_025x_Normal.png	2023-10-10T10:34:50.218Z
+Engine/Content/Slate/Icons/PIEWindow/WindowButton_025x_Pressed.png	2023-10-10T10:34:50.218Z
+Engine/Content/Slate/Icons/PIEWindow/WindowButton_05x_Hovered.png	2023-10-10T10:34:50.219Z
+Engine/Content/Slate/Icons/PIEWindow/WindowButton_05x_Normal.png	2023-10-10T10:34:50.220Z
+Engine/Content/Slate/Icons/PIEWindow/WindowButton_05x_Pressed.png	2023-10-10T10:34:50.220Z
+Engine/Content/Slate/Icons/PIEWindow/WindowButton_1x_Hovered.png	2023-10-10T10:34:50.221Z
+Engine/Content/Slate/Icons/PIEWindow/WindowButton_1x_Normal.png	2023-10-10T10:34:50.222Z
+Engine/Content/Slate/Icons/PIEWindow/WindowButton_1x_Pressed.png	2023-10-10T10:34:50.222Z
+Engine/Content/Slate/Icons/PIEWindow/WindowButton_Screen_Rotation_Hovered.png	2023-10-10T10:34:50.223Z
+Engine/Content/Slate/Icons/PIEWindow/WindowButton_Screen_Rotation_Normal.png	2023-10-10T10:34:50.224Z
+Engine/Content/Slate/Icons/PIEWindow/WindowButton_Screen_Rotation_Pressed.png	2023-10-10T10:34:50.224Z
+Engine/Content/Slate/Icons/PlusSymbol_12x.png	2023-10-10T10:34:50.225Z
+Engine/Content/Slate/Icons/Profiler/GroupBorder-16Gray.png	2023-10-10T10:34:50.226Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Average_Event_Graph_16x.png	2023-10-10T10:34:50.226Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Border_L_16x.png	2023-10-10T10:34:50.227Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Border_R_16x.png	2023-10-10T10:34:50.228Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Border_TB_16x.png	2023-10-10T10:34:50.229Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Cull_Events_16x.png	2023-10-10T10:34:50.233Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Culled_12x.png	2023-10-10T10:34:50.234Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Custom_Tooltip_12x.png	2023-10-10T10:34:50.234Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Data_Capture_40x.png	2023-10-10T10:34:50.235Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Events_Flat_16x.png	2023-10-10T10:34:50.237Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Events_Flat_Coalesced_16x.png	2023-10-10T10:34:50.238Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Events_Hierarchial_16x.png	2023-10-10T10:34:50.238Z
+Engine/Content/Slate/Icons/Profiler/Profiler_FPS_Chart_40x.png	2023-10-10T10:34:50.245Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Filter_Events_16x.png	2023-10-10T10:34:50.242Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Filter_Presets_Tab_16x.png	2023-10-10T10:34:50.243Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Filtered_12x.png	2023-10-10T10:34:50.244Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Graph_View_Tab_16x.png	2023-10-10T10:34:50.247Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Has_Culled_Children_12x.png	2023-10-10T10:34:50.248Z
+Engine/Content/Slate/Icons/Profiler/Profiler_History_Back_16x.png	2023-10-10T10:34:50.249Z
+Engine/Content/Slate/Icons/Profiler/Profiler_History_Fwd_16x.png	2023-10-10T10:34:50.249Z
+Engine/Content/Slate/Icons/Profiler/Profiler_LoadMultiple_Profiler_40x.png	2023-10-10T10:34:50.252Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Load_Profiler_40x.png	2023-10-10T10:34:50.251Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Max_Event_Graph_16x.png	2023-10-10T10:34:50.252Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Settings_40x.png	2023-10-10T10:49:32.625Z
+Engine/Content/Slate/Icons/Profiler/Profiler_Tab_16x.png	2023-10-10T10:34:50.264Z
+Engine/Content/Slate/Icons/Profiler/Profiler_ThreadView_SampleBorder_16x.png	2023-10-10T10:34:50.265Z
+Engine/Content/Slate/Icons/Profiler/profiler_Calls_32x.png	2023-10-10T10:34:50.229Z
+Engine/Content/Slate/Icons/Profiler/profiler_CollapseAll_32x.png	2023-10-10T10:34:50.230Z
+Engine/Content/Slate/Icons/Profiler/profiler_CollapseSelection_32x.png	2023-10-10T10:34:50.231Z
+Engine/Content/Slate/Icons/Profiler/profiler_CollapseThread_32x.png	2023-10-10T10:34:50.232Z
+Engine/Content/Slate/Icons/Profiler/profiler_CopyToClipboard_32x.png	2023-10-10T10:34:50.232Z
+Engine/Content/Slate/Icons/Profiler/profiler_CulledEvents_12x.png	2023-10-10T10:34:30.253Z
+Engine/Content/Slate/Icons/Profiler/profiler_Disconnect_32x.png	2023-10-10T10:34:50.236Z
+Engine/Content/Slate/Icons/Profiler/profiler_Event_32x.png	2023-10-10T10:34:50.236Z
+Engine/Content/Slate/Icons/Profiler/profiler_ExpandAll_32x.png	2023-10-10T10:34:50.239Z
+Engine/Content/Slate/Icons/Profiler/profiler_ExpandHotPath_32x.png	2023-10-10T10:34:50.240Z
+Engine/Content/Slate/Icons/Profiler/profiler_ExpandSelection_32x.png	2023-10-10T10:34:50.241Z
+Engine/Content/Slate/Icons/Profiler/profiler_ExpandThread_32x.png	2023-10-10T10:34:50.241Z
+Engine/Content/Slate/Icons/Profiler/profiler_GameThread_32x.png	2023-10-10T10:34:50.245Z
+Engine/Content/Slate/Icons/Profiler/profiler_GenericFilter_32x.png	2023-10-10T10:34:50.246Z
+Engine/Content/Slate/Icons/Profiler/profiler_GenericGroup_32x.png	2023-10-10T10:34:50.247Z
+Engine/Content/Slate/Icons/Profiler/profiler_HotPath_32x.png	2023-10-10T10:34:50.250Z
+Engine/Content/Slate/Icons/Profiler/profiler_Memory_32x.png	2023-10-10T10:34:50.254Z
+Engine/Content/Slate/Icons/Profiler/profiler_Number_32x.png	2023-10-10T10:34:50.254Z
+Engine/Content/Slate/Icons/Profiler/profiler_OpenEventGraph_32x.png	2023-10-10T10:34:50.255Z
+Engine/Content/Slate/Icons/Profiler/profiler_RenderThread_32x.png	2023-10-10T10:34:50.256Z
+Engine/Content/Slate/Icons/Profiler/profiler_ResetColumn_32x.png	2023-10-10T10:34:50.257Z
+Engine/Content/Slate/Icons/Profiler/profiler_ResetToDefault_32x.png	2023-10-10T10:34:29.192Z
+Engine/Content/Slate/Icons/Profiler/profiler_SelectStack_32x.png	2023-10-10T10:34:50.257Z
+Engine/Content/Slate/Icons/Profiler/profiler_SetRoot_32x.png	2023-10-10T10:34:50.258Z
+Engine/Content/Slate/Icons/Profiler/profiler_ShowGraphData_32x.png	2023-10-10T10:34:50.260Z
+Engine/Content/Slate/Icons/Profiler/profiler_SortAscending_32x.png	2023-10-10T10:34:50.260Z
+Engine/Content/Slate/Icons/Profiler/profiler_SortBy_32x.png	2023-10-10T10:34:50.261Z
+Engine/Content/Slate/Icons/Profiler/profiler_SortDescending_32x.png	2023-10-10T10:34:50.262Z
+Engine/Content/Slate/Icons/Profiler/profiler_ViewColumn_32x.png	2023-10-10T10:34:50.265Z
+Engine/Content/Slate/Icons/Profiler/profiler_mem_40x.png	2023-10-10T10:34:50.253Z
+Engine/Content/Slate/Icons/Profiler/profiler_stats_40x.png	2023-10-10T10:34:50.263Z
+Engine/Content/Slate/Icons/Profiler/profiler_sync_40x.png	2023-10-10T10:34:50.263Z
+Engine/Content/Slate/Icons/TrashCan.png	2023-10-10T10:34:50.267Z
+Engine/Content/Slate/Icons/TrashCan_Small.png	2023-10-10T10:34:50.268Z
+Engine/Content/Slate/Icons/cursor_cardinal_cross.png	2023-10-10T10:34:30.179Z
+Engine/Content/Slate/Icons/cursor_grab.png	2023-10-10T10:34:50.199Z
+Engine/Content/Slate/Icons/denied_16x.png	2023-10-10T10:34:50.201Z
+Engine/Content/Slate/Icons/ellipsis_12x.png	2023-10-10T10:34:50.205Z
+Engine/Content/Slate/Icons/eyedropper_16px.png	2023-10-10T10:34:50.207Z
+Engine/Content/Slate/Icons/icon_Downloads_16x.png	2023-10-10T10:34:50.207Z
+Engine/Content/Slate/Icons/icon_error_16x.png	2023-10-10T10:34:50.208Z
+Engine/Content/Slate/Icons/icon_generic_toolbar.png	2023-10-10T10:34:50.209Z
+Engine/Content/Slate/Icons/icon_help_16x.png	2023-10-10T10:34:50.209Z
+Engine/Content/Slate/Icons/icon_info_16x.png	2023-10-10T10:49:32.476Z
+Engine/Content/Slate/Icons/icon_redo_16px.png	2023-10-10T10:34:50.211Z
+Engine/Content/Slate/Icons/icon_tab_Tools_16x.png	2023-10-10T10:34:50.212Z
+Engine/Content/Slate/Icons/icon_tab_WidgetReflector_16x.png	2023-10-10T10:34:50.213Z
+Engine/Content/Slate/Icons/icon_tab_WidgetReflector_40x.png	2023-10-10T10:34:50.214Z
+Engine/Content/Slate/Icons/icon_tab_toolbar_16px.png	2023-10-10T10:34:50.211Z
+Engine/Content/Slate/Icons/icon_undo_16px.png	2023-10-10T10:34:50.214Z
+Engine/Content/Slate/Icons/icon_warning_16x.png	2023-10-10T10:34:50.215Z
+Engine/Content/Slate/Icons/notificationlist_fail.png	2023-10-10T10:34:31.926Z
+Engine/Content/Slate/Icons/notificationlist_success.png	2023-10-10T10:34:50.216Z
+Engine/Content/Slate/Icons/toolbar_expand_16x.png	2023-10-10T10:34:50.266Z
+Engine/Content/Slate/Launcher/All_Platforms_128x.png	2023-10-10T10:34:50.269Z
+Engine/Content/Slate/Launcher/All_Platforms_24x.png	2023-10-10T10:34:50.269Z
+Engine/Content/Slate/Launcher/Instance_Commandlet.png	2023-10-10T10:34:50.270Z
+Engine/Content/Slate/Launcher/Instance_Editor.png	2023-10-10T10:34:50.271Z
+Engine/Content/Slate/Launcher/Instance_Game.png	2023-10-10T10:34:50.271Z
+Engine/Content/Slate/Launcher/Instance_Other.png	2023-10-10T10:34:50.272Z
+Engine/Content/Slate/Launcher/Instance_Server.png	2023-10-10T10:34:50.273Z
+Engine/Content/Slate/Launcher/Instance_Unknown.png	2023-10-10T10:34:50.274Z
+Engine/Content/Slate/Launcher/Launcher_Advanced.png	2023-10-10T10:34:50.274Z
+Engine/Content/Slate/Launcher/Launcher_Back.png	2023-10-10T10:34:50.275Z
+Engine/Content/Slate/Launcher/Launcher_Build.png	2023-10-10T10:34:50.276Z
+Engine/Content/Slate/Launcher/Launcher_Delete.png	2023-10-10T10:34:50.277Z
+Engine/Content/Slate/Launcher/Launcher_Deploy.png	2023-10-10T10:34:50.277Z
+Engine/Content/Slate/Launcher/Launcher_EditSettings.png	2023-10-10T10:34:50.278Z
+Engine/Content/Slate/Launcher/Launcher_Launch.png	2023-10-10T10:34:50.279Z
+Engine/Content/Slate/Launcher/Launcher_Run.png	2023-10-10T10:34:50.280Z
+Engine/Content/Slate/MessageLog/Log_Error.png	2023-10-10T10:34:50.280Z
+Engine/Content/Slate/MessageLog/Log_Note.png	2023-10-10T10:34:50.281Z
+Engine/Content/Slate/MessageLog/Log_Warning.png	2023-10-10T10:34:50.281Z
+Engine/Content/Slate/Old/Border.PNG	2023-10-10T10:34:50.282Z
+Engine/Content/Slate/Old/Button.png	2023-10-10T10:34:50.283Z
+Engine/Content/Slate/Old/DashedBorder.png	2023-10-10T10:34:50.284Z
+Engine/Content/Slate/Old/HyperlinkDotted.png	2023-10-10T10:34:50.284Z
+Engine/Content/Slate/Old/HyperlinkUnderline.png	2023-10-10T10:34:50.285Z
+Engine/Content/Slate/Old/Menu_Background.png	2023-10-10T10:34:50.286Z
+Engine/Content/Slate/Old/Menu_Background_Inverted_Border_Bold.png	2023-10-10T10:34:31.916Z
+Engine/Content/Slate/Old/Notification_Border_Flash.png	2023-10-10T10:34:50.286Z
+Engine/Content/Slate/Old/Tiles/ActionMenuButtonBG.png	2023-10-10T10:34:50.287Z
+Engine/Content/Slate/Old/Tiles/ArrowBox.png	2023-10-10T10:34:50.291Z
+Engine/Content/Slate/Old/Tiles/ArrowLeft.png	2023-10-10T10:34:50.291Z
+Engine/Content/Slate/Old/Tiles/Arrow_D.png	2023-10-10T10:34:50.288Z
+Engine/Content/Slate/Old/Tiles/Arrow_L.png	2023-10-10T10:34:50.288Z
+Engine/Content/Slate/Old/Tiles/Arrow_R.png	2023-10-10T10:34:50.289Z
+Engine/Content/Slate/Old/Tiles/Arrow_U.png	2023-10-10T10:34:50.290Z
+Engine/Content/Slate/Old/Tiles/BoxEdgeHighlight.png	2023-10-10T10:34:50.294Z
+Engine/Content/Slate/Old/Tiles/CalloutBox.png	2023-10-10T10:34:50.296Z
+Engine/Content/Slate/Old/Tiles/CalloutBox2.png	2023-10-10T10:34:50.297Z
+Engine/Content/Slate/Old/Tiles/CalloutBox3.png	2023-10-10T10:34:50.298Z
+Engine/Content/Slate/Old/Tiles/Callout_Background.png	2023-10-10T10:34:50.294Z
+Engine/Content/Slate/Old/Tiles/Callout_Glow.png	2023-10-10T10:34:50.295Z
+Engine/Content/Slate/Old/Tiles/Callout_Outline.png	2023-10-10T10:34:50.296Z
+Engine/Content/Slate/Old/Tiles/CircleBox.png	2023-10-10T10:34:50.298Z
+Engine/Content/Slate/Old/Tiles/CircleBox2.png	2023-10-10T10:34:50.299Z
+Engine/Content/Slate/Old/Tiles/CodeBlock_Background.png	2023-10-10T10:34:50.300Z
+Engine/Content/Slate/Old/Tiles/CodeBlock_Glow.png	2023-10-10T10:34:50.301Z
+Engine/Content/Slate/Old/Tiles/CodeBlock_Outline.png	2023-10-10T10:34:50.301Z
+Engine/Content/Slate/Old/Tiles/DiamondBox.png	2023-10-10T10:34:50.302Z
+Engine/Content/Slate/Old/Tiles/DiamondBox_B.png	2023-10-10T10:34:50.303Z
+Engine/Content/Slate/Old/Tiles/DiamondBox_T.png	2023-10-10T10:34:50.303Z
+Engine/Content/Slate/Old/Tiles/DottedCircleBox_L.png	2023-10-10T10:34:50.304Z
+Engine/Content/Slate/Old/Tiles/DottedCircleBox_LR.png	2023-10-10T10:34:50.305Z
+Engine/Content/Slate/Old/Tiles/DottedCircleBox_LR_E.png	2023-10-10T10:34:50.307Z
+Engine/Content/Slate/Old/Tiles/DottedCircleBox_L_E.png	2023-10-10T10:34:50.305Z
+Engine/Content/Slate/Old/Tiles/DottedCircleBox_R.png	2023-10-10T10:34:50.308Z
+Engine/Content/Slate/Old/Tiles/DottedCircleBox_R_E.png	2023-10-10T10:34:50.309Z
+Engine/Content/Slate/Old/Tiles/DottedSquareBox_L.png	2023-10-10T10:34:50.310Z
+Engine/Content/Slate/Old/Tiles/DottedSquareBox_LR.png	2023-10-10T10:34:50.310Z
+Engine/Content/Slate/Old/Tiles/DottedSquareBox_LR_E.png	2023-10-10T10:34:50.311Z
+Engine/Content/Slate/Old/Tiles/DottedSquareBox_R.png	2023-10-10T10:34:50.312Z
+Engine/Content/Slate/Old/Tiles/DottedSquareBox_R_E.png	2023-10-10T10:34:50.313Z
+Engine/Content/Slate/Old/Tiles/Hat.png	2023-10-10T10:34:50.314Z
+Engine/Content/Slate/Old/Tiles/Outer/alertOutline.png	2023-10-10T10:34:50.314Z
+Engine/Content/Slate/Old/Tiles/Outer/alertSolid.png	2023-10-10T10:34:50.315Z
+Engine/Content/Slate/Old/Tiles/PrePost_RoundedBox.png	2023-10-10T10:49:32.782Z
+Engine/Content/Slate/Old/Tiles/PrePost_RoundedBox_B.png	2023-10-10T10:49:32.786Z
+Engine/Content/Slate/Old/Tiles/PrePost_RoundedBox_T.png	2023-10-10T10:34:50.326Z
+Engine/Content/Slate/Old/Tiles/QMark.png	2023-10-10T10:34:50.327Z
+Engine/Content/Slate/Old/Tiles/Roboto-Bold.ttf	2023-10-10T10:34:50.189Z
+Engine/Content/Slate/Old/Tiles/RoundedBoxBorder.png	2023-10-10T10:34:50.327Z
+Engine/Content/Slate/Old/Tiles/RoundedTileFaded.png	2023-10-10T10:34:50.331Z
+Engine/Content/Slate/Old/Tiles/RoundedTile_Background.png	2023-10-10T10:34:50.328Z
+Engine/Content/Slate/Old/Tiles/RoundedTile_Glow.png	2023-10-10T10:34:50.329Z
+Engine/Content/Slate/Old/Tiles/RoundedTile_Outline.png	2023-10-10T10:34:50.330Z
+Engine/Content/Slate/Old/Tiles/SolidWhite.png	2023-10-10T10:34:50.335Z
+Engine/Content/Slate/Old/Tiles/SquareBox.png	2023-10-10T10:34:50.335Z
+Engine/Content/Slate/Old/Tiles/SquareBox_Solid_L.png	2023-10-10T10:34:50.336Z
+Engine/Content/Slate/Old/Tiles/SquigglyBox.png	2023-10-10T10:34:50.337Z
+Engine/Content/Slate/Old/Tiles/Tile_Highlight.png	2023-10-10T10:34:50.338Z
+Engine/Content/Slate/Old/Tiles/Underline.png	2023-10-10T10:34:50.338Z
+Engine/Content/Slate/Old/Tiles/bigdot.png	2023-10-10T10:34:50.292Z
+Engine/Content/Slate/Old/Tiles/blank.png	2023-10-10T10:34:50.293Z
+Engine/Content/Slate/Old/Tiles/pin/pin.png	2023-10-10T10:34:50.316Z
+Engine/Content/Slate/Old/Tiles/pin/pin_glow.png	2023-10-10T10:34:50.317Z
+Engine/Content/Slate/Old/Tiles/pin/pin_head.png	2023-10-10T10:34:50.319Z
+Engine/Content/Slate/Old/Tiles/pin/pin_head_glow.png	2023-10-10T10:34:50.320Z
+Engine/Content/Slate/Old/Tiles/pin/pin_highlight.png	2023-10-10T10:34:50.321Z
+Engine/Content/Slate/Old/Tiles/pin/pin_shadow.png	2023-10-10T10:34:50.323Z
+Engine/Content/Slate/Old/Tiles/pin/pin_stick.png	2023-10-10T10:34:50.324Z
+Engine/Content/Slate/Old/Tiles/pin/ping.png	2023-10-10T10:34:50.325Z
+Engine/Content/Slate/Old/Tiles/selectionbar/selectionbar_0.png	2023-10-10T10:34:50.332Z
+Engine/Content/Slate/Old/Tiles/selectionbar/selectionbar_1.png	2023-10-10T10:34:50.333Z
+Engine/Content/Slate/Old/Tiles/selectionbar/selectionbar_2.png	2023-10-10T10:34:50.334Z
+Engine/Content/Slate/Old/Tiles/smalldot.png	2023-10-10T10:34:50.334Z
+Engine/Content/Slate/Old/ToolBar_Background.png	2023-10-10T10:34:31.951Z
+Engine/Content/Slate/Old/ToolTip_Background.png	2023-10-10T10:34:50.339Z
+Engine/Content/Slate/Old/ToolTip_BrightBackground.png	2023-10-10T10:34:50.340Z
+Engine/Content/Slate/Old/White.png	2023-10-10T10:34:50.342Z
+Engine/Content/Slate/Starship/Common/Advanced.svg	2023-10-10T10:34:50.342Z
+Engine/Content/Slate/Starship/Common/AllSavedAssets.svg	2023-10-10T10:34:50.347Z
+Engine/Content/Slate/Starship/Common/AutomationTools.svg	2023-10-10T10:34:50.352Z
+Engine/Content/Slate/Starship/Common/CPP.svg	2023-10-10T10:34:50.371Z
+Engine/Content/Slate/Starship/Common/Console.svg	2023-10-10T10:34:50.370Z
+Engine/Content/Slate/Starship/Common/Copy.svg	2023-10-10T10:34:50.371Z
+Engine/Content/Slate/Starship/Common/Cut.svg	2023-10-10T10:34:50.373Z
+Engine/Content/Slate/Starship/Common/Dash_Horizontal.png	2023-10-10T10:34:50.375Z
+Engine/Content/Slate/Starship/Common/Dash_Vertical.png	2023-10-10T10:34:50.375Z
+Engine/Content/Slate/Starship/Common/Delete.svg	2023-10-10T10:34:50.382Z
+Engine/Content/Slate/Starship/Common/Developer.svg	2023-10-10T10:49:32.913Z
+Engine/Content/Slate/Starship/Common/DropTargetBackground.png	2023-10-10T10:34:50.385Z
+Engine/Content/Slate/Starship/Common/Duplicate.svg	2023-10-10T10:34:50.386Z
+Engine/Content/Slate/Starship/Common/EyeDropper.svg	2023-10-10T10:34:50.398Z
+Engine/Content/Slate/Starship/Common/Favorite.svg	2023-10-10T10:34:50.398Z
+Engine/Content/Slate/Starship/Common/FilterAuto.svg	2023-10-10T10:34:50.586Z
+Engine/Content/Slate/Starship/Common/FlipHorizontal.svg	2023-10-10T10:34:50.587Z
+Engine/Content/Slate/Starship/Common/FlipVertical.svg	2023-10-10T10:34:50.588Z
+Engine/Content/Slate/Starship/Common/Group_20.svg	2023-10-10T10:34:50.591Z
+Engine/Content/Slate/Starship/Common/Info.svg	2023-10-10T10:34:50.595Z
+Engine/Content/Slate/Starship/Common/Layout.svg	2023-10-10T10:34:32.587Z
+Engine/Content/Slate/Starship/Common/Linked.svg	2023-10-10T10:34:50.596Z
+Engine/Content/Slate/Starship/Common/LookAt.svg	2023-10-10T10:34:50.599Z
+Engine/Content/Slate/Starship/Common/Merge.svg	2023-10-10T10:34:50.600Z
+Engine/Content/Slate/Starship/Common/Monitor.svg	2023-10-10T10:49:32.998Z
+Engine/Content/Slate/Starship/Common/OutputLog.svg	2023-10-10T10:34:50.603Z
+Engine/Content/Slate/Starship/Common/ParentHierarchy.svg	2023-10-10T10:34:50.604Z
+Engine/Content/Slate/Starship/Common/Paste.svg	2023-10-10T10:34:50.605Z
+Engine/Content/Slate/Starship/Common/PlayerController.svg	2023-10-10T10:34:32.380Z
+Engine/Content/Slate/Starship/Common/Preferences.svg	2023-10-10T10:34:50.607Z
+Engine/Content/Slate/Starship/Common/ProjectLauncher.svg	2023-10-10T10:34:50.608Z
+Engine/Content/Slate/Starship/Common/Recent.svg	2023-10-10T10:34:50.610Z
+Engine/Content/Slate/Starship/Common/Redo.svg	2023-10-10T10:34:50.610Z
+Engine/Content/Slate/Starship/Common/Rename.svg	2023-10-10T10:34:50.612Z
+Engine/Content/Slate/Starship/Common/Role.svg	2024-07-08T14:33:45.096Z
+Engine/Content/Slate/Starship/Common/Rotate180.svg	2023-10-10T10:34:50.614Z
+Engine/Content/Slate/Starship/Common/Rotate90Clockwise.svg	2023-10-10T10:34:50.614Z
+Engine/Content/Slate/Starship/Common/Rotate90Counterclockwise.svg	2023-10-10T10:34:50.615Z
+Engine/Content/Slate/Starship/Common/Search_20.svg	2023-10-10T10:34:50.618Z
+Engine/Content/Slate/Starship/Common/SessionFrontend.svg	2023-10-10T10:34:50.620Z
+Engine/Content/Slate/Starship/Common/SortDown.svg	2023-10-10T10:34:50.621Z
+Engine/Content/Slate/Starship/Common/SortUp.svg	2023-10-10T10:34:50.621Z
+Engine/Content/Slate/Starship/Common/Test.svg	2023-10-10T10:34:50.624Z
+Engine/Content/Slate/Starship/Common/UELogo.png	2023-10-10T10:34:50.625Z
+Engine/Content/Slate/Starship/Common/UELogo.svg	2023-10-10T10:34:50.626Z
+Engine/Content/Slate/Starship/Common/Undo.svg	2023-10-10T10:34:50.627Z
+Engine/Content/Slate/Starship/Common/UndoHistory.svg	2023-10-10T10:34:50.628Z
+Engine/Content/Slate/Starship/Common/Unlinked.svg	2023-10-10T10:34:50.628Z
+Engine/Content/Slate/Starship/Common/UnsavedAssets.svg	2023-10-10T10:34:50.631Z
+Engine/Content/Slate/Starship/Common/UnsavedAssetsWarning.svg	2023-10-10T10:34:50.632Z
+Engine/Content/Slate/Starship/Common/Update.svg	2023-10-10T10:49:33.094Z
+Engine/Content/Slate/Starship/Common/Visualizer.svg	2023-10-10T10:34:32.627Z
+Engine/Content/Slate/Starship/Common/alert-circle.svg	2023-10-10T10:34:50.343Z
+Engine/Content/Slate/Starship/Common/alert-triangle-64.svg	2023-10-10T10:34:50.344Z
+Engine/Content/Slate/Starship/Common/alert-triangle-large.svg	2023-10-10T10:34:50.346Z
+Engine/Content/Slate/Starship/Common/alert-triangle.svg	2023-10-10T10:34:50.346Z
+Engine/Content/Slate/Starship/Common/arrow-down.svg	2023-10-10T10:34:50.348Z
+Engine/Content/Slate/Starship/Common/arrow-left.svg	2023-10-10T10:34:50.350Z
+Engine/Content/Slate/Starship/Common/arrow-right.svg	2023-10-10T10:34:50.350Z
+Engine/Content/Slate/Starship/Common/arrow-up.svg	2023-10-10T10:34:50.351Z
+Engine/Content/Slate/Starship/Common/badge-modified.svg	2023-10-10T10:34:50.353Z
+Engine/Content/Slate/Starship/Common/blueprint.svg	2023-10-10T10:34:32.247Z
+Engine/Content/Slate/Starship/Common/box-perspective.svg	2023-10-10T10:34:50.354Z
+Engine/Content/Slate/Starship/Common/bullet-point.svg	2023-10-10T10:34:50.354Z
+Engine/Content/Slate/Starship/Common/caret-down.svg	2023-10-10T10:49:32.858Z
+Engine/Content/Slate/Starship/Common/caret-right.svg	2023-10-10T10:34:50.356Z
+Engine/Content/Slate/Starship/Common/check-circle-large.svg	2023-10-10T10:34:50.357Z
+Engine/Content/Slate/Starship/Common/check-circle.svg	2023-10-10T10:34:50.358Z
+Engine/Content/Slate/Starship/Common/check.svg	2023-10-10T10:49:32.868Z
+Engine/Content/Slate/Starship/Common/checker.png	2023-10-10T10:34:50.360Z
+Engine/Content/Slate/Starship/Common/chevron-down.svg	2023-10-10T10:34:50.360Z
+Engine/Content/Slate/Starship/Common/chevron-left.svg	2023-10-10T10:34:50.361Z
+Engine/Content/Slate/Starship/Common/chevron-right.svg	2023-10-10T10:34:50.362Z
+Engine/Content/Slate/Starship/Common/chevron-up.svg	2023-10-10T10:34:50.363Z
+Engine/Content/Slate/Starship/Common/circle-arrow-down.svg	2023-10-10T10:34:50.364Z
+Engine/Content/Slate/Starship/Common/circle-arrow-left.svg	2023-10-10T10:34:50.365Z
+Engine/Content/Slate/Starship/Common/circle-arrow-right.svg	2023-10-10T10:34:50.365Z
+Engine/Content/Slate/Starship/Common/circle-arrow-up.svg	2023-10-10T10:34:50.366Z
+Engine/Content/Slate/Starship/Common/close-circle.svg	2023-10-10T10:34:50.367Z
+Engine/Content/Slate/Starship/Common/close-small.svg	2023-10-10T10:34:50.368Z
+Engine/Content/Slate/Starship/Common/close.svg	2023-10-10T10:34:50.369Z
+Engine/Content/Slate/Starship/Common/curve-editor-append-key-20.svg	2023-10-10T10:34:50.372Z
+Engine/Content/Slate/Starship/Common/cylinder.svg	2023-10-10T10:34:50.374Z
+Engine/Content/Slate/Starship/Common/delete-outline.svg	2023-10-10T10:34:50.381Z
+Engine/Content/Slate/Starship/Common/drag-handle.svg	2023-10-10T10:34:50.384Z
+Engine/Content/Slate/Starship/Common/edit.svg	2023-10-10T10:34:50.387Z
+Engine/Content/Slate/Starship/Common/ellipsis-vertical-narrow.svg	2023-10-10T10:34:50.387Z
+Engine/Content/Slate/Starship/Common/export.svg	2023-10-10T10:34:50.396Z
+Engine/Content/Slate/Starship/Common/export_20.svg	2023-10-10T10:34:50.397Z
+Engine/Content/Slate/Starship/Common/fieldnotify_off.svg	2023-10-10T10:34:50.407Z
+Engine/Content/Slate/Starship/Common/fieldnotify_on.svg	2023-10-10T10:34:50.408Z
+Engine/Content/Slate/Starship/Common/file-tree-open.svg	2023-10-10T10:34:50.409Z
+Engine/Content/Slate/Starship/Common/file-tree.svg	2023-10-10T10:34:50.410Z
+Engine/Content/Slate/Starship/Common/file.svg	2023-10-10T10:34:50.421Z
+Engine/Content/Slate/Starship/Common/filled-circle.svg	2023-10-10T10:34:50.584Z
+Engine/Content/Slate/Starship/Common/filter.svg	2023-10-10T10:34:50.585Z
+Engine/Content/Slate/Starship/Common/folder-cleanup.svg	2023-10-10T10:34:50.588Z
+Engine/Content/Slate/Starship/Common/folder-closed.svg	2023-10-10T10:34:50.589Z
+Engine/Content/Slate/Starship/Common/folder-open.svg	2023-10-10T10:34:50.590Z
+Engine/Content/Slate/Starship/Common/folder-plus.svg	2023-10-10T10:34:50.591Z
+Engine/Content/Slate/Starship/Common/help.svg	2023-10-10T10:34:50.592Z
+Engine/Content/Slate/Starship/Common/hidden.svg	2023-10-10T10:34:50.593Z
+Engine/Content/Slate/Starship/Common/import.svg	2023-10-10T10:34:50.594Z
+Engine/Content/Slate/Starship/Common/import_20.svg	2023-10-10T10:34:50.594Z
+Engine/Content/Slate/Starship/Common/layout-header-body.svg	2023-10-10T10:34:50.596Z
+Engine/Content/Slate/Starship/Common/layout-spreadsheet.svg	2023-10-10T10:34:32.867Z
+Engine/Content/Slate/Starship/Common/lock-unlocked.svg	2024-07-08T14:33:45.081Z
+Engine/Content/Slate/Starship/Common/lock.svg	2024-07-08T14:33:45.093Z
+Engine/Content/Slate/Starship/Common/menu.svg	2023-10-10T10:34:50.600Z
+Engine/Content/Slate/Starship/Common/minus-circle.svg	2023-10-10T10:34:50.601Z
+Engine/Content/Slate/Starship/Common/minus.svg	2023-10-10T10:34:50.602Z
+Engine/Content/Slate/Starship/Common/play.svg	2023-10-10T10:34:32.623Z
+Engine/Content/Slate/Starship/Common/plus-circle.svg	2023-10-10T10:34:50.606Z
+Engine/Content/Slate/Starship/Common/plus.svg	2023-10-10T10:34:50.606Z
+Engine/Content/Slate/Starship/Common/pyriamid.svg	2023-10-10T10:34:50.609Z
+Engine/Content/Slate/Starship/Common/refresh.svg	2023-10-10T10:34:50.611Z
+Engine/Content/Slate/Starship/Common/reject.svg	2023-10-10T10:34:50.612Z
+Engine/Content/Slate/Starship/Common/save-modified.svg	2023-10-10T10:34:50.616Z
+Engine/Content/Slate/Starship/Common/save.svg	2023-10-10T10:34:50.617Z
+Engine/Content/Slate/Starship/Common/search.svg	2023-10-10T10:34:50.618Z
+Engine/Content/Slate/Starship/Common/server.svg	2023-10-10T10:49:33.049Z
+Engine/Content/Slate/Starship/Common/settings.svg	2023-10-10T10:34:32.860Z
+Engine/Content/Slate/Starship/Common/sphere.svg	2023-10-10T10:34:50.622Z
+Engine/Content/Slate/Starship/Common/stop.svg	2023-10-10T10:34:50.623Z
+Engine/Content/Slate/Starship/Common/tile.svg	2023-10-10T10:34:50.624Z
+Engine/Content/Slate/Starship/Common/unreal-circle-thick.svg	2023-10-10T10:34:50.629Z
+Engine/Content/Slate/Starship/Common/unreal-circle-thin.svg	2023-10-10T10:34:50.630Z
+Engine/Content/Slate/Starship/Common/unreal-small.svg	2023-10-10T10:34:50.631Z
+Engine/Content/Slate/Starship/Common/visible.svg	2023-10-10T10:34:50.634Z
+Engine/Content/Slate/Starship/Common/world.svg	2023-10-10T10:34:50.634Z
+Engine/Content/Slate/Starship/Common/x-circle.svg	2023-10-10T10:34:50.635Z
+Engine/Content/Slate/Starship/CoreWidgets/CheckBox/check.svg	2023-10-10T10:34:50.359Z
+Engine/Content/Slate/Starship/CoreWidgets/CheckBox/indeterminate.svg	2023-10-10T10:34:50.636Z
+Engine/Content/Slate/Starship/CoreWidgets/CheckBox/radio-off.svg	2023-10-10T10:34:50.637Z
+Engine/Content/Slate/Starship/CoreWidgets/CheckBox/radio-on.svg	2023-10-10T10:34:50.637Z
+Engine/Content/Slate/Starship/CoreWidgets/ComboBox/corner-dropdown.svg	2023-10-10T10:34:50.638Z
+Engine/Content/Slate/Starship/CoreWidgets/ComboBox/wide-chevron-down.svg	2023-10-10T10:34:50.639Z
+Engine/Content/Slate/Starship/CoreWidgets/FilterBar/FilterColorSegment.svg	2023-10-10T10:34:50.639Z
+Engine/Content/Slate/Starship/CoreWidgets/NumericEntryBox/NarrowDecorator.svg	2023-10-10T10:34:50.640Z
+Engine/Content/Slate/Starship/CoreWidgets/ProgressBar/ProgressMarquee.png	2023-10-10T10:34:50.641Z
+Engine/Content/Slate/Starship/CoreWidgets/SegmentedBox/left.png	2023-10-10T10:34:50.642Z
+Engine/Content/Slate/Starship/CoreWidgets/SegmentedBox/left.svg	2023-10-10T10:34:50.643Z
+Engine/Content/Slate/Starship/CoreWidgets/SegmentedBox/right.png	2023-10-10T10:34:50.644Z
+Engine/Content/Slate/Starship/CoreWidgets/SegmentedBox/right.svg	2023-10-10T10:34:50.644Z
+Engine/Content/Slate/Starship/CoreWidgets/TableView/sort-down-arrow.svg	2023-10-10T10:34:50.645Z
+Engine/Content/Slate/Starship/CoreWidgets/TableView/sort-down-arrows.svg	2023-10-10T10:34:50.646Z
+Engine/Content/Slate/Starship/CoreWidgets/TableView/sort-up-arrow.svg	2023-10-10T10:34:50.647Z
+Engine/Content/Slate/Starship/CoreWidgets/TableView/sort-up-arrows.svg	2023-10-10T10:34:50.648Z
+Engine/Content/Slate/Starship/CoreWidgets/Window/close.svg	2023-10-10T10:34:50.649Z
+Engine/Content/Slate/Starship/CoreWidgets/Window/maximize.svg	2023-10-10T10:34:50.649Z
+Engine/Content/Slate/Starship/CoreWidgets/Window/minimize.svg	2023-10-10T10:34:50.650Z
+Engine/Content/Slate/Starship/CoreWidgets/Window/restore.svg	2023-10-10T10:34:50.651Z
+Engine/Content/Slate/Starship/Docking/DockTab_Active.png	2023-10-10T10:34:50.652Z
+Engine/Content/Slate/Starship/Docking/DockTab_Foreground.png	2023-10-10T10:34:50.653Z
+Engine/Content/Slate/Starship/Docking/DockTab_Hover.png	2023-10-10T10:34:50.654Z
+Engine/Content/Slate/Starship/Docking/Dock_Tab_Active.png	2023-10-10T10:34:50.652Z
+Engine/Content/Slate/Starship/Docking/drawer-shadow.png	2023-10-10T10:34:50.654Z
+Engine/Content/Slate/Starship/Docking/pin.svg	2023-10-10T10:34:50.655Z
+Engine/Content/Slate/Starship/Docking/show-tab-well.svg	2023-10-10T10:34:50.656Z
+Engine/Content/Slate/Starship/Insights/AllTracks_20.svg	2023-10-10T10:34:50.656Z
+Engine/Content/Slate/Starship/Insights/AutoScrollDown_20.svg	2023-10-10T10:34:50.657Z
+Engine/Content/Slate/Starship/Insights/AutoScrollRight_20.svg	2023-10-10T10:34:50.658Z
+Engine/Content/Slate/Starship/Insights/Callees.svg	2023-10-10T10:34:50.659Z
+Engine/Content/Slate/Starship/Insights/Callees_20.svg	2023-10-10T10:34:50.659Z
+Engine/Content/Slate/Starship/Insights/Callers.svg	2023-10-10T10:34:50.660Z
+Engine/Content/Slate/Starship/Insights/Callers_20.svg	2023-10-10T10:34:50.661Z
+Engine/Content/Slate/Starship/Insights/Connection.svg	2023-10-10T10:34:50.662Z
+Engine/Content/Slate/Starship/Insights/ControlsFirst.svg	2023-10-10T10:34:50.663Z
+Engine/Content/Slate/Starship/Insights/ControlsLast.svg	2023-10-10T10:34:50.664Z
+Engine/Content/Slate/Starship/Insights/ControlsNext.svg	2023-10-10T10:34:50.664Z
+Engine/Content/Slate/Starship/Insights/ControlsPrevious.svg	2023-10-10T10:34:50.665Z
+Engine/Content/Slate/Starship/Insights/Counter.svg	2023-10-10T10:34:50.666Z
+Engine/Content/Slate/Starship/Insights/Counter_20.svg	2023-10-10T10:34:50.666Z
+Engine/Content/Slate/Starship/Insights/CpuGpuTracks_20.svg	2023-10-10T10:34:50.667Z
+Engine/Content/Slate/Starship/Insights/Filter.svg	2023-10-10T10:34:50.668Z
+Engine/Content/Slate/Starship/Insights/FilterConfig.svg	2023-10-10T10:34:50.669Z
+Engine/Content/Slate/Starship/Insights/Frames.svg	2023-10-10T10:34:50.669Z
+Engine/Content/Slate/Starship/Insights/Frames_20.svg	2023-10-10T10:34:50.670Z
+Engine/Content/Slate/Starship/Insights/Function.svg	2023-10-10T10:34:50.671Z
+Engine/Content/Slate/Starship/Insights/HotPath_12.svg	2023-10-10T10:34:50.672Z
+Engine/Content/Slate/Starship/Insights/InfoTag_12.svg	2023-10-10T10:34:50.672Z
+Engine/Content/Slate/Starship/Insights/Log.svg	2023-10-10T10:49:33.283Z
+Engine/Content/Slate/Starship/Insights/Log_20.svg	2023-10-10T10:34:50.673Z
+Engine/Content/Slate/Starship/Insights/MemAllocTable.svg	2023-10-10T10:34:50.674Z
+Engine/Content/Slate/Starship/Insights/MemInvestigation.svg	2023-10-10T10:34:50.675Z
+Engine/Content/Slate/Starship/Insights/MemInvestigation_20.svg	2023-10-10T10:34:50.675Z
+Engine/Content/Slate/Starship/Insights/MemTags.svg	2023-10-10T10:34:50.677Z
+Engine/Content/Slate/Starship/Insights/MemTags_20.svg	2023-10-10T10:34:50.678Z
+Engine/Content/Slate/Starship/Insights/Memory.svg	2023-10-10T10:34:50.676Z
+Engine/Content/Slate/Starship/Insights/NetStats.svg	2023-10-10T10:34:50.678Z
+Engine/Content/Slate/Starship/Insights/NetStats_20.svg	2023-10-10T10:34:50.679Z
+Engine/Content/Slate/Starship/Insights/Networking.svg	2023-10-10T10:34:50.680Z
+Engine/Content/Slate/Starship/Insights/PacketContent.svg	2023-10-10T10:34:50.681Z
+Engine/Content/Slate/Starship/Insights/PacketContent_20.svg	2023-10-10T10:34:50.681Z
+Engine/Content/Slate/Starship/Insights/Packets.svg	2023-10-10T10:34:50.682Z
+Engine/Content/Slate/Starship/Insights/Packets_20.svg	2023-10-10T10:34:50.683Z
+Engine/Content/Slate/Starship/Insights/PluginTracks_20.svg	2023-10-10T10:34:50.683Z
+Engine/Content/Slate/Starship/Insights/Session.svg	2023-10-10T10:34:50.684Z
+Engine/Content/Slate/Starship/Insights/SizeLarge.svg	2023-10-10T10:34:50.685Z
+Engine/Content/Slate/Starship/Insights/SizeLarge_20.svg	2023-10-10T10:34:50.685Z
+Engine/Content/Slate/Starship/Insights/SizeMedium.svg	2023-10-10T10:34:50.686Z
+Engine/Content/Slate/Starship/Insights/SizeMedium_20.svg	2023-10-10T10:34:50.687Z
+Engine/Content/Slate/Starship/Insights/SizeSmall.svg	2023-10-10T10:34:50.688Z
+Engine/Content/Slate/Starship/Insights/SizeSmall_20.svg	2023-10-10T10:34:50.688Z
+Engine/Content/Slate/Starship/Insights/SpecialTracks_20.svg	2023-10-10T10:34:50.689Z
+Engine/Content/Slate/Starship/Insights/Tasks.svg	2023-10-10T10:34:50.690Z
+Engine/Content/Slate/Starship/Insights/Tasks_20.svg	2023-10-10T10:34:50.691Z
+Engine/Content/Slate/Starship/Insights/Timer.svg	2023-10-10T10:34:50.691Z
+Engine/Content/Slate/Starship/Insights/Timer_20.svg	2023-10-10T10:34:50.692Z
+Engine/Content/Slate/Starship/Insights/Timing.svg	2023-10-10T10:34:50.693Z
+Engine/Content/Slate/Starship/Insights/Timing_20.svg	2023-10-10T10:34:50.694Z
+Engine/Content/Slate/Starship/Insights/TraceStore.svg	2023-10-10T10:34:50.694Z
+Engine/Content/Slate/Starship/Insights/TraceStore_20.svg	2023-10-10T10:34:50.695Z
+Engine/Content/Slate/Starship/Insights/UTrace.svg	2023-10-10T10:34:50.696Z
+Engine/Content/Slate/Starship/Insights/UnrealInsights.svg	2023-10-10T10:34:32.821Z
+Engine/Content/Slate/Starship/Insights/ViewMode_20.svg	2023-10-10T10:34:32.833Z
+Engine/Content/Slate/Starship/Insights/ZeroCountFilter.svg	2023-10-10T10:34:50.697Z
+Engine/Content/Slate/Starship/Launcher/PaperAirplane.svg	2023-10-10T10:34:50.698Z
+Engine/Content/Slate/Starship/Notifications/Throbber.png	2023-10-10T10:34:50.698Z
+Engine/Content/Slate/Starship/SourceControl/RC_BranchModifiedBadge.svg	2023-10-10T10:34:50.701Z
+Engine/Content/Slate/Starship/SourceControl/RC_CheckIn.svg	2023-10-10T10:34:50.705Z
+Engine/Content/Slate/Starship/SourceControl/RC_CheckedBranch.svg	2023-10-10T10:34:50.702Z
+Engine/Content/Slate/Starship/SourceControl/RC_CheckedBranchBadge.svg	2023-10-10T10:34:50.703Z
+Engine/Content/Slate/Starship/SourceControl/RC_CheckedOther.svg	2023-10-10T10:34:50.704Z
+Engine/Content/Slate/Starship/SourceControl/RC_CheckedOtherBadge.svg	2023-10-10T10:34:50.704Z
+Engine/Content/Slate/Starship/SourceControl/RC_Conflicted.svg	2023-10-10T10:34:50.706Z
+Engine/Content/Slate/Starship/SourceControl/RC_Diff.svg	2023-10-10T10:34:50.706Z
+Engine/Content/Slate/Starship/SourceControl/RC_MarkedForAdd.svg	2023-10-10T10:34:50.707Z
+Engine/Content/Slate/Starship/SourceControl/RC_ModifiedLocally.svg	2023-10-10T10:34:50.708Z
+Engine/Content/Slate/Starship/SourceControl/RC_NewerVersion.svg	2023-10-10T10:34:50.709Z
+Engine/Content/Slate/Starship/SourceControl/RC_StatusLocalUpToDate.svg	2023-10-10T10:34:50.710Z
+Engine/Content/Slate/Starship/SourceControl/RC_StatusLocalUpload.svg	2023-10-10T10:34:50.709Z
+Engine/Content/Slate/Starship/SourceControl/RC_StatusRemoteDownload.svg	2023-10-10T10:34:50.711Z
+Engine/Content/Slate/Starship/SourceControl/RC_StatusRemoteUpToDate.svg	2023-10-10T10:34:50.712Z
+Engine/Content/Slate/Starship/SourceControl/RC_Sync.svg	2023-10-10T10:34:50.712Z
+Engine/Content/Slate/Starship/SourceControl/RC_SyncAndCheckOut.svg	2023-10-10T10:34:50.713Z
+Engine/Content/Slate/Starship/SourceControl/SCC_Action_Diff.svg	2023-10-10T10:34:50.714Z
+Engine/Content/Slate/Starship/SourceControl/SCC_Action_Integrate.svg	2023-10-10T10:34:50.714Z
+Engine/Content/Slate/Starship/SourceControl/SCC_Branched.svg	2023-10-10T10:34:50.715Z
+Engine/Content/Slate/Starship/SourceControl/SCC_Changelist.svg	2023-10-10T10:34:50.716Z
+Engine/Content/Slate/Starship/SourceControl/SCC_CheckedOut.svg	2023-10-10T10:34:50.716Z
+Engine/Content/Slate/Starship/SourceControl/SCC_ContentAdd.svg	2023-10-10T10:34:50.717Z
+Engine/Content/Slate/Starship/SourceControl/SCC_DlgCheckedOutOther.svg	2023-10-10T10:34:50.718Z
+Engine/Content/Slate/Starship/SourceControl/SCC_DlgNotCurrent.svg	2023-10-10T10:34:50.719Z
+Engine/Content/Slate/Starship/SourceControl/SCC_DlgReadOnly.svg	2023-10-10T10:34:50.719Z
+Engine/Content/Slate/Starship/SourceControl/SCC_Lock.svg	2023-10-10T10:34:50.720Z
+Engine/Content/Slate/Starship/SourceControl/SCC_MarkedForDelete.svg	2023-10-10T10:34:50.721Z
+Engine/Content/Slate/Starship/SourceControl/SCC_ModifiedOtherBranch.svg	2023-10-10T10:34:50.722Z
+Engine/Content/Slate/Starship/SourceControl/SCC_NotInDepot.svg	2023-10-10T10:34:50.723Z
+Engine/Content/Slate/Starship/SourceControl/SourceControl.svg	2023-10-10T10:34:50.723Z
+Engine/Content/Slate/Starship/SourceControl/Status/RevisionControl.svg	2023-10-10T10:34:50.724Z
+Engine/Content/Slate/Starship/SourceControl/Status/RevisionControlBadgeConnected.svg	2023-10-10T10:34:50.725Z
+Engine/Content/Slate/Starship/SourceControl/Status/RevisionControlBadgeWarning.svg	2023-10-10T10:34:50.726Z
+Engine/Content/Slate/Starship/SourceControl/icon_SCC_Change_Source_Control_Settings.svg	2023-10-10T10:34:50.699Z
+Engine/Content/Slate/Starship/SourceControl/icon_SCC_History.svg	2023-10-10T10:34:50.700Z
+Engine/Content/Slate/Starship/SourceControl/icon_SCC_Revert.svg	2023-10-10T10:34:50.701Z
+Engine/Content/Slate/Starship/StatusBar/drawer-shadow-bottom.png	2023-10-10T10:34:50.727Z
+Engine/Content/Slate/Testing/BrushWireframe.png	2023-10-10T10:34:31.865Z
+Engine/Content/Slate/Testing/DefaultPawn_16px.png	2023-10-10T10:34:50.727Z
+Engine/Content/Slate/Testing/FlatColorSquare.png	2023-10-10T10:49:33.432Z
+Engine/Content/Slate/Testing/Hyperlink.png	2023-10-10T10:49:33.438Z
+Engine/Content/Slate/Testing/Lit.png	2023-10-10T10:34:31.869Z
+Engine/Content/Slate/Testing/NewLevelBlank.png	2023-10-10T10:34:50.729Z
+Engine/Content/Slate/Testing/TestRotation.png	2023-10-10T10:34:50.730Z
+Engine/Content/Slate/Testing/Unlit.png	2023-10-10T10:34:31.876Z
+Engine/Content/Slate/Testing/Wireframe.png	2023-10-10T10:34:31.878Z
+Engine/Content/Slate/Tutorials/TutorialBorder.png	2023-10-10T10:34:50.730Z
+Engine/Content/Slate/Tutorials/TutorialShadow.png	2023-10-10T10:34:50.731Z
+Engine/Plugins/2D/Paper2D/Paper2D.uplugin	2024-07-08T14:33:34.926Z
+Engine/Plugins/AI/AISupport/AISupport.uplugin	2024-07-08T14:33:34.927Z
+Engine/Plugins/AI/EnvironmentQueryEditor/EnvironmentQueryEditor.uplugin	2024-07-08T14:33:34.928Z
+Engine/Plugins/Animation/ACLPlugin/ACLPlugin.uplugin	2024-07-08T14:33:34.933Z
+Engine/Plugins/Animation/AnimationData/AnimationData.uplugin	2024-07-08T14:33:34.934Z
+Engine/Plugins/Animation/ControlRigSpline/ControlRigSpline.uplugin	2024-07-08T14:33:34.940Z
+Engine/Plugins/Animation/ControlRig/ControlRig.uplugin	2024-07-08T14:33:34.939Z
+Engine/Plugins/Animation/IKRig/IKRig.uplugin	2024-07-08T14:33:34.957Z
+Engine/Plugins/Animation/LiveLink/LiveLink.uplugin	2024-07-08T14:33:34.959Z
+Engine/Plugins/Bridge/Bridge.uplugin	2024-07-08T14:34:27.168Z
+Engine/Plugins/Cameras/CameraShakePreviewer/CameraShakePreviewer.uplugin	2024-07-08T14:33:34.971Z
+Engine/Plugins/Cameras/GameplayCameras/GameplayCameras.uplugin	2024-07-08T14:33:34.970Z
+Engine/Plugins/Compositing/Composure/Composure.uplugin	2024-07-08T14:33:34.973Z
+Engine/Plugins/Compositing/OpenColorIO/OpenColorIO.uplugin	2024-07-08T14:33:34.974Z
+Engine/Plugins/Compression/OodleNetwork/OodleNetwork.uplugin	2024-07-08T14:33:34.977Z
+Engine/Plugins/Developer/AnimationSharing/AnimationSharing.uplugin	2024-07-08T14:33:34.978Z
+Engine/Plugins/Developer/Concert/ConcertApp/MultiUserClient/MultiUserClient.uplugin	2024-07-08T14:33:34.982Z
+Engine/Plugins/Developer/Concert/ConcertMain/ConcertMain.uplugin	2024-07-08T14:33:34.984Z
+Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/ConcertSyncClient.uplugin	2024-07-08T14:33:34.985Z
+Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/ConcertSyncCore.uplugin	2024-07-08T14:33:34.985Z
+Engine/Plugins/Developer/Concert/ConcertUI/ConcertSharedSlate/ConcertSharedSlate.uplugin	2024-07-08T14:33:34.989Z
+Engine/Plugins/Developer/DumpGPUServices/DumpGPUServices.uplugin	2024-07-08T14:33:34.990Z
+Engine/Plugins/Developer/PixWinPlugin/PixWinPlugin.uplugin	2024-07-08T14:33:34.995Z
+Engine/Plugins/Developer/PluginUtils/PluginUtils.uplugin	2024-07-08T14:33:34.997Z
+Engine/Plugins/Developer/RenderDocPlugin/RenderDocPlugin.uplugin	2024-07-08T14:33:34.998Z
+Engine/Plugins/Developer/UObjectPlugin/UObjectPlugin.uplugin	2024-07-08T14:33:35.007Z
+Engine/Plugins/Editor/AssetManagerEditor/AssetManagerEditor.uplugin	2024-07-08T14:33:35.011Z
+Engine/Plugins/Editor/BlueprintHeaderView/BlueprintHeaderView.uplugin	2024-07-08T14:33:35.016Z
+Engine/Plugins/Editor/BlueprintMaterialTextureNodes/BlueprintMaterialTextureNodes.uplugin	2024-07-08T14:33:35.017Z
+Engine/Plugins/Editor/ConsoleVariablesEditor/ConsoleVariables.uplugin	2024-07-08T14:33:35.020Z
+Engine/Plugins/Editor/EditorScriptingUtilities/EditorScriptingUtilities.uplugin	2024-07-08T14:33:35.039Z
+Engine/Plugins/Editor/FacialAnimation/FacialAnimation.uplugin	2024-07-08T14:33:35.041Z
+Engine/Plugins/Editor/GameplayTagsEditor/GameplayTagsEditor.uplugin	2024-07-08T14:33:35.041Z
+Engine/Plugins/Editor/GeometryMode/GeometryMode.uplugin	2024-07-08T14:33:35.042Z
+Engine/Plugins/Editor/ObjectMixer/LightMixer/LightMixer.uplugin	2024-07-08T14:33:35.051Z
+Engine/Plugins/Editor/ObjectMixer/ObjectMixer/ObjectMixer.uplugin	2024-07-08T14:33:35.052Z
+Engine/Plugins/Editor/SequencerAnimTools/SequencerAnimTools.uplugin	2024-07-08T14:33:35.055Z
+Engine/Plugins/Editor/SpeedTreeImporter/SpeedTreeImporter.uplugin	2024-07-08T14:33:35.057Z
+Engine/Plugins/Editor/UVEditor/UVEditor.uplugin	2024-07-08T14:33:35.058Z
+Engine/Plugins/EnhancedInput/EnhancedInput.uplugin	2024-07-08T14:33:35.061Z
+Engine/Plugins/Enterprise/DatasmithContent/DatasmithContent.uplugin	2024-07-08T14:33:35.069Z
+Engine/Plugins/Enterprise/GLTFExporter/GLTFExporter.uplugin	2024-07-08T14:33:35.073Z
+Engine/Plugins/Enterprise/VariantManagerContent/VariantManagerContent.uplugin	2024-07-08T14:33:35.078Z
+Engine/Plugins/Enterprise/VariantManager/VariantManager.uplugin	2024-07-08T14:33:35.077Z
+Engine/Plugins/Experimental/AutomationUtils/AutomationUtils.uplugin	2024-07-08T14:33:35.170Z
+Engine/Plugins/Experimental/BackChannel/BackChannel.uplugin	2024-07-08T14:33:35.173Z
+Engine/Plugins/Experimental/ChaosCaching/ChaosCaching.uplugin	2024-07-08T14:33:35.175Z
+Engine/Plugins/Experimental/ChaosClothEditor/ChaosClothEditor.uplugin	2024-07-08T14:33:35.183Z
+Engine/Plugins/Experimental/ChaosCloth/ChaosCloth.uplugin	2024-07-08T14:33:35.177Z
+Engine/Plugins/Experimental/ChaosEditor/ChaosEditor.uplugin	2024-07-08T14:33:35.183Z
+Engine/Plugins/Experimental/ChaosNiagara/ChaosNiagara.uplugin	2024-07-08T14:33:35.309Z
+Engine/Plugins/Experimental/ChaosSolverPlugin/ChaosSolverPlugin.uplugin	2024-07-08T14:33:35.310Z
+Engine/Plugins/Experimental/ChaosUserDataPT/ChaosUserDataPT.uplugin	2024-07-08T14:33:35.311Z
+Engine/Plugins/Experimental/CharacterAI/CharacterAI.uplugin	2024-07-08T14:33:35.540Z
+Engine/Plugins/Experimental/ColorCorrectRegions/ColorCorrectRegions.uplugin	2024-07-08T14:33:35.549Z
+Engine/Plugins/Experimental/Dataflow/Dataflow.uplugin	2024-07-08T14:33:35.555Z
+Engine/Plugins/Experimental/Fracture/Fracture.uplugin	2024-07-08T14:33:35.562Z
+Engine/Plugins/Experimental/FullBodyIK/FullBodyIK.uplugin	2024-07-08T14:33:35.564Z
+Engine/Plugins/Experimental/GeometryCollectionPlugin/GeometryCollectionPlugin.uplugin	2024-07-08T14:33:35.570Z
+Engine/Plugins/Experimental/LocalizableMessage/LocalizableMessage.uplugin	2024-07-08T14:33:35.661Z
+Engine/Plugins/Experimental/OpenImageDenoise/OpenImageDenoise.uplugin	2024-07-08T14:33:35.923Z
+Engine/Plugins/Experimental/PlanarCutPlugin/PlanarCut.uplugin	2024-07-08T14:33:36.053Z
+Engine/Plugins/Experimental/PlatformCrypto/PlatformCrypto.uplugin	2024-07-08T14:33:36.054Z
+Engine/Plugins/Experimental/PythonScriptPlugin/PythonScriptPlugin.uplugin	2024-07-08T14:33:36.058Z
+Engine/Plugins/Experimental/StructUtils/StructUtils.uplugin	2024-07-08T14:33:36.598Z
+Engine/Plugins/Experimental/ToolPresets/ToolPresets.uplugin	2024-07-08T14:33:36.602Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/VirtualProductionUtilities.uplugin	2024-07-08T14:33:36.616Z
+Engine/Plugins/Experimental/VirtualProduction/VPRoles/VPRoles.uplugin	2024-07-08T14:33:36.613Z
+Engine/Plugins/Experimental/VirtualProduction/VPSettings/VPSettings.uplugin	2024-07-08T14:33:36.614Z
+Engine/Plugins/FX/Niagara/Niagara.uplugin	2024-07-08T14:33:36.634Z
+Engine/Plugins/Importers/AlembicImporter/AlembicImporter.uplugin	2024-07-08T14:33:36.639Z
+Engine/Plugins/Interchange/Editor/InterchangeEditor.uplugin	2024-07-08T14:33:36.736Z
+Engine/Plugins/Interchange/Runtime/Interchange.uplugin	2024-07-08T14:33:36.738Z
+Engine/Plugins/Media/AvfMedia/AvfMedia.uplugin	2024-07-08T14:33:36.750Z
+Engine/Plugins/Media/ImgMedia/ImgMedia.uplugin	2024-07-08T14:33:36.768Z
+Engine/Plugins/Media/MediaCompositing/MediaCompositing.uplugin	2024-07-08T14:33:36.769Z
+Engine/Plugins/Media/MediaIOFramework/MediaIOFramework.uplugin	2024-07-08T14:33:36.773Z
+Engine/Plugins/Media/MediaPlate/MediaPlate.uplugin	2024-07-08T14:33:36.775Z
+Engine/Plugins/Media/WebMMedia/WebMMedia.uplugin	2024-07-08T14:33:36.794Z
+Engine/Plugins/Media/WmfMedia/WmfMedia.uplugin	2024-07-08T14:33:36.795Z
+Engine/Plugins/MeshPainting/MeshPainting.uplugin	2024-07-08T14:33:36.800Z
+Engine/Plugins/Messaging/TcpMessaging/TcpMessaging.uplugin	2024-07-08T14:33:36.912Z
+Engine/Plugins/Messaging/UdpMessaging/UdpMessaging.uplugin	2024-07-08T14:33:36.913Z
+Engine/Plugins/MovieScene/ActorSequence/ActorSequence.uplugin	2024-07-08T14:33:36.914Z
+Engine/Plugins/MovieScene/LevelSequenceEditor/LevelSequenceEditor.uplugin	2024-07-08T14:33:36.916Z
+Engine/Plugins/MovieScene/MovieRenderPipeline/MovieRenderPipeline.uplugin	2024-07-08T14:33:36.919Z
+Engine/Plugins/MovieScene/SequencerScripting/SequencerScripting.uplugin	2024-07-08T14:33:36.943Z
+Engine/Plugins/MovieScene/TemplateSequence/TemplateSequence.uplugin	2024-07-08T14:33:36.944Z
+Engine/Plugins/Online/OnlineBase/OnlineBase.uplugin	2024-07-08T14:33:36.988Z
+Engine/Plugins/Online/OnlineServices/OnlineServices.uplugin	2024-07-08T14:33:36.991Z
+Engine/Plugins/Online/OnlineSubsystemNull/OnlineSubsystemNull.uplugin	2024-07-08T14:33:37.394Z
+Engine/Plugins/Online/OnlineSubsystemUtils/OnlineSubsystemUtils.uplugin	2024-07-08T14:33:37.400Z
+Engine/Plugins/Online/OnlineSubsystem/OnlineSubsystem.uplugin	2024-07-08T14:33:37.096Z
+Engine/Plugins/Portal/LauncherChunkInstaller/LauncherChunkInstaller.uplugin	2024-07-08T14:33:37.405Z
+Engine/Plugins/Runtime/ActorLayerUtilities/ActorLayerUtilities.uplugin	2024-07-08T14:33:37.409Z
+Engine/Plugins/Runtime/AndroidFileServer/AndroidFileServer.uplugin	2024-07-08T14:33:37.431Z
+Engine/Plugins/Runtime/AndroidPermission/AndroidPermission.uplugin	2024-07-08T14:33:37.434Z
+Engine/Plugins/Runtime/AppleImageUtils/AppleImageUtils.uplugin	2024-07-08T14:33:37.438Z
+Engine/Plugins/Runtime/ArchVisCharacter/ArchVisCharacter.uplugin	2024-07-08T14:33:37.712Z
+Engine/Plugins/Runtime/AssetTags/AssetTags.uplugin	2024-07-08T14:33:37.713Z
+Engine/Plugins/Runtime/AudioCapture/AudioCapture.uplugin	2024-07-08T14:33:37.714Z
+Engine/Plugins/Runtime/AudioSynesthesia/AudioSynesthesia.uplugin	2024-07-08T14:33:37.717Z
+Engine/Plugins/Runtime/AudioWidgets/AudioWidgets.uplugin	2024-07-08T14:33:37.718Z
+Engine/Plugins/Runtime/CableComponent/CableComponent.uplugin	2024-07-08T14:33:37.719Z
+Engine/Plugins/Runtime/ChunkDownloader/ChunkDownloader.uplugin	2024-07-08T14:33:37.721Z
+Engine/Plugins/Runtime/CustomMeshComponent/CustomMeshComponent.uplugin	2024-07-08T14:33:37.723Z
+Engine/Plugins/Runtime/Database/SQLiteCore/SQLiteCore.uplugin	2024-07-08T14:33:37.726Z
+Engine/Plugins/Runtime/ExampleDeviceProfileSelector/ExampleDeviceProfileSelector.uplugin	2024-07-08T14:33:37.728Z
+Engine/Plugins/Runtime/GeometryCache/GeometryCache.uplugin	2024-07-08T14:33:37.737Z
+Engine/Plugins/Runtime/GeometryProcessing/GeometryProcessing.uplugin	2024-07-08T14:33:37.738Z
+Engine/Plugins/Runtime/GooglePAD/GooglePAD.uplugin	2024-07-08T14:33:37.746Z
+Engine/Plugins/Runtime/HPMotionController/HPMotionController.uplugin	2024-07-08T14:33:37.750Z
+Engine/Plugins/Runtime/InputDebugging/InputDebugging.uplugin	2024-07-08T14:33:37.753Z
+Engine/Plugins/Runtime/LiveLinkOvernDisplay/LiveLinkOverNDisplay.uplugin	2024-07-08T14:33:37.847Z
+Engine/Plugins/Runtime/LocationServicesBPLibrary/LocationServicesBPLibrary.uplugin	2024-07-08T14:33:37.849Z
+Engine/Plugins/Runtime/Metasound/Metasound.uplugin	2024-07-08T14:33:37.855Z
+Engine/Plugins/Runtime/MobilePatchingUtils/MobilePatchingUtils.uplugin	2024-07-08T14:33:37.861Z
+Engine/Plugins/Runtime/MsQuic/MsQuic.uplugin	2024-07-08T14:33:37.886Z
+Engine/Plugins/Runtime/OSC/OSC.uplugin	2024-07-08T14:33:38.151Z
+Engine/Plugins/Runtime/OpenCV/OpenCV.uplugin	2024-07-08T14:33:38.142Z
+Engine/Plugins/Runtime/OpenXREyeTracker/OpenXREyeTracker.uplugin	2024-07-08T14:33:38.145Z
+Engine/Plugins/Runtime/OpenXRHandTracking/OpenXRHandTracking.uplugin	2024-07-08T14:33:38.146Z
+Engine/Plugins/Runtime/OpenXR/OpenXR.uplugin	2024-07-08T14:33:38.143Z
+Engine/Plugins/Runtime/ProceduralMeshComponent/ProceduralMeshComponent.uplugin	2024-07-08T14:33:38.156Z
+Engine/Plugins/Runtime/PropertyAccess/PropertyAccessEditor.uplugin	2024-07-08T14:33:38.158Z
+Engine/Plugins/Runtime/ResonanceAudio/ResonanceAudio.uplugin	2024-07-08T14:33:38.160Z
+Engine/Plugins/Runtime/RigVM/RigVM.uplugin	2024-07-08T14:33:38.162Z
+Engine/Plugins/Runtime/SignificanceManager/SignificanceManager.uplugin	2024-07-08T14:33:38.164Z
+Engine/Plugins/Runtime/SoundFields/SoundFields.uplugin	2024-07-08T14:33:38.171Z
+Engine/Plugins/Runtime/Synthesis/Synthesis.uplugin	2024-07-08T14:33:38.211Z
+Engine/Plugins/Runtime/WaveTable/WaveTable.uplugin	2024-07-08T14:33:38.235Z
+Engine/Plugins/Runtime/WebMMoviePlayer/WebMMoviePlayer.uplugin	2024-07-08T14:33:38.261Z
+Engine/Plugins/Runtime/WindowsDeviceProfileSelector/WindowsDeviceProfileSelector.uplugin	2024-07-08T14:33:38.263Z
+Engine/Plugins/Runtime/WindowsMoviePlayer/WindowsMoviePlayer.uplugin	2024-07-08T14:33:38.264Z
+Engine/Plugins/Runtime/XRBase/XRBase.uplugin	2024-07-08T14:33:38.281Z
+Engine/Plugins/Runtime/nDisplayModularFeatures/nDisplayModularFeatures.uplugin	2024-07-08T14:33:37.901Z
+Engine/Plugins/Runtime/nDisplay/nDisplay.uplugin	2024-07-08T14:33:37.889Z
+Engine/Plugins/Tests/InterchangeTests/InterchangeTests.uplugin	2024-07-08T14:33:38.360Z
+Engine/Plugins/TraceUtilities/TraceUtilities.uplugin	2024-07-08T14:33:38.666Z
+Engine/Plugins/VirtualProduction/CameraCalibrationCore/CameraCalibrationCore.uplugin	2024-07-08T14:33:38.668Z
+Engine/Plugins/VirtualProduction/MultiUserTakes/MultiUserTakes.uplugin	2024-07-08T14:33:38.723Z
+Engine/Plugins/VirtualProduction/RemoteControlInterception/RemoteControlInterception.uplugin	2024-07-08T14:33:38.748Z
+Engine/Plugins/VirtualProduction/Switchboard/Switchboard.uplugin	2024-07-08T14:33:39.163Z
+Engine/Plugins/VirtualProduction/Takes/Takes.uplugin	2024-07-08T14:33:39.164Z
+MetaCastBachelor/MetaCastBachelor.uproject	2024-07-25T14:03:19.042Z
+MetaCastBachelor/Plugins/UE4_GPUPointCloudRenderer/GPUPointCloudRenderer.uplugin	2024-08-01T16:35:44.126Z
+MetaCastBachelor/Plugins/UEPlugin-Kdtree/Kdtree/Kdtree.uplugin	2024-07-19T10:21:06.629Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/RWTHVRToolkit.uplugin	2024-07-08T14:11:02.941Z
+MetaCastBachelor/Plugins/universallogging/UniversalLogging.uplugin	2024-08-01T12:58:27.950Z
+Engine/Content/Internationalization/icudt64l/cnvalias.icu	2023-10-10T10:49:16.947Z
+Engine/Content/Internationalization/icudt64l/confusables.cfu	2023-10-10T10:49:16.968Z
+Engine/Content/Internationalization/icudt64l/currencyNumericCodes.res	2023-10-10T10:49:17.208Z
+Engine/Content/Internationalization/icudt64l/dayPeriods.res	2023-10-10T10:49:17.211Z
+Engine/Content/Internationalization/icudt64l/en.res	2023-10-10T10:34:43.214Z
+Engine/Content/Internationalization/icudt64l/en_001.res	2023-10-10T10:34:43.215Z
+Engine/Content/Internationalization/icudt64l/en_150.res	2023-10-10T10:34:43.215Z
+Engine/Content/Internationalization/icudt64l/en_AE.res	2023-10-10T10:34:43.216Z
+Engine/Content/Internationalization/icudt64l/en_AG.res	2023-10-10T10:49:17.222Z
+Engine/Content/Internationalization/icudt64l/en_AI.res	2023-10-10T10:49:17.227Z
+Engine/Content/Internationalization/icudt64l/en_AS.res	2023-10-10T10:49:17.232Z
+Engine/Content/Internationalization/icudt64l/en_AT.res	2023-10-10T10:34:43.219Z
+Engine/Content/Internationalization/icudt64l/en_AU.res	2023-10-10T10:34:43.219Z
+Engine/Content/Internationalization/icudt64l/en_BB.res	2023-10-10T10:49:17.238Z
+Engine/Content/Internationalization/icudt64l/en_BE.res	2023-10-10T10:34:43.220Z
+Engine/Content/Internationalization/icudt64l/en_BI.res	2023-10-10T10:34:43.221Z
+Engine/Content/Internationalization/icudt64l/en_BM.res	2023-10-10T10:49:17.244Z
+Engine/Content/Internationalization/icudt64l/en_BS.res	2023-10-10T10:49:17.248Z
+Engine/Content/Internationalization/icudt64l/en_BW.res	2023-10-10T10:34:43.222Z
+Engine/Content/Internationalization/icudt64l/en_BZ.res	2023-10-10T10:34:43.222Z
+Engine/Content/Internationalization/icudt64l/en_CA.res	2023-10-10T10:34:43.223Z
+Engine/Content/Internationalization/icudt64l/en_CC.res	2023-10-10T10:49:17.256Z
+Engine/Content/Internationalization/icudt64l/en_CH.res	2023-10-10T10:34:43.224Z
+Engine/Content/Internationalization/icudt64l/en_CK.res	2023-10-10T10:49:17.260Z
+Engine/Content/Internationalization/icudt64l/en_CM.res	2023-10-10T10:49:17.263Z
+Engine/Content/Internationalization/icudt64l/en_CX.res	2023-10-10T10:49:17.266Z
+Engine/Content/Internationalization/icudt64l/en_CY.res	2023-10-10T10:49:17.269Z
+Engine/Content/Internationalization/icudt64l/en_DE.res	2023-10-10T10:34:43.224Z
+Engine/Content/Internationalization/icudt64l/en_DG.res	2023-10-10T10:49:17.274Z
+Engine/Content/Internationalization/icudt64l/en_DK.res	2023-10-10T10:34:43.225Z
+Engine/Content/Internationalization/icudt64l/en_DM.res	2023-10-10T10:49:17.278Z
+Engine/Content/Internationalization/icudt64l/en_ER.res	2023-10-10T10:49:17.281Z
+Engine/Content/Internationalization/icudt64l/en_FI.res	2023-10-10T10:34:43.226Z
+Engine/Content/Internationalization/icudt64l/en_FJ.res	2023-10-10T10:49:17.286Z
+Engine/Content/Internationalization/icudt64l/en_FK.res	2023-10-10T10:49:17.289Z
+Engine/Content/Internationalization/icudt64l/en_FM.res	2023-10-10T10:49:17.292Z
+Engine/Content/Internationalization/icudt64l/en_GB.res	2023-10-10T10:34:43.227Z
+Engine/Content/Internationalization/icudt64l/en_GD.res	2023-10-10T10:49:17.297Z
+Engine/Content/Internationalization/icudt64l/en_GG.res	2023-10-10T10:49:17.300Z
+Engine/Content/Internationalization/icudt64l/en_GH.res	2023-10-10T10:49:17.302Z
+Engine/Content/Internationalization/icudt64l/en_GI.res	2023-10-10T10:49:17.305Z
+Engine/Content/Internationalization/icudt64l/en_GM.res	2023-10-10T10:49:17.309Z
+Engine/Content/Internationalization/icudt64l/en_GU.res	2023-10-10T10:49:17.312Z
+Engine/Content/Internationalization/icudt64l/en_GY.res	2023-10-10T10:49:17.315Z
+Engine/Content/Internationalization/icudt64l/en_HK.res	2023-10-10T10:34:43.227Z
+Engine/Content/Internationalization/icudt64l/en_IE.res	2023-10-10T10:34:43.228Z
+Engine/Content/Internationalization/icudt64l/en_IL.res	2023-10-10T10:34:43.229Z
+Engine/Content/Internationalization/icudt64l/en_IM.res	2023-10-10T10:49:17.322Z
+Engine/Content/Internationalization/icudt64l/en_IN.res	2023-10-10T10:34:43.229Z
+Engine/Content/Internationalization/icudt64l/en_IO.res	2023-10-10T10:49:17.326Z
+Engine/Content/Internationalization/icudt64l/en_JE.res	2023-10-10T10:49:17.329Z
+Engine/Content/Internationalization/icudt64l/en_JM.res	2023-10-10T10:49:17.332Z
+Engine/Content/Internationalization/icudt64l/en_KE.res	2023-10-10T10:49:17.335Z
+Engine/Content/Internationalization/icudt64l/en_KI.res	2023-10-10T10:49:17.338Z
+Engine/Content/Internationalization/icudt64l/en_KN.res	2023-10-10T10:49:17.341Z
+Engine/Content/Internationalization/icudt64l/en_KY.res	2023-10-10T10:49:17.344Z
+Engine/Content/Internationalization/icudt64l/en_LC.res	2023-10-10T10:49:17.348Z
+Engine/Content/Internationalization/icudt64l/en_LR.res	2023-10-10T10:49:17.351Z
+Engine/Content/Internationalization/icudt64l/en_LS.res	2023-10-10T10:49:17.354Z
+Engine/Content/Internationalization/icudt64l/en_MG.res	2023-10-10T10:49:17.357Z
+Engine/Content/Internationalization/icudt64l/en_MH.res	2023-10-10T10:49:17.361Z
+Engine/Content/Internationalization/icudt64l/en_MO.res	2023-10-10T10:49:17.364Z
+Engine/Content/Internationalization/icudt64l/en_MP.res	2023-10-10T10:34:43.218Z
+Engine/Content/Internationalization/icudt64l/en_MS.res	2023-10-10T10:49:17.369Z
+Engine/Content/Internationalization/icudt64l/en_MT.res	2023-10-10T10:34:43.230Z
+Engine/Content/Internationalization/icudt64l/en_MU.res	2023-10-10T10:34:43.217Z
+Engine/Content/Internationalization/icudt64l/en_MW.res	2023-10-10T10:34:43.217Z
+Engine/Content/Internationalization/icudt64l/en_MY.res	2023-10-10T10:49:17.381Z
+Engine/Content/Internationalization/icudt64l/en_NA.res	2023-10-10T10:49:17.385Z
+Engine/Content/Internationalization/icudt64l/en_NF.res	2023-10-10T10:49:17.391Z
+Engine/Content/Internationalization/icudt64l/en_NG.res	2023-10-10T10:34:43.232Z
+Engine/Content/Internationalization/icudt64l/en_NH.res	2023-10-10T10:34:43.233Z
+Engine/Content/Internationalization/icudt64l/en_NL.res	2023-10-10T10:34:43.233Z
+Engine/Content/Internationalization/icudt64l/en_NR.res	2023-10-10T10:49:17.400Z
+Engine/Content/Internationalization/icudt64l/en_NU.res	2023-10-10T10:49:17.403Z
+Engine/Content/Internationalization/icudt64l/en_NZ.res	2023-10-10T10:34:43.234Z
+Engine/Content/Internationalization/icudt64l/en_PG.res	2023-10-10T10:49:17.408Z
+Engine/Content/Internationalization/icudt64l/en_PH.res	2023-10-10T10:49:17.410Z
+Engine/Content/Internationalization/icudt64l/en_PK.res	2023-10-10T10:34:43.235Z
+Engine/Content/Internationalization/icudt64l/en_PN.res	2023-10-10T10:49:17.415Z
+Engine/Content/Internationalization/icudt64l/en_PR.res	2023-10-10T10:49:17.419Z
+Engine/Content/Internationalization/icudt64l/en_PW.res	2023-10-10T10:49:17.423Z
+Engine/Content/Internationalization/icudt64l/en_RH.res	2023-10-10T10:34:43.236Z
+Engine/Content/Internationalization/icudt64l/en_RW.res	2023-10-10T10:49:17.427Z
+Engine/Content/Internationalization/icudt64l/en_SB.res	2023-10-10T10:49:17.430Z
+Engine/Content/Internationalization/icudt64l/en_SC.res	2023-10-10T10:49:17.433Z
+Engine/Content/Internationalization/icudt64l/en_SD.res	2023-10-10T10:49:17.436Z
+Engine/Content/Internationalization/icudt64l/en_SE.res	2023-10-10T10:34:43.237Z
+Engine/Content/Internationalization/icudt64l/en_SG.res	2023-10-10T10:34:43.238Z
+Engine/Content/Internationalization/icudt64l/en_SH.res	2023-10-10T10:49:17.442Z
+Engine/Content/Internationalization/icudt64l/en_SI.res	2023-10-10T10:34:43.238Z
+Engine/Content/Internationalization/icudt64l/en_SL.res	2023-10-10T10:49:17.446Z
+Engine/Content/Internationalization/icudt64l/en_SS.res	2023-10-10T10:49:17.449Z
+Engine/Content/Internationalization/icudt64l/en_SX.res	2023-10-10T10:49:17.452Z
+Engine/Content/Internationalization/icudt64l/en_SZ.res	2023-10-10T10:49:17.455Z
+Engine/Content/Internationalization/icudt64l/en_TC.res	2023-10-10T10:49:17.458Z
+Engine/Content/Internationalization/icudt64l/en_TK.res	2023-10-10T10:49:17.461Z
+Engine/Content/Internationalization/icudt64l/en_TO.res	2023-10-10T10:49:17.465Z
+Engine/Content/Internationalization/icudt64l/en_TT.res	2023-10-10T10:49:17.467Z
+Engine/Content/Internationalization/icudt64l/en_TV.res	2023-10-10T10:49:17.470Z
+Engine/Content/Internationalization/icudt64l/en_TZ.res	2023-10-10T10:49:17.473Z
+Engine/Content/Internationalization/icudt64l/en_UG.res	2023-10-10T10:34:43.232Z
+Engine/Content/Internationalization/icudt64l/en_UM.res	2023-10-10T10:49:17.477Z
+Engine/Content/Internationalization/icudt64l/en_US.res	2023-10-10T10:49:17.480Z
+Engine/Content/Internationalization/icudt64l/en_US_POSIX.res	2023-10-10T10:34:43.239Z
+Engine/Content/Internationalization/icudt64l/en_VC.res	2023-10-10T10:49:17.485Z
+Engine/Content/Internationalization/icudt64l/en_VG.res	2023-10-10T10:49:17.488Z
+Engine/Content/Internationalization/icudt64l/en_VI.res	2023-10-10T10:34:43.236Z
+Engine/Content/Internationalization/icudt64l/en_VU.res	2023-10-10T10:49:17.493Z
+Engine/Content/Internationalization/icudt64l/en_WS.res	2023-10-10T10:49:17.495Z
+Engine/Content/Internationalization/icudt64l/en_ZA.res	2023-10-10T10:34:43.240Z
+Engine/Content/Internationalization/icudt64l/en_ZM.res	2023-10-10T10:34:43.231Z
+Engine/Content/Internationalization/icudt64l/en_ZW.res	2023-10-10T10:34:43.240Z
+Engine/Content/Internationalization/icudt64l/genderList.res	2023-10-10T10:49:17.503Z
+Engine/Content/Internationalization/icudt64l/icustd.res	2023-10-10T10:49:17.508Z
+Engine/Content/Internationalization/icudt64l/icuver.res	2023-10-10T10:49:17.511Z
+Engine/Content/Internationalization/icudt64l/keyTypeData.res	2023-10-10T10:49:17.514Z
+Engine/Content/Internationalization/icudt64l/likelySubtags.res	2023-10-10T10:49:17.785Z
+Engine/Content/Internationalization/icudt64l/metadata.res	2023-10-10T10:49:17.788Z
+Engine/Content/Internationalization/icudt64l/metaZones.res	2023-10-10T10:49:17.791Z
+Engine/Content/Internationalization/icudt64l/nfkc.nrm	2023-10-10T10:49:17.793Z
+Engine/Content/Internationalization/icudt64l/nfkc_cf.nrm	2023-10-10T10:49:17.796Z
+Engine/Content/Internationalization/icudt64l/numberingSystems.res	2023-10-10T10:49:17.799Z
+Engine/Content/Internationalization/icudt64l/pluralRanges.res	2023-10-10T10:49:17.802Z
+Engine/Content/Internationalization/icudt64l/plurals.res	2023-10-10T10:49:17.805Z
+Engine/Content/Internationalization/icudt64l/pool.res	2023-10-10T10:34:43.255Z
+Engine/Content/Internationalization/icudt64l/root.res	2023-10-10T10:34:43.267Z
+Engine/Content/Internationalization/icudt64l/supplementalData.res	2023-10-10T10:49:18.100Z
+Engine/Content/Internationalization/icudt64l/timezoneTypes.res	2023-10-10T10:49:18.103Z
+Engine/Content/Internationalization/icudt64l/ulayout.icu	2023-10-10T10:49:18.115Z
+Engine/Content/Internationalization/icudt64l/unames.icu	2023-10-10T10:49:18.118Z
+Engine/Content/Internationalization/icudt64l/uts46.nrm	2023-10-10T10:49:18.391Z
+Engine/Content/Internationalization/icudt64l/windowsZones.res	2023-10-10T10:49:18.394Z
+Engine/Content/Internationalization/icudt64l/zoneinfo64.res	2023-10-10T10:49:18.657Z
+Engine/Content/Internationalization/icudt64l/brkitr/char.brk	2023-10-10T10:49:16.904Z
+Engine/Content/Internationalization/icudt64l/brkitr/en.res	2023-10-10T10:49:16.907Z
+Engine/Content/Internationalization/icudt64l/brkitr/en_US.res	2023-10-10T10:49:16.910Z
+Engine/Content/Internationalization/icudt64l/brkitr/en_US_POSIX.res	2023-10-10T10:49:16.913Z
+Engine/Content/Internationalization/icudt64l/brkitr/line.brk	2023-10-10T10:49:16.916Z
+Engine/Content/Internationalization/icudt64l/brkitr/line_loose.brk	2023-10-10T10:49:16.919Z
+Engine/Content/Internationalization/icudt64l/brkitr/line_normal.brk	2023-10-10T10:49:16.923Z
+Engine/Content/Internationalization/icudt64l/brkitr/root.res	2023-10-10T10:49:16.926Z
+Engine/Content/Internationalization/icudt64l/brkitr/sent.brk	2023-10-10T10:49:16.930Z
+Engine/Content/Internationalization/icudt64l/brkitr/sent_el.brk	2023-10-10T10:49:16.933Z
+Engine/Content/Internationalization/icudt64l/brkitr/title.brk	2023-10-10T10:49:16.936Z
+Engine/Content/Internationalization/icudt64l/brkitr/word.brk	2023-10-10T10:49:16.940Z
+Engine/Content/Internationalization/icudt64l/brkitr/word_POSIX.brk	2023-10-10T10:49:16.943Z
+Engine/Content/Internationalization/icudt64l/coll/en.res	2023-10-10T10:49:16.950Z
+Engine/Content/Internationalization/icudt64l/coll/en_US.res	2023-10-10T10:49:16.954Z
+Engine/Content/Internationalization/icudt64l/coll/en_US_POSIX.res	2023-10-10T10:49:16.957Z
+Engine/Content/Internationalization/icudt64l/coll/root.res	2023-10-10T10:49:16.960Z
+Engine/Content/Internationalization/icudt64l/coll/ucadata.icu	2023-10-10T10:49:16.964Z
+Engine/Content/Internationalization/icudt64l/curr/en.res	2023-10-10T10:34:43.152Z
+Engine/Content/Internationalization/icudt64l/curr/en_001.res	2023-10-10T10:34:43.153Z
+Engine/Content/Internationalization/icudt64l/curr/en_150.res	2023-10-10T10:34:43.155Z
+Engine/Content/Internationalization/icudt64l/curr/en_AE.res	2023-10-10T10:34:43.156Z
+Engine/Content/Internationalization/icudt64l/curr/en_AG.res	2023-10-10T10:49:16.979Z
+Engine/Content/Internationalization/icudt64l/curr/en_AI.res	2023-10-10T10:49:16.983Z
+Engine/Content/Internationalization/icudt64l/curr/en_AT.res	2023-10-10T10:49:16.987Z
+Engine/Content/Internationalization/icudt64l/curr/en_AU.res	2023-10-10T10:34:43.158Z
+Engine/Content/Internationalization/icudt64l/curr/en_BB.res	2023-10-10T10:34:43.159Z
+Engine/Content/Internationalization/icudt64l/curr/en_BE.res	2023-10-10T10:34:43.160Z
+Engine/Content/Internationalization/icudt64l/curr/en_BI.res	2023-10-10T10:34:43.161Z
+Engine/Content/Internationalization/icudt64l/curr/en_BM.res	2023-10-10T10:34:43.162Z
+Engine/Content/Internationalization/icudt64l/curr/en_BS.res	2023-10-10T10:34:43.163Z
+Engine/Content/Internationalization/icudt64l/curr/en_BW.res	2023-10-10T10:34:43.164Z
+Engine/Content/Internationalization/icudt64l/curr/en_BZ.res	2023-10-10T10:34:43.164Z
+Engine/Content/Internationalization/icudt64l/curr/en_CA.res	2023-10-10T10:34:43.165Z
+Engine/Content/Internationalization/icudt64l/curr/en_CC.res	2023-10-10T10:49:17.008Z
+Engine/Content/Internationalization/icudt64l/curr/en_CH.res	2023-10-10T10:34:43.168Z
+Engine/Content/Internationalization/icudt64l/curr/en_CK.res	2023-10-10T10:34:43.169Z
+Engine/Content/Internationalization/icudt64l/curr/en_CM.res	2023-10-10T10:49:17.017Z
+Engine/Content/Internationalization/icudt64l/curr/en_CX.res	2023-10-10T10:49:17.020Z
+Engine/Content/Internationalization/icudt64l/curr/en_CY.res	2023-10-10T10:49:17.024Z
+Engine/Content/Internationalization/icudt64l/curr/en_DE.res	2023-10-10T10:49:17.027Z
+Engine/Content/Internationalization/icudt64l/curr/en_DG.res	2023-10-10T10:49:17.031Z
+Engine/Content/Internationalization/icudt64l/curr/en_DK.res	2023-10-10T10:34:43.171Z
+Engine/Content/Internationalization/icudt64l/curr/en_DM.res	2023-10-10T10:49:17.036Z
+Engine/Content/Internationalization/icudt64l/curr/en_ER.res	2023-10-10T10:34:43.172Z
+Engine/Content/Internationalization/icudt64l/curr/en_FI.res	2023-10-10T10:34:43.157Z
+Engine/Content/Internationalization/icudt64l/curr/en_FJ.res	2023-10-10T10:34:43.173Z
+Engine/Content/Internationalization/icudt64l/curr/en_FK.res	2023-10-10T10:34:43.174Z
+Engine/Content/Internationalization/icudt64l/curr/en_FM.res	2023-10-10T10:49:17.047Z
+Engine/Content/Internationalization/icudt64l/curr/en_GB.res	2023-10-10T10:34:43.175Z
+Engine/Content/Internationalization/icudt64l/curr/en_GD.res	2023-10-10T10:49:17.052Z
+Engine/Content/Internationalization/icudt64l/curr/en_GG.res	2023-10-10T10:49:17.057Z
+Engine/Content/Internationalization/icudt64l/curr/en_GH.res	2023-10-10T10:34:43.177Z
+Engine/Content/Internationalization/icudt64l/curr/en_GI.res	2023-10-10T10:34:43.178Z
+Engine/Content/Internationalization/icudt64l/curr/en_GM.res	2023-10-10T10:34:43.179Z
+Engine/Content/Internationalization/icudt64l/curr/en_GY.res	2023-10-10T10:34:43.180Z
+Engine/Content/Internationalization/icudt64l/curr/en_HK.res	2023-10-10T10:34:43.181Z
+Engine/Content/Internationalization/icudt64l/curr/en_IE.res	2023-10-10T10:49:17.069Z
+Engine/Content/Internationalization/icudt64l/curr/en_IL.res	2023-10-10T10:49:17.072Z
+Engine/Content/Internationalization/icudt64l/curr/en_IM.res	2023-10-10T10:49:17.075Z
+Engine/Content/Internationalization/icudt64l/curr/en_IN.res	2023-10-10T10:34:43.182Z
+Engine/Content/Internationalization/icudt64l/curr/en_IO.res	2023-10-10T10:34:43.170Z
+Engine/Content/Internationalization/icudt64l/curr/en_JE.res	2023-10-10T10:34:43.176Z
+Engine/Content/Internationalization/icudt64l/curr/en_JM.res	2023-10-10T10:34:43.183Z
+Engine/Content/Internationalization/icudt64l/curr/en_KE.res	2023-10-10T10:34:43.183Z
+Engine/Content/Internationalization/icudt64l/curr/en_KI.res	2023-10-10T10:34:43.166Z
+Engine/Content/Internationalization/icudt64l/curr/en_KN.res	2023-10-10T10:49:17.089Z
+Engine/Content/Internationalization/icudt64l/curr/en_KY.res	2023-10-10T10:34:43.184Z
+Engine/Content/Internationalization/icudt64l/curr/en_LC.res	2023-10-10T10:49:17.094Z
+Engine/Content/Internationalization/icudt64l/curr/en_LR.res	2023-10-10T10:34:43.185Z
+Engine/Content/Internationalization/icudt64l/curr/en_LS.res	2023-10-10T10:34:43.185Z
+Engine/Content/Internationalization/icudt64l/curr/en_MG.res	2023-10-10T10:34:43.186Z
+Engine/Content/Internationalization/icudt64l/curr/en_MO.res	2023-10-10T10:34:43.187Z
+Engine/Content/Internationalization/icudt64l/curr/en_MS.res	2023-10-10T10:34:43.156Z
+Engine/Content/Internationalization/icudt64l/curr/en_MT.res	2023-10-10T10:34:43.188Z
+Engine/Content/Internationalization/icudt64l/curr/en_MU.res	2023-10-10T10:34:43.188Z
+Engine/Content/Internationalization/icudt64l/curr/en_MW.res	2023-10-10T10:34:43.189Z
+Engine/Content/Internationalization/icudt64l/curr/en_MY.res	2023-10-10T10:34:43.190Z
+Engine/Content/Internationalization/icudt64l/curr/en_NA.res	2023-10-10T10:34:43.191Z
+Engine/Content/Internationalization/icudt64l/curr/en_NF.res	2023-10-10T10:49:17.118Z
+Engine/Content/Internationalization/icudt64l/curr/en_NG.res	2023-10-10T10:34:43.192Z
+Engine/Content/Internationalization/icudt64l/curr/en_NH.res	2023-10-10T10:34:43.193Z
+Engine/Content/Internationalization/icudt64l/curr/en_NL.res	2023-10-10T10:49:17.126Z
+Engine/Content/Internationalization/icudt64l/curr/en_NR.res	2023-10-10T10:49:17.129Z
+Engine/Content/Internationalization/icudt64l/curr/en_NU.res	2023-10-10T10:49:17.134Z
+Engine/Content/Internationalization/icudt64l/curr/en_NZ.res	2023-10-10T10:34:43.195Z
+Engine/Content/Internationalization/icudt64l/curr/en_PG.res	2023-10-10T10:34:43.196Z
+Engine/Content/Internationalization/icudt64l/curr/en_PH.res	2023-10-10T10:34:43.196Z
+Engine/Content/Internationalization/icudt64l/curr/en_PK.res	2023-10-10T10:34:43.197Z
+Engine/Content/Internationalization/icudt64l/curr/en_PN.res	2023-10-10T10:49:17.144Z
+Engine/Content/Internationalization/icudt64l/curr/en_PW.res	2023-10-10T10:49:17.149Z
+Engine/Content/Internationalization/icudt64l/curr/en_RH.res	2023-10-10T10:34:43.199Z
+Engine/Content/Internationalization/icudt64l/curr/en_RW.res	2023-10-10T10:34:43.199Z
+Engine/Content/Internationalization/icudt64l/curr/en_SB.res	2023-10-10T10:34:43.200Z
+Engine/Content/Internationalization/icudt64l/curr/en_SC.res	2023-10-10T10:34:43.201Z
+Engine/Content/Internationalization/icudt64l/curr/en_SD.res	2023-10-10T10:49:17.159Z
+Engine/Content/Internationalization/icudt64l/curr/en_SE.res	2023-10-10T10:34:43.201Z
+Engine/Content/Internationalization/icudt64l/curr/en_SG.res	2023-10-10T10:34:43.202Z
+Engine/Content/Internationalization/icudt64l/curr/en_SH.res	2023-10-10T10:34:43.203Z
+Engine/Content/Internationalization/icudt64l/curr/en_SI.res	2023-10-10T10:34:43.194Z
+Engine/Content/Internationalization/icudt64l/curr/en_SL.res	2023-10-10T10:34:43.204Z
+Engine/Content/Internationalization/icudt64l/curr/en_SS.res	2023-10-10T10:34:43.204Z
+Engine/Content/Internationalization/icudt64l/curr/en_SX.res	2023-10-10T10:34:43.205Z
+Engine/Content/Internationalization/icudt64l/curr/en_SZ.res	2023-10-10T10:34:43.206Z
+Engine/Content/Internationalization/icudt64l/curr/en_TC.res	2023-10-10T10:49:17.177Z
+Engine/Content/Internationalization/icudt64l/curr/en_TK.res	2023-10-10T10:34:43.194Z
+Engine/Content/Internationalization/icudt64l/curr/en_TO.res	2023-10-10T10:34:43.206Z
+Engine/Content/Internationalization/icudt64l/curr/en_TT.res	2023-10-10T10:34:43.207Z
+Engine/Content/Internationalization/icudt64l/curr/en_TV.res	2023-10-10T10:34:43.191Z
+Engine/Content/Internationalization/icudt64l/curr/en_TZ.res	2023-10-10T10:34:43.208Z
+Engine/Content/Internationalization/icudt64l/curr/en_UG.res	2023-10-10T10:34:43.208Z
+Engine/Content/Internationalization/icudt64l/curr/en_VC.res	2023-10-10T10:34:43.209Z
+Engine/Content/Internationalization/icudt64l/curr/en_VG.res	2023-10-10T10:49:17.191Z
+Engine/Content/Internationalization/icudt64l/curr/en_VU.res	2023-10-10T10:34:43.210Z
+Engine/Content/Internationalization/icudt64l/curr/en_WS.res	2023-10-10T10:34:43.210Z
+Engine/Content/Internationalization/icudt64l/curr/en_ZA.res	2023-10-10T10:34:43.211Z
+Engine/Content/Internationalization/icudt64l/curr/en_ZM.res	2023-10-10T10:34:43.212Z
+Engine/Content/Internationalization/icudt64l/curr/en_ZW.res	2023-10-10T10:34:43.198Z
+Engine/Content/Internationalization/icudt64l/curr/pool.res	2023-10-10T10:34:43.213Z
+Engine/Content/Internationalization/icudt64l/curr/root.res	2023-10-10T10:34:43.213Z
+Engine/Content/Internationalization/icudt64l/curr/supplementalData.res	2023-10-10T10:49:17.205Z
+Engine/Content/Internationalization/icudt64l/lang/en.res	2023-10-10T10:34:43.241Z
+Engine/Content/Internationalization/icudt64l/lang/en_001.res	2023-10-10T10:34:43.242Z
+Engine/Content/Internationalization/icudt64l/lang/en_150.res	2023-10-10T10:49:17.522Z
+Engine/Content/Internationalization/icudt64l/lang/en_AG.res	2023-10-10T10:49:17.525Z
+Engine/Content/Internationalization/icudt64l/lang/en_AI.res	2023-10-10T10:49:17.527Z
+Engine/Content/Internationalization/icudt64l/lang/en_AT.res	2023-10-10T10:49:17.532Z
+Engine/Content/Internationalization/icudt64l/lang/en_AU.res	2023-10-10T10:34:43.244Z
+Engine/Content/Internationalization/icudt64l/lang/en_BB.res	2023-10-10T10:49:17.536Z
+Engine/Content/Internationalization/icudt64l/lang/en_BE.res	2023-10-10T10:34:43.245Z
+Engine/Content/Internationalization/icudt64l/lang/en_BM.res	2023-10-10T10:49:17.541Z
+Engine/Content/Internationalization/icudt64l/lang/en_BS.res	2023-10-10T10:49:17.543Z
+Engine/Content/Internationalization/icudt64l/lang/en_BW.res	2023-10-10T10:49:17.546Z
+Engine/Content/Internationalization/icudt64l/lang/en_BZ.res	2023-10-10T10:49:17.549Z
+Engine/Content/Internationalization/icudt64l/lang/en_CA.res	2023-10-10T10:34:43.245Z
+Engine/Content/Internationalization/icudt64l/lang/en_CC.res	2023-10-10T10:49:17.554Z
+Engine/Content/Internationalization/icudt64l/lang/en_CH.res	2023-10-10T10:34:43.246Z
+Engine/Content/Internationalization/icudt64l/lang/en_CK.res	2023-10-10T10:49:17.558Z
+Engine/Content/Internationalization/icudt64l/lang/en_CM.res	2023-10-10T10:49:17.561Z
+Engine/Content/Internationalization/icudt64l/lang/en_CX.res	2023-10-10T10:49:17.563Z
+Engine/Content/Internationalization/icudt64l/lang/en_CY.res	2023-10-10T10:49:17.567Z
+Engine/Content/Internationalization/icudt64l/lang/en_DE.res	2023-10-10T10:49:17.570Z
+Engine/Content/Internationalization/icudt64l/lang/en_DG.res	2023-10-10T10:49:17.573Z
+Engine/Content/Internationalization/icudt64l/lang/en_DK.res	2023-10-10T10:49:17.575Z
+Engine/Content/Internationalization/icudt64l/lang/en_DM.res	2023-10-10T10:49:17.578Z
+Engine/Content/Internationalization/icudt64l/lang/en_ER.res	2023-10-10T10:49:17.581Z
+Engine/Content/Internationalization/icudt64l/lang/en_FI.res	2023-10-10T10:34:43.243Z
+Engine/Content/Internationalization/icudt64l/lang/en_FJ.res	2023-10-10T10:49:17.585Z
+Engine/Content/Internationalization/icudt64l/lang/en_FK.res	2023-10-10T10:49:17.588Z
+Engine/Content/Internationalization/icudt64l/lang/en_FM.res	2023-10-10T10:49:17.591Z
+Engine/Content/Internationalization/icudt64l/lang/en_GB.res	2023-10-10T10:34:43.247Z
+Engine/Content/Internationalization/icudt64l/lang/en_GD.res	2023-10-10T10:49:17.595Z
+Engine/Content/Internationalization/icudt64l/lang/en_GG.res	2023-10-10T10:49:17.598Z
+Engine/Content/Internationalization/icudt64l/lang/en_GH.res	2023-10-10T10:49:17.601Z
+Engine/Content/Internationalization/icudt64l/lang/en_GI.res	2023-10-10T10:49:17.604Z
+Engine/Content/Internationalization/icudt64l/lang/en_GM.res	2023-10-10T10:49:17.606Z
+Engine/Content/Internationalization/icudt64l/lang/en_GY.res	2023-10-10T10:49:17.609Z
+Engine/Content/Internationalization/icudt64l/lang/en_HK.res	2023-10-10T10:34:43.247Z
+Engine/Content/Internationalization/icudt64l/lang/en_IE.res	2023-10-10T10:49:17.614Z
+Engine/Content/Internationalization/icudt64l/lang/en_IL.res	2023-10-10T10:49:17.617Z
+Engine/Content/Internationalization/icudt64l/lang/en_IM.res	2023-10-10T10:49:17.620Z
+Engine/Content/Internationalization/icudt64l/lang/en_IN.res	2023-10-10T10:34:43.248Z
+Engine/Content/Internationalization/icudt64l/lang/en_IO.res	2023-10-10T10:49:17.624Z
+Engine/Content/Internationalization/icudt64l/lang/en_JE.res	2023-10-10T10:49:17.627Z
+Engine/Content/Internationalization/icudt64l/lang/en_JM.res	2023-10-10T10:49:17.630Z
+Engine/Content/Internationalization/icudt64l/lang/en_KE.res	2023-10-10T10:49:17.633Z
+Engine/Content/Internationalization/icudt64l/lang/en_KI.res	2023-10-10T10:49:17.636Z
+Engine/Content/Internationalization/icudt64l/lang/en_KN.res	2023-10-10T10:49:17.639Z
+Engine/Content/Internationalization/icudt64l/lang/en_KY.res	2023-10-10T10:49:17.642Z
+Engine/Content/Internationalization/icudt64l/lang/en_LC.res	2023-10-10T10:49:17.644Z
+Engine/Content/Internationalization/icudt64l/lang/en_LR.res	2023-10-10T10:49:17.647Z
+Engine/Content/Internationalization/icudt64l/lang/en_LS.res	2023-10-10T10:49:17.650Z
+Engine/Content/Internationalization/icudt64l/lang/en_MG.res	2023-10-10T10:49:17.652Z
+Engine/Content/Internationalization/icudt64l/lang/en_MO.res	2023-10-10T10:49:17.655Z
+Engine/Content/Internationalization/icudt64l/lang/en_MS.res	2023-10-10T10:49:17.658Z
+Engine/Content/Internationalization/icudt64l/lang/en_MT.res	2023-10-10T10:49:17.661Z
+Engine/Content/Internationalization/icudt64l/lang/en_MU.res	2023-10-10T10:49:17.664Z
+Engine/Content/Internationalization/icudt64l/lang/en_MW.res	2023-10-10T10:34:43.243Z
+Engine/Content/Internationalization/icudt64l/lang/en_MY.res	2023-10-10T10:49:17.669Z
+Engine/Content/Internationalization/icudt64l/lang/en_NA.res	2023-10-10T10:49:17.672Z
+Engine/Content/Internationalization/icudt64l/lang/en_NF.res	2023-10-10T10:49:17.675Z
+Engine/Content/Internationalization/icudt64l/lang/en_NG.res	2023-10-10T10:34:43.250Z
+Engine/Content/Internationalization/icudt64l/lang/en_NH.res	2023-10-10T10:34:43.250Z
+Engine/Content/Internationalization/icudt64l/lang/en_NL.res	2023-10-10T10:49:17.682Z
+Engine/Content/Internationalization/icudt64l/lang/en_NR.res	2023-10-10T10:49:17.685Z
+Engine/Content/Internationalization/icudt64l/lang/en_NU.res	2023-10-10T10:49:17.688Z
+Engine/Content/Internationalization/icudt64l/lang/en_NZ.res	2023-10-10T10:34:43.252Z
+Engine/Content/Internationalization/icudt64l/lang/en_PG.res	2023-10-10T10:49:17.693Z
+Engine/Content/Internationalization/icudt64l/lang/en_PH.res	2023-10-10T10:49:17.696Z
+Engine/Content/Internationalization/icudt64l/lang/en_PK.res	2023-10-10T10:49:17.699Z
+Engine/Content/Internationalization/icudt64l/lang/en_PN.res	2023-10-10T10:49:17.701Z
+Engine/Content/Internationalization/icudt64l/lang/en_PW.res	2023-10-10T10:49:17.704Z
+Engine/Content/Internationalization/icudt64l/lang/en_RH.res	2023-10-10T10:34:43.252Z
+Engine/Content/Internationalization/icudt64l/lang/en_RW.res	2023-10-10T10:49:17.709Z
+Engine/Content/Internationalization/icudt64l/lang/en_SB.res	2023-10-10T10:49:17.712Z
+Engine/Content/Internationalization/icudt64l/lang/en_SC.res	2023-10-10T10:49:17.714Z
+Engine/Content/Internationalization/icudt64l/lang/en_SD.res	2023-10-10T10:49:17.717Z
+Engine/Content/Internationalization/icudt64l/lang/en_SE.res	2023-10-10T10:49:17.720Z
+Engine/Content/Internationalization/icudt64l/lang/en_SG.res	2023-10-10T10:49:17.723Z
+Engine/Content/Internationalization/icudt64l/lang/en_SH.res	2023-10-10T10:49:17.726Z
+Engine/Content/Internationalization/icudt64l/lang/en_SI.res	2023-10-10T10:34:43.251Z
+Engine/Content/Internationalization/icudt64l/lang/en_SL.res	2023-10-10T10:49:17.731Z
+Engine/Content/Internationalization/icudt64l/lang/en_SS.res	2023-10-10T10:49:17.733Z
+Engine/Content/Internationalization/icudt64l/lang/en_SX.res	2023-10-10T10:49:17.737Z
+Engine/Content/Internationalization/icudt64l/lang/en_SZ.res	2023-10-10T10:49:17.739Z
+Engine/Content/Internationalization/icudt64l/lang/en_TC.res	2023-10-10T10:49:17.742Z
+Engine/Content/Internationalization/icudt64l/lang/en_TK.res	2023-10-10T10:49:17.745Z
+Engine/Content/Internationalization/icudt64l/lang/en_TO.res	2023-10-10T10:49:17.748Z
+Engine/Content/Internationalization/icudt64l/lang/en_TT.res	2023-10-10T10:49:17.751Z
+Engine/Content/Internationalization/icudt64l/lang/en_TV.res	2023-10-10T10:49:17.754Z
+Engine/Content/Internationalization/icudt64l/lang/en_TZ.res	2023-10-10T10:49:17.756Z
+Engine/Content/Internationalization/icudt64l/lang/en_UG.res	2023-10-10T10:49:17.759Z
+Engine/Content/Internationalization/icudt64l/lang/en_VC.res	2023-10-10T10:49:17.762Z
+Engine/Content/Internationalization/icudt64l/lang/en_VG.res	2023-10-10T10:49:17.765Z
+Engine/Content/Internationalization/icudt64l/lang/en_VU.res	2023-10-10T10:49:17.768Z
+Engine/Content/Internationalization/icudt64l/lang/en_WS.res	2023-10-10T10:49:17.771Z
+Engine/Content/Internationalization/icudt64l/lang/en_ZA.res	2023-10-10T10:49:17.774Z
+Engine/Content/Internationalization/icudt64l/lang/en_ZM.res	2023-10-10T10:49:17.777Z
+Engine/Content/Internationalization/icudt64l/lang/en_ZW.res	2023-10-10T10:34:43.249Z
+Engine/Content/Internationalization/icudt64l/lang/pool.res	2023-10-10T10:34:43.253Z
+Engine/Content/Internationalization/icudt64l/lang/root.res	2023-10-10T10:34:43.254Z
+Engine/Content/Internationalization/icudt64l/rbnf/en.res	2023-10-10T10:49:17.809Z
+Engine/Content/Internationalization/icudt64l/rbnf/en_001.res	2023-10-10T10:49:17.812Z
+Engine/Content/Internationalization/icudt64l/rbnf/en_IN.res	2023-10-10T10:49:17.815Z
+Engine/Content/Internationalization/icudt64l/rbnf/root.res	2023-10-10T10:49:17.818Z
+Engine/Content/Internationalization/icudt64l/region/en.res	2023-10-10T10:34:43.255Z
+Engine/Content/Internationalization/icudt64l/region/en_150.res	2023-10-10T10:49:17.824Z
+Engine/Content/Internationalization/icudt64l/region/en_AG.res	2023-10-10T10:49:17.827Z
+Engine/Content/Internationalization/icudt64l/region/en_AI.res	2023-10-10T10:49:17.829Z
+Engine/Content/Internationalization/icudt64l/region/en_AT.res	2023-10-10T10:49:17.834Z
+Engine/Content/Internationalization/icudt64l/region/en_AU.res	2023-10-10T10:34:43.257Z
+Engine/Content/Internationalization/icudt64l/region/en_BB.res	2023-10-10T10:49:17.839Z
+Engine/Content/Internationalization/icudt64l/region/en_BE.res	2023-10-10T10:34:43.258Z
+Engine/Content/Internationalization/icudt64l/region/en_BM.res	2023-10-10T10:49:17.843Z
+Engine/Content/Internationalization/icudt64l/region/en_BS.res	2023-10-10T10:49:17.846Z
+Engine/Content/Internationalization/icudt64l/region/en_BW.res	2023-10-10T10:49:17.849Z
+Engine/Content/Internationalization/icudt64l/region/en_BZ.res	2023-10-10T10:49:17.851Z
+Engine/Content/Internationalization/icudt64l/region/en_CA.res	2023-10-10T10:49:17.856Z
+Engine/Content/Internationalization/icudt64l/region/en_CC.res	2023-10-10T10:49:17.859Z
+Engine/Content/Internationalization/icudt64l/region/en_CH.res	2023-10-10T10:34:43.259Z
+Engine/Content/Internationalization/icudt64l/region/en_CK.res	2023-10-10T10:49:17.864Z
+Engine/Content/Internationalization/icudt64l/region/en_CM.res	2023-10-10T10:49:17.867Z
+Engine/Content/Internationalization/icudt64l/region/en_CX.res	2023-10-10T10:49:17.870Z
+Engine/Content/Internationalization/icudt64l/region/en_CY.res	2023-10-10T10:49:17.873Z
+Engine/Content/Internationalization/icudt64l/region/en_DE.res	2023-10-10T10:49:17.876Z
+Engine/Content/Internationalization/icudt64l/region/en_DG.res	2023-10-10T10:49:17.880Z
+Engine/Content/Internationalization/icudt64l/region/en_DK.res	2023-10-10T10:49:17.883Z
+Engine/Content/Internationalization/icudt64l/region/en_DM.res	2023-10-10T10:49:17.887Z
+Engine/Content/Internationalization/icudt64l/region/en_ER.res	2023-10-10T10:49:17.891Z
+Engine/Content/Internationalization/icudt64l/region/en_FI.res	2023-10-10T10:34:43.257Z
+Engine/Content/Internationalization/icudt64l/region/en_FJ.res	2023-10-10T10:49:17.896Z
+Engine/Content/Internationalization/icudt64l/region/en_FK.res	2023-10-10T10:49:17.899Z
+Engine/Content/Internationalization/icudt64l/region/en_FM.res	2023-10-10T10:49:17.902Z
+Engine/Content/Internationalization/icudt64l/region/en_GB.res	2023-10-10T10:34:43.260Z
+Engine/Content/Internationalization/icudt64l/region/en_GD.res	2023-10-10T10:49:17.907Z
+Engine/Content/Internationalization/icudt64l/region/en_GG.res	2023-10-10T10:49:17.910Z
+Engine/Content/Internationalization/icudt64l/region/en_GH.res	2023-10-10T10:49:17.913Z
+Engine/Content/Internationalization/icudt64l/region/en_GI.res	2023-10-10T10:49:17.916Z
+Engine/Content/Internationalization/icudt64l/region/en_GM.res	2023-10-10T10:49:17.918Z
+Engine/Content/Internationalization/icudt64l/region/en_GY.res	2023-10-10T10:49:17.921Z
+Engine/Content/Internationalization/icudt64l/region/en_HK.res	2023-10-10T10:49:17.924Z
+Engine/Content/Internationalization/icudt64l/region/en_IE.res	2023-10-10T10:49:17.927Z
+Engine/Content/Internationalization/icudt64l/region/en_IL.res	2023-10-10T10:49:17.930Z
+Engine/Content/Internationalization/icudt64l/region/en_IM.res	2023-10-10T10:49:17.933Z
+Engine/Content/Internationalization/icudt64l/region/en_IN.res	2023-10-10T10:34:43.261Z
+Engine/Content/Internationalization/icudt64l/region/en_IO.res	2023-10-10T10:49:17.937Z
+Engine/Content/Internationalization/icudt64l/region/en_JE.res	2023-10-10T10:49:17.939Z
+Engine/Content/Internationalization/icudt64l/region/en_JM.res	2023-10-10T10:49:17.942Z
+Engine/Content/Internationalization/icudt64l/region/en_KE.res	2023-10-10T10:49:17.945Z
+Engine/Content/Internationalization/icudt64l/region/en_KI.res	2023-10-10T10:49:17.948Z
+Engine/Content/Internationalization/icudt64l/region/en_KN.res	2023-10-10T10:49:17.950Z
+Engine/Content/Internationalization/icudt64l/region/en_KY.res	2023-10-10T10:49:17.953Z
+Engine/Content/Internationalization/icudt64l/region/en_LC.res	2023-10-10T10:49:17.956Z
+Engine/Content/Internationalization/icudt64l/region/en_LR.res	2023-10-10T10:49:17.958Z
+Engine/Content/Internationalization/icudt64l/region/en_LS.res	2023-10-10T10:49:17.961Z
+Engine/Content/Internationalization/icudt64l/region/en_MG.res	2023-10-10T10:49:17.964Z
+Engine/Content/Internationalization/icudt64l/region/en_MO.res	2023-10-10T10:49:17.966Z
+Engine/Content/Internationalization/icudt64l/region/en_MS.res	2023-10-10T10:49:17.969Z
+Engine/Content/Internationalization/icudt64l/region/en_MT.res	2023-10-10T10:49:17.972Z
+Engine/Content/Internationalization/icudt64l/region/en_MU.res	2023-10-10T10:49:17.975Z
+Engine/Content/Internationalization/icudt64l/region/en_MW.res	2023-10-10T10:34:43.256Z
+Engine/Content/Internationalization/icudt64l/region/en_MY.res	2023-10-10T10:49:17.980Z
+Engine/Content/Internationalization/icudt64l/region/en_NA.res	2023-10-10T10:49:17.983Z
+Engine/Content/Internationalization/icudt64l/region/en_NF.res	2023-10-10T10:49:17.986Z
+Engine/Content/Internationalization/icudt64l/region/en_NG.res	2023-10-10T10:34:43.263Z
+Engine/Content/Internationalization/icudt64l/region/en_NH.res	2023-10-10T10:34:43.263Z
+Engine/Content/Internationalization/icudt64l/region/en_NL.res	2023-10-10T10:49:17.993Z
+Engine/Content/Internationalization/icudt64l/region/en_NR.res	2023-10-10T10:49:17.996Z
+Engine/Content/Internationalization/icudt64l/region/en_NU.res	2023-10-10T10:49:17.999Z
+Engine/Content/Internationalization/icudt64l/region/en_NZ.res	2023-10-10T10:34:43.259Z
+Engine/Content/Internationalization/icudt64l/region/en_PG.res	2023-10-10T10:49:18.003Z
+Engine/Content/Internationalization/icudt64l/region/en_PH.res	2023-10-10T10:49:18.006Z
+Engine/Content/Internationalization/icudt64l/region/en_PK.res	2023-10-10T10:49:18.009Z
+Engine/Content/Internationalization/icudt64l/region/en_PN.res	2023-10-10T10:49:18.012Z
+Engine/Content/Internationalization/icudt64l/region/en_PW.res	2023-10-10T10:49:18.015Z
+Engine/Content/Internationalization/icudt64l/region/en_RH.res	2023-10-10T10:34:43.265Z
+Engine/Content/Internationalization/icudt64l/region/en_RW.res	2023-10-10T10:49:18.019Z
+Engine/Content/Internationalization/icudt64l/region/en_SB.res	2023-10-10T10:49:18.022Z
+Engine/Content/Internationalization/icudt64l/region/en_SC.res	2023-10-10T10:49:18.025Z
+Engine/Content/Internationalization/icudt64l/region/en_SD.res	2023-10-10T10:49:18.028Z
+Engine/Content/Internationalization/icudt64l/region/en_SE.res	2023-10-10T10:49:18.031Z
+Engine/Content/Internationalization/icudt64l/region/en_SG.res	2023-10-10T10:49:18.034Z
+Engine/Content/Internationalization/icudt64l/region/en_SH.res	2023-10-10T10:49:18.037Z
+Engine/Content/Internationalization/icudt64l/region/en_SI.res	2023-10-10T10:34:43.264Z
+Engine/Content/Internationalization/icudt64l/region/en_SL.res	2023-10-10T10:49:18.041Z
+Engine/Content/Internationalization/icudt64l/region/en_SS.res	2023-10-10T10:49:18.044Z
+Engine/Content/Internationalization/icudt64l/region/en_SX.res	2023-10-10T10:49:18.046Z
+Engine/Content/Internationalization/icudt64l/region/en_SZ.res	2023-10-10T10:49:18.049Z
+Engine/Content/Internationalization/icudt64l/region/en_TC.res	2023-10-10T10:49:18.052Z
+Engine/Content/Internationalization/icudt64l/region/en_TK.res	2023-10-10T10:49:18.055Z
+Engine/Content/Internationalization/icudt64l/region/en_TO.res	2023-10-10T10:49:18.059Z
+Engine/Content/Internationalization/icudt64l/region/en_TT.res	2023-10-10T10:49:18.063Z
+Engine/Content/Internationalization/icudt64l/region/en_TV.res	2023-10-10T10:49:18.067Z
+Engine/Content/Internationalization/icudt64l/region/en_TZ.res	2023-10-10T10:49:18.071Z
+Engine/Content/Internationalization/icudt64l/region/en_UG.res	2023-10-10T10:49:18.074Z
+Engine/Content/Internationalization/icudt64l/region/en_VC.res	2023-10-10T10:49:18.077Z
+Engine/Content/Internationalization/icudt64l/region/en_VG.res	2023-10-10T10:49:18.080Z
+Engine/Content/Internationalization/icudt64l/region/en_VU.res	2023-10-10T10:49:18.082Z
+Engine/Content/Internationalization/icudt64l/region/en_WS.res	2023-10-10T10:49:18.085Z
+Engine/Content/Internationalization/icudt64l/region/en_ZA.res	2023-10-10T10:49:18.088Z
+Engine/Content/Internationalization/icudt64l/region/en_ZM.res	2023-10-10T10:49:18.091Z
+Engine/Content/Internationalization/icudt64l/region/en_ZW.res	2023-10-10T10:34:43.262Z
+Engine/Content/Internationalization/icudt64l/region/pool.res	2023-10-10T10:34:43.266Z
+Engine/Content/Internationalization/icudt64l/region/root.res	2023-10-10T10:34:43.266Z
+Engine/Content/Internationalization/icudt64l/translit/el.res	2023-10-10T10:49:18.106Z
+Engine/Content/Internationalization/icudt64l/translit/en.res	2023-10-10T10:49:18.109Z
+Engine/Content/Internationalization/icudt64l/translit/root.res	2023-10-10T10:49:18.112Z
+Engine/Content/Internationalization/icudt64l/unit/en.res	2023-10-10T10:34:43.268Z
+Engine/Content/Internationalization/icudt64l/unit/en_001.res	2023-10-10T10:34:43.269Z
+Engine/Content/Internationalization/icudt64l/unit/en_150.res	2023-10-10T10:49:18.127Z
+Engine/Content/Internationalization/icudt64l/unit/en_AG.res	2023-10-10T10:49:18.131Z
+Engine/Content/Internationalization/icudt64l/unit/en_AI.res	2023-10-10T10:49:18.134Z
+Engine/Content/Internationalization/icudt64l/unit/en_AT.res	2023-10-10T10:49:18.139Z
+Engine/Content/Internationalization/icudt64l/unit/en_AU.res	2023-10-10T10:34:43.272Z
+Engine/Content/Internationalization/icudt64l/unit/en_BB.res	2023-10-10T10:49:18.143Z
+Engine/Content/Internationalization/icudt64l/unit/en_BE.res	2023-10-10T10:34:43.272Z
+Engine/Content/Internationalization/icudt64l/unit/en_BM.res	2023-10-10T10:49:18.148Z
+Engine/Content/Internationalization/icudt64l/unit/en_BS.res	2023-10-10T10:49:18.152Z
+Engine/Content/Internationalization/icudt64l/unit/en_BW.res	2023-10-10T10:49:18.155Z
+Engine/Content/Internationalization/icudt64l/unit/en_BZ.res	2023-10-10T10:49:18.158Z
+Engine/Content/Internationalization/icudt64l/unit/en_CA.res	2023-10-10T10:34:43.274Z
+Engine/Content/Internationalization/icudt64l/unit/en_CC.res	2023-10-10T10:49:18.162Z
+Engine/Content/Internationalization/icudt64l/unit/en_CH.res	2023-10-10T10:34:43.274Z
+Engine/Content/Internationalization/icudt64l/unit/en_CK.res	2023-10-10T10:49:18.166Z
+Engine/Content/Internationalization/icudt64l/unit/en_CM.res	2023-10-10T10:49:18.168Z
+Engine/Content/Internationalization/icudt64l/unit/en_CX.res	2023-10-10T10:49:18.171Z
+Engine/Content/Internationalization/icudt64l/unit/en_CY.res	2023-10-10T10:49:18.174Z
+Engine/Content/Internationalization/icudt64l/unit/en_DE.res	2023-10-10T10:49:18.177Z
+Engine/Content/Internationalization/icudt64l/unit/en_DG.res	2023-10-10T10:49:18.179Z
+Engine/Content/Internationalization/icudt64l/unit/en_DK.res	2023-10-10T10:49:18.182Z
+Engine/Content/Internationalization/icudt64l/unit/en_DM.res	2023-10-10T10:49:18.185Z
+Engine/Content/Internationalization/icudt64l/unit/en_ER.res	2023-10-10T10:49:18.188Z
+Engine/Content/Internationalization/icudt64l/unit/en_FI.res	2023-10-10T10:34:43.271Z
+Engine/Content/Internationalization/icudt64l/unit/en_FJ.res	2023-10-10T10:49:18.192Z
+Engine/Content/Internationalization/icudt64l/unit/en_FK.res	2023-10-10T10:49:18.195Z
+Engine/Content/Internationalization/icudt64l/unit/en_FM.res	2023-10-10T10:49:18.198Z
+Engine/Content/Internationalization/icudt64l/unit/en_GB.res	2023-10-10T10:34:43.275Z
+Engine/Content/Internationalization/icudt64l/unit/en_GD.res	2023-10-10T10:49:18.202Z
+Engine/Content/Internationalization/icudt64l/unit/en_GG.res	2023-10-10T10:49:18.204Z
+Engine/Content/Internationalization/icudt64l/unit/en_GH.res	2023-10-10T10:49:18.207Z
+Engine/Content/Internationalization/icudt64l/unit/en_GI.res	2023-10-10T10:49:18.210Z
+Engine/Content/Internationalization/icudt64l/unit/en_GM.res	2023-10-10T10:49:18.212Z
+Engine/Content/Internationalization/icudt64l/unit/en_GY.res	2023-10-10T10:49:18.215Z
+Engine/Content/Internationalization/icudt64l/unit/en_HK.res	2023-10-10T10:49:18.220Z
+Engine/Content/Internationalization/icudt64l/unit/en_IE.res	2023-10-10T10:49:18.222Z
+Engine/Content/Internationalization/icudt64l/unit/en_IL.res	2023-10-10T10:49:18.225Z
+Engine/Content/Internationalization/icudt64l/unit/en_IM.res	2023-10-10T10:49:18.228Z
+Engine/Content/Internationalization/icudt64l/unit/en_IN.res	2023-10-10T10:34:43.276Z
+Engine/Content/Internationalization/icudt64l/unit/en_IO.res	2023-10-10T10:49:18.232Z
+Engine/Content/Internationalization/icudt64l/unit/en_JE.res	2023-10-10T10:49:18.235Z
+Engine/Content/Internationalization/icudt64l/unit/en_JM.res	2023-10-10T10:49:18.238Z
+Engine/Content/Internationalization/icudt64l/unit/en_KE.res	2023-10-10T10:49:18.240Z
+Engine/Content/Internationalization/icudt64l/unit/en_KI.res	2023-10-10T10:49:18.243Z
+Engine/Content/Internationalization/icudt64l/unit/en_KN.res	2023-10-10T10:49:18.246Z
+Engine/Content/Internationalization/icudt64l/unit/en_KY.res	2023-10-10T10:34:43.273Z
+Engine/Content/Internationalization/icudt64l/unit/en_LC.res	2023-10-10T10:49:18.250Z
+Engine/Content/Internationalization/icudt64l/unit/en_LR.res	2023-10-10T10:49:18.253Z
+Engine/Content/Internationalization/icudt64l/unit/en_LS.res	2023-10-10T10:49:18.256Z
+Engine/Content/Internationalization/icudt64l/unit/en_MG.res	2023-10-10T10:49:18.259Z
+Engine/Content/Internationalization/icudt64l/unit/en_MO.res	2023-10-10T10:49:18.261Z
+Engine/Content/Internationalization/icudt64l/unit/en_MS.res	2023-10-10T10:49:18.264Z
+Engine/Content/Internationalization/icudt64l/unit/en_MT.res	2023-10-10T10:49:18.267Z
+Engine/Content/Internationalization/icudt64l/unit/en_MU.res	2023-10-10T10:49:18.270Z
+Engine/Content/Internationalization/icudt64l/unit/en_MW.res	2023-10-10T10:34:43.269Z
+Engine/Content/Internationalization/icudt64l/unit/en_MY.res	2023-10-10T10:49:18.276Z
+Engine/Content/Internationalization/icudt64l/unit/en_NA.res	2023-10-10T10:49:18.278Z
+Engine/Content/Internationalization/icudt64l/unit/en_NF.res	2023-10-10T10:49:18.281Z
+Engine/Content/Internationalization/icudt64l/unit/en_NG.res	2023-10-10T10:34:43.278Z
+Engine/Content/Internationalization/icudt64l/unit/en_NH.res	2023-10-10T10:34:43.279Z
+Engine/Content/Internationalization/icudt64l/unit/en_NL.res	2023-10-10T10:49:18.289Z
+Engine/Content/Internationalization/icudt64l/unit/en_NR.res	2023-10-10T10:49:18.291Z
+Engine/Content/Internationalization/icudt64l/unit/en_NU.res	2023-10-10T10:49:18.295Z
+Engine/Content/Internationalization/icudt64l/unit/en_NZ.res	2023-10-10T10:34:43.276Z
+Engine/Content/Internationalization/icudt64l/unit/en_PG.res	2023-10-10T10:49:18.299Z
+Engine/Content/Internationalization/icudt64l/unit/en_PH.res	2023-10-10T10:49:18.301Z
+Engine/Content/Internationalization/icudt64l/unit/en_PK.res	2023-10-10T10:49:18.304Z
+Engine/Content/Internationalization/icudt64l/unit/en_PN.res	2023-10-10T10:49:18.307Z
+Engine/Content/Internationalization/icudt64l/unit/en_PW.res	2023-10-10T10:34:43.280Z
+Engine/Content/Internationalization/icudt64l/unit/en_RH.res	2023-10-10T10:34:43.281Z
+Engine/Content/Internationalization/icudt64l/unit/en_RW.res	2023-10-10T10:49:18.313Z
+Engine/Content/Internationalization/icudt64l/unit/en_SB.res	2023-10-10T10:49:18.315Z
+Engine/Content/Internationalization/icudt64l/unit/en_SC.res	2023-10-10T10:49:18.318Z
+Engine/Content/Internationalization/icudt64l/unit/en_SD.res	2023-10-10T10:49:18.321Z
+Engine/Content/Internationalization/icudt64l/unit/en_SE.res	2023-10-10T10:49:18.324Z
+Engine/Content/Internationalization/icudt64l/unit/en_SG.res	2023-10-10T10:49:18.327Z
+Engine/Content/Internationalization/icudt64l/unit/en_SH.res	2023-10-10T10:49:18.330Z
+Engine/Content/Internationalization/icudt64l/unit/en_SI.res	2023-10-10T10:34:43.279Z
+Engine/Content/Internationalization/icudt64l/unit/en_SL.res	2023-10-10T10:49:18.334Z
+Engine/Content/Internationalization/icudt64l/unit/en_SS.res	2023-10-10T10:49:18.337Z
+Engine/Content/Internationalization/icudt64l/unit/en_SX.res	2023-10-10T10:49:18.340Z
+Engine/Content/Internationalization/icudt64l/unit/en_SZ.res	2023-10-10T10:49:18.343Z
+Engine/Content/Internationalization/icudt64l/unit/en_TC.res	2023-10-10T10:49:18.345Z
+Engine/Content/Internationalization/icudt64l/unit/en_TK.res	2023-10-10T10:49:18.348Z
+Engine/Content/Internationalization/icudt64l/unit/en_TO.res	2023-10-10T10:49:18.351Z
+Engine/Content/Internationalization/icudt64l/unit/en_TT.res	2023-10-10T10:49:18.353Z
+Engine/Content/Internationalization/icudt64l/unit/en_TV.res	2023-10-10T10:49:18.357Z
+Engine/Content/Internationalization/icudt64l/unit/en_TZ.res	2023-10-10T10:49:18.360Z
+Engine/Content/Internationalization/icudt64l/unit/en_UG.res	2023-10-10T10:49:18.363Z
+Engine/Content/Internationalization/icudt64l/unit/en_VC.res	2023-10-10T10:49:18.366Z
+Engine/Content/Internationalization/icudt64l/unit/en_VG.res	2023-10-10T10:49:18.369Z
+Engine/Content/Internationalization/icudt64l/unit/en_VU.res	2023-10-10T10:49:18.372Z
+Engine/Content/Internationalization/icudt64l/unit/en_WS.res	2023-10-10T10:49:18.376Z
+Engine/Content/Internationalization/icudt64l/unit/en_ZA.res	2023-10-10T10:49:18.379Z
+Engine/Content/Internationalization/icudt64l/unit/en_ZM.res	2023-10-10T10:49:18.383Z
+Engine/Content/Internationalization/icudt64l/unit/en_ZW.res	2023-10-10T10:34:43.277Z
+Engine/Content/Internationalization/icudt64l/unit/pool.res	2023-10-10T10:34:43.281Z
+Engine/Content/Internationalization/icudt64l/unit/root.res	2023-10-10T10:34:43.282Z
+Engine/Content/Internationalization/icudt64l/zone/en.res	2023-10-10T10:34:43.283Z
+Engine/Content/Internationalization/icudt64l/zone/en_001.res	2023-10-10T10:49:18.401Z
+Engine/Content/Internationalization/icudt64l/zone/en_150.res	2023-10-10T10:34:43.284Z
+Engine/Content/Internationalization/icudt64l/zone/en_AE.res	2023-10-10T10:34:43.285Z
+Engine/Content/Internationalization/icudt64l/zone/en_AG.res	2023-10-10T10:49:18.408Z
+Engine/Content/Internationalization/icudt64l/zone/en_AI.res	2023-10-10T10:49:18.411Z
+Engine/Content/Internationalization/icudt64l/zone/en_AT.res	2023-10-10T10:49:18.415Z
+Engine/Content/Internationalization/icudt64l/zone/en_AU.res	2023-10-10T10:34:43.287Z
+Engine/Content/Internationalization/icudt64l/zone/en_BB.res	2023-10-10T10:49:18.420Z
+Engine/Content/Internationalization/icudt64l/zone/en_BE.res	2023-10-10T10:34:43.288Z
+Engine/Content/Internationalization/icudt64l/zone/en_BM.res	2023-10-10T10:49:18.424Z
+Engine/Content/Internationalization/icudt64l/zone/en_BS.res	2023-10-10T10:49:18.427Z
+Engine/Content/Internationalization/icudt64l/zone/en_BW.res	2023-10-10T10:49:18.431Z
+Engine/Content/Internationalization/icudt64l/zone/en_BZ.res	2023-10-10T10:49:18.434Z
+Engine/Content/Internationalization/icudt64l/zone/en_CA.res	2023-10-10T10:34:43.289Z
+Engine/Content/Internationalization/icudt64l/zone/en_CC.res	2023-10-10T10:49:18.438Z
+Engine/Content/Internationalization/icudt64l/zone/en_CH.res	2023-10-10T10:34:43.290Z
+Engine/Content/Internationalization/icudt64l/zone/en_CK.res	2023-10-10T10:49:18.442Z
+Engine/Content/Internationalization/icudt64l/zone/en_CM.res	2023-10-10T10:49:18.445Z
+Engine/Content/Internationalization/icudt64l/zone/en_CX.res	2023-10-10T10:49:18.447Z
+Engine/Content/Internationalization/icudt64l/zone/en_CY.res	2023-10-10T10:49:18.450Z
+Engine/Content/Internationalization/icudt64l/zone/en_DE.res	2023-10-10T10:49:18.453Z
+Engine/Content/Internationalization/icudt64l/zone/en_DG.res	2023-10-10T10:49:18.456Z
+Engine/Content/Internationalization/icudt64l/zone/en_DK.res	2023-10-10T10:49:18.458Z
+Engine/Content/Internationalization/icudt64l/zone/en_DM.res	2023-10-10T10:49:18.461Z
+Engine/Content/Internationalization/icudt64l/zone/en_ER.res	2023-10-10T10:49:18.463Z
+Engine/Content/Internationalization/icudt64l/zone/en_FI.res	2023-10-10T10:34:43.286Z
+Engine/Content/Internationalization/icudt64l/zone/en_FJ.res	2023-10-10T10:49:18.467Z
+Engine/Content/Internationalization/icudt64l/zone/en_FK.res	2023-10-10T10:49:18.470Z
+Engine/Content/Internationalization/icudt64l/zone/en_FM.res	2023-10-10T10:49:18.473Z
+Engine/Content/Internationalization/icudt64l/zone/en_GB.res	2023-10-10T10:34:43.290Z
+Engine/Content/Internationalization/icudt64l/zone/en_GD.res	2023-10-10T10:49:18.477Z
+Engine/Content/Internationalization/icudt64l/zone/en_GG.res	2023-10-10T10:49:18.480Z
+Engine/Content/Internationalization/icudt64l/zone/en_GH.res	2023-10-10T10:49:18.483Z
+Engine/Content/Internationalization/icudt64l/zone/en_GI.res	2023-10-10T10:49:18.486Z
+Engine/Content/Internationalization/icudt64l/zone/en_GM.res	2023-10-10T10:49:18.489Z
+Engine/Content/Internationalization/icudt64l/zone/en_GU.res	2023-10-10T10:34:43.291Z
+Engine/Content/Internationalization/icudt64l/zone/en_GY.res	2023-10-10T10:34:43.292Z
+Engine/Content/Internationalization/icudt64l/zone/en_HK.res	2023-10-10T10:34:43.293Z
+Engine/Content/Internationalization/icudt64l/zone/en_IE.res	2023-10-10T10:34:43.293Z
+Engine/Content/Internationalization/icudt64l/zone/en_IL.res	2023-10-10T10:49:18.497Z
+Engine/Content/Internationalization/icudt64l/zone/en_IM.res	2023-10-10T10:49:18.500Z
+Engine/Content/Internationalization/icudt64l/zone/en_IN.res	2023-10-10T10:34:43.294Z
+Engine/Content/Internationalization/icudt64l/zone/en_IO.res	2023-10-10T10:49:18.504Z
+Engine/Content/Internationalization/icudt64l/zone/en_JE.res	2023-10-10T10:49:18.507Z
+Engine/Content/Internationalization/icudt64l/zone/en_JM.res	2023-10-10T10:49:18.510Z
+Engine/Content/Internationalization/icudt64l/zone/en_KE.res	2023-10-10T10:49:18.512Z
+Engine/Content/Internationalization/icudt64l/zone/en_KI.res	2023-10-10T10:49:18.515Z
+Engine/Content/Internationalization/icudt64l/zone/en_KN.res	2023-10-10T10:49:18.518Z
+Engine/Content/Internationalization/icudt64l/zone/en_KY.res	2023-10-10T10:49:18.520Z
+Engine/Content/Internationalization/icudt64l/zone/en_LC.res	2023-10-10T10:49:18.523Z
+Engine/Content/Internationalization/icudt64l/zone/en_LR.res	2023-10-10T10:49:18.526Z
+Engine/Content/Internationalization/icudt64l/zone/en_LS.res	2023-10-10T10:49:18.528Z
+Engine/Content/Internationalization/icudt64l/zone/en_MG.res	2023-10-10T10:49:18.532Z
+Engine/Content/Internationalization/icudt64l/zone/en_MH.res	2023-10-10T10:49:18.534Z
+Engine/Content/Internationalization/icudt64l/zone/en_MO.res	2023-10-10T10:34:43.295Z
+Engine/Content/Internationalization/icudt64l/zone/en_MP.res	2023-10-10T10:34:43.284Z
+Engine/Content/Internationalization/icudt64l/zone/en_MS.res	2023-10-10T10:49:18.540Z
+Engine/Content/Internationalization/icudt64l/zone/en_MT.res	2023-10-10T10:34:43.286Z
+Engine/Content/Internationalization/icudt64l/zone/en_MU.res	2023-10-10T10:49:18.544Z
+Engine/Content/Internationalization/icudt64l/zone/en_MW.res	2023-10-10T10:34:43.288Z
+Engine/Content/Internationalization/icudt64l/zone/en_MY.res	2023-10-10T10:34:43.295Z
+Engine/Content/Internationalization/icudt64l/zone/en_NA.res	2023-10-10T10:49:18.551Z
+Engine/Content/Internationalization/icudt64l/zone/en_NF.res	2023-10-10T10:49:18.555Z
+Engine/Content/Internationalization/icudt64l/zone/en_NG.res	2023-10-10T10:34:43.298Z
+Engine/Content/Internationalization/icudt64l/zone/en_NH.res	2023-10-10T10:34:43.298Z
+Engine/Content/Internationalization/icudt64l/zone/en_NL.res	2023-10-10T10:49:18.563Z
+Engine/Content/Internationalization/icudt64l/zone/en_NR.res	2023-10-10T10:49:18.565Z
+Engine/Content/Internationalization/icudt64l/zone/en_NU.res	2023-10-10T10:49:18.568Z
+Engine/Content/Internationalization/icudt64l/zone/en_NZ.res	2023-10-10T10:34:43.300Z
+Engine/Content/Internationalization/icudt64l/zone/en_PG.res	2023-10-10T10:49:18.573Z
+Engine/Content/Internationalization/icudt64l/zone/en_PH.res	2023-10-10T10:49:18.575Z
+Engine/Content/Internationalization/icudt64l/zone/en_PK.res	2023-10-10T10:49:18.578Z
+Engine/Content/Internationalization/icudt64l/zone/en_PN.res	2023-10-10T10:49:18.581Z
+Engine/Content/Internationalization/icudt64l/zone/en_PW.res	2023-10-10T10:49:18.583Z
+Engine/Content/Internationalization/icudt64l/zone/en_RH.res	2023-10-10T10:34:43.301Z
+Engine/Content/Internationalization/icudt64l/zone/en_RW.res	2023-10-10T10:49:18.587Z
+Engine/Content/Internationalization/icudt64l/zone/en_SB.res	2023-10-10T10:49:18.590Z
+Engine/Content/Internationalization/icudt64l/zone/en_SC.res	2023-10-10T10:49:18.593Z
+Engine/Content/Internationalization/icudt64l/zone/en_SD.res	2023-10-10T10:49:18.596Z
+Engine/Content/Internationalization/icudt64l/zone/en_SE.res	2023-10-10T10:49:18.598Z
+Engine/Content/Internationalization/icudt64l/zone/en_SG.res	2023-10-10T10:34:43.301Z
+Engine/Content/Internationalization/icudt64l/zone/en_SH.res	2023-10-10T10:49:18.603Z
+Engine/Content/Internationalization/icudt64l/zone/en_SI.res	2023-10-10T10:34:43.299Z
+Engine/Content/Internationalization/icudt64l/zone/en_SL.res	2023-10-10T10:49:18.607Z
+Engine/Content/Internationalization/icudt64l/zone/en_SS.res	2023-10-10T10:49:18.609Z
+Engine/Content/Internationalization/icudt64l/zone/en_SX.res	2023-10-10T10:49:18.612Z
+Engine/Content/Internationalization/icudt64l/zone/en_SZ.res	2023-10-10T10:49:18.615Z
+Engine/Content/Internationalization/icudt64l/zone/en_TC.res	2023-10-10T10:49:18.618Z
+Engine/Content/Internationalization/icudt64l/zone/en_TK.res	2023-10-10T10:49:18.620Z
+Engine/Content/Internationalization/icudt64l/zone/en_TO.res	2023-10-10T10:49:18.623Z
+Engine/Content/Internationalization/icudt64l/zone/en_TT.res	2023-10-10T10:49:18.626Z
+Engine/Content/Internationalization/icudt64l/zone/en_TV.res	2023-10-10T10:49:18.629Z
+Engine/Content/Internationalization/icudt64l/zone/en_TZ.res	2023-10-10T10:49:18.631Z
+Engine/Content/Internationalization/icudt64l/zone/en_UG.res	2023-10-10T10:49:18.634Z
+Engine/Content/Internationalization/icudt64l/zone/en_VC.res	2023-10-10T10:49:18.637Z
+Engine/Content/Internationalization/icudt64l/zone/en_VG.res	2023-10-10T10:49:18.639Z
+Engine/Content/Internationalization/icudt64l/zone/en_VU.res	2023-10-10T10:49:18.643Z
+Engine/Content/Internationalization/icudt64l/zone/en_WS.res	2023-10-10T10:34:43.297Z
+Engine/Content/Internationalization/icudt64l/zone/en_ZA.res	2023-10-10T10:49:18.647Z
+Engine/Content/Internationalization/icudt64l/zone/en_ZM.res	2023-10-10T10:49:18.650Z
+Engine/Content/Internationalization/icudt64l/zone/en_ZW.res	2023-10-10T10:34:43.296Z
+Engine/Content/Internationalization/icudt64l/zone/pool.res	2023-10-10T10:34:43.302Z
+Engine/Content/Internationalization/icudt64l/zone/root.res	2023-10-10T10:34:43.303Z
+Engine/Config/Base.ini	2023-10-10T10:34:27.915Z
+Engine/Config/BaseCompat.ini	2024-07-08T14:33:34.887Z
+Engine/Config/BaseDeviceProfiles.ini	2024-07-08T14:33:34.877Z
+Engine/Config/BaseEngine.ini	2024-07-08T14:33:34.886Z
+Engine/Config/BaseGame.ini	2024-07-08T14:33:34.889Z
+Engine/Config/BaseGameUserSettings.ini	2024-07-08T14:33:34.890Z
+Engine/Config/BaseHardware.ini	2024-07-08T14:33:34.902Z
+Engine/Config/BaseInput.ini	2024-07-08T14:33:34.892Z
+Engine/Config/BaseInstallBundle.ini	2024-07-08T14:33:34.893Z
+Engine/Config/BaseRuntimeOptions.ini	2023-10-10T10:34:27.933Z
+Engine/Config/BaseScalability.ini	2024-07-08T14:33:34.895Z
+Engine/Config/ConfigRedirects.ini	2024-07-08T14:33:34.905Z
+Engine/Config/ConsoleVariables.ini	2024-07-08T14:33:34.896Z
+Engine/Config/Layouts/DefaultLayout.ini	2024-07-08T14:33:34.899Z
+Engine/Config/Layouts/UE4ClassicLayout.ini	2024-07-08T14:33:34.898Z
+Engine/Config/VulkanPC/DataDrivenPlatformInfo.ini	2024-07-08T14:33:34.910Z
+Engine/Config/Windows/BaseWindowsEngine.ini	2024-07-08T14:33:34.918Z
+Engine/Config/Windows/DataDrivenPlatformInfo.ini	2024-07-08T14:33:34.921Z
+Engine/Config/Windows/WindowsEngine.ini	2024-07-08T14:33:34.919Z
+Engine/Config/Windows/WindowsGame.ini	2023-10-10T10:34:27.939Z
+Engine/Config/Windows/WindowsInput.ini	2024-07-08T14:33:34.922Z
+Engine/Content/Localization/Engine/Engine.locmeta	2023-10-10T10:34:44.419Z
+Engine/Content/Localization/Engine/en/Engine.locres	2023-12-14T09:23:18.618Z
+MetaCastBachelor/Config/DefaultEngine.ini	2024-08-01T15:01:00.272Z
+MetaCastBachelor/Config/DefaultGame.ini	2024-08-02T07:19:17.256Z
+MetaCastBachelor/Config/DefaultInput.ini	2024-07-08T14:11:04.042Z
+Engine/Plugins/2D/Paper2D/Config/BasePaper2D.ini	2024-07-08T14:33:34.925Z
+Engine/Plugins/Animation/ACLPlugin/Config/FilterPlugin.ini	2023-10-10T10:35:49.950Z
+Engine/Plugins/Animation/ControlRig/Config/BaseControlRig.ini	2024-07-08T14:33:34.939Z
+Engine/Plugins/Animation/IKRig/Config/BaseIKRig.ini	2024-07-08T14:33:34.957Z
+Engine/Plugins/Animation/LiveLink/Config/BaseLiveLink.ini	2024-07-08T14:33:34.958Z
+Engine/Plugins/Bridge/Config/BaseBridge.ini	2024-07-08T14:34:27.169Z
+Engine/Plugins/Compositing/Composure/Config/BaseComposure.ini	2024-07-08T14:33:34.972Z
+Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/Config/BaseConcertSyncCore.ini	2024-07-08T14:33:34.986Z
+Engine/Plugins/Editor/ConsoleVariablesEditor/Config/BaseConsoleVariables.ini	2024-07-08T14:33:35.019Z
+Engine/Plugins/Editor/EditorScriptingUtilities/Config/BaseEditorScriptingUtilities.ini	2024-07-08T14:33:35.038Z
+Engine/Plugins/EnhancedInput/Config/BaseEnhancedInput.ini	2024-07-08T14:33:35.061Z
+Engine/Plugins/EnhancedInput/Config/Input.ini	2024-07-08T14:33:35.062Z
+Engine/Plugins/Enterprise/DatasmithContent/Config/BaseDatasmithContent.ini	2024-07-08T14:33:35.068Z
+Engine/Plugins/Enterprise/GLTFExporter/Config/BaseGLTFExporter.ini	2024-07-08T14:33:45.325Z
+Engine/Plugins/Enterprise/GLTFExporter/Config/DefaultGLTFExporter.ini	2024-07-08T14:33:35.072Z
+Engine/Plugins/Enterprise/GLTFExporter/Config/FilterPlugin.ini	2023-10-10T10:36:08.415Z
+Engine/Plugins/Enterprise/VariantManagerContent/Config/BaseVariantManagerContent.ini	2024-07-08T14:33:35.077Z
+Engine/Plugins/Experimental/ColorCorrectRegions/Config/BaseColorCorrectRegions.ini	2024-07-08T14:33:35.550Z
+Engine/Plugins/Experimental/FullBodyIK/Config/BaseFullBodyIK.ini	2024-07-08T14:33:35.563Z
+Engine/Plugins/Experimental/StructUtils/Config/BaseStructUtils.ini	2024-07-08T14:33:36.596Z
+Engine/Plugins/Experimental/ToolPresets/Config/BaseToolPresets.ini	2024-07-08T14:33:36.602Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Config/BaseVirtualProductionUtilities.ini	2024-07-08T14:33:36.615Z
+Engine/Plugins/FX/Niagara/Config/BaseNiagara.ini	2024-07-08T14:33:36.633Z
+Engine/Plugins/Interchange/Runtime/Config/BaseInterchange.ini	2024-07-08T14:33:36.737Z
+Engine/Plugins/Media/MediaIOFramework/Config/BaseMediaIOFramework.ini	2024-07-08T14:33:36.772Z
+Engine/Plugins/MovieScene/MovieRenderPipeline/Config/BaseMovieRenderPipeline.ini	2024-07-08T14:33:36.918Z
+Engine/Plugins/Online/OnlineSubsystemUtils/Config/Localization/OnlineSubsystemUtils.ini	2024-07-08T14:33:37.399Z
+Engine/Plugins/Online/OnlineSubsystem/Config/Localization/OnlineSubsystem.ini	2024-07-08T14:33:37.084Z
+Engine/Plugins/Runtime/InputDebugging/Config/Input.ini	2024-07-08T14:33:37.752Z
+Engine/Plugins/Runtime/LiveLinkOvernDisplay/Config/BaseEngine.ini	2024-07-08T14:33:37.846Z
+Engine/Plugins/Runtime/Metasound/Config/BaseMetasound.ini	2024-07-08T14:33:37.855Z
+Engine/Plugins/Runtime/OSC/Config/BaseOSC.ini	2024-07-08T14:33:38.148Z
+Engine/Plugins/Runtime/Synthesis/Config/BaseSynthesis.ini	2024-07-08T14:33:38.187Z
+Engine/Plugins/Runtime/nDisplay/Config/BasenDisplay.ini	2024-07-08T14:33:37.888Z
+Engine/Plugins/TraceUtilities/Config/BaseTraceUtilities.ini	2024-07-08T14:33:38.665Z
+Engine/Plugins/VirtualProduction/CameraCalibrationCore/Config/BaseCameraCalibrationCore.ini	2024-07-08T14:33:38.669Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Config/DefaultRWTHVRToolkit.ini	2024-06-28T12:56:34.570Z
+Engine/Plugins/Online/OnlineSubsystemUtils/Content/Localization/OnlineSubsystemUtils/OnlineSubsystemUtils.locmeta	2023-10-10T10:39:41.450Z
+Engine/Plugins/Online/OnlineSubsystemUtils/Content/Localization/OnlineSubsystemUtils/en/OnlineSubsystemUtils.locres	2023-10-10T10:39:41.431Z
+Engine/Plugins/Online/OnlineSubsystem/Content/Localization/OnlineSubsystem/OnlineSubsystem.locmeta	2023-10-10T10:39:38.711Z
+Engine/Plugins/Online/OnlineSubsystem/Content/Localization/OnlineSubsystem/en/OnlineSubsystem.locres	2023-10-10T10:39:38.690Z
+MetaCastBachelor/Content/Data/data/ball_hemisphere	2024-06-10T11:50:29.720Z
+MetaCastBachelor/Content/Data/data/disk	2024-06-10T11:50:29.729Z
+MetaCastBachelor/Content/Data/data/fiveellipsolds	2024-06-10T11:50:29.743Z
+MetaCastBachelor/Content/Data/data/Flocculentcube1	2024-06-10T11:50:29.668Z
+MetaCastBachelor/Content/Data/data/Flocculentcube2	2024-06-10T11:50:29.691Z
+MetaCastBachelor/Content/Data/data/Flocculentcube3	2024-06-10T11:50:29.707Z
+MetaCastBachelor/Content/Data/data/galaxy	2024-06-10T11:50:29.757Z
+MetaCastBachelor/Content/Data/data/multiEllipsolds	2024-06-10T11:50:29.789Z
+MetaCastBachelor/Content/Data/data/nbody1	2024-06-10T11:50:29.805Z
+MetaCastBachelor/Content/Data/data/nbody2	2024-06-10T11:50:29.812Z
+MetaCastBachelor/Content/Data/data/snap_animation	2024-06-10T11:50:29.829Z
+MetaCastBachelor/Content/Data/data/stringf	2024-06-10T11:50:29.853Z
+MetaCastBachelor/Content/Data/data/stringf1	2024-06-10T11:50:29.876Z
+MetaCastBachelor/Content/Data/data/strings	2024-06-10T11:50:29.898Z
+MetaCastBachelor/Content/Data/data/three_rings	2024-06-10T11:50:29.903Z
+MetaCastBachelor/Content/Data/data/training_cylinder	2024-06-10T11:50:29.909Z
+MetaCastBachelor/Content/Data/data/training_cylinder_2	2024-06-10T11:50:29.914Z
+MetaCastBachelor/Content/Data/data/training_pyramid	2024-06-10T11:50:29.921Z
+MetaCastBachelor/Content/Data/data/training_pyramid_2	2024-06-10T11:50:29.926Z
+MetaCastBachelor/Content/Data/data/training_sphere	2024-06-10T11:50:29.933Z
+MetaCastBachelor/Content/Data/data/training_sphere_2	2024-06-10T11:50:29.938Z
+MetaCastBachelor/Content/Data/data/training_torus	2024-06-10T11:50:29.944Z
+MetaCastBachelor/Content/Data/data/uniform_Lines	2024-06-10T11:50:29.953Z
+MetaCastBachelor/Content/Data/data/ununiform_Lines	2024-06-10T11:50:29.982Z
+MetaCastBachelor/Content/Data/flags/ball_hemisphere_flags	2024-06-10T11:50:30.012Z
+MetaCastBachelor/Content/Data/flags/disk_flags	2024-06-10T11:50:30.020Z
+MetaCastBachelor/Content/Data/flags/fivecluster_prestudy_flags	2024-06-10T11:50:30.022Z
+MetaCastBachelor/Content/Data/flags/fiveellipsolds_flags_1	2024-06-10T11:50:30.025Z
+MetaCastBachelor/Content/Data/flags/fiveellipsolds_flags_2	2024-06-10T11:50:30.028Z
+MetaCastBachelor/Content/Data/flags/Flocculentcube1_flags_1	2024-06-10T11:50:29.986Z
+MetaCastBachelor/Content/Data/flags/Flocculentcube1_flags_2	2024-06-10T11:50:29.989Z
+MetaCastBachelor/Content/Data/flags/Flocculentcube1_flags_3	2024-06-10T11:50:29.992Z
+MetaCastBachelor/Content/Data/flags/Flocculentcube1_prestudy_flags	2024-06-10T11:50:29.993Z
+MetaCastBachelor/Content/Data/flags/Flocculentcube2_flags	2024-06-10T11:50:29.995Z
+MetaCastBachelor/Content/Data/flags/Flocculentcube3_flags	2024-06-10T11:50:29.997Z
+MetaCastBachelor/Content/Data/flags/halfrings_flags	2024-06-10T11:50:30.037Z
+MetaCastBachelor/Content/Data/flags/nbody1_flags	2024-06-10T11:50:30.056Z
+MetaCastBachelor/Content/Data/flags/nbody2_flags	2024-06-10T11:50:30.067Z
+MetaCastBachelor/Content/Data/flags/nbody_prestudy_flags	2024-06-10T11:50:30.069Z
+MetaCastBachelor/Content/Data/flags/new_plus_flags	2024-06-10T11:50:30.097Z
+MetaCastBachelor/Content/Data/flags/shell_prestudy_flags	2024-06-10T11:50:30.100Z
+MetaCastBachelor/Content/Data/flags/snap_animation_flags	2024-06-10T11:50:30.140Z
+MetaCastBachelor/Content/Data/flags/three_rings_flags	2024-06-10T11:50:30.144Z
+MetaCastBachelor/Content/Data/flags/training_cylinder_flags	2024-06-10T11:50:30.152Z
+MetaCastBachelor/Content/Data/flags/training_pyramid_flags	2024-06-10T11:50:30.160Z
+MetaCastBachelor/Content/Data/flags/training_sphere_flags	2024-06-10T11:50:30.167Z
+MetaCastBachelor/Content/Data/flags/training_torus_flags	2024-06-10T11:50:30.176Z
+MetaCastBachelor/Content/Data/flags/uniform_Lines_flags	2024-06-10T11:50:30.188Z
+MetaCastBachelor/Content/Data/flags/ununiform_Lines_flags	2024-06-10T11:50:30.221Z
+Engine/GlobalShaderCache-PCD3D_SM5.bin	2024-08-02T07:20:15.667Z
+Engine/GlobalShaderCache-PCD3D_SM6.bin	2024-08-02T07:20:13.798Z
+MetaCastBachelor/AssetRegistry.bin	2024-08-02T07:20:40.963Z
+MetaCastBachelor/Content/ShaderArchive-Global-PCD3D_SM5-PCD3D_SM5.ushaderbytecode	2024-08-02T07:20:15.900Z
+MetaCastBachelor/Content/ShaderArchive-Global-PCD3D_SM6-PCD3D_SM6.ushaderbytecode	2024-08-02T07:20:15.792Z
+MetaCastBachelor/Content/ShaderArchive-MetaCastBachelor-PCD3D_SM5-PCD3D_SM5.ushaderbytecode	2024-08-02T07:20:41.299Z
+MetaCastBachelor/Content/ShaderArchive-MetaCastBachelor-PCD3D_SM6-PCD3D_SM6.ushaderbytecode	2024-08-02T07:20:41.209Z
+Engine/Content/Animation/DefaultAnimCurveCompressionSettings.uasset	2024-08-02T07:20:18.755Z
+Engine/Content/Animation/DefaultAnimCurveCompressionSettings.uexp	2024-08-02T07:20:18.759Z
+Engine/Content/Animation/DefaultRecorderBoneCompression.uasset	2024-08-02T07:20:18.760Z
+Engine/Content/Animation/DefaultRecorderBoneCompression.uexp	2024-08-02T07:20:18.762Z
+Engine/Content/Animation/DefaultVariableFrameStrippingSettings.uasset	2024-08-02T07:20:18.754Z
+Engine/Content/Animation/DefaultVariableFrameStrippingSettings.uexp	2024-08-02T07:20:18.756Z
+Engine/Content/BasicShapes/BasicShapeMaterial.uasset	2024-08-02T07:20:30.582Z
+Engine/Content/BasicShapes/BasicShapeMaterial.uexp	2024-08-02T07:20:30.584Z
+Engine/Content/BasicShapes/Cone.uasset	2024-08-02T07:20:32.515Z
+Engine/Content/BasicShapes/Cone.ubulk	2024-08-02T07:20:32.514Z
+Engine/Content/BasicShapes/Cone.uexp	2024-08-02T07:20:32.517Z
+Engine/Content/BasicShapes/Cube.uasset	2024-08-02T07:20:33.214Z
+Engine/Content/BasicShapes/Cube.ubulk	2024-08-02T07:20:33.212Z
+Engine/Content/BasicShapes/Cube.uexp	2024-08-02T07:20:33.215Z
+Engine/Content/BasicShapes/Cylinder.uasset	2024-08-02T07:20:32.517Z
+Engine/Content/BasicShapes/Cylinder.ubulk	2024-08-02T07:20:32.515Z
+Engine/Content/BasicShapes/Cylinder.uexp	2024-08-02T07:20:32.518Z
+Engine/Content/BasicShapes/Plane.uasset	2024-08-02T07:20:33.211Z
+Engine/Content/BasicShapes/Plane.ubulk	2024-08-02T07:20:33.209Z
+Engine/Content/BasicShapes/Plane.uexp	2024-08-02T07:20:33.213Z
+Engine/Content/BasicShapes/Sphere.uasset	2024-08-02T07:20:32.519Z
+Engine/Content/BasicShapes/Sphere.ubulk	2024-08-02T07:20:32.518Z
+Engine/Content/BasicShapes/Sphere.uexp	2024-08-02T07:20:32.520Z
+Engine/Content/EditorBlueprintResources/ActorMacros.uasset	2024-08-02T07:20:31.038Z
+Engine/Content/EditorBlueprintResources/ActorMacros.uexp	2024-08-02T07:20:31.040Z
+Engine/Content/EditorBlueprintResources/StandardMacros.uasset	2024-08-02T07:20:18.378Z
+Engine/Content/EditorBlueprintResources/StandardMacros.uexp	2024-08-02T07:20:18.379Z
+Engine/Content/EditorLandscapeResources/DataLayer.uasset	2024-08-02T07:20:18.920Z
+Engine/Content/EditorLandscapeResources/DataLayer.uexp	2024-08-02T07:20:18.921Z
+Engine/Content/EditorLandscapeResources/DefaultAlphaTexture.uasset	2024-08-02T07:20:18.553Z
+Engine/Content/EditorLandscapeResources/DefaultAlphaTexture.uexp	2024-08-02T07:20:18.555Z
+Engine/Content/EditorLandscapeResources/SplineEditorMesh.uasset	2024-08-02T07:20:31.149Z
+Engine/Content/EditorLandscapeResources/SplineEditorMesh.ubulk	2024-08-02T07:20:31.147Z
+Engine/Content/EditorLandscapeResources/SplineEditorMesh.uexp	2024-08-02T07:20:31.151Z
+Engine/Content/EditorLandscapeResources/SplineEditorMeshMat.uasset	2024-08-02T07:20:19.041Z
+Engine/Content/EditorLandscapeResources/SplineEditorMeshMat.uexp	2024-08-02T07:20:19.042Z
+Engine/Content/EditorMaterials/MatineeCam_mat.uasset	2024-08-02T07:20:32.098Z
+Engine/Content/EditorMaterials/MatineeCam_mat.uexp	2024-08-02T07:20:32.100Z
+Engine/Content/EditorMaterials/PhAT_NoCollisionMaterial.uasset	2024-08-02T07:20:18.543Z
+Engine/Content/EditorMaterials/PhAT_NoCollisionMaterial.uexp	2024-08-02T07:20:18.544Z
+Engine/Content/EditorMaterials/PhAT_UnselectedMaterial.uasset	2024-08-02T07:20:18.545Z
+Engine/Content/EditorMaterials/PhAT_UnselectedMaterial.uexp	2024-08-02T07:20:18.546Z
+Engine/Content/EditorMaterials/PreviewShadowIndicator.uasset	2024-08-02T07:20:30.582Z
+Engine/Content/EditorMaterials/PreviewShadowIndicator.ubulk	2024-08-02T07:20:30.581Z
+Engine/Content/EditorMaterials/PreviewShadowIndicator.uexp	2024-08-02T07:20:30.583Z
+Engine/Content/EditorMaterials/PreviewShadowIndicatorMaterial.uasset	2024-08-02T07:20:32.121Z
+Engine/Content/EditorMaterials/PreviewShadowIndicatorMaterial.uexp	2024-08-02T07:20:32.122Z
+Engine/Content/EditorMaterials/T_1x1_Grid.uasset	2024-08-02T07:20:18.890Z
+Engine/Content/EditorMaterials/T_1x1_Grid.ubulk	2024-08-02T07:20:18.889Z
+Engine/Content/EditorMaterials/T_1x1_Grid.uexp	2024-08-02T07:20:18.892Z
+Engine/Content/EditorMeshes/Axis_Guide.uasset	2024-08-02T07:20:18.702Z
+Engine/Content/EditorMeshes/Axis_Guide.ubulk	2024-08-02T07:20:18.699Z
+Engine/Content/EditorMeshes/Axis_Guide.uexp	2024-08-02T07:20:18.703Z
+Engine/Content/EditorMeshes/MatineeCam_SM.uasset	2024-08-02T07:20:33.443Z
+Engine/Content/EditorMeshes/MatineeCam_SM.ubulk	2024-08-02T07:20:33.441Z
+Engine/Content/EditorMeshes/MatineeCam_SM.uexp	2024-08-02T07:20:33.445Z
+Engine/Content/EditorResources/BSPVertex.uasset	2024-08-02T07:20:17.778Z
+Engine/Content/EditorResources/BSPVertex.uexp	2024-08-02T07:20:17.779Z
+Engine/Content/EditorResources/EmptyActor.uasset	2024-08-02T07:20:40.614Z
+Engine/Content/EditorResources/EmptyActor.uexp	2024-08-02T07:20:40.616Z
+Engine/Content/EditorResources/MatineeCam_D.uasset	2024-08-02T07:20:30.939Z
+Engine/Content/EditorResources/MatineeCam_D.uexp	2024-08-02T07:20:30.941Z
+Engine/Content/EditorResources/S_Actor.uasset	2024-08-02T07:20:19.377Z
+Engine/Content/EditorResources/S_Actor.ubulk	2024-08-02T07:20:19.375Z
+Engine/Content/EditorResources/S_Actor.uexp	2024-08-02T07:20:19.378Z
+Engine/Content/EditorResources/S_BoxReflectionCapture.uasset	2024-08-02T07:20:19.372Z
+Engine/Content/EditorResources/S_BoxReflectionCapture.uexp	2024-08-02T07:20:19.374Z
+Engine/Content/EditorResources/S_Solver.uasset	2024-08-02T07:20:19.049Z
+Engine/Content/EditorResources/S_Solver.ubulk	2024-08-02T07:20:19.048Z
+Engine/Content/EditorResources/S_Solver.uexp	2024-08-02T07:20:19.050Z
+Engine/Content/EditorResources/S_Terrain.uasset	2024-08-02T07:20:18.553Z
+Engine/Content/EditorResources/S_Terrain.ubulk	2024-08-02T07:20:18.552Z
+Engine/Content/EditorResources/S_Terrain.uexp	2024-08-02T07:20:18.559Z
+Engine/Content/EditorResources/S_Trigger.uasset	2024-08-02T07:20:19.155Z
+Engine/Content/EditorResources/S_Trigger.ubulk	2024-08-02T07:20:19.153Z
+Engine/Content/EditorResources/S_Trigger.uexp	2024-08-02T07:20:19.156Z
+Engine/Content/EditorResources/S_TriggerBox.uasset	2024-08-02T07:20:19.152Z
+Engine/Content/EditorResources/S_TriggerBox.uexp	2024-08-02T07:20:19.153Z
+Engine/Content/EditorResources/S_TriggerCapsule.uasset	2024-08-02T07:20:19.150Z
+Engine/Content/EditorResources/S_TriggerCapsule.uexp	2024-08-02T07:20:19.152Z
+Engine/Content/EditorResources/S_TriggerSphere.uasset	2024-08-02T07:20:19.149Z
+Engine/Content/EditorResources/S_TriggerSphere.uexp	2024-08-02T07:20:19.151Z
+Engine/Content/EngineDamageTypes/DmgTypeBP_Environmental.uasset	2024-08-02T07:20:18.958Z
+Engine/Content/EngineDamageTypes/DmgTypeBP_Environmental.uexp	2024-08-02T07:20:18.960Z
+Engine/Content/EngineDebugMaterials/DebugEditorMaterial.uasset	2024-08-02T07:20:18.190Z
+Engine/Content/EngineDebugMaterials/DebugEditorMaterial.uexp	2024-08-02T07:20:18.191Z
+Engine/Content/EngineDebugMaterials/DebugMeshMaterial.uasset	2024-08-02T07:20:18.679Z
+Engine/Content/EngineDebugMaterials/DebugMeshMaterial.uexp	2024-08-02T07:20:18.681Z
+Engine/Content/EngineDebugMaterials/M_SimpleOpaque.uasset	2024-08-02T07:20:18.129Z
+Engine/Content/EngineDebugMaterials/M_SimpleOpaque.uexp	2024-08-02T07:20:18.131Z
+Engine/Content/EngineDebugMaterials/M_SimpleUnlitTranslucent.uasset	2024-08-02T07:20:19.043Z
+Engine/Content/EngineDebugMaterials/M_SimpleUnlitTranslucent.uexp	2024-08-02T07:20:19.044Z
+Engine/Content/EngineDebugMaterials/M_VolumeRenderSphereTracePP.uasset	2024-08-02T07:20:31.241Z
+Engine/Content/EngineDebugMaterials/M_VolumeRenderSphereTracePP.uexp	2024-08-02T07:20:31.242Z
+Engine/Content/EngineDebugMaterials/VolumeToRender.uasset	2024-08-02T07:20:19.047Z
+Engine/Content/EngineDebugMaterials/VolumeToRender.uexp	2024-08-02T07:20:19.048Z
+Engine/Content/EngineFonts/DroidSansMono.uasset	2024-08-02T07:20:31.148Z
+Engine/Content/EngineFonts/DroidSansMono.uexp	2024-08-02T07:20:31.151Z
+Engine/Content/EngineFonts/Roboto.uasset	2024-08-02T07:20:31.150Z
+Engine/Content/EngineFonts/Roboto.uexp	2024-08-02T07:20:31.152Z
+Engine/Content/EngineFonts/RobotoDistanceField.uasset	2024-08-02T07:20:19.366Z
+Engine/Content/EngineFonts/RobotoDistanceField.uexp	2024-08-02T07:20:19.368Z
+Engine/Content/EngineMaterials/BaseFlattenDiffuseMap.uasset	2024-08-02T07:20:18.672Z
+Engine/Content/EngineMaterials/BaseFlattenDiffuseMap.uexp	2024-08-02T07:20:18.673Z
+Engine/Content/EngineMaterials/BaseFlattenDiffuseMap_VT.uasset	2024-08-02T07:20:18.574Z
+Engine/Content/EngineMaterials/BaseFlattenDiffuseMap_VT.uexp	2024-08-02T07:20:18.575Z
+Engine/Content/EngineMaterials/BaseFlattenEmissiveMap.uasset	2024-08-02T07:20:18.670Z
+Engine/Content/EngineMaterials/BaseFlattenEmissiveMap.uexp	2024-08-02T07:20:18.671Z
+Engine/Content/EngineMaterials/BaseFlattenEmissiveMap_VT.uasset	2024-08-02T07:20:18.574Z
+Engine/Content/EngineMaterials/BaseFlattenEmissiveMap_VT.uexp	2024-08-02T07:20:18.575Z
+Engine/Content/EngineMaterials/BaseFlattenGrayscaleMap.uasset	2024-08-02T07:20:18.669Z
+Engine/Content/EngineMaterials/BaseFlattenGrayscaleMap.uexp	2024-08-02T07:20:18.670Z
+Engine/Content/EngineMaterials/BaseFlattenGrayscaleMap_VT.uasset	2024-08-02T07:20:18.567Z
+Engine/Content/EngineMaterials/BaseFlattenGrayscaleMap_VT.uexp	2024-08-02T07:20:18.574Z
+Engine/Content/EngineMaterials/BaseFlattenLinearColor.uasset	2024-08-02T07:20:18.668Z
+Engine/Content/EngineMaterials/BaseFlattenLinearColor.uexp	2024-08-02T07:20:18.669Z
+Engine/Content/EngineMaterials/BaseFlattenLinearColor_VT.uasset	2024-08-02T07:20:18.565Z
+Engine/Content/EngineMaterials/BaseFlattenLinearColor_VT.uexp	2024-08-02T07:20:18.566Z
+Engine/Content/EngineMaterials/BaseFlattenNormalMap.uasset	2024-08-02T07:20:18.827Z
+Engine/Content/EngineMaterials/BaseFlattenNormalMap.uexp	2024-08-02T07:20:18.828Z
+Engine/Content/EngineMaterials/BaseFlattenNormalMap_VT.uasset	2024-08-02T07:20:18.564Z
+Engine/Content/EngineMaterials/BaseFlattenNormalMap_VT.uexp	2024-08-02T07:20:18.565Z
+Engine/Content/EngineMaterials/Black_1x1_EXR_Texture_VT.uasset	2024-08-02T07:20:18.562Z
+Engine/Content/EngineMaterials/Black_1x1_EXR_Texture_VT.uexp	2024-08-02T07:20:18.564Z
+Engine/Content/EngineMaterials/DefaultBloomKernel.uasset	2024-08-02T07:20:17.772Z
+Engine/Content/EngineMaterials/DefaultBloomKernel.uexp	2024-08-02T07:20:17.887Z
+Engine/Content/EngineMaterials/DefaultBokeh.uasset	2024-08-02T07:20:18.560Z
+Engine/Content/EngineMaterials/DefaultBokeh.uexp	2024-08-02T07:20:18.561Z
+Engine/Content/EngineMaterials/DefaultDeferredDecalMaterial.uasset	2024-08-02T07:20:31.390Z
+Engine/Content/EngineMaterials/DefaultDeferredDecalMaterial.uexp	2024-08-02T07:20:31.392Z
+Engine/Content/EngineMaterials/DefaultDestructiblePhysicalMaterial.uasset	2024-08-02T07:20:18.430Z
+Engine/Content/EngineMaterials/DefaultDestructiblePhysicalMaterial.uexp	2024-08-02T07:20:18.432Z
+Engine/Content/EngineMaterials/DefaultDiffuse.uasset	2024-08-02T07:20:19.011Z
+Engine/Content/EngineMaterials/DefaultDiffuse.ubulk	2024-08-02T07:20:19.010Z
+Engine/Content/EngineMaterials/DefaultDiffuse.uexp	2024-08-02T07:20:19.013Z
+Engine/Content/EngineMaterials/DefaultLightFunctionMaterial.uasset	2024-08-02T07:20:19.007Z
+Engine/Content/EngineMaterials/DefaultLightFunctionMaterial.uexp	2024-08-02T07:20:19.008Z
+Engine/Content/EngineMaterials/DefaultMaterial.uasset	2024-08-02T07:20:31.573Z
+Engine/Content/EngineMaterials/DefaultMaterial.uexp	2024-08-02T07:20:31.575Z
+Engine/Content/EngineMaterials/DefaultPhysicalMaterial.uasset	2024-08-02T07:20:18.432Z
+Engine/Content/EngineMaterials/DefaultPhysicalMaterial.uexp	2024-08-02T07:20:18.434Z
+Engine/Content/EngineMaterials/DefaultPostProcessMaterial.uasset	2024-08-02T07:20:31.378Z
+Engine/Content/EngineMaterials/DefaultPostProcessMaterial.uexp	2024-08-02T07:20:31.380Z
+Engine/Content/EngineMaterials/DefaultTextMaterialOpaque.uasset	2024-08-02T07:20:31.497Z
+Engine/Content/EngineMaterials/DefaultTextMaterialOpaque.uexp	2024-08-02T07:20:31.499Z
+Engine/Content/EngineMaterials/DefaultWhiteGrid.uasset	2024-08-02T07:20:18.557Z
+Engine/Content/EngineMaterials/DefaultWhiteGrid.ubulk	2024-08-02T07:20:18.555Z
+Engine/Content/EngineMaterials/DefaultWhiteGrid.uexp	2024-08-02T07:20:18.558Z
+Engine/Content/EngineMaterials/DefaultWhiteGrid_Low.uasset	2024-08-02T07:20:18.675Z
+Engine/Content/EngineMaterials/DefaultWhiteGrid_Low.uexp	2024-08-02T07:20:18.679Z
+Engine/Content/EngineMaterials/EmissiveMeshMaterial.uasset	2024-08-02T07:20:31.211Z
+Engine/Content/EngineMaterials/EmissiveMeshMaterial.uexp	2024-08-02T07:20:31.213Z
+Engine/Content/EngineMaterials/FlattenMaterial.uasset	2024-08-02T07:20:31.235Z
+Engine/Content/EngineMaterials/FlattenMaterial.uexp	2024-08-02T07:20:31.236Z
+Engine/Content/EngineMaterials/FlattenMaterial_VT.uasset	2024-08-02T07:20:31.206Z
+Engine/Content/EngineMaterials/FlattenMaterial_VT.uexp	2024-08-02T07:20:31.208Z
+Engine/Content/EngineMaterials/FlattenMaterial_WS_Normal_VT.uasset	2024-08-02T07:20:31.083Z
+Engine/Content/EngineMaterials/FlattenMaterial_WS_Normal_VT.uexp	2024-08-02T07:20:31.087Z
+Engine/Content/EngineMaterials/GizmoMaterial.uasset	2024-08-02T07:20:18.829Z
+Engine/Content/EngineMaterials/GizmoMaterial.uexp	2024-08-02T07:20:18.830Z
+Engine/Content/EngineMaterials/Good64x64TilingNoiseHighFreq.uasset	2024-08-02T07:20:18.776Z
+Engine/Content/EngineMaterials/Good64x64TilingNoiseHighFreq.uexp	2024-08-02T07:20:18.777Z
+Engine/Content/EngineMaterials/InvalidLightmapSettings.uasset	2024-08-02T07:20:18.676Z
+Engine/Content/EngineMaterials/InvalidLightmapSettings.ubulk	2024-08-02T07:20:18.674Z
+Engine/Content/EngineMaterials/InvalidLightmapSettings.uexp	2024-08-02T07:20:18.679Z
+Engine/Content/EngineMaterials/MiniFont.uasset	2024-08-02T07:20:18.558Z
+Engine/Content/EngineMaterials/MiniFont.uexp	2024-08-02T07:20:18.560Z
+Engine/Content/EngineMaterials/M_InvalidLightmapSettings.uasset	2024-08-02T07:20:31.209Z
+Engine/Content/EngineMaterials/M_InvalidLightmapSettings.uexp	2024-08-02T07:20:31.211Z
+Engine/Content/EngineMaterials/NaniteHiddenSectionMaterial.uasset	2024-08-02T07:20:18.685Z
+Engine/Content/EngineMaterials/NaniteHiddenSectionMaterial.uexp	2024-08-02T07:20:18.685Z
+Engine/Content/EngineMaterials/PhAT_JointLimitMaterial.uasset	2024-08-02T07:20:31.217Z
+Engine/Content/EngineMaterials/PhAT_JointLimitMaterial.uexp	2024-08-02T07:20:31.218Z
+Engine/Content/EngineMaterials/PreintegratedSkinBRDF.uasset	2024-08-02T07:20:18.554Z
+Engine/Content/EngineMaterials/PreintegratedSkinBRDF.uexp	2024-08-02T07:20:18.556Z
+Engine/Content/EngineMaterials/RemoveSurfaceMaterial.uasset	2024-08-02T07:20:18.682Z
+Engine/Content/EngineMaterials/RemoveSurfaceMaterial.uexp	2024-08-02T07:20:18.683Z
+Engine/Content/EngineMaterials/STBlueNoise_scalar_128x128x64.uasset	2024-08-02T07:20:17.608Z
+Engine/Content/EngineMaterials/STBlueNoise_scalar_128x128x64.uexp	2024-08-02T07:20:17.613Z
+Engine/Content/EngineMaterials/STBlueNoise_vec2_128x128x64.uasset	2024-08-02T07:20:17.606Z
+Engine/Content/EngineMaterials/STBlueNoise_vec2_128x128x64.uexp	2024-08-02T07:20:17.620Z
+Engine/Content/EngineMaterials/T_Default_Material_Grid_M.uasset	2024-08-02T07:20:19.158Z
+Engine/Content/EngineMaterials/T_Default_Material_Grid_M.ubulk	2024-08-02T07:20:19.157Z
+Engine/Content/EngineMaterials/T_Default_Material_Grid_M.uexp	2024-08-02T07:20:19.159Z
+Engine/Content/EngineMaterials/T_Default_Material_Grid_N.uasset	2024-08-02T07:20:19.156Z
+Engine/Content/EngineMaterials/T_Default_Material_Grid_N.ubulk	2024-08-02T07:20:19.154Z
+Engine/Content/EngineMaterials/T_Default_Material_Grid_N.uexp	2024-08-02T07:20:19.158Z
+Engine/Content/EngineMaterials/WeightMapPlaceholderTexture.uasset	2024-08-02T07:20:18.557Z
+Engine/Content/EngineMaterials/WeightMapPlaceholderTexture.uexp	2024-08-02T07:20:18.558Z
+Engine/Content/EngineMaterials/Widget3DPassThrough.uasset	2024-08-02T07:20:31.334Z
+Engine/Content/EngineMaterials/Widget3DPassThrough.uexp	2024-08-02T07:20:31.336Z
+Engine/Content/EngineMaterials/Widget3DPassThrough_Masked.uasset	2024-08-02T07:20:32.601Z
+Engine/Content/EngineMaterials/Widget3DPassThrough_Masked.uexp	2024-08-02T07:20:32.603Z
+Engine/Content/EngineMaterials/Widget3DPassThrough_Masked_OneSided.uasset	2024-08-02T07:20:33.643Z
+Engine/Content/EngineMaterials/Widget3DPassThrough_Masked_OneSided.uexp	2024-08-02T07:20:33.644Z
+Engine/Content/EngineMaterials/Widget3DPassThrough_Opaque.uasset	2024-08-02T07:20:32.603Z
+Engine/Content/EngineMaterials/Widget3DPassThrough_Opaque.uexp	2024-08-02T07:20:32.604Z
+Engine/Content/EngineMaterials/Widget3DPassThrough_Opaque_OneSided.uasset	2024-08-02T07:20:33.646Z
+Engine/Content/EngineMaterials/Widget3DPassThrough_Opaque_OneSided.uexp	2024-08-02T07:20:33.649Z
+Engine/Content/EngineMaterials/Widget3DPassThrough_Translucent.uasset	2024-08-02T07:20:32.538Z
+Engine/Content/EngineMaterials/Widget3DPassThrough_Translucent.uexp	2024-08-02T07:20:32.539Z
+Engine/Content/EngineMaterials/Widget3DPassThrough_Translucent_OneSided.uasset	2024-08-02T07:20:33.649Z
+Engine/Content/EngineMaterials/Widget3DPassThrough_Translucent_OneSided.uexp	2024-08-02T07:20:33.651Z
+Engine/Content/EngineMaterials/WorldGridMaterial.uasset	2024-08-02T07:20:31.481Z
+Engine/Content/EngineMaterials/WorldGridMaterial.uexp	2024-08-02T07:20:31.483Z
+Engine/Content/EngineMeshes/Sphere.uasset	2024-08-02T07:20:18.955Z
+Engine/Content/EngineMeshes/Sphere.ubulk	2024-08-02T07:20:18.953Z
+Engine/Content/EngineMeshes/Sphere.uexp	2024-08-02T07:20:18.958Z
+Engine/Content/EngineResources/Black.uasset	2024-08-02T07:20:19.065Z
+Engine/Content/EngineResources/Black.uexp	2024-08-02T07:20:19.066Z
+Engine/Content/EngineResources/DefaultTexture.uasset	2024-08-02T07:20:19.372Z
+Engine/Content/EngineResources/DefaultTexture.ubulk	2024-08-02T07:20:19.370Z
+Engine/Content/EngineResources/DefaultTexture.uexp	2024-08-02T07:20:19.373Z
+Engine/Content/EngineResources/DefaultTextureCube.uasset	2024-08-02T07:20:19.369Z
+Engine/Content/EngineResources/DefaultTextureCube.uexp	2024-08-02T07:20:19.370Z
+Engine/Content/EngineResources/DefaultVolumeTexture.uasset	2024-08-02T07:20:31.604Z
+Engine/Content/EngineResources/DefaultVolumeTexture.uexp	2024-08-02T07:20:31.607Z
+Engine/Content/EngineResources/DefaultVolumeTexture2D.uasset	2024-08-02T07:20:19.368Z
+Engine/Content/EngineResources/DefaultVolumeTexture2D.uexp	2024-08-02T07:20:19.369Z
+Engine/Content/EngineResources/GradientTexture0.uasset	2024-08-02T07:20:19.067Z
+Engine/Content/EngineResources/GradientTexture0.uexp	2024-08-02T07:20:19.068Z
+Engine/Content/EngineResources/WhiteSquareTexture.uasset	2024-08-02T07:20:19.068Z
+Engine/Content/EngineResources/WhiteSquareTexture.uexp	2024-08-02T07:20:19.069Z
+Engine/Content/EngineSky/BP_Sky_Sphere.uasset	2024-08-02T07:20:34.182Z
+Engine/Content/EngineSky/BP_Sky_Sphere.uexp	2024-08-02T07:20:34.183Z
+Engine/Content/EngineSky/C_Sky_Cloud_Color.uasset	2024-08-02T07:20:30.636Z
+Engine/Content/EngineSky/C_Sky_Cloud_Color.uexp	2024-08-02T07:20:30.637Z
+Engine/Content/EngineSky/C_Sky_Horizon_Color.uasset	2024-08-02T07:20:30.633Z
+Engine/Content/EngineSky/C_Sky_Horizon_Color.uexp	2024-08-02T07:20:30.635Z
+Engine/Content/EngineSky/C_Sky_Zenith_Color.uasset	2024-08-02T07:20:30.636Z
+Engine/Content/EngineSky/C_Sky_Zenith_Color.uexp	2024-08-02T07:20:30.638Z
+Engine/Content/EngineSky/M_Sky_Panning_Clouds2.uasset	2024-08-02T07:20:32.126Z
+Engine/Content/EngineSky/M_Sky_Panning_Clouds2.uexp	2024-08-02T07:20:32.128Z
+Engine/Content/EngineSky/SM_SkySphere.uasset	2024-08-02T07:20:33.430Z
+Engine/Content/EngineSky/SM_SkySphere.ubulk	2024-08-02T07:20:33.428Z
+Engine/Content/EngineSky/SM_SkySphere.uexp	2024-08-02T07:20:33.432Z
+Engine/Content/EngineSky/T_Sky_Blue.uasset	2024-08-02T07:20:30.761Z
+Engine/Content/EngineSky/T_Sky_Blue.ubulk	2024-08-02T07:20:30.759Z
+Engine/Content/EngineSky/T_Sky_Blue.uexp	2024-08-02T07:20:30.765Z
+Engine/Content/EngineSky/T_Sky_Clouds_M.uasset	2024-08-02T07:20:30.754Z
+Engine/Content/EngineSky/T_Sky_Clouds_M.ubulk	2024-08-02T07:20:30.752Z
+Engine/Content/EngineSky/T_Sky_Clouds_M.uexp	2024-08-02T07:20:30.756Z
+Engine/Content/EngineSky/T_Sky_Stars.uasset	2024-08-02T07:20:30.751Z
+Engine/Content/EngineSky/T_Sky_Stars.ubulk	2024-08-02T07:20:30.749Z
+Engine/Content/EngineSky/T_Sky_Stars.uexp	2024-08-02T07:20:30.754Z
+Engine/Content/EngineSounds/Master.uasset	2024-08-02T07:20:17.528Z
+Engine/Content/EngineSounds/Master.uexp	2024-08-02T07:20:17.529Z
+Engine/Content/Maps/Entry.uexp	2024-08-02T07:20:32.527Z
+Engine/Content/Maps/Entry.umap	2024-08-02T07:20:32.526Z
+Engine/Content/Maps/Entry_BuiltData.uasset	2024-08-02T07:20:30.500Z
+Engine/Content/Maps/Entry_BuiltData.uexp	2024-08-02T07:20:30.502Z
+MetaCastBachelor/Content/BP/BaselinePawn.uasset	2024-08-02T07:20:38.001Z
+MetaCastBachelor/Content/BP/BaselinePawn.uexp	2024-08-02T07:20:38.002Z
+MetaCastBachelor/Content/BP/BP_PointCloud.uasset	2024-08-02T07:20:31.911Z
+MetaCastBachelor/Content/BP/BP_PointCloud.uexp	2024-08-02T07:20:31.913Z
+MetaCastBachelor/Content/BP/BP_StudyManager.uasset	2024-08-02T07:20:19.159Z
+MetaCastBachelor/Content/BP/BP_StudyManager.uexp	2024-08-02T07:20:19.159Z
+MetaCastBachelor/Content/BP/MagicWandPawn.uasset	2024-08-02T07:20:37.903Z
+MetaCastBachelor/Content/BP/MagicWandPawn.uexp	2024-08-02T07:20:37.904Z
+MetaCastBachelor/Content/BP/MetaCastPawn.uasset	2024-08-02T07:20:37.800Z
+MetaCastBachelor/Content/BP/MetaCastPawn.uexp	2024-08-02T07:20:37.802Z
+MetaCastBachelor/Content/BP/MetaCastStudyPawn.uasset	2024-08-02T07:20:37.695Z
+MetaCastBachelor/Content/BP/MetaCastStudyPawn.uexp	2024-08-02T07:20:37.697Z
+MetaCastBachelor/Content/Input/MetaCast_Config.uasset	2024-08-02T07:20:31.967Z
+MetaCastBachelor/Content/Input/MetaCast_Config.uexp	2024-08-02T07:20:31.969Z
+MetaCastBachelor/Content/Input/MetaErase.uasset	2024-08-02T07:20:19.827Z
+MetaCastBachelor/Content/Input/MetaErase.uexp	2024-08-02T07:20:19.828Z
+MetaCastBachelor/Content/Input/MetaSelect.uasset	2024-08-02T07:20:19.826Z
+MetaCastBachelor/Content/Input/MetaSelect.uexp	2024-08-02T07:20:19.826Z
+MetaCastBachelor/Content/Input/NextPointCloud.uasset	2024-08-02T07:20:19.823Z
+MetaCastBachelor/Content/Input/NextPointCloud.uexp	2024-08-02T07:20:19.824Z
+MetaCastBachelor/Content/Input/PreviousPointCloud.uasset	2024-08-02T07:20:19.821Z
+MetaCastBachelor/Content/Input/PreviousPointCloud.uexp	2024-08-02T07:20:19.824Z
+MetaCastBachelor/Content/Input/Redo.uasset	2024-08-02T07:20:19.818Z
+MetaCastBachelor/Content/Input/Redo.uexp	2024-08-02T07:20:19.820Z
+MetaCastBachelor/Content/Input/Undo.uasset	2024-08-02T07:20:19.818Z
+MetaCastBachelor/Content/Input/Undo.uexp	2024-08-02T07:20:19.820Z
+MetaCastBachelor/Content/Maps/BaselineMap.uexp	2024-08-02T07:20:40.407Z
+MetaCastBachelor/Content/Maps/BaselineMap.umap	2024-08-02T07:20:40.405Z
+MetaCastBachelor/Content/Maps/BaselineMap_BuiltData.uasset	2024-08-02T07:20:19.902Z
+MetaCastBachelor/Content/Maps/BaselineMap_BuiltData.ubulk	2024-08-02T07:20:19.900Z
+MetaCastBachelor/Content/Maps/BaselineMap_BuiltData.uexp	2024-08-02T07:20:19.903Z
+MetaCastBachelor/Content/Maps/Login.uexp	2024-08-02T07:20:40.511Z
+MetaCastBachelor/Content/Maps/Login.umap	2024-08-02T07:20:40.509Z
+MetaCastBachelor/Content/Maps/Login_BuiltData.uasset	2024-08-02T07:20:19.777Z
+MetaCastBachelor/Content/Maps/Login_BuiltData.ubulk	2024-08-02T07:20:19.776Z
+MetaCastBachelor/Content/Maps/Login_BuiltData.uexp	2024-08-02T07:20:19.779Z
+MetaCastBachelor/Content/Maps/MagicWandMap.uexp	2024-08-02T07:20:40.388Z
+MetaCastBachelor/Content/Maps/MagicWandMap.umap	2024-08-02T07:20:40.387Z
+MetaCastBachelor/Content/Maps/Main_base.uexp	2024-08-02T07:20:40.371Z
+MetaCastBachelor/Content/Maps/Main_base.umap	2024-08-02T07:20:40.369Z
+MetaCastBachelor/Content/Maps/MetaPointMap.uexp	2024-08-02T07:20:40.355Z
+MetaCastBachelor/Content/Maps/MetaPointMap.umap	2024-08-02T07:20:40.354Z
+MetaCastBachelor/Content/Maps/MetaPointMap_BuiltData.uasset	2024-08-02T07:20:19.781Z
+MetaCastBachelor/Content/Maps/MetaPointMap_BuiltData.ubulk	2024-08-02T07:20:19.778Z
+MetaCastBachelor/Content/Maps/MetaPointMap_BuiltData.uexp	2024-08-02T07:20:19.784Z
+MetaCastBachelor/Content/Materials/LineMaterialOnTop.uasset	2024-08-02T07:20:19.814Z
+MetaCastBachelor/Content/Materials/LineMaterialOnTop.uexp	2024-08-02T07:20:19.818Z
+MetaCastBachelor/Content/Materials/SelectionSphere.uasset	2024-08-02T07:20:19.799Z
+MetaCastBachelor/Content/Materials/SelectionSphere.uexp	2024-08-02T07:20:19.803Z
+MetaCastBachelor/Content/Materials/SelectionVolume.uasset	2024-08-02T07:20:19.793Z
+MetaCastBachelor/Content/Materials/SelectionVolume.uexp	2024-08-02T07:20:19.799Z
+MetaCastBachelor/Content/Sounds/Erase.uasset	2024-08-02T07:20:19.789Z
+MetaCastBachelor/Content/Sounds/Erase.ubulk	2024-08-02T07:20:19.788Z
+MetaCastBachelor/Content/Sounds/Erase.uexp	2024-08-02T07:20:19.791Z
+MetaCastBachelor/Content/Sounds/Redo.uasset	2024-08-02T07:20:19.788Z
+MetaCastBachelor/Content/Sounds/Redo.ubulk	2024-08-02T07:20:19.785Z
+MetaCastBachelor/Content/Sounds/Redo.uexp	2024-08-02T07:20:19.790Z
+MetaCastBachelor/Content/Sounds/SelectionEndSound.uasset	2024-08-02T07:20:19.787Z
+MetaCastBachelor/Content/Sounds/SelectionEndSound.ubulk	2024-08-02T07:20:19.784Z
+MetaCastBachelor/Content/Sounds/SelectionEndSound.uexp	2024-08-02T07:20:19.789Z
+MetaCastBachelor/Content/Sounds/SelectionStartSound.uasset	2024-08-02T07:20:19.784Z
+MetaCastBachelor/Content/Sounds/SelectionStartSound.ubulk	2024-08-02T07:20:19.781Z
+MetaCastBachelor/Content/Sounds/SelectionStartSound.uexp	2024-08-02T07:20:19.787Z
+MetaCastBachelor/Content/Sounds/Undo.uasset	2024-08-02T07:20:19.783Z
+MetaCastBachelor/Content/Sounds/Undo.ubulk	2024-08-02T07:20:19.779Z
+MetaCastBachelor/Content/Sounds/Undo.uexp	2024-08-02T07:20:19.785Z
+MetaCastBachelor/Content/UI/LoginIMC.uasset	2024-08-02T07:20:31.726Z
+MetaCastBachelor/Content/UI/LoginIMC.uexp	2024-08-02T07:20:31.730Z
+MetaCastBachelor/Content/UI/LoginManager.uasset	2024-08-02T07:20:40.500Z
+MetaCastBachelor/Content/UI/LoginManager.uexp	2024-08-02T07:20:40.501Z
+MetaCastBachelor/Content/UI/SaveIdAction.uasset	2024-08-02T07:20:19.724Z
+MetaCastBachelor/Content/UI/SaveIdAction.uexp	2024-08-02T07:20:19.728Z
+MetaCastBachelor/Content/UI/StudyLogin.uasset	2024-08-02T07:20:40.504Z
+MetaCastBachelor/Content/UI/StudyLogin.uexp	2024-08-02T07:20:40.505Z
+MetaCastBachelor/Content/VRSpectator/EVRSpectatorMode.uasset	2024-08-02T07:20:19.721Z
+MetaCastBachelor/Content/VRSpectator/EVRSpectatorMode.uexp	2024-08-02T07:20:19.723Z
+MetaCastBachelor/Content/VRSpectator/RT_VRSpectator.uasset	2024-08-02T07:20:19.718Z
+MetaCastBachelor/Content/VRSpectator/RT_VRSpectator.uexp	2024-08-02T07:20:19.720Z
+MetaCastBachelor/Content/VRSpectator/VRSpectator.uasset	2024-08-02T07:20:34.291Z
+MetaCastBachelor/Content/VRSpectator/VRSpectator.uexp	2024-08-02T07:20:34.293Z
+Engine/Content/EditorMaterials/Camera/CineMat.uasset	2024-08-02T07:20:19.045Z
+Engine/Content/EditorMaterials/Camera/CineMat.uexp	2024-08-02T07:20:19.047Z
+Engine/Content/EditorMaterials/Camera/MI_CineMat_CameraBody.uasset	2024-08-02T07:20:31.152Z
+Engine/Content/EditorMaterials/Camera/MI_CineMat_CameraBody.uexp	2024-08-02T07:20:31.154Z
+Engine/Content/EditorMaterials/Camera/MI_CineMat_CamViewFinder.uasset	2024-08-02T07:20:30.809Z
+Engine/Content/EditorMaterials/Camera/MI_CineMat_CamViewFinder.uexp	2024-08-02T07:20:30.810Z
+Engine/Content/EditorMaterials/Camera/MI_CineMat_Rig.uasset	2024-08-02T07:20:31.154Z
+Engine/Content/EditorMaterials/Camera/MI_CineMat_Rig.uexp	2024-08-02T07:20:31.155Z
+Engine/Content/EditorMaterials/ParticleSystems/PSysThumbnail_NoImage.uasset	2024-08-02T07:20:19.025Z
+Engine/Content/EditorMaterials/ParticleSystems/PSysThumbnail_NoImage.ubulk	2024-08-02T07:20:19.024Z
+Engine/Content/EditorMaterials/ParticleSystems/PSysThumbnail_NoImage.uexp	2024-08-02T07:20:19.027Z
+Engine/Content/EditorMaterials/ParticleSystems/PSysThumbnail_OOD.uasset	2024-08-02T07:20:19.025Z
+Engine/Content/EditorMaterials/ParticleSystems/PSysThumbnail_OOD.ubulk	2024-08-02T07:20:19.024Z
+Engine/Content/EditorMaterials/ParticleSystems/PSysThumbnail_OOD.uexp	2024-08-02T07:20:19.026Z
+Engine/Content/EditorMeshes/Camera/SM_CraneRig_Arm.uasset	2024-08-02T07:20:32.354Z
+Engine/Content/EditorMeshes/Camera/SM_CraneRig_Arm.ubulk	2024-08-02T07:20:32.353Z
+Engine/Content/EditorMeshes/Camera/SM_CraneRig_Arm.uexp	2024-08-02T07:20:32.355Z
+Engine/Content/EditorMeshes/Camera/SM_CraneRig_Base.uasset	2024-08-02T07:20:32.356Z
+Engine/Content/EditorMeshes/Camera/SM_CraneRig_Base.ubulk	2024-08-02T07:20:32.355Z
+Engine/Content/EditorMeshes/Camera/SM_CraneRig_Base.uexp	2024-08-02T07:20:32.357Z
+Engine/Content/EditorMeshes/Camera/SM_CraneRig_Body.uasset	2024-08-02T07:20:32.350Z
+Engine/Content/EditorMeshes/Camera/SM_CraneRig_Body.ubulk	2024-08-02T07:20:32.349Z
+Engine/Content/EditorMeshes/Camera/SM_CraneRig_Body.uexp	2024-08-02T07:20:32.352Z
+Engine/Content/EditorMeshes/Camera/SM_CraneRig_Mount.uasset	2024-08-02T07:20:32.352Z
+Engine/Content/EditorMeshes/Camera/SM_CraneRig_Mount.ubulk	2024-08-02T07:20:32.351Z
+Engine/Content/EditorMeshes/Camera/SM_CraneRig_Mount.uexp	2024-08-02T07:20:32.354Z
+Engine/Content/EditorMeshes/Camera/SM_RailRig_Mount.uasset	2024-08-02T07:20:32.346Z
+Engine/Content/EditorMeshes/Camera/SM_RailRig_Mount.ubulk	2024-08-02T07:20:32.344Z
+Engine/Content/EditorMeshes/Camera/SM_RailRig_Mount.uexp	2024-08-02T07:20:32.348Z
+Engine/Content/EditorMeshes/Camera/SM_RailRig_Track.uasset	2024-08-02T07:20:32.348Z
+Engine/Content/EditorMeshes/Camera/SM_RailRig_Track.ubulk	2024-08-02T07:20:32.347Z
+Engine/Content/EditorMeshes/Camera/SM_RailRig_Track.uexp	2024-08-02T07:20:32.349Z
+Engine/Content/EditorResources/AudioIcons/S_AudioComponent_AutoActivate.uasset	2024-08-02T07:20:40.613Z
+Engine/Content/EditorResources/AudioIcons/S_AudioComponent_AutoActivate.uexp	2024-08-02T07:20:40.615Z
+Engine/Content/EditorResources/LightIcons/S_LightError.uasset	2024-08-02T07:20:40.512Z
+Engine/Content/EditorResources/LightIcons/S_LightError.uexp	2024-08-02T07:20:40.514Z
+Engine/Content/EditorResources/SequenceRecorder/Countdown.uasset	2024-08-02T07:20:18.435Z
+Engine/Content/EditorResources/SequenceRecorder/Countdown.uexp	2024-08-02T07:20:18.437Z
+Engine/Content/EditorResources/SequenceRecorder/RecordingIndicator.uasset	2024-08-02T07:20:18.546Z
+Engine/Content/EditorResources/SequenceRecorder/RecordingIndicator.uexp	2024-08-02T07:20:18.548Z
+Engine/Content/EngineFonts/Faces/DroidSansFallback.uasset	2024-08-02T07:20:18.949Z
+Engine/Content/EngineFonts/Faces/DroidSansFallback.uexp	2024-08-02T07:20:18.951Z
+Engine/Content/EngineFonts/Faces/DroidSansFallback.ufont	2024-08-02T07:20:18.946Z
+Engine/Content/EngineFonts/Faces/DroidSansMono.uasset	2024-08-02T07:20:18.738Z
+Engine/Content/EngineFonts/Faces/DroidSansMono.uexp	2024-08-02T07:20:18.740Z
+Engine/Content/EngineFonts/Faces/DroidSansMono.ufont	2024-08-02T07:20:18.738Z
+Engine/Content/EngineFonts/Faces/RobotoBold.uasset	2024-08-02T07:20:18.932Z
+Engine/Content/EngineFonts/Faces/RobotoBold.uexp	2024-08-02T07:20:18.933Z
+Engine/Content/EngineFonts/Faces/RobotoBold.ufont	2024-08-02T07:20:18.931Z
+Engine/Content/EngineFonts/Faces/RobotoBoldItalic.uasset	2024-08-02T07:20:18.929Z
+Engine/Content/EngineFonts/Faces/RobotoBoldItalic.uexp	2024-08-02T07:20:18.931Z
+Engine/Content/EngineFonts/Faces/RobotoBoldItalic.ufont	2024-08-02T07:20:18.926Z
+Engine/Content/EngineFonts/Faces/RobotoItalic.uasset	2024-08-02T07:20:18.927Z
+Engine/Content/EngineFonts/Faces/RobotoItalic.uexp	2024-08-02T07:20:18.930Z
+Engine/Content/EngineFonts/Faces/RobotoItalic.ufont	2024-08-02T07:20:18.925Z
+Engine/Content/EngineFonts/Faces/RobotoLight.uasset	2024-08-02T07:20:18.925Z
+Engine/Content/EngineFonts/Faces/RobotoLight.uexp	2024-08-02T07:20:18.927Z
+Engine/Content/EngineFonts/Faces/RobotoLight.ufont	2024-08-02T07:20:18.923Z
+Engine/Content/EngineFonts/Faces/RobotoRegular.uasset	2024-08-02T07:20:18.924Z
+Engine/Content/EngineFonts/Faces/RobotoRegular.uexp	2024-08-02T07:20:18.926Z
+Engine/Content/EngineFonts/Faces/RobotoRegular.ufont	2024-08-02T07:20:18.922Z
+Engine/Content/EngineResources/FilmGrains/Marcie_Grain_v3_128_M2_000.uasset	2024-08-02T07:20:17.721Z
+Engine/Content/EngineResources/FilmGrains/Marcie_Grain_v3_128_M2_000.uexp	2024-08-02T07:20:17.724Z
+Engine/Content/EngineSky/VolumetricClouds/CloudGradientTexture.uasset	2024-08-02T07:20:19.148Z
+Engine/Content/EngineSky/VolumetricClouds/CloudGradientTexture.uexp	2024-08-02T07:20:19.149Z
+Engine/Content/EngineSky/VolumetricClouds/CloudWeatherTexture.uasset	2024-08-02T07:20:19.145Z
+Engine/Content/EngineSky/VolumetricClouds/CloudWeatherTexture.uexp	2024-08-02T07:20:19.147Z
+Engine/Content/EngineSky/VolumetricClouds/m_SimpleVolumetricCloud.uasset	2024-08-02T07:20:32.545Z
+Engine/Content/EngineSky/VolumetricClouds/m_SimpleVolumetricCloud.uexp	2024-08-02T07:20:32.547Z
+Engine/Content/EngineSky/VolumetricClouds/m_SimpleVolumetricCloud_Inst.uasset	2024-08-02T07:20:33.614Z
+Engine/Content/EngineSky/VolumetricClouds/m_SimpleVolumetricCloud_Inst.uexp	2024-08-02T07:20:33.615Z
+Engine/Content/EngineSky/VolumetricClouds/T_NoiseErosion.uasset	2024-08-02T07:20:19.019Z
+Engine/Content/EngineSky/VolumetricClouds/T_NoiseErosion.ubulk	2024-08-02T07:20:19.017Z
+Engine/Content/EngineSky/VolumetricClouds/T_NoiseErosion.uexp	2024-08-02T07:20:19.021Z
+Engine/Content/EngineSky/VolumetricClouds/T_NoiseShape64.uasset	2024-08-02T07:20:19.018Z
+Engine/Content/EngineSky/VolumetricClouds/T_NoiseShape64.ubulk	2024-08-02T07:20:19.017Z
+Engine/Content/EngineSky/VolumetricClouds/T_NoiseShape64.uexp	2024-08-02T07:20:19.019Z
+Engine/Content/EngineSky/VolumetricClouds/T_VolumeNoiseErosion32.uasset	2024-08-02T07:20:31.339Z
+Engine/Content/EngineSky/VolumetricClouds/T_VolumeNoiseErosion32.uexp	2024-08-02T07:20:31.340Z
+Engine/Content/EngineSky/VolumetricClouds/T_VolumeNoiseShape64.uasset	2024-08-02T07:20:31.336Z
+Engine/Content/EngineSky/VolumetricClouds/T_VolumeNoiseShape64.uexp	2024-08-02T07:20:31.338Z
+Engine/Content/EngineSounds/Submixes/MasterEQEffectPreset.uasset	2024-08-02T07:20:20.075Z
+Engine/Content/EngineSounds/Submixes/MasterEQEffectPreset.uexp	2024-08-02T07:20:20.076Z
+Engine/Content/EngineSounds/Submixes/MasterEQSubmixDefault.uasset	2024-08-02T07:20:40.147Z
+Engine/Content/EngineSounds/Submixes/MasterEQSubmixDefault.uexp	2024-08-02T07:20:40.150Z
+Engine/Content/EngineSounds/Submixes/MasterReverbEffectPreset.uasset	2024-08-02T07:20:20.078Z
+Engine/Content/EngineSounds/Submixes/MasterReverbEffectPreset.uexp	2024-08-02T07:20:20.079Z
+Engine/Content/EngineSounds/Submixes/MasterReverbSubmixDefault.uasset	2024-08-02T07:20:40.150Z
+Engine/Content/EngineSounds/Submixes/MasterReverbSubmixDefault.uexp	2024-08-02T07:20:40.151Z
+Engine/Content/EngineSounds/Submixes/MasterSubmixDefault.uasset	2024-08-02T07:20:40.149Z
+Engine/Content/EngineSounds/Submixes/MasterSubmixDefault.uexp	2024-08-02T07:20:40.150Z
+Engine/Content/Functions/Engine_MaterialFunctions02/3PointLevels.uasset	2024-08-02T07:20:17.623Z
+Engine/Content/Functions/Engine_MaterialFunctions02/3PointLevels.uexp	2024-08-02T07:20:17.625Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Fresnel_Function.uasset	2024-08-02T07:20:30.639Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Fresnel_Function.uexp	2024-08-02T07:20:30.641Z
+Engine/Content/Functions/Engine_MaterialFunctions02/HueShift.uasset	2024-08-02T07:20:17.678Z
+Engine/Content/Functions/Engine_MaterialFunctions02/HueShift.uexp	2024-08-02T07:20:17.679Z
+Engine/Content/Functions/Engine_MaterialFunctions02/ObjectLocalBounds.uasset	2024-08-02T07:20:18.730Z
+Engine/Content/Functions/Engine_MaterialFunctions02/ObjectLocalBounds.uexp	2024-08-02T07:20:18.731Z
+Engine/Content/Functions/Engine_MaterialFunctions02/SafeNormalize.uasset	2024-08-02T07:20:18.729Z
+Engine/Content/Functions/Engine_MaterialFunctions02/SafeNormalize.uexp	2024-08-02T07:20:18.730Z
+Engine/Content/Functions/Engine_MaterialFunctions02/SmoothStep.uasset	2024-08-02T07:20:18.906Z
+Engine/Content/Functions/Engine_MaterialFunctions02/SmoothStep.uexp	2024-08-02T07:20:18.907Z
+Engine/Content/Functions/Engine_MaterialFunctions02/SplitComponents.uasset	2024-08-02T07:20:18.946Z
+Engine/Content/Functions/Engine_MaterialFunctions02/SplitComponents.uexp	2024-08-02T07:20:18.947Z
+Engine/Content/Functions/MaterialLayerFunctions/MatLayerBlend_NormalBlend.uasset	2024-08-02T07:20:32.016Z
+Engine/Content/Functions/MaterialLayerFunctions/MatLayerBlend_NormalBlend.uexp	2024-08-02T07:20:32.018Z
+Engine/Content/Functions/MaterialLayerFunctions/MatLayerBlend_Simple.uasset	2024-08-02T07:20:30.513Z
+Engine/Content/Functions/MaterialLayerFunctions/MatLayerBlend_Simple.uexp	2024-08-02T07:20:30.514Z
+Engine/Content/Functions/UserInterface/GetUserInterfaceUV.uasset	2024-08-02T07:20:18.345Z
+Engine/Content/Functions/UserInterface/GetUserInterfaceUV.uexp	2024-08-02T07:20:18.346Z
+Engine/Content/VREditor/BasicMeshes/MI_Ball_01.uasset	2024-08-02T07:20:33.428Z
+Engine/Content/VREditor/BasicMeshes/MI_Ball_01.uexp	2024-08-02T07:20:33.429Z
+Engine/Content/VREditor/BasicMeshes/MI_Cube_01.uasset	2024-08-02T07:20:33.433Z
+Engine/Content/VREditor/BasicMeshes/MI_Cube_01.uexp	2024-08-02T07:20:33.434Z
+Engine/Content/VREditor/BasicMeshes/M_Floor_01.uasset	2024-08-02T07:20:32.138Z
+Engine/Content/VREditor/BasicMeshes/M_Floor_01.uexp	2024-08-02T07:20:32.140Z
+Engine/Content/VREditor/BasicMeshes/SM_Ball_01.uasset	2024-08-02T07:20:34.280Z
+Engine/Content/VREditor/BasicMeshes/SM_Ball_01.ubulk	2024-08-02T07:20:34.279Z
+Engine/Content/VREditor/BasicMeshes/SM_Ball_01.uexp	2024-08-02T07:20:34.283Z
+Engine/Content/VREditor/BasicMeshes/SM_Cube_01.uasset	2024-08-02T07:20:34.282Z
+Engine/Content/VREditor/BasicMeshes/SM_Cube_01.ubulk	2024-08-02T07:20:34.281Z
+Engine/Content/VREditor/BasicMeshes/SM_Cube_01.uexp	2024-08-02T07:20:34.284Z
+Engine/Content/VREditor/BasicMeshes/T_CleanFloorGrunge_01_D.uasset	2024-08-02T07:20:30.942Z
+Engine/Content/VREditor/BasicMeshes/T_CleanFloorGrunge_01_D.ubulk	2024-08-02T07:20:30.940Z
+Engine/Content/VREditor/BasicMeshes/T_CleanFloorGrunge_01_D.uexp	2024-08-02T07:20:30.943Z
+Engine/Content/VREditor/FloatingText/LineMaterial.uasset	2024-08-02T07:20:18.441Z
+Engine/Content/VREditor/FloatingText/LineMaterial.uexp	2024-08-02T07:20:18.443Z
+Engine/Content/VREditor/FloatingText/LineSegmentCylinder.uasset	2024-08-02T07:20:31.027Z
+Engine/Content/VREditor/FloatingText/LineSegmentCylinder.ubulk	2024-08-02T07:20:31.025Z
+Engine/Content/VREditor/FloatingText/LineSegmentCylinder.uexp	2024-08-02T07:20:31.028Z
+Engine/Content/VREditor/Fonts/VRTextMaterial.uasset	2024-08-02T07:20:30.913Z
+Engine/Content/VREditor/Fonts/VRTextMaterial.uexp	2024-08-02T07:20:30.915Z
+Engine/Content/VREditor/Fonts/VRText_RobotoLarge.uasset	2024-08-02T07:20:18.536Z
+Engine/Content/VREditor/Fonts/VRText_RobotoLarge.uexp	2024-08-02T07:20:18.539Z
+Engine/Content/VREditor/LaserPointer/LaserPointerMaterial.uasset	2024-08-02T07:20:31.189Z
+Engine/Content/VREditor/LaserPointer/LaserPointerMaterial.uexp	2024-08-02T07:20:31.192Z
+Engine/Content/VREditor/LaserPointer/LaserPointerMaterialInst.uasset	2024-08-02T07:20:32.368Z
+Engine/Content/VREditor/LaserPointer/LaserPointerMaterialInst.uexp	2024-08-02T07:20:32.369Z
+Engine/Content/VREditor/LaserPointer/TranslucentLaserPointerMaterialInst.uasset	2024-08-02T07:20:33.637Z
+Engine/Content/VREditor/LaserPointer/TranslucentLaserPointerMaterialInst.uexp	2024-08-02T07:20:33.639Z
+Engine/Content/VREditor/LaserPointer/VR_LaserPower_01.uasset	2024-08-02T07:20:19.066Z
+Engine/Content/VREditor/LaserPointer/VR_LaserPower_01.ubulk	2024-08-02T07:20:19.065Z
+Engine/Content/VREditor/LaserPointer/VR_LaserPower_01.uexp	2024-08-02T07:20:19.067Z
+Engine/Content/VREditor/SnapGrid/SnapGridMaterial.uasset	2024-08-02T07:20:32.549Z
+Engine/Content/VREditor/SnapGrid/SnapGridMaterial.uexp	2024-08-02T07:20:32.551Z
+Engine/Content/VREditor/SnapGrid/SnapGridPlaneMesh.uasset	2024-08-02T07:20:33.556Z
+Engine/Content/VREditor/SnapGrid/SnapGridPlaneMesh.ubulk	2024-08-02T07:20:33.555Z
+Engine/Content/VREditor/SnapGrid/SnapGridPlaneMesh.uexp	2024-08-02T07:20:33.557Z
+Engine/Content/VREditor/TransformGizmo/BoundingBoxCorner.uasset	2024-08-02T07:20:32.373Z
+Engine/Content/VREditor/TransformGizmo/BoundingBoxCorner.ubulk	2024-08-02T07:20:32.372Z
+Engine/Content/VREditor/TransformGizmo/BoundingBoxCorner.uexp	2024-08-02T07:20:32.374Z
+Engine/Content/VREditor/TransformGizmo/BoundingBoxEdge.uasset	2024-08-02T07:20:32.371Z
+Engine/Content/VREditor/TransformGizmo/BoundingBoxEdge.ubulk	2024-08-02T07:20:32.370Z
+Engine/Content/VREditor/TransformGizmo/BoundingBoxEdge.uexp	2024-08-02T07:20:32.372Z
+Engine/Content/VREditor/TransformGizmo/Main.uasset	2024-08-02T07:20:19.052Z
+Engine/Content/VREditor/TransformGizmo/Main.uexp	2024-08-02T07:20:19.053Z
+Engine/Content/VREditor/TransformGizmo/PlaneTranslationHandle.uasset	2024-08-02T07:20:32.396Z
+Engine/Content/VREditor/TransformGizmo/PlaneTranslationHandle.ubulk	2024-08-02T07:20:32.394Z
+Engine/Content/VREditor/TransformGizmo/PlaneTranslationHandle.uexp	2024-08-02T07:20:32.397Z
+Engine/Content/VREditor/TransformGizmo/RotationHandleFull.uasset	2024-08-02T07:20:32.393Z
+Engine/Content/VREditor/TransformGizmo/RotationHandleFull.ubulk	2024-08-02T07:20:32.392Z
+Engine/Content/VREditor/TransformGizmo/RotationHandleFull.uexp	2024-08-02T07:20:32.395Z
+Engine/Content/VREditor/TransformGizmo/RotationHandleIndicator.uasset	2024-08-02T07:20:32.392Z
+Engine/Content/VREditor/TransformGizmo/RotationHandleIndicator.ubulk	2024-08-02T07:20:32.390Z
+Engine/Content/VREditor/TransformGizmo/RotationHandleIndicator.uexp	2024-08-02T07:20:32.393Z
+Engine/Content/VREditor/TransformGizmo/RotationHandleQuarter.uasset	2024-08-02T07:20:32.389Z
+Engine/Content/VREditor/TransformGizmo/RotationHandleQuarter.ubulk	2024-08-02T07:20:32.388Z
+Engine/Content/VREditor/TransformGizmo/RotationHandleQuarter.uexp	2024-08-02T07:20:32.391Z
+Engine/Content/VREditor/TransformGizmo/SM_Sequencer_Node.uasset	2024-08-02T07:20:31.167Z
+Engine/Content/VREditor/TransformGizmo/SM_Sequencer_Node.ubulk	2024-08-02T07:20:31.165Z
+Engine/Content/VREditor/TransformGizmo/SM_Sequencer_Node.uexp	2024-08-02T07:20:31.168Z
+Engine/Content/VREditor/TransformGizmo/StartRotationHandleIndicator.uasset	2024-08-02T07:20:32.385Z
+Engine/Content/VREditor/TransformGizmo/StartRotationHandleIndicator.ubulk	2024-08-02T07:20:32.384Z
+Engine/Content/VREditor/TransformGizmo/StartRotationHandleIndicator.uexp	2024-08-02T07:20:32.386Z
+Engine/Content/VREditor/TransformGizmo/TransformGizmoFreeRotation.uasset	2024-08-02T07:20:32.383Z
+Engine/Content/VREditor/TransformGizmo/TransformGizmoFreeRotation.ubulk	2024-08-02T07:20:32.382Z
+Engine/Content/VREditor/TransformGizmo/TransformGizmoFreeRotation.uexp	2024-08-02T07:20:32.391Z
+Engine/Content/VREditor/TransformGizmo/TransformGizmoMaterial.uasset	2024-08-02T07:20:31.323Z
+Engine/Content/VREditor/TransformGizmo/TransformGizmoMaterial.uexp	2024-08-02T07:20:31.324Z
+Engine/Content/VREditor/TransformGizmo/TransformGizmoMaterial_Inst.uasset	2024-08-02T07:20:32.396Z
+Engine/Content/VREditor/TransformGizmo/TransformGizmoMaterial_Inst.uexp	2024-08-02T07:20:32.397Z
+Engine/Content/VREditor/TransformGizmo/TranslateArrowHandle.uasset	2024-08-02T07:20:32.378Z
+Engine/Content/VREditor/TransformGizmo/TranslateArrowHandle.ubulk	2024-08-02T07:20:32.377Z
+Engine/Content/VREditor/TransformGizmo/TranslateArrowHandle.uexp	2024-08-02T07:20:32.380Z
+Engine/Content/VREditor/TransformGizmo/TranslucentTransformGizmoMaterial.uasset	2024-08-02T07:20:19.062Z
+Engine/Content/VREditor/TransformGizmo/TranslucentTransformGizmoMaterial.uexp	2024-08-02T07:20:19.064Z
+Engine/Content/VREditor/TransformGizmo/TranslucentTransformGizmoMaterial_Inst.uasset	2024-08-02T07:20:31.185Z
+Engine/Content/VREditor/TransformGizmo/TranslucentTransformGizmoMaterial_Inst.uexp	2024-08-02T07:20:31.187Z
+Engine/Content/VREditor/TransformGizmo/UniformScaleHandle.uasset	2024-08-02T07:20:32.376Z
+Engine/Content/VREditor/TransformGizmo/UniformScaleHandle.ubulk	2024-08-02T07:20:32.375Z
+Engine/Content/VREditor/TransformGizmo/UniformScaleHandle.uexp	2024-08-02T07:20:32.377Z
+Engine/Content/VREditor/TransformGizmo/Xray.uasset	2024-08-02T07:20:19.050Z
+Engine/Content/VREditor/TransformGizmo/Xray.uexp	2024-08-02T07:20:19.051Z
+Engine/Content/VREditor/UI/M_ContentWindow.uasset	2024-08-02T07:20:30.975Z
+Engine/Content/VREditor/UI/M_ContentWindow.uexp	2024-08-02T07:20:30.977Z
+Engine/Content/VREditor/UI/SM_ContentWindow_01.uasset	2024-08-02T07:20:32.092Z
+Engine/Content/VREditor/UI/SM_ContentWindow_01.ubulk	2024-08-02T07:20:32.090Z
+Engine/Content/VREditor/UI/SM_ContentWindow_01.uexp	2024-08-02T07:20:32.096Z
+MetaCastBachelor/Content/Characters/MannequinsXR/B_MannequinsXR.uasset	2024-08-02T07:20:40.157Z
+MetaCastBachelor/Content/Characters/MannequinsXR/B_MannequinsXR.uexp	2024-08-02T07:20:40.158Z
+MetaCastBachelor/Content/FPWeapon/Audio/FirstPersonTemplateWeaponFire02.uasset	2024-08-02T07:20:20.131Z
+MetaCastBachelor/Content/FPWeapon/Audio/FirstPersonTemplateWeaponFire02.ubulk	2024-08-02T07:20:20.130Z
+MetaCastBachelor/Content/FPWeapon/Audio/FirstPersonTemplateWeaponFire02.uexp	2024-08-02T07:20:20.132Z
+MetaCastBachelor/Content/FPWeapon/Materials/BaseMaterial.uasset	2024-08-02T07:20:20.128Z
+MetaCastBachelor/Content/FPWeapon/Materials/BaseMaterial.uexp	2024-08-02T07:20:20.129Z
+MetaCastBachelor/Content/FPWeapon/Materials/FirstPersonProjectileMaterial.uasset	2024-08-02T07:20:31.973Z
+MetaCastBachelor/Content/FPWeapon/Materials/FirstPersonProjectileMaterial.uexp	2024-08-02T07:20:31.974Z
+MetaCastBachelor/Content/FPWeapon/Materials/M_FPGun.uasset	2024-08-02T07:20:33.394Z
+MetaCastBachelor/Content/FPWeapon/Materials/M_FPGun.uexp	2024-08-02T07:20:33.396Z
+MetaCastBachelor/Content/FPWeapon/Mesh/FirstPersonProjectileMesh.uasset	2024-08-02T07:20:33.387Z
+MetaCastBachelor/Content/FPWeapon/Mesh/FirstPersonProjectileMesh.ubulk	2024-08-02T07:20:33.385Z
+MetaCastBachelor/Content/FPWeapon/Mesh/FirstPersonProjectileMesh.uexp	2024-08-02T07:20:33.388Z
+MetaCastBachelor/Content/FPWeapon/Mesh/SK_FPGun.uasset	2024-08-02T07:20:34.170Z
+MetaCastBachelor/Content/FPWeapon/Mesh/SK_FPGun.uexp	2024-08-02T07:20:34.172Z
+MetaCastBachelor/Content/FPWeapon/Mesh/SK_FPGun_Physics.uasset	2024-08-02T07:20:19.862Z
+MetaCastBachelor/Content/FPWeapon/Mesh/SK_FPGun_Physics.uexp	2024-08-02T07:20:19.863Z
+MetaCastBachelor/Content/FPWeapon/Mesh/SK_FPGun_PhysicsAsset.uasset	2024-08-02T07:20:19.830Z
+MetaCastBachelor/Content/FPWeapon/Mesh/SK_FPGun_PhysicsAsset.uexp	2024-08-02T07:20:19.832Z
+MetaCastBachelor/Content/FPWeapon/Mesh/SK_FPGun_Skeleton.uasset	2024-08-02T07:20:19.829Z
+MetaCastBachelor/Content/FPWeapon/Mesh/SK_FPGun_Skeleton.uexp	2024-08-02T07:20:19.831Z
+MetaCastBachelor/Content/FPWeapon/Textures/T_FPGun_M.uasset	2024-08-02T07:20:19.899Z
+MetaCastBachelor/Content/FPWeapon/Textures/T_FPGun_M.ubulk	2024-08-02T07:20:19.898Z
+MetaCastBachelor/Content/FPWeapon/Textures/T_FPGun_M.uexp	2024-08-02T07:20:19.900Z
+MetaCastBachelor/Content/FPWeapon/Textures/T_FPGun_N.uasset	2024-08-02T07:20:19.909Z
+MetaCastBachelor/Content/FPWeapon/Textures/T_FPGun_N.ubulk	2024-08-02T07:20:19.907Z
+MetaCastBachelor/Content/FPWeapon/Textures/T_FPGun_N.uexp	2024-08-02T07:20:19.910Z
+MetaCastBachelor/Content/LevelPrototyping/Materials/MF_ProcGrid.uasset	2024-08-02T07:20:32.221Z
+MetaCastBachelor/Content/LevelPrototyping/Materials/MF_ProcGrid.uexp	2024-08-02T07:20:32.222Z
+MetaCastBachelor/Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray.uasset	2024-08-02T07:20:34.572Z
+MetaCastBachelor/Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray.uexp	2024-08-02T07:20:34.573Z
+MetaCastBachelor/Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray_02.uasset	2024-08-02T07:20:34.570Z
+MetaCastBachelor/Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray_02.uexp	2024-08-02T07:20:34.571Z
+MetaCastBachelor/Content/LevelPrototyping/Materials/MI_PrototypeGrid_TopDark.uasset	2024-08-02T07:20:34.567Z
+MetaCastBachelor/Content/LevelPrototyping/Materials/MI_PrototypeGrid_TopDark.uexp	2024-08-02T07:20:34.568Z
+MetaCastBachelor/Content/LevelPrototyping/Materials/MI_Solid_Blue.uasset	2024-08-02T07:20:31.904Z
+MetaCastBachelor/Content/LevelPrototyping/Materials/MI_Solid_Blue.uexp	2024-08-02T07:20:31.906Z
+MetaCastBachelor/Content/LevelPrototyping/Materials/M_PrototypeGrid.uasset	2024-08-02T07:20:33.528Z
+MetaCastBachelor/Content/LevelPrototyping/Materials/M_PrototypeGrid.uexp	2024-08-02T07:20:33.530Z
+MetaCastBachelor/Content/LevelPrototyping/Materials/M_Solid.uasset	2024-08-02T07:20:19.891Z
+MetaCastBachelor/Content/LevelPrototyping/Materials/M_Solid.uexp	2024-08-02T07:20:19.893Z
+MetaCastBachelor/Content/LevelPrototyping/Meshes/SM_ChamferCube.uasset	2024-08-02T07:20:33.382Z
+MetaCastBachelor/Content/LevelPrototyping/Meshes/SM_ChamferCube.ubulk	2024-08-02T07:20:33.381Z
+MetaCastBachelor/Content/LevelPrototyping/Meshes/SM_ChamferCube.uexp	2024-08-02T07:20:33.384Z
+MetaCastBachelor/Content/LevelPrototyping/Meshes/SM_Cube.uasset	2024-08-02T07:20:35.615Z
+MetaCastBachelor/Content/LevelPrototyping/Meshes/SM_Cube.ubulk	2024-08-02T07:20:35.614Z
+MetaCastBachelor/Content/LevelPrototyping/Meshes/SM_Cube.uexp	2024-08-02T07:20:35.616Z
+MetaCastBachelor/Content/LevelPrototyping/Meshes/SM_Cylinder.uasset	2024-08-02T07:20:35.612Z
+MetaCastBachelor/Content/LevelPrototyping/Meshes/SM_Cylinder.ubulk	2024-08-02T07:20:35.610Z
+MetaCastBachelor/Content/LevelPrototyping/Meshes/SM_Cylinder.uexp	2024-08-02T07:20:35.614Z
+MetaCastBachelor/Content/LevelPrototyping/Meshes/SM_QuarterCylinder.uasset	2024-08-02T07:20:35.611Z
+MetaCastBachelor/Content/LevelPrototyping/Meshes/SM_QuarterCylinder.ubulk	2024-08-02T07:20:35.609Z
+MetaCastBachelor/Content/LevelPrototyping/Meshes/SM_QuarterCylinder.uexp	2024-08-02T07:20:35.614Z
+MetaCastBachelor/Content/LevelPrototyping/Meshes/SM_Ramp.uasset	2024-08-02T07:20:35.608Z
+MetaCastBachelor/Content/LevelPrototyping/Meshes/SM_Ramp.ubulk	2024-08-02T07:20:35.607Z
+MetaCastBachelor/Content/LevelPrototyping/Meshes/SM_Ramp.uexp	2024-08-02T07:20:35.610Z
+MetaCastBachelor/Content/LevelPrototyping/Textures/T_GridChecker_A.uasset	2024-08-02T07:20:19.890Z
+MetaCastBachelor/Content/LevelPrototyping/Textures/T_GridChecker_A.ubulk	2024-08-02T07:20:19.888Z
+MetaCastBachelor/Content/LevelPrototyping/Textures/T_GridChecker_A.uexp	2024-08-02T07:20:19.892Z
+MetaCastBachelor/Content/VRSpectator/Input/IMC_VRSpectator.uasset	2024-08-02T07:20:31.724Z
+MetaCastBachelor/Content/VRSpectator/Input/IMC_VRSpectator.uexp	2024-08-02T07:20:31.726Z
+MetaCastBachelor/Content/VRTemplate/Audio/Fire01.uasset	2024-08-02T07:20:19.779Z
+MetaCastBachelor/Content/VRTemplate/Audio/Fire01.ubulk	2024-08-02T07:20:19.777Z
+MetaCastBachelor/Content/VRTemplate/Audio/Fire01.uexp	2024-08-02T07:20:19.782Z
+MetaCastBachelor/Content/VRTemplate/Audio/Fire_Cue.uasset	2024-08-02T07:20:31.722Z
+MetaCastBachelor/Content/VRTemplate/Audio/Fire_Cue.uexp	2024-08-02T07:20:31.725Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/Grabbable_SmallCube.uasset	2024-08-02T07:20:35.292Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/Grabbable_SmallCube.uexp	2024-08-02T07:20:35.293Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/GrabComponent.uasset	2024-08-02T07:20:31.720Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/GrabComponent.uexp	2024-08-02T07:20:31.722Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/GrabType.uasset	2024-08-02T07:20:19.640Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/GrabType.uexp	2024-08-02T07:20:19.641Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/Menu.uasset	2024-08-02T07:20:35.496Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/Menu.uexp	2024-08-02T07:20:35.497Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/Pistol.uasset	2024-08-02T07:20:34.990Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/Pistol.uexp	2024-08-02T07:20:34.992Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/Projectile.uasset	2024-08-02T07:20:33.710Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/Projectile.uexp	2024-08-02T07:20:33.711Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/VRGameMode.uasset	2024-08-02T07:20:40.202Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/VRGameMode.uexp	2024-08-02T07:20:40.204Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/VRPawn.uasset	2024-08-02T07:20:40.178Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/VRPawn.uexp	2024-08-02T07:20:40.180Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/VRTeleportVisualizer.uasset	2024-08-02T07:20:36.718Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/VRTeleportVisualizer.uexp	2024-08-02T07:20:36.720Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/WidgetMenu.uasset	2024-08-02T07:20:19.638Z
+MetaCastBachelor/Content/VRTemplate/Blueprints/WidgetMenu.uexp	2024-08-02T07:20:19.640Z
+MetaCastBachelor/Content/VRTemplate/Haptics/GrabHapticEffect.uasset	2024-08-02T07:20:19.636Z
+MetaCastBachelor/Content/VRTemplate/Haptics/GrabHapticEffect.uexp	2024-08-02T07:20:19.637Z
+MetaCastBachelor/Content/VRTemplate/Haptics/PistolFireHapticEffect.uasset	2024-08-02T07:20:19.634Z
+MetaCastBachelor/Content/VRTemplate/Haptics/PistolFireHapticEffect.uexp	2024-08-02T07:20:19.637Z
+MetaCastBachelor/Content/VRTemplate/Input/B_InputModifier_XAxisPositiveOnly.uasset	2024-08-02T07:20:19.633Z
+MetaCastBachelor/Content/VRTemplate/Input/B_InputModifier_XAxisPositiveOnly.uexp	2024-08-02T07:20:19.634Z
+MetaCastBachelor/Content/VRTemplate/Input/IMC_Default.uasset	2024-08-02T07:20:33.376Z
+MetaCastBachelor/Content/VRTemplate/Input/IMC_Default.uexp	2024-08-02T07:20:33.378Z
+MetaCastBachelor/Content/VRTemplate/Input/IMC_Hands.uasset	2024-08-02T07:20:31.600Z
+MetaCastBachelor/Content/VRTemplate/Input/IMC_Hands.uexp	2024-08-02T07:20:31.603Z
+MetaCastBachelor/Content/VRTemplate/Input/IMC_Menu.uasset	2024-08-02T07:20:31.712Z
+MetaCastBachelor/Content/VRTemplate/Input/IMC_Menu.uexp	2024-08-02T07:20:31.715Z
+MetaCastBachelor/Content/VRTemplate/Input/IMC_Weapon_Left.uasset	2024-08-02T07:20:31.707Z
+MetaCastBachelor/Content/VRTemplate/Input/IMC_Weapon_Left.uexp	2024-08-02T07:20:31.712Z
+MetaCastBachelor/Content/VRTemplate/Input/IMC_Weapon_Right.uasset	2024-08-02T07:20:31.707Z
+MetaCastBachelor/Content/VRTemplate/Input/IMC_Weapon_Right.uexp	2024-08-02T07:20:31.711Z
+MetaCastBachelor/Content/VRTemplate/Input/PMI_VRTemplate.uasset	2024-08-02T07:20:33.877Z
+MetaCastBachelor/Content/VRTemplate/Input/PMI_VRTemplate.uexp	2024-08-02T07:20:33.879Z
+MetaCastBachelor/Content/VRTemplate/Maps/VRTemplateMap.uexp	2024-08-02T07:20:40.335Z
+MetaCastBachelor/Content/VRTemplate/Maps/VRTemplateMap.umap	2024-08-02T07:20:40.333Z
+MetaCastBachelor/Content/VRTemplate/Maps/VRTemplateMap_BuiltData.uasset	2024-08-02T07:20:19.781Z
+MetaCastBachelor/Content/VRTemplate/Maps/VRTemplateMap_BuiltData.ubulk	2024-08-02T07:20:19.777Z
+MetaCastBachelor/Content/VRTemplate/Maps/VRTemplateMap_BuiltData.uexp	2024-08-02T07:20:19.786Z
+MetaCastBachelor/Content/VRTemplate/Materials/DefaultRibbonMaterial_NoGradient.uasset	2024-08-02T07:20:19.675Z
+MetaCastBachelor/Content/VRTemplate/Materials/DefaultRibbonMaterial_NoGradient.uexp	2024-08-02T07:20:19.683Z
+MetaCastBachelor/Content/VRTemplate/Materials/MI_Grid_Accent.uasset	2024-08-02T07:20:34.578Z
+MetaCastBachelor/Content/VRTemplate/Materials/MI_Grid_Accent.uexp	2024-08-02T07:20:34.579Z
+MetaCastBachelor/Content/VRTemplate/Materials/MI_Grid_Default.uasset	2024-08-02T07:20:34.575Z
+MetaCastBachelor/Content/VRTemplate/Materials/MI_Grid_Default.uexp	2024-08-02T07:20:34.576Z
+MetaCastBachelor/Content/VRTemplate/Materials/MI_Projectile.uasset	2024-08-02T07:20:31.598Z
+MetaCastBachelor/Content/VRTemplate/Materials/MI_Projectile.uexp	2024-08-02T07:20:31.603Z
+MetaCastBachelor/Content/VRTemplate/Materials/M_GridRotation.uasset	2024-08-02T07:20:33.629Z
+MetaCastBachelor/Content/VRTemplate/Materials/M_GridRotation.uexp	2024-08-02T07:20:33.631Z
+MetaCastBachelor/Content/VRTemplate/Materials/M_Projectile.uasset	2024-08-02T07:20:19.540Z
+MetaCastBachelor/Content/VRTemplate/Materials/M_Projectile.uexp	2024-08-02T07:20:19.541Z
+MetaCastBachelor/Content/VRTemplate/Materials/M_TeleportCylinder.uasset	2024-08-02T07:20:33.635Z
+MetaCastBachelor/Content/VRTemplate/Materials/M_TeleportCylinder.uexp	2024-08-02T07:20:33.636Z
+MetaCastBachelor/Content/VRTemplate/Materials/M_TeleportNoise.uasset	2024-08-02T07:20:33.631Z
+MetaCastBachelor/Content/VRTemplate/Materials/M_TeleportNoise.uexp	2024-08-02T07:20:33.632Z
+MetaCastBachelor/Content/VRTemplate/Materials/M_VRCursor.uasset	2024-08-02T07:20:19.538Z
+MetaCastBachelor/Content/VRTemplate/Materials/M_VRCursor.uexp	2024-08-02T07:20:19.539Z
+MetaCastBachelor/Content/VRTemplate/Textures/T_Grid.uasset	2024-08-02T07:20:19.569Z
+MetaCastBachelor/Content/VRTemplate/Textures/T_Grid.ubulk	2024-08-02T07:20:19.567Z
+MetaCastBachelor/Content/VRTemplate/Textures/T_Grid.uexp	2024-08-02T07:20:19.571Z
+MetaCastBachelor/Content/VRTemplate/VFX/NPC_VRTemplate.uasset	2024-08-02T07:20:18.385Z
+MetaCastBachelor/Content/VRTemplate/VFX/NPC_VRTemplate.uexp	2024-08-02T07:20:18.386Z
+MetaCastBachelor/Content/VRTemplate/VFX/NS_MenuLaser.uasset	2024-08-02T07:20:34.453Z
+MetaCastBachelor/Content/VRTemplate/VFX/NS_MenuLaser.uexp	2024-08-02T07:20:34.454Z
+MetaCastBachelor/Content/VRTemplate/VFX/NS_PlayAreaBounds.uasset	2024-08-02T07:20:34.585Z
+MetaCastBachelor/Content/VRTemplate/VFX/NS_PlayAreaBounds.uexp	2024-08-02T07:20:34.587Z
+MetaCastBachelor/Content/VRTemplate/VFX/NS_TeleportRing.uasset	2024-08-02T07:20:35.461Z
+MetaCastBachelor/Content/VRTemplate/VFX/NS_TeleportRing.uexp	2024-08-02T07:20:35.462Z
+MetaCastBachelor/Content/VRTemplate/VFX/NS_TeleportTrace.uasset	2024-08-02T07:20:35.605Z
+MetaCastBachelor/Content/VRTemplate/VFX/NS_TeleportTrace.uexp	2024-08-02T07:20:35.606Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/BP_RWTHVRGameModeBase.uasset	2024-08-02T07:20:37.607Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/BP_RWTHVRGameModeBase.uexp	2024-08-02T07:20:37.609Z
+Engine/Content/ArtTools/RenderToTexture/MaterialFunctions/CheckerPattern.uasset	2024-08-02T07:20:31.267Z
+Engine/Content/ArtTools/RenderToTexture/MaterialFunctions/CheckerPattern.uexp	2024-08-02T07:20:31.268Z
+Engine/Content/ArtTools/RenderToTexture/Meshes/S_1_Unit_Plane.uasset	2024-08-02T07:20:33.255Z
+Engine/Content/ArtTools/RenderToTexture/Meshes/S_1_Unit_Plane.ubulk	2024-08-02T07:20:33.254Z
+Engine/Content/ArtTools/RenderToTexture/Meshes/S_1_Unit_Plane.uexp	2024-08-02T07:20:33.257Z
+Engine/Content/ArtTools/RenderToTexture/Textures/127grey.uasset	2024-08-02T07:20:18.837Z
+Engine/Content/ArtTools/RenderToTexture/Textures/127grey.uexp	2024-08-02T07:20:18.838Z
+Engine/Content/ArtTools/RenderToTexture/Textures/T_EV_BlankWhite_01.uasset	2024-08-02T07:20:18.891Z
+Engine/Content/ArtTools/RenderToTexture/Textures/T_EV_BlankWhite_01.uexp	2024-08-02T07:20:18.892Z
+Engine/Content/EngineMaterials/Substrate/GLints/AGlintTex2dArray.uasset	2024-08-02T07:20:32.105Z
+Engine/Content/EngineMaterials/Substrate/GLints/AGlintTex2dArray.uexp	2024-08-02T07:20:32.110Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0000.uasset	2024-08-02T07:20:28.696Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0000.uexp	2024-08-02T07:20:28.697Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0001.uasset	2024-08-02T07:20:29.533Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0001.uexp	2024-08-02T07:20:29.535Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0002.uasset	2024-08-02T07:20:27.561Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0002.uexp	2024-08-02T07:20:27.563Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0003.uasset	2024-08-02T07:20:30.573Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0003.uexp	2024-08-02T07:20:30.575Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0004.uasset	2024-08-02T07:20:27.560Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0004.uexp	2024-08-02T07:20:27.562Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0005.uasset	2024-08-02T07:20:29.089Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0005.uexp	2024-08-02T07:20:29.090Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0006.uasset	2024-08-02T07:20:30.099Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0006.uexp	2024-08-02T07:20:30.100Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0007.uasset	2024-08-02T07:20:27.120Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0007.uexp	2024-08-02T07:20:27.122Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0008.uasset	2024-08-02T07:20:29.087Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0008.uexp	2024-08-02T07:20:29.088Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0009.uasset	2024-08-02T07:20:30.357Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0009.uexp	2024-08-02T07:20:30.358Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0010.uasset	2024-08-02T07:20:27.250Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0010.uexp	2024-08-02T07:20:27.252Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0011.uasset	2024-08-02T07:20:27.916Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0011.uexp	2024-08-02T07:20:27.918Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0012.uasset	2024-08-02T07:20:30.216Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0012.uexp	2024-08-02T07:20:30.217Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0013.uasset	2024-08-02T07:20:28.803Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0013.uexp	2024-08-02T07:20:28.804Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0014.uasset	2024-08-02T07:20:28.916Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0014.uexp	2024-08-02T07:20:28.918Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0015.uasset	2024-08-02T07:20:27.781Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0000_0015.uexp	2024-08-02T07:20:27.783Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0000.uasset	2024-08-02T07:20:27.145Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0000.uexp	2024-08-02T07:20:27.146Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0001.uasset	2024-08-02T07:20:29.344Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0001.uexp	2024-08-02T07:20:29.345Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0002.uasset	2024-08-02T07:20:27.997Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0002.uexp	2024-08-02T07:20:28.000Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0003.uasset	2024-08-02T07:20:30.197Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0003.uexp	2024-08-02T07:20:30.198Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0004.uasset	2024-08-02T07:20:28.468Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0004.uexp	2024-08-02T07:20:28.469Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0005.uasset	2024-08-02T07:20:30.106Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0005.uexp	2024-08-02T07:20:30.107Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0006.uasset	2024-08-02T07:20:29.662Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0006.uexp	2024-08-02T07:20:29.663Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0007.uasset	2024-08-02T07:20:29.120Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0007.uexp	2024-08-02T07:20:29.121Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0008.uasset	2024-08-02T07:20:28.337Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0008.uexp	2024-08-02T07:20:28.339Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0009.uasset	2024-08-02T07:20:29.977Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0009.uexp	2024-08-02T07:20:29.979Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0010.uasset	2024-08-02T07:20:29.107Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0010.uexp	2024-08-02T07:20:29.109Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0011.uasset	2024-08-02T07:20:27.952Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0011.uexp	2024-08-02T07:20:27.954Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0012.uasset	2024-08-02T07:20:30.006Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0012.uexp	2024-08-02T07:20:30.008Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0013.uasset	2024-08-02T07:20:30.422Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0013.uexp	2024-08-02T07:20:30.424Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0014.uasset	2024-08-02T07:20:28.677Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0014.uexp	2024-08-02T07:20:28.678Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0015.uasset	2024-08-02T07:20:27.693Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0001_0015.uexp	2024-08-02T07:20:27.695Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0000.uasset	2024-08-02T07:20:28.551Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0000.uexp	2024-08-02T07:20:28.552Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0001.uasset	2024-08-02T07:20:27.124Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0001.uexp	2024-08-02T07:20:27.126Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0002.uasset	2024-08-02T07:20:28.471Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0002.uexp	2024-08-02T07:20:28.473Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0003.uasset	2024-08-02T07:20:27.573Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0003.uexp	2024-08-02T07:20:27.574Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0004.uasset	2024-08-02T07:20:30.439Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0004.uexp	2024-08-02T07:20:30.441Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0005.uasset	2024-08-02T07:20:28.700Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0005.uexp	2024-08-02T07:20:28.701Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0006.uasset	2024-08-02T07:20:30.200Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0006.uexp	2024-08-02T07:20:30.201Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0007.uasset	2024-08-02T07:20:27.331Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0007.uexp	2024-08-02T07:20:27.333Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0008.uasset	2024-08-02T07:20:27.957Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0008.uexp	2024-08-02T07:20:27.960Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0009.uasset	2024-08-02T07:20:29.093Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0009.uexp	2024-08-02T07:20:29.095Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0010.uasset	2024-08-02T07:20:28.666Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0010.uexp	2024-08-02T07:20:28.667Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0011.uasset	2024-08-02T07:20:27.143Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0011.uexp	2024-08-02T07:20:27.145Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0012.uasset	2024-08-02T07:20:27.239Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0012.uexp	2024-08-02T07:20:27.241Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0013.uasset	2024-08-02T07:20:27.342Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0013.uexp	2024-08-02T07:20:27.343Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0014.uasset	2024-08-02T07:20:29.092Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0014.uexp	2024-08-02T07:20:29.094Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0015.uasset	2024-08-02T07:20:29.996Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0002_0015.uexp	2024-08-02T07:20:29.997Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0000.uasset	2024-08-02T07:20:27.478Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0000.uexp	2024-08-02T07:20:27.480Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0001.uasset	2024-08-02T07:20:28.332Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0001.uexp	2024-08-02T07:20:28.334Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0002.uasset	2024-08-02T07:20:28.869Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0002.uexp	2024-08-02T07:20:28.871Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0003.uasset	2024-08-02T07:20:28.248Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0003.uexp	2024-08-02T07:20:28.250Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0004.uasset	2024-08-02T07:20:29.211Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0004.uexp	2024-08-02T07:20:29.213Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0005.uasset	2024-08-02T07:20:28.448Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0005.uexp	2024-08-02T07:20:28.449Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0006.uasset	2024-08-02T07:20:29.443Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0006.uexp	2024-08-02T07:20:29.445Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0007.uasset	2024-08-02T07:20:27.575Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0007.uexp	2024-08-02T07:20:27.576Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0008.uasset	2024-08-02T07:20:27.546Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0008.uexp	2024-08-02T07:20:27.548Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0009.uasset	2024-08-02T07:20:27.255Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0009.uexp	2024-08-02T07:20:27.257Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0010.uasset	2024-08-02T07:20:28.330Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0010.uexp	2024-08-02T07:20:28.332Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0011.uasset	2024-08-02T07:20:28.444Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0011.uexp	2024-08-02T07:20:28.446Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0012.uasset	2024-08-02T07:20:29.010Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0012.uexp	2024-08-02T07:20:29.012Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0013.uasset	2024-08-02T07:20:27.920Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0013.uexp	2024-08-02T07:20:27.922Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0014.uasset	2024-08-02T07:20:29.762Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0014.uexp	2024-08-02T07:20:29.765Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0015.uasset	2024-08-02T07:20:30.213Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0003_0015.uexp	2024-08-02T07:20:30.214Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0000.uasset	2024-08-02T07:20:28.129Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0000.uexp	2024-08-02T07:20:28.130Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0001.uasset	2024-08-02T07:20:28.242Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0001.uexp	2024-08-02T07:20:28.243Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0002.uasset	2024-08-02T07:20:27.780Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0002.uexp	2024-08-02T07:20:27.782Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0003.uasset	2024-08-02T07:20:28.791Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0003.uexp	2024-08-02T07:20:28.793Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0004.uasset	2024-08-02T07:20:28.012Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0004.uexp	2024-08-02T07:20:28.015Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0005.uasset	2024-08-02T07:20:29.882Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0005.uexp	2024-08-02T07:20:29.884Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0006.uasset	2024-08-02T07:20:29.336Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0006.uexp	2024-08-02T07:20:29.337Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0007.uasset	2024-08-02T07:20:27.149Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0007.uexp	2024-08-02T07:20:27.151Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0008.uasset	2024-08-02T07:20:29.651Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0008.uexp	2024-08-02T07:20:29.652Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0009.uasset	2024-08-02T07:20:29.419Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0009.uexp	2024-08-02T07:20:29.421Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0010.uasset	2024-08-02T07:20:28.876Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0010.uexp	2024-08-02T07:20:28.878Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0011.uasset	2024-08-02T07:20:29.657Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0011.uexp	2024-08-02T07:20:29.658Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0012.uasset	2024-08-02T07:20:27.344Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0012.uexp	2024-08-02T07:20:27.346Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0013.uasset	2024-08-02T07:20:27.455Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0013.uexp	2024-08-02T07:20:27.458Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0014.uasset	2024-08-02T07:20:29.883Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0014.uexp	2024-08-02T07:20:29.885Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0015.uasset	2024-08-02T07:20:28.870Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0004_0015.uexp	2024-08-02T07:20:28.872Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0000.uasset	2024-08-02T07:20:28.237Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0000.uexp	2024-08-02T07:20:28.238Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0001.uasset	2024-08-02T07:20:30.432Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0001.uexp	2024-08-02T07:20:30.433Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0002.uasset	2024-08-02T07:20:27.679Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0002.uexp	2024-08-02T07:20:27.681Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0003.uasset	2024-08-02T07:20:29.786Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0003.uexp	2024-08-02T07:20:29.787Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0004.uasset	2024-08-02T07:20:27.695Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0004.uexp	2024-08-02T07:20:27.697Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0005.uasset	2024-08-02T07:20:27.341Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0005.uexp	2024-08-02T07:20:27.342Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0006.uasset	2024-08-02T07:20:29.792Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0006.uexp	2024-08-02T07:20:29.793Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0007.uasset	2024-08-02T07:20:28.781Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0007.uexp	2024-08-02T07:20:28.783Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0008.uasset	2024-08-02T07:20:28.875Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0008.uexp	2024-08-02T07:20:28.876Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0009.uasset	2024-08-02T07:20:28.146Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0009.uexp	2024-08-02T07:20:28.148Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0010.uasset	2024-08-02T07:20:30.098Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0010.uexp	2024-08-02T07:20:30.099Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0011.uasset	2024-08-02T07:20:29.778Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0011.uexp	2024-08-02T07:20:29.779Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0012.uasset	2024-08-02T07:20:30.120Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0012.uexp	2024-08-02T07:20:30.121Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0013.uasset	2024-08-02T07:20:29.243Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0013.uexp	2024-08-02T07:20:29.244Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0014.uasset	2024-08-02T07:20:29.322Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0014.uexp	2024-08-02T07:20:29.323Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0015.uasset	2024-08-02T07:20:28.550Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0005_0015.uexp	2024-08-02T07:20:28.552Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0000.uasset	2024-08-02T07:20:27.325Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0000.uexp	2024-08-02T07:20:27.326Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0001.uasset	2024-08-02T07:20:27.108Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0001.uexp	2024-08-02T07:20:27.110Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0002.uasset	2024-08-02T07:20:30.429Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0002.uexp	2024-08-02T07:20:30.430Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0003.uasset	2024-08-02T07:20:30.330Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0003.uexp	2024-08-02T07:20:30.332Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0004.uasset	2024-08-02T07:20:29.407Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0004.uexp	2024-08-02T07:20:29.409Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0005.uasset	2024-08-02T07:20:29.665Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0005.uexp	2024-08-02T07:20:29.666Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0006.uasset	2024-08-02T07:20:27.777Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0006.uexp	2024-08-02T07:20:27.779Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0007.uasset	2024-08-02T07:20:29.881Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0007.uexp	2024-08-02T07:20:29.882Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0008.uasset	2024-08-02T07:20:27.425Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0008.uexp	2024-08-02T07:20:27.427Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0009.uasset	2024-08-02T07:20:29.794Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0009.uexp	2024-08-02T07:20:29.795Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0010.uasset	2024-08-02T07:20:29.008Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0010.uexp	2024-08-02T07:20:29.009Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0011.uasset	2024-08-02T07:20:30.093Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0011.uexp	2024-08-02T07:20:30.094Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0012.uasset	2024-08-02T07:20:27.332Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0012.uexp	2024-08-02T07:20:27.334Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0013.uasset	2024-08-02T07:20:27.136Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0013.uexp	2024-08-02T07:20:27.137Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0014.uasset	2024-08-02T07:20:29.745Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0014.uexp	2024-08-02T07:20:29.750Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0015.uasset	2024-08-02T07:20:27.949Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0006_0015.uexp	2024-08-02T07:20:27.950Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0000.uasset	2024-08-02T07:20:29.210Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0000.uexp	2024-08-02T07:20:29.212Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0001.uasset	2024-08-02T07:20:29.324Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0001.uexp	2024-08-02T07:20:29.326Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0002.uasset	2024-08-02T07:20:30.338Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0002.uexp	2024-08-02T07:20:30.339Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0003.uasset	2024-08-02T07:20:27.924Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0003.uexp	2024-08-02T07:20:27.926Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0004.uasset	2024-08-02T07:20:30.335Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0004.uexp	2024-08-02T07:20:30.337Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0005.uasset	2024-08-02T07:20:29.553Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0005.uexp	2024-08-02T07:20:29.554Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0006.uasset	2024-08-02T07:20:30.228Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0006.uexp	2024-08-02T07:20:30.230Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0007.uasset	2024-08-02T07:20:29.743Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0007.uexp	2024-08-02T07:20:29.745Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0008.uasset	2024-08-02T07:20:27.451Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0008.uexp	2024-08-02T07:20:27.453Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0009.uasset	2024-08-02T07:20:29.445Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0009.uexp	2024-08-02T07:20:29.448Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0010.uasset	2024-08-02T07:20:29.004Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0010.uexp	2024-08-02T07:20:29.005Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0011.uasset	2024-08-02T07:20:27.800Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0011.uexp	2024-08-02T07:20:27.801Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0012.uasset	2024-08-02T07:20:30.117Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0012.uexp	2024-08-02T07:20:30.118Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0013.uasset	2024-08-02T07:20:29.986Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0013.uexp	2024-08-02T07:20:29.988Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0014.uasset	2024-08-02T07:20:27.112Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0014.uexp	2024-08-02T07:20:27.113Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0015.uasset	2024-08-02T07:20:27.357Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0007_0015.uexp	2024-08-02T07:20:27.359Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0000.uasset	2024-08-02T07:20:29.238Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0000.uexp	2024-08-02T07:20:29.239Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0001.uasset	2024-08-02T07:20:28.554Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0001.uexp	2024-08-02T07:20:28.555Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0002.uasset	2024-08-02T07:20:29.308Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0002.uexp	2024-08-02T07:20:29.310Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0003.uasset	2024-08-02T07:20:28.693Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0003.uexp	2024-08-02T07:20:28.694Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0004.uasset	2024-08-02T07:20:28.134Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0004.uexp	2024-08-02T07:20:28.136Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0005.uasset	2024-08-02T07:20:29.224Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0005.uexp	2024-08-02T07:20:29.226Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0006.uasset	2024-08-02T07:20:27.223Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0006.uexp	2024-08-02T07:20:27.224Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0007.uasset	2024-08-02T07:20:27.110Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0007.uexp	2024-08-02T07:20:27.112Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0008.uasset	2024-08-02T07:20:29.634Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0008.uexp	2024-08-02T07:20:29.635Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0009.uasset	2024-08-02T07:20:28.665Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0009.uexp	2024-08-02T07:20:28.668Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0010.uasset	2024-08-02T07:20:30.436Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0010.uexp	2024-08-02T07:20:30.437Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0011.uasset	2024-08-02T07:20:27.787Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0011.uexp	2024-08-02T07:20:27.789Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0012.uasset	2024-08-02T07:20:28.351Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0012.uexp	2024-08-02T07:20:28.352Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0013.uasset	2024-08-02T07:20:27.728Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0013.uexp	2024-08-02T07:20:27.730Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0014.uasset	2024-08-02T07:20:27.930Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0014.uexp	2024-08-02T07:20:27.931Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0015.uasset	2024-08-02T07:20:28.257Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0008_0015.uexp	2024-08-02T07:20:28.258Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0000.uasset	2024-08-02T07:20:28.995Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0000.uexp	2024-08-02T07:20:28.997Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0001.uasset	2024-08-02T07:20:29.115Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0001.uexp	2024-08-02T07:20:29.116Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0002.uasset	2024-08-02T07:20:28.891Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0002.uexp	2024-08-02T07:20:28.893Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0003.uasset	2024-08-02T07:20:28.117Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0003.uexp	2024-08-02T07:20:28.118Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0004.uasset	2024-08-02T07:20:27.923Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0004.uexp	2024-08-02T07:20:27.924Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0005.uasset	2024-08-02T07:20:29.772Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0005.uexp	2024-08-02T07:20:29.774Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0006.uasset	2024-08-02T07:20:29.113Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0006.uexp	2024-08-02T07:20:29.114Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0007.uasset	2024-08-02T07:20:27.440Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0007.uexp	2024-08-02T07:20:27.442Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0008.uasset	2024-08-02T07:20:29.228Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0008.uexp	2024-08-02T07:20:29.230Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0009.uasset	2024-08-02T07:20:30.448Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0009.uexp	2024-08-02T07:20:30.449Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0010.uasset	2024-08-02T07:20:28.997Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0010.uexp	2024-08-02T07:20:28.999Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0011.uasset	2024-08-02T07:20:29.112Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0011.uexp	2024-08-02T07:20:29.113Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0012.uasset	2024-08-02T07:20:29.442Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0012.uexp	2024-08-02T07:20:29.444Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0013.uasset	2024-08-02T07:20:29.982Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0013.uexp	2024-08-02T07:20:29.984Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0014.uasset	2024-08-02T07:20:29.880Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0014.uexp	2024-08-02T07:20:29.881Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0015.uasset	2024-08-02T07:20:29.637Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0009_0015.uexp	2024-08-02T07:20:29.639Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0000.uasset	2024-08-02T07:20:27.467Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0000.uexp	2024-08-02T07:20:27.471Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0001.uasset	2024-08-02T07:20:27.687Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0001.uexp	2024-08-02T07:20:27.689Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0002.uasset	2024-08-02T07:20:27.040Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0002.uexp	2024-08-02T07:20:27.042Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0003.uasset	2024-08-02T07:20:28.121Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0003.uexp	2024-08-02T07:20:28.123Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0004.uasset	2024-08-02T07:20:28.142Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0004.uexp	2024-08-02T07:20:28.144Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0005.uasset	2024-08-02T07:20:29.241Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0005.uexp	2024-08-02T07:20:29.243Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0006.uasset	2024-08-02T07:20:28.130Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0006.uexp	2024-08-02T07:20:28.131Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0007.uasset	2024-08-02T07:20:29.117Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0007.uexp	2024-08-02T07:20:29.119Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0008.uasset	2024-08-02T07:20:28.020Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0008.uexp	2024-08-02T07:20:28.022Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0009.uasset	2024-08-02T07:20:29.546Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0009.uexp	2024-08-02T07:20:29.547Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0010.uasset	2024-08-02T07:20:29.771Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0010.uexp	2024-08-02T07:20:29.772Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0011.uasset	2024-08-02T07:20:28.141Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0011.uexp	2024-08-02T07:20:28.142Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0012.uasset	2024-08-02T07:20:29.877Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0012.uexp	2024-08-02T07:20:29.879Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0013.uasset	2024-08-02T07:20:27.355Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0013.uexp	2024-08-02T07:20:27.356Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0014.uasset	2024-08-02T07:20:29.663Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0014.uexp	2024-08-02T07:20:29.664Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0015.uasset	2024-08-02T07:20:28.570Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0010_0015.uexp	2024-08-02T07:20:28.572Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0000.uasset	2024-08-02T07:20:29.422Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0000.uexp	2024-08-02T07:20:29.423Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0001.uasset	2024-08-02T07:20:29.451Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0001.uexp	2024-08-02T07:20:29.453Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0002.uasset	2024-08-02T07:20:28.252Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0002.uexp	2024-08-02T07:20:28.253Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0003.uasset	2024-08-02T07:20:29.222Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0003.uexp	2024-08-02T07:20:29.223Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0004.uasset	2024-08-02T07:20:29.994Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0004.uexp	2024-08-02T07:20:29.997Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0005.uasset	2024-08-02T07:20:29.343Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0005.uexp	2024-08-02T07:20:29.345Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0006.uasset	2024-08-02T07:20:27.938Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0006.uexp	2024-08-02T07:20:27.939Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0007.uasset	2024-08-02T07:20:28.260Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0007.uexp	2024-08-02T07:20:28.261Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0008.uasset	2024-08-02T07:20:30.447Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0008.uexp	2024-08-02T07:20:30.448Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0009.uasset	2024-08-02T07:20:29.103Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0009.uexp	2024-08-02T07:20:29.105Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0010.uasset	2024-08-02T07:20:29.896Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0010.uexp	2024-08-02T07:20:29.897Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0011.uasset	2024-08-02T07:20:29.990Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0011.uexp	2024-08-02T07:20:29.992Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0012.uasset	2024-08-02T07:20:29.976Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0012.uexp	2024-08-02T07:20:29.977Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0013.uasset	2024-08-02T07:20:27.910Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0013.uexp	2024-08-02T07:20:27.912Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0014.uasset	2024-08-02T07:20:28.249Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0014.uexp	2024-08-02T07:20:28.251Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0015.uasset	2024-08-02T07:20:29.215Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0011_0015.uexp	2024-08-02T07:20:29.217Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0000.uasset	2024-08-02T07:20:29.528Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0000.uexp	2024-08-02T07:20:29.531Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0001.uasset	2024-08-02T07:20:27.701Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0001.uexp	2024-08-02T07:20:27.703Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0002.uasset	2024-08-02T07:20:27.700Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0002.uexp	2024-08-02T07:20:27.702Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0003.uasset	2024-08-02T07:20:27.225Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0003.uexp	2024-08-02T07:20:27.226Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0004.uasset	2024-08-02T07:20:28.153Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0004.uexp	2024-08-02T07:20:28.154Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0005.uasset	2024-08-02T07:20:28.255Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0005.uexp	2024-08-02T07:20:28.257Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0006.uasset	2024-08-02T07:20:27.359Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0006.uexp	2024-08-02T07:20:27.360Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0007.uasset	2024-08-02T07:20:28.356Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0007.uexp	2024-08-02T07:20:28.358Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0008.uasset	2024-08-02T07:20:30.128Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0008.uexp	2024-08-02T07:20:30.129Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0009.uasset	2024-08-02T07:20:30.419Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0009.uexp	2024-08-02T07:20:30.421Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0010.uasset	2024-08-02T07:20:29.780Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0010.uexp	2024-08-02T07:20:29.782Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0011.uasset	2024-08-02T07:20:27.681Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0011.uexp	2024-08-02T07:20:27.682Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0012.uasset	2024-08-02T07:20:29.312Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0012.uexp	2024-08-02T07:20:29.315Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0013.uasset	2024-08-02T07:20:29.537Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0013.uexp	2024-08-02T07:20:29.539Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0014.uasset	2024-08-02T07:20:30.312Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0014.uexp	2024-08-02T07:20:30.314Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0015.uasset	2024-08-02T07:20:28.116Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0012_0015.uexp	2024-08-02T07:20:28.118Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0000.uasset	2024-08-02T07:20:28.993Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0000.uexp	2024-08-02T07:20:28.994Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0001.uasset	2024-08-02T07:20:30.001Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0001.uexp	2024-08-02T07:20:30.003Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0002.uasset	2024-08-02T07:20:27.785Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0002.uexp	2024-08-02T07:20:27.787Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0003.uasset	2024-08-02T07:20:28.225Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0003.uexp	2024-08-02T07:20:28.227Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0004.uasset	2024-08-02T07:20:27.786Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0004.uexp	2024-08-02T07:20:27.788Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0005.uasset	2024-08-02T07:20:29.335Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0005.uexp	2024-08-02T07:20:29.336Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0006.uasset	2024-08-02T07:20:29.097Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0006.uexp	2024-08-02T07:20:29.099Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0007.uasset	2024-08-02T07:20:30.204Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0007.uexp	2024-08-02T07:20:30.206Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0008.uasset	2024-08-02T07:20:28.233Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0008.uexp	2024-08-02T07:20:28.234Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0009.uasset	2024-08-02T07:20:30.013Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0009.uexp	2024-08-02T07:20:30.015Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0010.uasset	2024-08-02T07:20:29.208Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0010.uexp	2024-08-02T07:20:29.210Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0011.uasset	2024-08-02T07:20:27.130Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0011.uexp	2024-08-02T07:20:27.132Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0012.uasset	2024-08-02T07:20:28.258Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0012.uexp	2024-08-02T07:20:28.260Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0013.uasset	2024-08-02T07:20:29.992Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0013.uexp	2024-08-02T07:20:29.994Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0014.uasset	2024-08-02T07:20:30.358Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0014.uexp	2024-08-02T07:20:30.359Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0015.uasset	2024-08-02T07:20:30.126Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0013_0015.uexp	2024-08-02T07:20:30.128Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0000.uasset	2024-08-02T07:20:27.939Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0000.uexp	2024-08-02T07:20:27.940Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0001.uasset	2024-08-02T07:20:28.675Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0001.uexp	2024-08-02T07:20:28.677Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0002.uasset	2024-08-02T07:20:28.372Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0002.uexp	2024-08-02T07:20:28.374Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0003.uasset	2024-08-02T07:20:28.991Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0003.uexp	2024-08-02T07:20:28.992Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0004.uasset	2024-08-02T07:20:29.900Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0004.uexp	2024-08-02T07:20:29.901Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0005.uasset	2024-08-02T07:20:27.790Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0005.uexp	2024-08-02T07:20:27.791Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0006.uasset	2024-08-02T07:20:27.931Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0006.uexp	2024-08-02T07:20:27.933Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0007.uasset	2024-08-02T07:20:27.934Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0007.uexp	2024-08-02T07:20:27.935Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0008.uasset	2024-08-02T07:20:27.117Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0008.uexp	2024-08-02T07:20:27.119Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0009.uasset	2024-08-02T07:20:30.110Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0009.uexp	2024-08-02T07:20:30.111Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0010.uasset	2024-08-02T07:20:30.570Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0010.uexp	2024-08-02T07:20:30.572Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0011.uasset	2024-08-02T07:20:28.568Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0011.uexp	2024-08-02T07:20:28.570Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0012.uasset	2024-08-02T07:20:28.232Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0012.uexp	2024-08-02T07:20:28.233Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0013.uasset	2024-08-02T07:20:29.091Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0013.uexp	2024-08-02T07:20:29.093Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0014.uasset	2024-08-02T07:20:27.046Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0014.uexp	2024-08-02T07:20:27.047Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0015.uasset	2024-08-02T07:20:28.007Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0014_0015.uexp	2024-08-02T07:20:28.010Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0000.uasset	2024-08-02T07:20:28.773Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0000.uexp	2024-08-02T07:20:28.775Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0001.uasset	2024-08-02T07:20:29.985Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0001.uexp	2024-08-02T07:20:29.987Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0002.uasset	2024-08-02T07:20:27.461Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0002.uexp	2024-08-02T07:20:27.463Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0003.uasset	2024-08-02T07:20:30.121Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0003.uexp	2024-08-02T07:20:30.123Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0004.uasset	2024-08-02T07:20:29.872Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0004.uexp	2024-08-02T07:20:29.873Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0005.uasset	2024-08-02T07:20:29.549Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0005.uexp	2024-08-02T07:20:29.551Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0006.uasset	2024-08-02T07:20:27.554Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0006.uexp	2024-08-02T07:20:27.555Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0007.uasset	2024-08-02T07:20:30.561Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0007.uexp	2024-08-02T07:20:30.563Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0008.uasset	2024-08-02T07:20:30.236Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0008.uexp	2024-08-02T07:20:30.237Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0009.uasset	2024-08-02T07:20:27.229Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0009.uexp	2024-08-02T07:20:27.231Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0010.uasset	2024-08-02T07:20:29.002Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0010.uexp	2024-08-02T07:20:29.004Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0011.uasset	2024-08-02T07:20:27.576Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0011.uexp	2024-08-02T07:20:27.578Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0012.uasset	2024-08-02T07:20:30.453Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0012.uexp	2024-08-02T07:20:30.455Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0013.uasset	2024-08-02T07:20:30.130Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0013.uexp	2024-08-02T07:20:30.132Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0014.uasset	2024-08-02T07:20:30.125Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0014.uexp	2024-08-02T07:20:30.126Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0015.uasset	2024-08-02T07:20:28.663Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0015_0015.uexp	2024-08-02T07:20:28.664Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0000.uasset	2024-08-02T07:20:28.005Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0000.uexp	2024-08-02T07:20:28.007Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0001.uasset	2024-08-02T07:20:29.016Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0001.uexp	2024-08-02T07:20:29.018Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0002.uasset	2024-08-02T07:20:28.467Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0002.uexp	2024-08-02T07:20:28.468Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0003.uasset	2024-08-02T07:20:28.443Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0003.uexp	2024-08-02T07:20:28.445Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0004.uasset	2024-08-02T07:20:28.006Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0004.uexp	2024-08-02T07:20:28.008Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0005.uasset	2024-08-02T07:20:27.231Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0005.uexp	2024-08-02T07:20:27.233Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0006.uasset	2024-08-02T07:20:27.242Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0006.uexp	2024-08-02T07:20:27.243Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0007.uasset	2024-08-02T07:20:29.894Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0007.uexp	2024-08-02T07:20:29.896Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0008.uasset	2024-08-02T07:20:27.683Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0008.uexp	2024-08-02T07:20:27.685Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0009.uasset	2024-08-02T07:20:27.152Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0009.uexp	2024-08-02T07:20:27.153Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0010.uasset	2024-08-02T07:20:30.234Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0010.uexp	2024-08-02T07:20:30.237Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0011.uasset	2024-08-02T07:20:27.698Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0011.uexp	2024-08-02T07:20:27.699Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0012.uasset	2024-08-02T07:20:27.565Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0012.uexp	2024-08-02T07:20:27.567Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0013.uasset	2024-08-02T07:20:28.889Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0013.uexp	2024-08-02T07:20:28.891Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0014.uasset	2024-08-02T07:20:29.559Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0014.uexp	2024-08-02T07:20:29.561Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0015.uasset	2024-08-02T07:20:27.798Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0016_0015.uexp	2024-08-02T07:20:27.800Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0000.uasset	2024-08-02T07:20:30.445Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0000.uexp	2024-08-02T07:20:30.447Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0001.uasset	2024-08-02T07:20:27.714Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0001.uexp	2024-08-02T07:20:27.716Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0002.uasset	2024-08-02T07:20:27.247Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0002.uexp	2024-08-02T07:20:27.248Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0003.uasset	2024-08-02T07:20:28.698Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0003.uexp	2024-08-02T07:20:28.700Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0004.uasset	2024-08-02T07:20:30.315Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0004.uexp	2024-08-02T07:20:30.317Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0005.uasset	2024-08-02T07:20:30.011Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0005.uexp	2024-08-02T07:20:30.013Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0006.uasset	2024-08-02T07:20:27.047Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0006.uexp	2024-08-02T07:20:27.048Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0007.uasset	2024-08-02T07:20:28.340Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0007.uexp	2024-08-02T07:20:28.342Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0008.uasset	2024-08-02T07:20:29.969Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0008.uexp	2024-08-02T07:20:29.971Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0009.uasset	2024-08-02T07:20:27.552Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0009.uexp	2024-08-02T07:20:27.554Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0010.uasset	2024-08-02T07:20:29.649Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0010.uexp	2024-08-02T07:20:29.651Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0011.uasset	2024-08-02T07:20:28.441Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0011.uexp	2024-08-02T07:20:28.443Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0012.uasset	2024-08-02T07:20:28.456Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0012.uexp	2024-08-02T07:20:28.458Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0013.uasset	2024-08-02T07:20:29.430Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0013.uexp	2024-08-02T07:20:29.432Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0014.uasset	2024-08-02T07:20:29.455Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0014.uexp	2024-08-02T07:20:29.457Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0015.uasset	2024-08-02T07:20:30.428Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0017_0015.uexp	2024-08-02T07:20:30.429Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0000.uasset	2024-08-02T07:20:30.434Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0000.uexp	2024-08-02T07:20:30.436Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0001.uasset	2024-08-02T07:20:28.235Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0001.uexp	2024-08-02T07:20:28.236Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0002.uasset	2024-08-02T07:20:29.306Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0002.uexp	2024-08-02T07:20:29.308Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0003.uasset	2024-08-02T07:20:27.354Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0003.uexp	2024-08-02T07:20:27.356Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0004.uasset	2024-08-02T07:20:30.316Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0004.uexp	2024-08-02T07:20:30.318Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0005.uasset	2024-08-02T07:20:29.098Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0005.uexp	2024-08-02T07:20:29.100Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0006.uasset	2024-08-02T07:20:30.332Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0006.uexp	2024-08-02T07:20:30.335Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0007.uasset	2024-08-02T07:20:28.585Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0007.uexp	2024-08-02T07:20:28.587Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0008.uasset	2024-08-02T07:20:30.566Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0008.uexp	2024-08-02T07:20:30.567Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0009.uasset	2024-08-02T07:20:28.690Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0009.uexp	2024-08-02T07:20:28.692Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0010.uasset	2024-08-02T07:20:28.221Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0010.uexp	2024-08-02T07:20:28.223Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0011.uasset	2024-08-02T07:20:29.330Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0011.uexp	2024-08-02T07:20:29.332Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0012.uasset	2024-08-02T07:20:27.463Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0012.uexp	2024-08-02T07:20:27.465Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0013.uasset	2024-08-02T07:20:28.906Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0013.uexp	2024-08-02T07:20:28.908Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0014.uasset	2024-08-02T07:20:27.352Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0014.uexp	2024-08-02T07:20:27.354Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0015.uasset	2024-08-02T07:20:28.460Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0018_0015.uexp	2024-08-02T07:20:28.462Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0000.uasset	2024-08-02T07:20:30.442Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0000.uexp	2024-08-02T07:20:30.444Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0001.uasset	2024-08-02T07:20:28.472Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0001.uexp	2024-08-02T07:20:28.474Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0002.uasset	2024-08-02T07:20:29.776Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0002.uexp	2024-08-02T07:20:29.777Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0003.uasset	2024-08-02T07:20:28.781Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0003.uexp	2024-08-02T07:20:28.782Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0004.uasset	2024-08-02T07:20:29.570Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0004.uexp	2024-08-02T07:20:29.571Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0005.uasset	2024-08-02T07:20:27.340Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0005.uexp	2024-08-02T07:20:27.341Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0006.uasset	2024-08-02T07:20:29.128Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0006.uexp	2024-08-02T07:20:29.129Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0007.uasset	2024-08-02T07:20:28.132Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0007.uexp	2024-08-02T07:20:28.134Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0008.uasset	2024-08-02T07:20:30.449Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0008.uexp	2024-08-02T07:20:30.450Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0009.uasset	2024-08-02T07:20:29.237Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0009.uexp	2024-08-02T07:20:29.239Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0010.uasset	2024-08-02T07:20:28.873Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0010.uexp	2024-08-02T07:20:28.875Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0011.uasset	2024-08-02T07:20:28.452Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0011.uexp	2024-08-02T07:20:28.454Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0012.uasset	2024-08-02T07:20:29.538Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0012.uexp	2024-08-02T07:20:29.540Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0013.uasset	2024-08-02T07:20:27.904Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0013.uexp	2024-08-02T07:20:27.906Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0014.uasset	2024-08-02T07:20:30.209Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0014.uexp	2024-08-02T07:20:30.211Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0015.uasset	2024-08-02T07:20:30.221Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0019_0015.uexp	2024-08-02T07:20:30.223Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0000.uasset	2024-08-02T07:20:29.116Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0000.uexp	2024-08-02T07:20:29.118Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0001.uasset	2024-08-02T07:20:27.909Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0001.uexp	2024-08-02T07:20:27.910Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0002.uasset	2024-08-02T07:20:30.203Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0002.uexp	2024-08-02T07:20:30.204Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0003.uasset	2024-08-02T07:20:28.254Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0003.uexp	2024-08-02T07:20:28.256Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0004.uasset	2024-08-02T07:20:27.433Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0004.uexp	2024-08-02T07:20:27.434Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0005.uasset	2024-08-02T07:20:28.465Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0005.uexp	2024-08-02T07:20:28.467Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0006.uasset	2024-08-02T07:20:28.879Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0006.uexp	2024-08-02T07:20:28.881Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0007.uasset	2024-08-02T07:20:27.475Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0007.uexp	2024-08-02T07:20:27.477Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0008.uasset	2024-08-02T07:20:27.338Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0008.uexp	2024-08-02T07:20:27.339Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0009.uasset	2024-08-02T07:20:28.137Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0009.uexp	2024-08-02T07:20:28.138Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0010.uasset	2024-08-02T07:20:28.247Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0010.uexp	2024-08-02T07:20:28.248Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0011.uasset	2024-08-02T07:20:27.428Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0011.uexp	2024-08-02T07:20:27.429Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0012.uasset	2024-08-02T07:20:30.205Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0012.uexp	2024-08-02T07:20:30.207Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0013.uasset	2024-08-02T07:20:28.235Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0013.uexp	2024-08-02T07:20:28.237Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0014.uasset	2024-08-02T07:20:29.418Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0014.uexp	2024-08-02T07:20:29.419Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0015.uasset	2024-08-02T07:20:27.135Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0020_0015.uexp	2024-08-02T07:20:27.137Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0000.uasset	2024-08-02T07:20:28.457Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0000.uexp	2024-08-02T07:20:28.458Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0001.uasset	2024-08-02T07:20:28.796Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0001.uexp	2024-08-02T07:20:28.798Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0002.uasset	2024-08-02T07:20:29.568Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0002.uexp	2024-08-02T07:20:29.569Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0003.uasset	2024-08-02T07:20:28.357Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0003.uexp	2024-08-02T07:20:28.359Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0004.uasset	2024-08-02T07:20:30.433Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0004.uexp	2024-08-02T07:20:30.435Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0005.uasset	2024-08-02T07:20:29.766Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0005.uexp	2024-08-02T07:20:29.768Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0006.uasset	2024-08-02T07:20:29.878Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0006.uexp	2024-08-02T07:20:29.880Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0007.uasset	2024-08-02T07:20:29.018Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0007.uexp	2024-08-02T07:20:29.019Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0008.uasset	2024-08-02T07:20:28.584Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0008.uexp	2024-08-02T07:20:28.585Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0009.uasset	2024-08-02T07:20:29.006Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0009.uexp	2024-08-02T07:20:29.008Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0010.uasset	2024-08-02T07:20:28.772Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0010.uexp	2024-08-02T07:20:28.773Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0011.uasset	2024-08-02T07:20:30.003Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0011.uexp	2024-08-02T07:20:30.004Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0012.uasset	2024-08-02T07:20:30.426Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0012.uexp	2024-08-02T07:20:30.428Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0013.uasset	2024-08-02T07:20:28.999Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0013.uexp	2024-08-02T07:20:29.000Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0014.uasset	2024-08-02T07:20:29.416Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0014.uexp	2024-08-02T07:20:29.418Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0015.uasset	2024-08-02T07:20:27.582Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0021_0015.uexp	2024-08-02T07:20:27.583Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0000.uasset	2024-08-02T07:20:27.555Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0000.uexp	2024-08-02T07:20:27.557Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0001.uasset	2024-08-02T07:20:28.695Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0001.uexp	2024-08-02T07:20:28.696Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0002.uasset	2024-08-02T07:20:27.713Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0002.uexp	2024-08-02T07:20:27.715Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0003.uasset	2024-08-02T07:20:29.430Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0003.uexp	2024-08-02T07:20:29.432Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0004.uasset	2024-08-02T07:20:28.119Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0004.uexp	2024-08-02T07:20:28.120Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0005.uasset	2024-08-02T07:20:27.432Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0005.uexp	2024-08-02T07:20:27.434Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0006.uasset	2024-08-02T07:20:30.103Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0006.uexp	2024-08-02T07:20:30.105Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0007.uasset	2024-08-02T07:20:28.564Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0007.uexp	2024-08-02T07:20:28.566Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0008.uasset	2024-08-02T07:20:28.790Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0008.uexp	2024-08-02T07:20:28.792Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0009.uasset	2024-08-02T07:20:27.675Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0009.uexp	2024-08-02T07:20:27.677Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0010.uasset	2024-08-02T07:20:27.936Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0010.uexp	2024-08-02T07:20:27.938Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0011.uasset	2024-08-02T07:20:27.037Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0011.uexp	2024-08-02T07:20:27.038Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0012.uasset	2024-08-02T07:20:28.802Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0012.uexp	2024-08-02T07:20:28.803Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0013.uasset	2024-08-02T07:20:28.681Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0013.uexp	2024-08-02T07:20:28.682Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0014.uasset	2024-08-02T07:20:29.750Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0014.uexp	2024-08-02T07:20:29.754Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0015.uasset	2024-08-02T07:20:29.126Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0022_0015.uexp	2024-08-02T07:20:29.127Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0000.uasset	2024-08-02T07:20:30.352Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0000.uexp	2024-08-02T07:20:30.353Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0001.uasset	2024-08-02T07:20:30.008Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0001.uexp	2024-08-02T07:20:30.009Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0002.uasset	2024-08-02T07:20:28.152Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0002.uexp	2024-08-02T07:20:28.153Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0003.uasset	2024-08-02T07:20:28.547Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0003.uexp	2024-08-02T07:20:28.549Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0004.uasset	2024-08-02T07:20:30.458Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0004.uexp	2024-08-02T07:20:30.460Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0005.uasset	2024-08-02T07:20:28.664Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0005.uexp	2024-08-02T07:20:28.665Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0006.uasset	2024-08-02T07:20:30.430Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0006.uexp	2024-08-02T07:20:30.432Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0007.uasset	2024-08-02T07:20:30.438Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0007.uexp	2024-08-02T07:20:30.441Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0008.uasset	2024-08-02T07:20:27.921Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0008.uexp	2024-08-02T07:20:27.923Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0009.uasset	2024-08-02T07:20:27.032Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0009.uexp	2024-08-02T07:20:27.034Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0010.uasset	2024-08-02T07:20:27.703Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0010.uexp	2024-08-02T07:20:27.705Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0011.uasset	2024-08-02T07:20:29.415Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0011.uexp	2024-08-02T07:20:29.416Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0012.uasset	2024-08-02T07:20:28.779Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0012.uexp	2024-08-02T07:20:28.780Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0013.uasset	2024-08-02T07:20:27.119Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0013.uexp	2024-08-02T07:20:27.120Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0014.uasset	2024-08-02T07:20:27.564Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0014.uexp	2024-08-02T07:20:27.565Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0015.uasset	2024-08-02T07:20:29.449Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0023_0015.uexp	2024-08-02T07:20:29.450Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0000.uasset	2024-08-02T07:20:27.248Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0000.uexp	2024-08-02T07:20:27.249Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0001.uasset	2024-08-02T07:20:28.581Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0001.uexp	2024-08-02T07:20:28.583Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0002.uasset	2024-08-02T07:20:28.219Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0002.uexp	2024-08-02T07:20:28.221Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0003.uasset	2024-08-02T07:20:27.449Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0003.uexp	2024-08-02T07:20:27.451Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0004.uasset	2024-08-02T07:20:30.309Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0004.uexp	2024-08-02T07:20:30.311Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0005.uasset	2024-08-02T07:20:29.453Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0005.uexp	2024-08-02T07:20:29.455Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0006.uasset	2024-08-02T07:20:27.256Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0006.uexp	2024-08-02T07:20:27.257Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0007.uasset	2024-08-02T07:20:29.660Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0007.uexp	2024-08-02T07:20:29.662Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0008.uasset	2024-08-02T07:20:30.347Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0008.uexp	2024-08-02T07:20:30.349Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0009.uasset	2024-08-02T07:20:27.477Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0009.uexp	2024-08-02T07:20:27.479Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0010.uasset	2024-08-02T07:20:29.564Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0010.uexp	2024-08-02T07:20:29.565Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0011.uasset	2024-08-02T07:20:27.902Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0011.uexp	2024-08-02T07:20:27.904Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0012.uasset	2024-08-02T07:20:28.342Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0012.uexp	2024-08-02T07:20:28.344Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0013.uasset	2024-08-02T07:20:28.323Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0013.uexp	2024-08-02T07:20:28.327Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0014.uasset	2024-08-02T07:20:27.252Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0014.uexp	2024-08-02T07:20:27.253Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0015.uasset	2024-08-02T07:20:29.527Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0024_0015.uexp	2024-08-02T07:20:29.529Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0000.uasset	2024-08-02T07:20:27.259Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0000.uexp	2024-08-02T07:20:27.260Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0001.uasset	2024-08-02T07:20:28.437Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0001.uexp	2024-08-02T07:20:28.439Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0002.uasset	2024-08-02T07:20:29.979Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0002.uexp	2024-08-02T07:20:29.980Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0003.uasset	2024-08-02T07:20:27.697Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0003.uexp	2024-08-02T07:20:27.698Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0004.uasset	2024-08-02T07:20:30.423Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0004.uexp	2024-08-02T07:20:30.424Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0005.uasset	2024-08-02T07:20:29.441Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0005.uexp	2024-08-02T07:20:29.442Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0006.uasset	2024-08-02T07:20:29.334Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0006.uexp	2024-08-02T07:20:29.335Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0007.uasset	2024-08-02T07:20:27.035Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0007.uexp	2024-08-02T07:20:27.037Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0008.uasset	2024-08-02T07:20:29.558Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0008.uexp	2024-08-02T07:20:29.561Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0009.uasset	2024-08-02T07:20:30.310Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0009.uexp	2024-08-02T07:20:30.312Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0010.uasset	2024-08-02T07:20:27.685Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0010.uexp	2024-08-02T07:20:27.687Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0011.uasset	2024-08-02T07:20:27.254Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0011.uexp	2024-08-02T07:20:27.255Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0012.uasset	2024-08-02T07:20:29.656Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0012.uexp	2024-08-02T07:20:29.657Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0013.uasset	2024-08-02T07:20:27.678Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0013.uexp	2024-08-02T07:20:27.680Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0014.uasset	2024-08-02T07:20:28.115Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0014.uexp	2024-08-02T07:20:28.117Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0015.uasset	2024-08-02T07:20:28.140Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0025_0015.uexp	2024-08-02T07:20:28.142Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0000.uasset	2024-08-02T07:20:29.901Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0000.uexp	2024-08-02T07:20:29.903Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0001.uasset	2024-08-02T07:20:29.015Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0001.uexp	2024-08-02T07:20:29.016Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0002.uasset	2024-08-02T07:20:27.999Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0002.uexp	2024-08-02T07:20:28.000Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0003.uasset	2024-08-02T07:20:27.723Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0003.uexp	2024-08-02T07:20:27.726Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0004.uasset	2024-08-02T07:20:28.559Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0004.uexp	2024-08-02T07:20:28.561Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0005.uasset	2024-08-02T07:20:29.788Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0005.uexp	2024-08-02T07:20:29.790Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0006.uasset	2024-08-02T07:20:28.659Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0006.uexp	2024-08-02T07:20:28.661Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0007.uasset	2024-08-02T07:20:29.563Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0007.uexp	2024-08-02T07:20:29.565Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0008.uasset	2024-08-02T07:20:29.244Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0008.uexp	2024-08-02T07:20:29.246Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0009.uasset	2024-08-02T07:20:30.436Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0009.uexp	2024-08-02T07:20:30.438Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0010.uasset	2024-08-02T07:20:30.231Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0010.uexp	2024-08-02T07:20:30.233Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0011.uasset	2024-08-02T07:20:30.225Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0011.uexp	2024-08-02T07:20:30.226Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0012.uasset	2024-08-02T07:20:27.571Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0012.uexp	2024-08-02T07:20:27.572Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0013.uasset	2024-08-02T07:20:28.440Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0013.uexp	2024-08-02T07:20:28.442Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0014.uasset	2024-08-02T07:20:27.141Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0014.uexp	2024-08-02T07:20:27.144Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0015.uasset	2024-08-02T07:20:28.994Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0026_0015.uexp	2024-08-02T07:20:28.996Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0000.uasset	2024-08-02T07:20:29.773Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0000.uexp	2024-08-02T07:20:29.775Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0001.uasset	2024-08-02T07:20:28.478Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0001.uexp	2024-08-02T07:20:28.479Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0002.uasset	2024-08-02T07:20:29.541Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0002.uexp	2024-08-02T07:20:29.543Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0003.uasset	2024-08-02T07:20:27.115Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0003.uexp	2024-08-02T07:20:27.117Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0004.uasset	2024-08-02T07:20:28.374Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0004.uexp	2024-08-02T07:20:28.375Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0005.uasset	2024-08-02T07:20:30.108Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0005.uexp	2024-08-02T07:20:30.110Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0006.uasset	2024-08-02T07:20:28.672Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0006.uexp	2024-08-02T07:20:28.673Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0007.uasset	2024-08-02T07:20:30.424Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0007.uexp	2024-08-02T07:20:30.426Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0008.uasset	2024-08-02T07:20:28.136Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0008.uexp	2024-08-02T07:20:28.137Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0009.uasset	2024-08-02T07:20:29.101Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0009.uexp	2024-08-02T07:20:29.102Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0010.uasset	2024-08-02T07:20:27.445Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0010.uexp	2024-08-02T07:20:27.448Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0011.uasset	2024-08-02T07:20:27.349Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0011.uexp	2024-08-02T07:20:27.351Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0012.uasset	2024-08-02T07:20:29.023Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0012.uexp	2024-08-02T07:20:29.024Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0013.uasset	2024-08-02T07:20:29.236Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0013.uexp	2024-08-02T07:20:29.237Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0014.uasset	2024-08-02T07:20:29.413Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0014.uexp	2024-08-02T07:20:29.415Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0015.uasset	2024-08-02T07:20:27.346Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0027_0015.uexp	2024-08-02T07:20:27.348Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0000.uasset	2024-08-02T07:20:28.003Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0000.uexp	2024-08-02T07:20:28.005Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0001.uasset	2024-08-02T07:20:28.016Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0001.uexp	2024-08-02T07:20:28.018Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0002.uasset	2024-08-02T07:20:28.461Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0002.uexp	2024-08-02T07:20:28.463Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0003.uasset	2024-08-02T07:20:30.565Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0003.uexp	2024-08-02T07:20:30.566Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0004.uasset	2024-08-02T07:20:29.110Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0004.uexp	2024-08-02T07:20:29.112Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0005.uasset	2024-08-02T07:20:28.253Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0005.uexp	2024-08-02T07:20:28.255Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0006.uasset	2024-08-02T07:20:28.672Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0006.uexp	2024-08-02T07:20:28.674Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0007.uasset	2024-08-02T07:20:28.543Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0007.uexp	2024-08-02T07:20:28.545Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0008.uasset	2024-08-02T07:20:27.033Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0008.uexp	2024-08-02T07:20:27.034Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0009.uasset	2024-08-02T07:20:28.769Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0009.uexp	2024-08-02T07:20:28.771Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0010.uasset	2024-08-02T07:20:27.918Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0010.uexp	2024-08-02T07:20:27.919Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0011.uasset	2024-08-02T07:20:28.563Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0011.uexp	2024-08-02T07:20:28.565Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0012.uasset	2024-08-02T07:20:30.342Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0012.uexp	2024-08-02T07:20:30.345Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0013.uasset	2024-08-02T07:20:29.411Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0013.uexp	2024-08-02T07:20:29.413Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0014.uasset	2024-08-02T07:20:28.230Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0014.uexp	2024-08-02T07:20:28.232Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0015.uasset	2024-08-02T07:20:29.991Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0028_0015.uexp	2024-08-02T07:20:29.993Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0000.uasset	2024-08-02T07:20:28.352Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0000.uexp	2024-08-02T07:20:28.354Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0001.uasset	2024-08-02T07:20:30.563Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0001.uexp	2024-08-02T07:20:30.565Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0002.uasset	2024-08-02T07:20:29.218Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0002.uexp	2024-08-02T07:20:29.219Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0003.uasset	2024-08-02T07:20:30.131Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0003.uexp	2024-08-02T07:20:30.132Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0004.uasset	2024-08-02T07:20:27.717Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0004.uexp	2024-08-02T07:20:27.719Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0005.uasset	2024-08-02T07:20:28.575Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0005.uexp	2024-08-02T07:20:28.577Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0006.uasset	2024-08-02T07:20:27.906Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0006.uexp	2024-08-02T07:20:27.907Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0007.uasset	2024-08-02T07:20:27.789Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0007.uexp	2024-08-02T07:20:27.790Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0008.uasset	2024-08-02T07:20:27.331Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0008.uexp	2024-08-02T07:20:27.332Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0009.uasset	2024-08-02T07:20:29.866Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0009.uexp	2024-08-02T07:20:29.867Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0010.uasset	2024-08-02T07:20:30.123Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0010.uexp	2024-08-02T07:20:30.126Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0011.uasset	2024-08-02T07:20:28.348Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0011.uexp	2024-08-02T07:20:28.351Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0012.uasset	2024-08-02T07:20:29.309Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0012.uexp	2024-08-02T07:20:29.311Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0013.uasset	2024-08-02T07:20:29.557Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0013.uexp	2024-08-02T07:20:29.558Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0014.uasset	2024-08-02T07:20:27.545Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0014.uexp	2024-08-02T07:20:27.547Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0015.uasset	2024-08-02T07:20:29.127Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0029_0015.uexp	2024-08-02T07:20:29.129Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0000.uasset	2024-08-02T07:20:28.229Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0000.uexp	2024-08-02T07:20:28.230Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0001.uasset	2024-08-02T07:20:28.540Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0001.uexp	2024-08-02T07:20:28.542Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0002.uasset	2024-08-02T07:20:28.920Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0002.uexp	2024-08-02T07:20:28.922Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0003.uasset	2024-08-02T07:20:28.250Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0003.uexp	2024-08-02T07:20:28.252Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0004.uasset	2024-08-02T07:20:28.894Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0004.uexp	2024-08-02T07:20:28.897Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0005.uasset	2024-08-02T07:20:29.968Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0005.uexp	2024-08-02T07:20:29.970Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0006.uasset	2024-08-02T07:20:30.322Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0006.uexp	2024-08-02T07:20:30.324Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0007.uasset	2024-08-02T07:20:28.574Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0007.uexp	2024-08-02T07:20:28.576Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0008.uasset	2024-08-02T07:20:28.359Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0008.uexp	2024-08-02T07:20:28.360Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0009.uasset	2024-08-02T07:20:30.567Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0009.uexp	2024-08-02T07:20:30.570Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0010.uasset	2024-08-02T07:20:29.893Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0010.uexp	2024-08-02T07:20:29.894Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0011.uasset	2024-08-02T07:20:29.328Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0011.uexp	2024-08-02T07:20:29.330Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0012.uasset	2024-08-02T07:20:28.886Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0012.uexp	2024-08-02T07:20:28.889Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0013.uasset	2024-08-02T07:20:27.227Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0013.uexp	2024-08-02T07:20:27.229Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0014.uasset	2024-08-02T07:20:29.782Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0014.uexp	2024-08-02T07:20:29.783Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0015.uasset	2024-08-02T07:20:27.257Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0030_0015.uexp	2024-08-02T07:20:27.259Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0000.uasset	2024-08-02T07:20:29.654Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0000.uexp	2024-08-02T07:20:29.656Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0001.uasset	2024-08-02T07:20:28.784Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0001.uexp	2024-08-02T07:20:28.786Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0002.uasset	2024-08-02T07:20:28.542Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0002.uexp	2024-08-02T07:20:28.544Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0003.uasset	2024-08-02T07:20:30.112Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0003.uexp	2024-08-02T07:20:30.114Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0004.uasset	2024-08-02T07:20:27.719Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0004.uexp	2024-08-02T07:20:27.721Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0005.uasset	2024-08-02T07:20:29.547Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0005.uexp	2024-08-02T07:20:29.549Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0006.uasset	2024-08-02T07:20:27.674Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0006.uexp	2024-08-02T07:20:27.675Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0007.uasset	2024-08-02T07:20:28.985Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0007.uexp	2024-08-02T07:20:28.987Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0008.uasset	2024-08-02T07:20:29.556Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0008.uexp	2024-08-02T07:20:29.557Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0009.uasset	2024-08-02T07:20:29.429Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0009.uexp	2024-08-02T07:20:29.431Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0010.uasset	2024-08-02T07:20:28.000Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0010.uexp	2024-08-02T07:20:28.002Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0011.uasset	2024-08-02T07:20:27.927Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0011.uexp	2024-08-02T07:20:27.929Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0012.uasset	2024-08-02T07:20:29.024Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0012.uexp	2024-08-02T07:20:29.025Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0013.uasset	2024-08-02T07:20:30.443Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0013.uexp	2024-08-02T07:20:30.445Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0014.uasset	2024-08-02T07:20:29.791Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0014.uexp	2024-08-02T07:20:29.792Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0015.uasset	2024-08-02T07:20:27.734Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0031_0015.uexp	2024-08-02T07:20:27.736Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0000.uasset	2024-08-02T07:20:28.884Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0000.uexp	2024-08-02T07:20:28.886Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0001.uasset	2024-08-02T07:20:27.779Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0001.uexp	2024-08-02T07:20:27.781Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0002.uasset	2024-08-02T07:20:28.226Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0002.uexp	2024-08-02T07:20:28.228Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0003.uasset	2024-08-02T07:20:29.231Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0003.uexp	2024-08-02T07:20:29.233Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0004.uasset	2024-08-02T07:20:29.329Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0004.uexp	2024-08-02T07:20:29.331Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0005.uasset	2024-08-02T07:20:30.327Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0005.uexp	2024-08-02T07:20:30.329Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0006.uasset	2024-08-02T07:20:30.455Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0006.uexp	2024-08-02T07:20:30.456Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0007.uasset	2024-08-02T07:20:28.572Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0007.uexp	2024-08-02T07:20:28.574Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0008.uasset	2024-08-02T07:20:29.001Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0008.uexp	2024-08-02T07:20:29.003Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0009.uasset	2024-08-02T07:20:28.783Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0009.uexp	2024-08-02T07:20:28.784Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0010.uasset	2024-08-02T07:20:27.123Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0010.uexp	2024-08-02T07:20:27.124Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0011.uasset	2024-08-02T07:20:29.741Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0011.uexp	2024-08-02T07:20:29.743Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0012.uasset	2024-08-02T07:20:27.453Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0012.uexp	2024-08-02T07:20:27.455Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0013.uasset	2024-08-02T07:20:27.337Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0013.uexp	2024-08-02T07:20:27.338Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0014.uasset	2024-08-02T07:20:28.228Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0014.uexp	2024-08-02T07:20:28.229Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0015.uasset	2024-08-02T07:20:28.439Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0032_0015.uexp	2024-08-02T07:20:28.441Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0000.uasset	2024-08-02T07:20:29.653Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0000.uexp	2024-08-02T07:20:29.655Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0001.uasset	2024-08-02T07:20:29.409Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0001.uexp	2024-08-02T07:20:29.411Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0002.uasset	2024-08-02T07:20:29.122Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0002.uexp	2024-08-02T07:20:29.124Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0003.uasset	2024-08-02T07:20:28.145Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0003.uexp	2024-08-02T07:20:28.147Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0004.uasset	2024-08-02T07:20:29.216Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0004.uexp	2024-08-02T07:20:29.218Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0005.uasset	2024-08-02T07:20:28.125Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0005.uexp	2024-08-02T07:20:28.127Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0006.uasset	2024-08-02T07:20:27.570Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0006.uexp	2024-08-02T07:20:27.572Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0007.uasset	2024-08-02T07:20:29.531Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0007.uexp	2024-08-02T07:20:29.533Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0008.uasset	2024-08-02T07:20:27.707Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0008.uexp	2024-08-02T07:20:27.708Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0009.uasset	2024-08-02T07:20:28.144Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0009.uexp	2024-08-02T07:20:28.145Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0010.uasset	2024-08-02T07:20:28.911Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0010.uexp	2024-08-02T07:20:28.913Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0011.uasset	2024-08-02T07:20:30.308Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0011.uexp	2024-08-02T07:20:30.309Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0012.uasset	2024-08-02T07:20:28.558Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0012.uexp	2024-08-02T07:20:28.560Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0013.uasset	2024-08-02T07:20:27.915Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0013.uexp	2024-08-02T07:20:27.916Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0014.uasset	2024-08-02T07:20:30.214Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0014.uexp	2024-08-02T07:20:30.215Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0015.uasset	2024-08-02T07:20:27.134Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0033_0015.uexp	2024-08-02T07:20:27.135Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0000.uasset	2024-08-02T07:20:27.148Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0000.uexp	2024-08-02T07:20:27.150Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0001.uasset	2024-08-02T07:20:27.958Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0001.uexp	2024-08-02T07:20:27.960Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0002.uasset	2024-08-02T07:20:27.684Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0002.uexp	2024-08-02T07:20:27.685Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0003.uasset	2024-08-02T07:20:27.914Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0003.uexp	2024-08-02T07:20:27.915Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0004.uasset	2024-08-02T07:20:28.682Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0004.uexp	2024-08-02T07:20:28.684Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0005.uasset	2024-08-02T07:20:29.760Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0005.uexp	2024-08-02T07:20:29.764Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0006.uasset	2024-08-02T07:20:29.859Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0006.uexp	2024-08-02T07:20:29.861Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0007.uasset	2024-08-02T07:20:27.783Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0007.uexp	2024-08-02T07:20:27.785Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0008.uasset	2024-08-02T07:20:28.697Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0008.uexp	2024-08-02T07:20:28.698Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0009.uasset	2024-08-02T07:20:27.705Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0009.uexp	2024-08-02T07:20:27.707Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0010.uasset	2024-08-02T07:20:28.238Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0010.uexp	2024-08-02T07:20:28.240Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0011.uasset	2024-08-02T07:20:30.096Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0011.uexp	2024-08-02T07:20:30.097Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0012.uasset	2024-08-02T07:20:29.240Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0012.uexp	2024-08-02T07:20:29.241Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0013.uasset	2024-08-02T07:20:29.009Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0013.uexp	2024-08-02T07:20:29.010Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0014.uasset	2024-08-02T07:20:30.307Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0014.uexp	2024-08-02T07:20:30.308Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0015.uasset	2024-08-02T07:20:30.346Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0034_0015.uexp	2024-08-02T07:20:30.347Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0000.uasset	2024-08-02T07:20:27.226Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0000.uexp	2024-08-02T07:20:27.227Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0001.uasset	2024-08-02T07:20:27.474Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0001.uexp	2024-08-02T07:20:27.475Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0002.uasset	2024-08-02T07:20:28.692Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0002.uexp	2024-08-02T07:20:28.693Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0003.uasset	2024-08-02T07:20:29.544Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0003.uexp	2024-08-02T07:20:29.545Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0004.uasset	2024-08-02T07:20:27.429Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0004.uexp	2024-08-02T07:20:27.431Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0005.uasset	2024-08-02T07:20:27.903Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0005.uexp	2024-08-02T07:20:27.905Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0006.uasset	2024-08-02T07:20:28.447Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0006.uexp	2024-08-02T07:20:28.448Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0007.uasset	2024-08-02T07:20:29.106Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0007.uexp	2024-08-02T07:20:29.108Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0008.uasset	2024-08-02T07:20:27.435Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0008.uexp	2024-08-02T07:20:27.436Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0009.uasset	2024-08-02T07:20:27.244Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0009.uexp	2024-08-02T07:20:27.245Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0010.uasset	2024-08-02T07:20:30.004Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0010.uexp	2024-08-02T07:20:30.006Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0011.uasset	2024-08-02T07:20:28.990Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0011.uexp	2024-08-02T07:20:28.992Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0012.uasset	2024-08-02T07:20:29.427Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0012.uexp	2024-08-02T07:20:29.429Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0013.uasset	2024-08-02T07:20:27.356Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0013.uexp	2024-08-02T07:20:27.358Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0014.uasset	2024-08-02T07:20:27.782Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0014.uexp	2024-08-02T07:20:27.784Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0015.uasset	2024-08-02T07:20:28.017Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0035_0015.uexp	2024-08-02T07:20:28.019Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0000.uasset	2024-08-02T07:20:27.233Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0000.uexp	2024-08-02T07:20:27.234Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0001.uasset	2024-08-02T07:20:29.749Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0001.uexp	2024-08-02T07:20:29.752Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0002.uasset	2024-08-02T07:20:27.249Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0002.uexp	2024-08-02T07:20:27.250Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0003.uasset	2024-08-02T07:20:29.652Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0003.uexp	2024-08-02T07:20:29.654Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0004.uasset	2024-08-02T07:20:27.543Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0004.uexp	2024-08-02T07:20:27.544Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0005.uasset	2024-08-02T07:20:28.687Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0005.uexp	2024-08-02T07:20:28.688Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0006.uasset	2024-08-02T07:20:29.999Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0006.uexp	2024-08-02T07:20:30.001Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0007.uasset	2024-08-02T07:20:29.342Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0007.uexp	2024-08-02T07:20:29.344Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0008.uasset	2024-08-02T07:20:27.437Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0008.uexp	2024-08-02T07:20:27.439Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0009.uasset	2024-08-02T07:20:29.013Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0009.uexp	2024-08-02T07:20:29.015Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0010.uasset	2024-08-02T07:20:30.129Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0010.uexp	2024-08-02T07:20:30.130Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0011.uasset	2024-08-02T07:20:28.451Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0011.uexp	2024-08-02T07:20:28.452Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0012.uasset	2024-08-02T07:20:27.932Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0012.uexp	2024-08-02T07:20:27.934Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0013.uasset	2024-08-02T07:20:29.530Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0013.uexp	2024-08-02T07:20:29.531Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0014.uasset	2024-08-02T07:20:29.121Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0014.uexp	2024-08-02T07:20:29.123Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0015.uasset	2024-08-02T07:20:29.667Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0036_0015.uexp	2024-08-02T07:20:29.668Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0000.uasset	2024-08-02T07:20:29.536Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0000.uexp	2024-08-02T07:20:29.537Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0001.uasset	2024-08-02T07:20:28.789Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0001.uexp	2024-08-02T07:20:28.790Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0002.uasset	2024-08-02T07:20:27.951Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0002.uexp	2024-08-02T07:20:27.953Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0003.uasset	2024-08-02T07:20:28.376Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0003.uexp	2024-08-02T07:20:28.377Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0004.uasset	2024-08-02T07:20:29.124Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0004.uexp	2024-08-02T07:20:29.125Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0005.uasset	2024-08-02T07:20:30.350Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0005.uexp	2024-08-02T07:20:30.352Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0006.uasset	2024-08-02T07:20:29.230Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0006.uexp	2024-08-02T07:20:29.232Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0007.uasset	2024-08-02T07:20:28.689Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0007.uexp	2024-08-02T07:20:28.690Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0008.uasset	2024-08-02T07:20:28.983Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0008.uexp	2024-08-02T07:20:28.985Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0009.uasset	2024-08-02T07:20:29.220Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0009.uexp	2024-08-02T07:20:29.222Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0010.uasset	2024-08-02T07:20:28.450Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0010.uexp	2024-08-02T07:20:28.451Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0011.uasset	2024-08-02T07:20:29.235Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0011.uexp	2024-08-02T07:20:29.236Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0012.uasset	2024-08-02T07:20:29.316Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0012.uexp	2024-08-02T07:20:29.317Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0013.uasset	2024-08-02T07:20:28.363Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0013.uexp	2024-08-02T07:20:28.364Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0014.uasset	2024-08-02T07:20:28.868Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0014.uexp	2024-08-02T07:20:28.869Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0015.uasset	2024-08-02T07:20:30.104Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0037_0015.uexp	2024-08-02T07:20:30.106Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0000.uasset	2024-08-02T07:20:28.368Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0000.uexp	2024-08-02T07:20:28.369Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0001.uasset	2024-08-02T07:20:28.476Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0001.uexp	2024-08-02T07:20:28.478Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0002.uasset	2024-08-02T07:20:29.873Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0002.uexp	2024-08-02T07:20:29.874Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0003.uasset	2024-08-02T07:20:28.989Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0003.uexp	2024-08-02T07:20:28.990Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0004.uasset	2024-08-02T07:20:27.912Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0004.uexp	2024-08-02T07:20:27.914Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0005.uasset	2024-08-02T07:20:29.446Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0005.uexp	2024-08-02T07:20:29.449Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0006.uasset	2024-08-02T07:20:28.347Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0006.uexp	2024-08-02T07:20:28.350Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0007.uasset	2024-08-02T07:20:30.432Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0007.uexp	2024-08-02T07:20:30.432Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0008.uasset	2024-08-02T07:20:27.901Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0008.uexp	2024-08-02T07:20:27.902Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0009.uasset	2024-08-02T07:20:29.864Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0009.uexp	2024-08-02T07:20:29.866Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0010.uasset	2024-08-02T07:20:27.353Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0010.uexp	2024-08-02T07:20:27.354Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0011.uasset	2024-08-02T07:20:29.310Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0011.uexp	2024-08-02T07:20:29.311Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0012.uasset	2024-08-02T07:20:29.203Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0012.uexp	2024-08-02T07:20:29.205Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0013.uasset	2024-08-02T07:20:28.793Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0013.uexp	2024-08-02T07:20:28.795Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0014.uasset	2024-08-02T07:20:27.007Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0014.uexp	2024-08-02T07:20:27.008Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0015.uasset	2024-08-02T07:20:28.240Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0038_0015.uexp	2024-08-02T07:20:28.242Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0000.uasset	2024-08-02T07:20:30.553Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0000.uexp	2024-08-02T07:20:30.555Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0001.uasset	2024-08-02T07:20:29.643Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0001.uexp	2024-08-02T07:20:29.645Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0002.uasset	2024-08-02T07:20:27.262Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0002.uexp	2024-08-02T07:20:27.263Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0003.uasset	2024-08-02T07:20:29.889Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0003.uexp	2024-08-02T07:20:29.891Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0004.uasset	2024-08-02T07:20:28.893Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0004.uexp	2024-08-02T07:20:28.896Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0005.uasset	2024-08-02T07:20:27.260Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0005.uexp	2024-08-02T07:20:27.262Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0006.uasset	2024-08-02T07:20:30.555Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0006.uexp	2024-08-02T07:20:30.557Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0007.uasset	2024-08-02T07:20:27.029Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0007.uexp	2024-08-02T07:20:27.032Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0008.uasset	2024-08-02T07:20:29.769Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0008.uexp	2024-08-02T07:20:29.770Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0009.uasset	2024-08-02T07:20:29.227Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0009.uexp	2024-08-02T07:20:29.229Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0010.uasset	2024-08-02T07:20:30.201Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0010.uexp	2024-08-02T07:20:30.202Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0011.uasset	2024-08-02T07:20:30.118Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0011.uexp	2024-08-02T07:20:30.120Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0012.uasset	2024-08-02T07:20:27.327Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0012.uexp	2024-08-02T07:20:27.329Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0013.uasset	2024-08-02T07:20:27.676Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0013.uexp	2024-08-02T07:20:27.679Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0014.uasset	2024-08-02T07:20:30.569Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0014.uexp	2024-08-02T07:20:30.571Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0015.uasset	2024-08-02T07:20:28.882Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0039_0015.uexp	2024-08-02T07:20:28.883Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0000.uasset	2024-08-02T07:20:28.329Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0000.uexp	2024-08-02T07:20:28.331Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0001.uasset	2024-08-02T07:20:30.230Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0001.uexp	2024-08-02T07:20:30.231Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0002.uasset	2024-08-02T07:20:29.214Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0002.uexp	2024-08-02T07:20:29.215Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0003.uasset	2024-08-02T07:20:27.481Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0003.uexp	2024-08-02T07:20:27.483Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0004.uasset	2024-08-02T07:20:30.454Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0004.uexp	2024-08-02T07:20:30.456Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0005.uasset	2024-08-02T07:20:29.787Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0005.uexp	2024-08-02T07:20:29.789Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0006.uasset	2024-08-02T07:20:27.232Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0006.uexp	2024-08-02T07:20:27.234Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0007.uasset	2024-08-02T07:20:29.870Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0007.uexp	2024-08-02T07:20:29.871Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0008.uasset	2024-08-02T07:20:29.321Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0008.uexp	2024-08-02T07:20:29.322Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0009.uasset	2024-08-02T07:20:27.140Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0009.uexp	2024-08-02T07:20:27.143Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0010.uasset	2024-08-02T07:20:29.099Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0010.uexp	2024-08-02T07:20:29.101Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0011.uasset	2024-08-02T07:20:28.777Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0011.uexp	2024-08-02T07:20:28.779Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0012.uasset	2024-08-02T07:20:27.557Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0012.uexp	2024-08-02T07:20:27.559Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0013.uasset	2024-08-02T07:20:29.534Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0013.uexp	2024-08-02T07:20:29.536Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0014.uasset	2024-08-02T07:20:29.317Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0014.uexp	2024-08-02T07:20:29.318Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0015.uasset	2024-08-02T07:20:28.908Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0040_0015.uexp	2024-08-02T07:20:28.911Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0000.uasset	2024-08-02T07:20:30.576Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0000.uexp	2024-08-02T07:20:30.578Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0001.uasset	2024-08-02T07:20:28.114Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0001.uexp	2024-08-02T07:20:28.116Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0002.uasset	2024-08-02T07:20:29.341Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0002.uexp	2024-08-02T07:20:29.342Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0003.uasset	2024-08-02T07:20:29.886Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0003.uexp	2024-08-02T07:20:29.887Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0004.uasset	2024-08-02T07:20:29.436Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0004.uexp	2024-08-02T07:20:29.437Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0005.uasset	2024-08-02T07:20:29.338Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0005.uexp	2024-08-02T07:20:29.340Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0006.uasset	2024-08-02T07:20:29.331Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0006.uexp	2024-08-02T07:20:29.333Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0007.uasset	2024-08-02T07:20:27.228Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0007.uexp	2024-08-02T07:20:27.229Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0008.uasset	2024-08-02T07:20:28.768Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0008.uexp	2024-08-02T07:20:28.770Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0009.uasset	2024-08-02T07:20:29.867Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0009.uexp	2024-08-02T07:20:29.868Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0010.uasset	2024-08-02T07:20:30.450Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0010.uexp	2024-08-02T07:20:30.452Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0011.uasset	2024-08-02T07:20:28.883Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0011.uexp	2024-08-02T07:20:28.884Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0012.uasset	2024-08-02T07:20:27.797Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0012.uexp	2024-08-02T07:20:27.798Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0013.uasset	2024-08-02T07:20:27.900Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0013.uexp	2024-08-02T07:20:27.901Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0014.uasset	2024-08-02T07:20:28.787Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0014.uexp	2024-08-02T07:20:28.788Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0015.uasset	2024-08-02T07:20:28.010Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0041_0015.uexp	2024-08-02T07:20:28.012Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0000.uasset	2024-08-02T07:20:27.547Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0000.uexp	2024-08-02T07:20:27.549Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0001.uasset	2024-08-02T07:20:28.455Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0001.uexp	2024-08-02T07:20:28.457Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0002.uasset	2024-08-02T07:20:27.711Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0002.uexp	2024-08-02T07:20:27.713Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0003.uasset	2024-08-02T07:20:30.100Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0003.uexp	2024-08-02T07:20:30.101Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0004.uasset	2024-08-02T07:20:27.954Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0004.uexp	2024-08-02T07:20:27.956Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0005.uasset	2024-08-02T07:20:28.552Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0005.uexp	2024-08-02T07:20:28.554Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0006.uasset	2024-08-02T07:20:27.150Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0006.uexp	2024-08-02T07:20:27.151Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0007.uasset	2024-08-02T07:20:27.362Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0007.uexp	2024-08-02T07:20:27.363Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0008.uasset	2024-08-02T07:20:27.238Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0008.uexp	2024-08-02T07:20:27.239Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0009.uasset	2024-08-02T07:20:29.765Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0009.uexp	2024-08-02T07:20:29.767Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0010.uasset	2024-08-02T07:20:29.022Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0010.uexp	2024-08-02T07:20:29.023Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0011.uasset	2024-08-02T07:20:29.118Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0011.uexp	2024-08-02T07:20:29.119Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0012.uasset	2024-08-02T07:20:28.002Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0012.uexp	2024-08-02T07:20:28.004Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0013.uasset	2024-08-02T07:20:27.139Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0013.uexp	2024-08-02T07:20:27.140Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0014.uasset	2024-08-02T07:20:29.632Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0014.uexp	2024-08-02T07:20:29.634Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0015.uasset	2024-08-02T07:20:29.020Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0042_0015.uexp	2024-08-02T07:20:29.022Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0000.uasset	2024-08-02T07:20:30.122Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0000.uexp	2024-08-02T07:20:30.124Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0001.uasset	2024-08-02T07:20:28.701Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0001.uexp	2024-08-02T07:20:28.702Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0002.uasset	2024-08-02T07:20:27.699Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0002.uexp	2024-08-02T07:20:27.701Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0003.uasset	2024-08-02T07:20:29.435Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0003.uexp	2024-08-02T07:20:29.436Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0004.uasset	2024-08-02T07:20:29.779Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0004.uexp	2024-08-02T07:20:29.781Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0005.uasset	2024-08-02T07:20:28.470Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0005.uexp	2024-08-02T07:20:28.472Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0006.uasset	2024-08-02T07:20:27.705Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0006.uexp	2024-08-02T07:20:27.705Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0007.uasset	2024-08-02T07:20:28.567Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0007.uexp	2024-08-02T07:20:28.568Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0008.uasset	2024-08-02T07:20:27.793Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0008.uexp	2024-08-02T07:20:27.794Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0009.uasset	2024-08-02T07:20:27.962Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0009.uexp	2024-08-02T07:20:27.963Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0010.uasset	2024-08-02T07:20:29.646Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0010.uexp	2024-08-02T07:20:29.648Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0011.uasset	2024-08-02T07:20:30.237Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0011.uexp	2024-08-02T07:20:30.238Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0012.uasset	2024-08-02T07:20:27.730Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0012.uexp	2024-08-02T07:20:27.732Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0013.uasset	2024-08-02T07:20:29.897Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0013.uexp	2024-08-02T07:20:29.898Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0014.uasset	2024-08-02T07:20:27.554Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0014.uexp	2024-08-02T07:20:27.556Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0015.uasset	2024-08-02T07:20:27.122Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0043_0015.uexp	2024-08-02T07:20:27.124Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0000.uasset	2024-08-02T07:20:27.329Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0000.uexp	2024-08-02T07:20:27.331Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0001.uasset	2024-08-02T07:20:29.333Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0001.uexp	2024-08-02T07:20:29.334Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0002.uasset	2024-08-02T07:20:28.902Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0002.uexp	2024-08-02T07:20:28.904Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0003.uasset	2024-08-02T07:20:27.351Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0003.uexp	2024-08-02T07:20:27.352Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0004.uasset	2024-08-02T07:20:29.784Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0004.uexp	2024-08-02T07:20:29.786Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0005.uasset	2024-08-02T07:20:27.945Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0005.uexp	2024-08-02T07:20:27.946Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0006.uasset	2024-08-02T07:20:29.012Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0006.uexp	2024-08-02T07:20:29.013Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0007.uasset	2024-08-02T07:20:28.549Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0007.uexp	2024-08-02T07:20:28.550Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0008.uasset	2024-08-02T07:20:27.948Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0008.uexp	2024-08-02T07:20:27.950Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0009.uasset	2024-08-02T07:20:28.987Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0009.uexp	2024-08-02T07:20:28.989Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0010.uasset	2024-08-02T07:20:28.683Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0010.uexp	2024-08-02T07:20:28.686Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0011.uasset	2024-08-02T07:20:28.244Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0011.uexp	2024-08-02T07:20:28.245Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0012.uasset	2024-08-02T07:20:29.665Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0012.uexp	2024-08-02T07:20:29.667Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0013.uasset	2024-08-02T07:20:27.672Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0013.uexp	2024-08-02T07:20:27.674Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0014.uasset	2024-08-02T07:20:27.345Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0014.uexp	2024-08-02T07:20:27.348Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0015.uasset	2024-08-02T07:20:29.005Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0044_0015.uexp	2024-08-02T07:20:29.006Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0000.uasset	2024-08-02T07:20:27.569Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0000.uexp	2024-08-02T07:20:27.570Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0001.uasset	2024-08-02T07:20:28.997Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0001.uexp	2024-08-02T07:20:28.998Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0002.uasset	2024-08-02T07:20:27.464Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0002.uexp	2024-08-02T07:20:27.466Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0003.uasset	2024-08-02T07:20:29.783Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0003.uexp	2024-08-02T07:20:29.784Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0004.uasset	2024-08-02T07:20:27.722Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0004.uexp	2024-08-02T07:20:27.725Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0005.uasset	2024-08-02T07:20:27.430Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0005.uexp	2024-08-02T07:20:27.432Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0006.uasset	2024-08-02T07:20:28.794Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0006.uexp	2024-08-02T07:20:28.796Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0007.uasset	2024-08-02T07:20:28.897Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0007.uexp	2024-08-02T07:20:28.900Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0008.uasset	2024-08-02T07:20:27.956Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0008.uexp	2024-08-02T07:20:27.957Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0009.uasset	2024-08-02T07:20:27.334Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0009.uexp	2024-08-02T07:20:27.335Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0010.uasset	2024-08-02T07:20:30.554Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0010.uexp	2024-08-02T07:20:30.556Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0011.uasset	2024-08-02T07:20:30.222Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0011.uexp	2024-08-02T07:20:30.224Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0012.uasset	2024-08-02T07:20:29.965Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0012.uexp	2024-08-02T07:20:29.966Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0013.uasset	2024-08-02T07:20:27.147Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0013.uexp	2024-08-02T07:20:27.148Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0014.uasset	2024-08-02T07:20:30.110Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0014.uexp	2024-08-02T07:20:30.112Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0015.uasset	2024-08-02T07:20:30.194Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0045_0015.uexp	2024-08-02T07:20:30.195Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0000.uasset	2024-08-02T07:20:30.091Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0000.uexp	2024-08-02T07:20:30.092Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0001.uasset	2024-08-02T07:20:29.898Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0001.uexp	2024-08-02T07:20:29.900Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0002.uasset	2024-08-02T07:20:27.253Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0002.uexp	2024-08-02T07:20:27.254Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0003.uasset	2024-08-02T07:20:30.325Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0003.uexp	2024-08-02T07:20:30.327Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0004.uasset	2024-08-02T07:20:28.222Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0004.uexp	2024-08-02T07:20:28.224Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0005.uasset	2024-08-02T07:20:30.223Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0005.uexp	2024-08-02T07:20:30.225Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0006.uasset	2024-08-02T07:20:27.953Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0006.uexp	2024-08-02T07:20:27.955Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0007.uasset	2024-08-02T07:20:28.788Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0007.uexp	2024-08-02T07:20:28.789Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0008.uasset	2024-08-02T07:20:28.774Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0008.uexp	2024-08-02T07:20:28.776Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0009.uasset	2024-08-02T07:20:30.116Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0009.uexp	2024-08-02T07:20:30.118Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0010.uasset	2024-08-02T07:20:29.863Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0010.uexp	2024-08-02T07:20:29.864Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0011.uasset	2024-08-02T07:20:27.960Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0011.uexp	2024-08-02T07:20:27.962Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0012.uasset	2024-08-02T07:20:28.587Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0012.uexp	2024-08-02T07:20:28.588Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0013.uasset	2024-08-02T07:20:28.557Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0013.uexp	2024-08-02T07:20:28.558Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0014.uasset	2024-08-02T07:20:27.944Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0014.uexp	2024-08-02T07:20:27.945Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0015.uasset	2024-08-02T07:20:29.554Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0046_0015.uexp	2024-08-02T07:20:29.556Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0000.uasset	2024-08-02T07:20:27.263Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0000.uexp	2024-08-02T07:20:27.264Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0001.uasset	2024-08-02T07:20:28.246Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0001.uexp	2024-08-02T07:20:28.247Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0002.uasset	2024-08-02T07:20:27.458Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0002.uexp	2024-08-02T07:20:27.460Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0003.uasset	2024-08-02T07:20:27.343Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0003.uexp	2024-08-02T07:20:27.344Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0004.uasset	2024-08-02T07:20:29.891Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0004.uexp	2024-08-02T07:20:29.893Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0005.uasset	2024-08-02T07:20:29.340Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0005.uexp	2024-08-02T07:20:29.341Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0006.uasset	2024-08-02T07:20:30.115Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0006.uexp	2024-08-02T07:20:30.116Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0007.uasset	2024-08-02T07:20:29.233Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0007.uexp	2024-08-02T07:20:29.234Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0008.uasset	2024-08-02T07:20:30.196Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0008.uexp	2024-08-02T07:20:30.197Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0009.uasset	2024-08-02T07:20:29.540Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0009.uexp	2024-08-02T07:20:29.541Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0010.uasset	2024-08-02T07:20:27.028Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0010.uexp	2024-08-02T07:20:27.031Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0011.uasset	2024-08-02T07:20:29.775Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0011.uexp	2024-08-02T07:20:29.777Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0012.uasset	2024-08-02T07:20:29.974Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0012.uexp	2024-08-02T07:20:29.975Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0013.uasset	2024-08-02T07:20:28.687Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0013.uexp	2024-08-02T07:20:28.689Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0014.uasset	2024-08-02T07:20:28.767Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0014.uexp	2024-08-02T07:20:28.769Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0015.uasset	2024-08-02T07:20:27.791Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0047_0015.uexp	2024-08-02T07:20:27.793Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0000.uasset	2024-08-02T07:20:30.304Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0000.uexp	2024-08-02T07:20:30.306Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0001.uasset	2024-08-02T07:20:28.674Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0001.uexp	2024-08-02T07:20:28.676Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0002.uasset	2024-08-02T07:20:28.112Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0002.uexp	2024-08-02T07:20:28.114Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0003.uasset	2024-08-02T07:20:27.774Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0003.uexp	2024-08-02T07:20:27.776Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0004.uasset	2024-08-02T07:20:28.243Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0004.uexp	2024-08-02T07:20:28.244Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0005.uasset	2024-08-02T07:20:29.973Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0005.uexp	2024-08-02T07:20:29.974Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0006.uasset	2024-08-02T07:20:27.796Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0006.uexp	2024-08-02T07:20:27.798Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0007.uasset	2024-08-02T07:20:28.366Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0007.uexp	2024-08-02T07:20:28.367Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0008.uasset	2024-08-02T07:20:30.216Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0008.uexp	2024-08-02T07:20:30.218Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0009.uasset	2024-08-02T07:20:29.095Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0009.uexp	2024-08-02T07:20:29.096Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0010.uasset	2024-08-02T07:20:28.469Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0010.uexp	2024-08-02T07:20:28.470Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0011.uasset	2024-08-02T07:20:27.039Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0011.uexp	2024-08-02T07:20:27.040Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0012.uasset	2024-08-02T07:20:29.108Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0012.uexp	2024-08-02T07:20:29.110Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0013.uasset	2024-08-02T07:20:29.326Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0013.uexp	2024-08-02T07:20:29.328Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0014.uasset	2024-08-02T07:20:28.915Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0014.uexp	2024-08-02T07:20:28.917Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0015.uasset	2024-08-02T07:20:29.644Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0048_0015.uexp	2024-08-02T07:20:29.645Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0000.uasset	2024-08-02T07:20:27.689Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0000.uexp	2024-08-02T07:20:27.691Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0001.uasset	2024-08-02T07:20:30.340Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0001.uexp	2024-08-02T07:20:30.342Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0002.uasset	2024-08-02T07:20:28.555Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0002.uexp	2024-08-02T07:20:28.557Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0003.uasset	2024-08-02T07:20:27.919Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0003.uexp	2024-08-02T07:20:27.921Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0004.uasset	2024-08-02T07:20:27.721Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0004.uexp	2024-08-02T07:20:27.723Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0005.uasset	2024-08-02T07:20:27.801Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0005.uexp	2024-08-02T07:20:27.802Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0006.uasset	2024-08-02T07:20:27.907Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0006.uexp	2024-08-02T07:20:27.909Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0007.uasset	2024-08-02T07:20:28.770Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0007.uexp	2024-08-02T07:20:28.772Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0008.uasset	2024-08-02T07:20:29.888Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0008.uexp	2024-08-02T07:20:29.890Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0009.uasset	2024-08-02T07:20:27.443Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0009.uexp	2024-08-02T07:20:27.444Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0010.uasset	2024-08-02T07:20:30.575Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0010.uexp	2024-08-02T07:20:30.577Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0011.uasset	2024-08-02T07:20:30.095Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0011.uexp	2024-08-02T07:20:30.097Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0012.uasset	2024-08-02T07:20:29.338Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0012.uexp	2024-08-02T07:20:29.339Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0013.uasset	2024-08-02T07:20:30.220Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0013.uexp	2024-08-02T07:20:30.221Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0014.uasset	2024-08-02T07:20:29.984Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0014.uexp	2024-08-02T07:20:29.985Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0015.uasset	2024-08-02T07:20:29.884Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0049_0015.uexp	2024-08-02T07:20:29.885Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0000.uasset	2024-08-02T07:20:29.567Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0000.uexp	2024-08-02T07:20:29.568Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0001.uasset	2024-08-02T07:20:28.128Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0001.uexp	2024-08-02T07:20:28.130Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0002.uasset	2024-08-02T07:20:29.346Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0002.uexp	2024-08-02T07:20:29.347Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0003.uasset	2024-08-02T07:20:28.133Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0003.uexp	2024-08-02T07:20:28.135Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0004.uasset	2024-08-02T07:20:29.640Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0004.uexp	2024-08-02T07:20:29.642Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0005.uasset	2024-08-02T07:20:28.904Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0005.uexp	2024-08-02T07:20:28.906Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0006.uasset	2024-08-02T07:20:27.113Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0006.uexp	2024-08-02T07:20:27.115Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0007.uasset	2024-08-02T07:20:30.218Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0007.uexp	2024-08-02T07:20:30.219Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0008.uasset	2024-08-02T07:20:27.469Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0008.uexp	2024-08-02T07:20:27.472Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0009.uasset	2024-08-02T07:20:28.670Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0009.uexp	2024-08-02T07:20:28.671Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0010.uasset	2024-08-02T07:20:28.446Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0010.uexp	2024-08-02T07:20:28.447Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0011.uasset	2024-08-02T07:20:28.918Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0011.uexp	2024-08-02T07:20:28.919Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0012.uasset	2024-08-02T07:20:29.105Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0012.uexp	2024-08-02T07:20:29.107Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0013.uasset	2024-08-02T07:20:30.113Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0013.uexp	2024-08-02T07:20:30.115Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0014.uasset	2024-08-02T07:20:27.044Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0014.uexp	2024-08-02T07:20:27.046Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0015.uasset	2024-08-02T07:20:29.323Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0050_0015.uexp	2024-08-02T07:20:29.325Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0000.uasset	2024-08-02T07:20:28.766Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0000.uexp	2024-08-02T07:20:28.768Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0001.uasset	2024-08-02T07:20:30.210Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0001.uexp	2024-08-02T07:20:30.212Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0002.uasset	2024-08-02T07:20:29.102Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0002.uexp	2024-08-02T07:20:29.103Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0003.uasset	2024-08-02T07:20:27.947Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0003.uexp	2024-08-02T07:20:27.948Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0004.uasset	2024-08-02T07:20:30.354Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0004.uexp	2024-08-02T07:20:30.355Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0005.uasset	2024-08-02T07:20:27.472Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0005.uexp	2024-08-02T07:20:27.473Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0006.uasset	2024-08-02T07:20:28.355Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0006.uexp	2024-08-02T07:20:28.357Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0007.uasset	2024-08-02T07:20:29.876Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0007.uexp	2024-08-02T07:20:29.877Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0008.uasset	2024-08-02T07:20:28.669Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0008.uexp	2024-08-02T07:20:28.670Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0009.uasset	2024-08-02T07:20:28.684Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0009.uexp	2024-08-02T07:20:28.687Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0010.uasset	2024-08-02T07:20:28.371Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0010.uexp	2024-08-02T07:20:28.373Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0011.uasset	2024-08-02T07:20:27.716Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0011.uexp	2024-08-02T07:20:27.717Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0012.uasset	2024-08-02T07:20:28.871Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0012.uexp	2024-08-02T07:20:28.873Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0013.uasset	2024-08-02T07:20:28.334Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0013.uexp	2024-08-02T07:20:28.337Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0014.uasset	2024-08-02T07:20:27.926Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0014.uexp	2024-08-02T07:20:27.927Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0015.uasset	2024-08-02T07:20:30.318Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0051_0015.uexp	2024-08-02T07:20:30.321Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0000.uasset	2024-08-02T07:20:29.636Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0000.uexp	2024-08-02T07:20:29.638Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0001.uasset	2024-08-02T07:20:27.710Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0001.uexp	2024-08-02T07:20:27.712Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0002.uasset	2024-08-02T07:20:28.578Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0002.uexp	2024-08-02T07:20:28.580Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0003.uasset	2024-08-02T07:20:28.475Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0003.uexp	2024-08-02T07:20:28.476Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0004.uasset	2024-08-02T07:20:27.562Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0004.uexp	2024-08-02T07:20:27.564Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0005.uasset	2024-08-02T07:20:27.692Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0005.uexp	2024-08-02T07:20:27.693Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0006.uasset	2024-08-02T07:20:27.574Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0006.uexp	2024-08-02T07:20:27.576Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0007.uasset	2024-08-02T07:20:29.424Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0007.uexp	2024-08-02T07:20:29.426Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0008.uasset	2024-08-02T07:20:29.223Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0008.uexp	2024-08-02T07:20:29.224Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0009.uasset	2024-08-02T07:20:29.205Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0009.uexp	2024-08-02T07:20:29.207Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0010.uasset	2024-08-02T07:20:28.373Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0010.uexp	2024-08-02T07:20:28.375Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0011.uasset	2024-08-02T07:20:27.236Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0011.uexp	2024-08-02T07:20:27.238Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0012.uasset	2024-08-02T07:20:28.776Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0012.uexp	2024-08-02T07:20:28.778Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0013.uasset	2024-08-02T07:20:30.207Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0013.uexp	2024-08-02T07:20:30.208Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0014.uasset	2024-08-02T07:20:28.464Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0014.uexp	2024-08-02T07:20:28.465Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0015.uasset	2024-08-02T07:20:27.034Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0052_0015.uexp	2024-08-02T07:20:27.036Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0000.uasset	2024-08-02T07:20:30.557Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0000.uexp	2024-08-02T07:20:30.559Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0001.uasset	2024-08-02T07:20:27.940Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0001.uexp	2024-08-02T07:20:27.942Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0002.uasset	2024-08-02T07:20:27.567Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0002.uexp	2024-08-02T07:20:27.569Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0003.uasset	2024-08-02T07:20:28.801Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0003.uexp	2024-08-02T07:20:28.802Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0004.uasset	2024-08-02T07:20:30.314Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0004.uexp	2024-08-02T07:20:30.316Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0005.uasset	2024-08-02T07:20:29.756Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0005.uexp	2024-08-02T07:20:29.758Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0006.uasset	2024-08-02T07:20:29.971Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0006.uexp	2024-08-02T07:20:29.973Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0007.uasset	2024-08-02T07:20:30.323Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0007.uexp	2024-08-02T07:20:30.326Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0008.uasset	2024-08-02T07:20:28.992Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0008.uexp	2024-08-02T07:20:28.993Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0009.uasset	2024-08-02T07:20:28.899Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0009.uexp	2024-08-02T07:20:28.901Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0010.uasset	2024-08-02T07:20:29.648Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0010.uexp	2024-08-02T07:20:29.649Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0011.uasset	2024-08-02T07:20:29.096Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0011.uexp	2024-08-02T07:20:29.097Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0012.uasset	2024-08-02T07:20:27.448Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0012.uexp	2024-08-02T07:20:27.449Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0013.uasset	2024-08-02T07:20:30.457Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0013.uexp	2024-08-02T07:20:30.458Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0014.uasset	2024-08-02T07:20:27.436Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0014.uexp	2024-08-02T07:20:27.437Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0015.uasset	2024-08-02T07:20:27.550Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0053_0015.uexp	2024-08-02T07:20:27.551Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0000.uasset	2024-08-02T07:20:29.669Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0000.uexp	2024-08-02T07:20:29.671Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0001.uasset	2024-08-02T07:20:28.344Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0001.uexp	2024-08-02T07:20:28.346Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0002.uasset	2024-08-02T07:20:27.557Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0002.uexp	2024-08-02T07:20:27.558Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0003.uasset	2024-08-02T07:20:28.327Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0003.uexp	2024-08-02T07:20:28.329Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0004.uasset	2024-08-02T07:20:27.577Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0004.uexp	2024-08-02T07:20:27.580Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0005.uasset	2024-08-02T07:20:27.235Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0005.uexp	2024-08-02T07:20:27.236Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0006.uasset	2024-08-02T07:20:27.348Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0006.uexp	2024-08-02T07:20:27.349Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0007.uasset	2024-08-02T07:20:28.127Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0007.uexp	2024-08-02T07:20:28.129Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0008.uasset	2024-08-02T07:20:29.861Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0008.uexp	2024-08-02T07:20:29.863Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0009.uasset	2024-08-02T07:20:29.089Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0009.uexp	2024-08-02T07:20:29.091Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0010.uasset	2024-08-02T07:20:28.354Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0010.uexp	2024-08-02T07:20:28.355Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0011.uasset	2024-08-02T07:20:30.094Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0011.uexp	2024-08-02T07:20:30.096Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0012.uasset	2024-08-02T07:20:29.548Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0012.uexp	2024-08-02T07:20:29.550Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0013.uasset	2024-08-02T07:20:27.323Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0013.uexp	2024-08-02T07:20:27.324Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0014.uasset	2024-08-02T07:20:28.986Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0014.uexp	2024-08-02T07:20:28.988Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0015.uasset	2024-08-02T07:20:29.768Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0054_0015.uexp	2024-08-02T07:20:29.770Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0000.uasset	2024-08-02T07:20:28.459Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0000.uexp	2024-08-02T07:20:28.460Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0001.uasset	2024-08-02T07:20:28.764Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0001.uexp	2024-08-02T07:20:28.766Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0002.uasset	2024-08-02T07:20:28.565Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0002.uexp	2024-08-02T07:20:28.567Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0003.uasset	2024-08-02T07:20:28.019Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0003.uexp	2024-08-02T07:20:28.021Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0004.uasset	2024-08-02T07:20:28.001Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0004.uexp	2024-08-02T07:20:28.003Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0005.uasset	2024-08-02T07:20:28.150Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0005.uexp	2024-08-02T07:20:28.152Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0006.uasset	2024-08-02T07:20:28.223Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0006.uexp	2024-08-02T07:20:28.225Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0007.uasset	2024-08-02T07:20:27.578Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0007.uexp	2024-08-02T07:20:27.580Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0008.uasset	2024-08-02T07:20:28.913Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0008.uexp	2024-08-02T07:20:28.915Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0009.uasset	2024-08-02T07:20:28.919Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0009.uexp	2024-08-02T07:20:28.921Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0010.uasset	2024-08-02T07:20:30.460Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0010.uexp	2024-08-02T07:20:30.461Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0011.uasset	2024-08-02T07:20:30.349Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0011.uexp	2024-08-02T07:20:30.350Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0012.uasset	2024-08-02T07:20:29.234Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0012.uexp	2024-08-02T07:20:29.236Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0013.uasset	2024-08-02T07:20:29.219Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0013.uexp	2024-08-02T07:20:29.220Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0014.uasset	2024-08-02T07:20:29.754Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0014.uexp	2024-08-02T07:20:29.755Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0015.uasset	2024-08-02T07:20:29.887Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0055_0015.uexp	2024-08-02T07:20:29.889Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0000.uasset	2024-08-02T07:20:28.800Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0000.uexp	2024-08-02T07:20:28.801Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0001.uasset	2024-08-02T07:20:27.360Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0001.uexp	2024-08-02T07:20:27.361Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0002.uasset	2024-08-02T07:20:30.009Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0002.uexp	2024-08-02T07:20:30.011Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0003.uasset	2024-08-02T07:20:27.245Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0003.uexp	2024-08-02T07:20:27.247Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0004.uasset	2024-08-02T07:20:30.441Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0004.uexp	2024-08-02T07:20:30.442Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0005.uasset	2024-08-02T07:20:27.691Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0005.uexp	2024-08-02T07:20:27.693Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0006.uasset	2024-08-02T07:20:27.116Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0006.uexp	2024-08-02T07:20:27.118Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0007.uasset	2024-08-02T07:20:28.009Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0007.uexp	2024-08-02T07:20:28.011Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0008.uasset	2024-08-02T07:20:27.329Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0008.uexp	2024-08-02T07:20:27.330Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0009.uasset	2024-08-02T07:20:27.559Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0009.uexp	2024-08-02T07:20:27.561Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0010.uasset	2024-08-02T07:20:28.786Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0010.uexp	2024-08-02T07:20:28.787Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0011.uasset	2024-08-02T07:20:29.658Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0011.uexp	2024-08-02T07:20:29.659Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0012.uasset	2024-08-02T07:20:28.149Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0012.uexp	2024-08-02T07:20:28.151Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0013.uasset	2024-08-02T07:20:28.124Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0013.uexp	2024-08-02T07:20:28.126Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0014.uasset	2024-08-02T07:20:29.967Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0014.uexp	2024-08-02T07:20:29.969Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0015.uasset	2024-08-02T07:20:30.560Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0056_0015.uexp	2024-08-02T07:20:30.562Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0000.uasset	2024-08-02T07:20:27.041Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0000.uexp	2024-08-02T07:20:27.042Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0001.uasset	2024-08-02T07:20:27.726Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0001.uexp	2024-08-02T07:20:27.728Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0002.uasset	2024-08-02T07:20:28.877Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0002.uexp	2024-08-02T07:20:28.879Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0003.uasset	2024-08-02T07:20:30.227Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0003.uexp	2024-08-02T07:20:30.229Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0004.uasset	2024-08-02T07:20:27.566Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0004.uexp	2024-08-02T07:20:27.568Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0005.uasset	2024-08-02T07:20:27.897Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0005.uexp	2024-08-02T07:20:27.898Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0006.uasset	2024-08-02T07:20:27.335Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0006.uexp	2024-08-02T07:20:27.337Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0007.uasset	2024-08-02T07:20:29.789Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0007.uexp	2024-08-02T07:20:29.791Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0008.uasset	2024-08-02T07:20:27.137Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0008.uexp	2024-08-02T07:20:27.138Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0009.uasset	2024-08-02T07:20:30.343Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0009.uexp	2024-08-02T07:20:30.346Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0010.uasset	2024-08-02T07:20:30.107Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0010.uexp	2024-08-02T07:20:30.108Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0011.uasset	2024-08-02T07:20:27.688Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0011.uexp	2024-08-02T07:20:27.690Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0012.uasset	2024-08-02T07:20:28.561Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0012.uexp	2024-08-02T07:20:28.563Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0013.uasset	2024-08-02T07:20:30.320Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0013.uexp	2024-08-02T07:20:30.322Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0014.uasset	2024-08-02T07:20:27.243Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0014.uexp	2024-08-02T07:20:27.244Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0015.uasset	2024-08-02T07:20:29.206Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0057_0015.uexp	2024-08-02T07:20:29.208Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0000.uasset	2024-08-02T07:20:29.758Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0000.uexp	2024-08-02T07:20:29.760Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0001.uasset	2024-08-02T07:20:28.462Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0001.uexp	2024-08-02T07:20:28.464Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0002.uasset	2024-08-02T07:20:27.480Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0002.uexp	2024-08-02T07:20:27.482Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0003.uasset	2024-08-02T07:20:29.988Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0003.uexp	2024-08-02T07:20:29.990Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0004.uasset	2024-08-02T07:20:30.452Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0004.uexp	2024-08-02T07:20:30.454Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0005.uasset	2024-08-02T07:20:27.899Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0005.uexp	2024-08-02T07:20:27.900Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0006.uasset	2024-08-02T07:20:29.319Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0006.uexp	2024-08-02T07:20:29.320Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0007.uasset	2024-08-02T07:20:28.580Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0007.uexp	2024-08-02T07:20:28.581Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0008.uasset	2024-08-02T07:20:28.667Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0008.uexp	2024-08-02T07:20:28.669Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0009.uasset	2024-08-02T07:20:27.127Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0009.uexp	2024-08-02T07:20:27.128Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0010.uasset	2024-08-02T07:20:29.433Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0010.uexp	2024-08-02T07:20:29.435Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0011.uasset	2024-08-02T07:20:28.369Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0011.uexp	2024-08-02T07:20:28.372Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0012.uasset	2024-08-02T07:20:27.043Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0012.uexp	2024-08-02T07:20:27.044Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0013.uasset	2024-08-02T07:20:28.473Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0013.uexp	2024-08-02T07:20:28.474Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0014.uasset	2024-08-02T07:20:27.549Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0014.uexp	2024-08-02T07:20:27.551Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0015.uasset	2024-08-02T07:20:29.246Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0058_0015.uexp	2024-08-02T07:20:29.247Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0000.uasset	2024-08-02T07:20:27.928Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0000.uexp	2024-08-02T07:20:27.930Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0001.uasset	2024-08-02T07:20:27.776Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0001.uexp	2024-08-02T07:20:27.779Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0002.uasset	2024-08-02T07:20:29.314Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0002.uexp	2024-08-02T07:20:29.316Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0003.uasset	2024-08-02T07:20:27.732Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0003.uexp	2024-08-02T07:20:27.734Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0004.uasset	2024-08-02T07:20:28.239Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0004.uexp	2024-08-02T07:20:28.241Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0005.uasset	2024-08-02T07:20:29.226Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0005.uexp	2024-08-02T07:20:29.227Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0006.uasset	2024-08-02T07:20:29.019Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0006.uexp	2024-08-02T07:20:29.020Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0007.uasset	2024-08-02T07:20:29.566Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0007.uexp	2024-08-02T07:20:29.567Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0008.uasset	2024-08-02T07:20:30.233Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0008.uexp	2024-08-02T07:20:30.235Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0009.uasset	2024-08-02T07:20:29.421Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0009.uexp	2024-08-02T07:20:29.422Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0010.uasset	2024-08-02T07:20:29.422Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0010.uexp	2024-08-02T07:20:29.424Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0011.uasset	2024-08-02T07:20:29.874Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0011.uexp	2024-08-02T07:20:29.875Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0012.uasset	2024-08-02T07:20:28.577Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0012.uexp	2024-08-02T07:20:28.578Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0013.uasset	2024-08-02T07:20:29.325Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0013.uexp	2024-08-02T07:20:29.327Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0014.uasset	2024-08-02T07:20:28.147Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0014.uexp	2024-08-02T07:20:28.149Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0015.uasset	2024-08-02T07:20:27.794Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0059_0015.uexp	2024-08-02T07:20:27.796Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0000.uasset	2024-08-02T07:20:27.132Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0000.uexp	2024-08-02T07:20:27.133Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0001.uasset	2024-08-02T07:20:30.208Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0001.uexp	2024-08-02T07:20:30.210Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0002.uasset	2024-08-02T07:20:29.319Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0002.uexp	2024-08-02T07:20:29.320Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0003.uasset	2024-08-02T07:20:27.128Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0003.uexp	2024-08-02T07:20:27.130Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0004.uasset	2024-08-02T07:20:27.551Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0004.uexp	2024-08-02T07:20:27.553Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0005.uasset	2024-08-02T07:20:29.890Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0005.uexp	2024-08-02T07:20:29.892Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0006.uasset	2024-08-02T07:20:30.572Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0006.uexp	2024-08-02T07:20:30.574Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0007.uasset	2024-08-02T07:20:28.454Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0007.uexp	2024-08-02T07:20:28.455Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0008.uasset	2024-08-02T07:20:28.362Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0008.uexp	2024-08-02T07:20:28.363Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0009.uasset	2024-08-02T07:20:29.635Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0009.uexp	2024-08-02T07:20:29.636Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0010.uasset	2024-08-02T07:20:28.662Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0010.uexp	2024-08-02T07:20:28.663Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0011.uasset	2024-08-02T07:20:30.102Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0011.uexp	2024-08-02T07:20:30.103Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0012.uasset	2024-08-02T07:20:29.561Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0012.uexp	2024-08-02T07:20:29.564Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0013.uasset	2024-08-02T07:20:28.571Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0013.uexp	2024-08-02T07:20:28.573Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0014.uasset	2024-08-02T07:20:28.922Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0014.uexp	2024-08-02T07:20:28.923Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0015.uasset	2024-08-02T07:20:30.353Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0060_0015.uexp	2024-08-02T07:20:30.355Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0000.uasset	2024-08-02T07:20:29.672Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0000.uexp	2024-08-02T07:20:29.674Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0001.uasset	2024-08-02T07:20:27.326Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0001.uexp	2024-08-02T07:20:27.327Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0002.uasset	2024-08-02T07:20:30.425Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0002.uexp	2024-08-02T07:20:30.426Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0003.uasset	2024-08-02T07:20:28.364Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0003.uexp	2024-08-02T07:20:28.366Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0004.uasset	2024-08-02T07:20:27.036Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0004.uexp	2024-08-02T07:20:27.038Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0005.uasset	2024-08-02T07:20:29.437Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0005.uexp	2024-08-02T07:20:29.440Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0006.uasset	2024-08-02T07:20:27.942Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0006.uexp	2024-08-02T07:20:27.944Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0007.uasset	2024-08-02T07:20:27.240Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0007.uexp	2024-08-02T07:20:27.242Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0008.uasset	2024-08-02T07:20:30.356Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0008.uexp	2024-08-02T07:20:30.357Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0009.uasset	2024-08-02T07:20:28.680Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0009.uexp	2024-08-02T07:20:28.681Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0010.uasset	2024-08-02T07:20:27.580Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0010.uexp	2024-08-02T07:20:27.581Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0011.uasset	2024-08-02T07:20:30.211Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0011.uexp	2024-08-02T07:20:30.213Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0012.uasset	2024-08-02T07:20:27.682Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0012.uexp	2024-08-02T07:20:27.683Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0013.uasset	2024-08-02T07:20:29.979Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0013.uexp	2024-08-02T07:20:29.980Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0014.uasset	2024-08-02T07:20:28.123Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0014.uexp	2024-08-02T07:20:28.125Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0015.uasset	2024-08-02T07:20:27.439Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0061_0015.uexp	2024-08-02T07:20:27.441Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0000.uasset	2024-08-02T07:20:28.366Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0000.uexp	2024-08-02T07:20:28.368Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0001.uasset	2024-08-02T07:20:29.525Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0001.uexp	2024-08-02T07:20:29.527Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0002.uasset	2024-08-02T07:20:29.542Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0002.uexp	2024-08-02T07:20:29.544Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0003.uasset	2024-08-02T07:20:29.207Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0003.uexp	2024-08-02T07:20:29.209Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0004.uasset	2024-08-02T07:20:28.880Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0004.uexp	2024-08-02T07:20:28.882Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0005.uasset	2024-08-02T07:20:29.550Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0005.uexp	2024-08-02T07:20:29.552Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0006.uasset	2024-08-02T07:20:27.129Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0006.uexp	2024-08-02T07:20:27.131Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0007.uasset	2024-08-02T07:20:28.804Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0007.uexp	2024-08-02T07:20:28.806Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0008.uasset	2024-08-02T07:20:28.678Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0008.uexp	2024-08-02T07:20:28.679Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0009.uasset	2024-08-02T07:20:29.431Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0009.uexp	2024-08-02T07:20:29.433Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0010.uasset	2024-08-02T07:20:29.641Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0010.uexp	2024-08-02T07:20:29.643Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0011.uasset	2024-08-02T07:20:28.138Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0011.uexp	2024-08-02T07:20:28.140Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0012.uasset	2024-08-02T07:20:29.638Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0012.uexp	2024-08-02T07:20:29.640Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0013.uasset	2024-08-02T07:20:28.798Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0013.uexp	2024-08-02T07:20:28.799Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0014.uasset	2024-08-02T07:20:29.998Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0014.uexp	2024-08-02T07:20:29.999Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0015.uasset	2024-08-02T07:20:30.198Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0062_0015.uexp	2024-08-02T07:20:30.200Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0000.uasset	2024-08-02T07:20:29.868Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0000.uexp	2024-08-02T07:20:29.870Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0001.uasset	2024-08-02T07:20:27.126Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0001.uexp	2024-08-02T07:20:27.128Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0002.uasset	2024-08-02T07:20:28.795Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0002.uexp	2024-08-02T07:20:28.797Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0003.uasset	2024-08-02T07:20:27.442Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0003.uexp	2024-08-02T07:20:27.443Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0004.uasset	2024-08-02T07:20:29.438Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0004.uexp	2024-08-02T07:20:29.441Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0005.uasset	2024-08-02T07:20:29.671Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0005.uexp	2024-08-02T07:20:29.672Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0006.uasset	2024-08-02T07:20:28.546Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0006.uexp	2024-08-02T07:20:28.547Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0007.uasset	2024-08-02T07:20:28.120Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0007.uexp	2024-08-02T07:20:28.122Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0008.uasset	2024-08-02T07:20:29.981Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0008.uexp	2024-08-02T07:20:29.982Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0009.uasset	2024-08-02T07:20:29.659Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0009.uexp	2024-08-02T07:20:29.661Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0010.uasset	2024-08-02T07:20:28.360Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0010.uexp	2024-08-02T07:20:28.362Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0011.uasset	2024-08-02T07:20:27.708Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0011.uexp	2024-08-02T07:20:27.710Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0012.uasset	2024-08-02T07:20:29.668Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0012.uexp	2024-08-02T07:20:29.670Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0013.uasset	2024-08-02T07:20:29.411Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0013.uexp	2024-08-02T07:20:29.412Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0014.uasset	2024-08-02T07:20:27.963Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0014.uexp	2024-08-02T07:20:27.964Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0015.uasset	2024-08-02T07:20:29.645Z
+Engine/Content/EngineMaterials/Substrate/GLints/dict_16_192_64_0p5_0p02_0063_0015.uexp	2024-08-02T07:20:29.646Z
+Engine/Content/EngineMaterials/Substrate/Glints2/AGlintTex2dArray2.uasset	2024-08-02T07:20:32.101Z
+Engine/Content/EngineMaterials/Substrate/Glints2/AGlintTex2dArray2.uexp	2024-08-02T07:20:32.107Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0000.uasset	2024-08-02T07:20:26.710Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0000.uexp	2024-08-02T07:20:26.712Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0001.uasset	2024-08-02T07:20:26.315Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0001.uexp	2024-08-02T07:20:26.317Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0002.uasset	2024-08-02T07:20:23.512Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0002.uexp	2024-08-02T07:20:23.513Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0003.uasset	2024-08-02T07:20:20.313Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0003.uexp	2024-08-02T07:20:20.314Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0004.uasset	2024-08-02T07:20:26.186Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0004.uexp	2024-08-02T07:20:26.187Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0005.uasset	2024-08-02T07:20:21.314Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0005.uexp	2024-08-02T07:20:21.317Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0006.uasset	2024-08-02T07:20:24.056Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0006.uexp	2024-08-02T07:20:24.057Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0007.uasset	2024-08-02T07:20:21.106Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0007.uexp	2024-08-02T07:20:21.107Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0008.uasset	2024-08-02T07:20:26.189Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0008.uexp	2024-08-02T07:20:26.190Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0009.uasset	2024-08-02T07:20:26.306Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0009.uexp	2024-08-02T07:20:26.308Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0010.uasset	2024-08-02T07:20:21.208Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0010.uexp	2024-08-02T07:20:21.209Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0011.uasset	2024-08-02T07:20:26.930Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0011.uexp	2024-08-02T07:20:26.932Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0012.uasset	2024-08-02T07:20:24.148Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0012.uexp	2024-08-02T07:20:24.150Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0013.uasset	2024-08-02T07:20:21.628Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0013.uexp	2024-08-02T07:20:21.629Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0014.uasset	2024-08-02T07:20:26.922Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0014.uexp	2024-08-02T07:20:26.924Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0015.uasset	2024-08-02T07:20:25.645Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0015.uexp	2024-08-02T07:20:25.646Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0016.uasset	2024-08-02T07:20:23.060Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0016.uexp	2024-08-02T07:20:23.061Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0017.uasset	2024-08-02T07:20:21.957Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0017.uexp	2024-08-02T07:20:21.958Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0018.uasset	2024-08-02T07:20:23.040Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0018.uexp	2024-08-02T07:20:23.042Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0019.uasset	2024-08-02T07:20:26.915Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0019.uexp	2024-08-02T07:20:26.917Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0020.uasset	2024-08-02T07:20:22.734Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0020.uexp	2024-08-02T07:20:22.735Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0021.uasset	2024-08-02T07:20:23.488Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0021.uexp	2024-08-02T07:20:23.489Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0022.uasset	2024-08-02T07:20:24.540Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0022.uexp	2024-08-02T07:20:24.542Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0023.uasset	2024-08-02T07:20:21.937Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0023.uexp	2024-08-02T07:20:21.938Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0024.uasset	2024-08-02T07:20:21.230Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0024.uexp	2024-08-02T07:20:21.232Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0025.uasset	2024-08-02T07:20:23.309Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0025.uexp	2024-08-02T07:20:23.310Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0026.uasset	2024-08-02T07:20:21.247Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0026.uexp	2024-08-02T07:20:21.248Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0027.uasset	2024-08-02T07:20:26.384Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0027.uexp	2024-08-02T07:20:26.385Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0028.uasset	2024-08-02T07:20:20.690Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0028.uexp	2024-08-02T07:20:20.692Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0029.uasset	2024-08-02T07:20:25.170Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0029.uexp	2024-08-02T07:20:25.171Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0030.uasset	2024-08-02T07:20:26.173Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0030.uexp	2024-08-02T07:20:26.175Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0031.uasset	2024-08-02T07:20:20.193Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0031.uexp	2024-08-02T07:20:20.195Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0032.uasset	2024-08-02T07:20:21.420Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0032.uexp	2024-08-02T07:20:21.422Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0033.uasset	2024-08-02T07:20:26.713Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0033.uexp	2024-08-02T07:20:26.714Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0034.uasset	2024-08-02T07:20:22.586Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0034.uexp	2024-08-02T07:20:22.587Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0035.uasset	2024-08-02T07:20:20.555Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0035.uexp	2024-08-02T07:20:20.557Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0036.uasset	2024-08-02T07:20:22.733Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0036.uexp	2024-08-02T07:20:22.733Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0037.uasset	2024-08-02T07:20:22.158Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0037.uexp	2024-08-02T07:20:22.160Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0038.uasset	2024-08-02T07:20:22.050Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0038.uexp	2024-08-02T07:20:22.052Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0039.uasset	2024-08-02T07:20:26.380Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0039.uexp	2024-08-02T07:20:26.381Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0040.uasset	2024-08-02T07:20:26.399Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0040.uexp	2024-08-02T07:20:26.400Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0041.uasset	2024-08-02T07:20:21.296Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0041.uexp	2024-08-02T07:20:21.298Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0042.uasset	2024-08-02T07:20:26.586Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0042.uexp	2024-08-02T07:20:26.587Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0043.uasset	2024-08-02T07:20:26.805Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0043.uexp	2024-08-02T07:20:26.807Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0044.uasset	2024-08-02T07:20:26.326Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0044.uexp	2024-08-02T07:20:26.327Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0045.uasset	2024-08-02T07:20:21.443Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0045.uexp	2024-08-02T07:20:21.444Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0046.uasset	2024-08-02T07:20:26.381Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0046.uexp	2024-08-02T07:20:26.383Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0047.uasset	2024-08-02T07:20:22.069Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0047.uexp	2024-08-02T07:20:22.071Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0048.uasset	2024-08-02T07:20:26.800Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0048.uexp	2024-08-02T07:20:26.801Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0049.uasset	2024-08-02T07:20:21.634Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0049.uexp	2024-08-02T07:20:21.635Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0050.uasset	2024-08-02T07:20:24.380Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0050.uexp	2024-08-02T07:20:24.382Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0051.uasset	2024-08-02T07:20:23.481Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0051.uexp	2024-08-02T07:20:23.483Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0052.uasset	2024-08-02T07:20:26.921Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0052.uexp	2024-08-02T07:20:26.923Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0053.uasset	2024-08-02T07:20:20.359Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0053.uexp	2024-08-02T07:20:20.360Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0054.uasset	2024-08-02T07:20:25.511Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0054.uexp	2024-08-02T07:20:25.513Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0055.uasset	2024-08-02T07:20:20.866Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0055.uexp	2024-08-02T07:20:20.867Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0056.uasset	2024-08-02T07:20:21.514Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0056.uexp	2024-08-02T07:20:21.514Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0057.uasset	2024-08-02T07:20:22.945Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0057.uexp	2024-08-02T07:20:22.946Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0058.uasset	2024-08-02T07:20:24.305Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0058.uexp	2024-08-02T07:20:24.306Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0059.uasset	2024-08-02T07:20:20.430Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0059.uexp	2024-08-02T07:20:20.432Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0060.uasset	2024-08-02T07:20:26.908Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0060.uexp	2024-08-02T07:20:26.910Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0061.uasset	2024-08-02T07:20:20.889Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0061.uexp	2024-08-02T07:20:20.890Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0062.uasset	2024-08-02T07:20:22.466Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0062.uexp	2024-08-02T07:20:22.468Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0063.uasset	2024-08-02T07:20:22.156Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0063.uexp	2024-08-02T07:20:22.157Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0064.uasset	2024-08-02T07:20:23.809Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0064.uexp	2024-08-02T07:20:23.811Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0065.uasset	2024-08-02T07:20:26.390Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0065.uexp	2024-08-02T07:20:26.392Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0066.uasset	2024-08-02T07:20:23.023Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0066.uexp	2024-08-02T07:20:23.024Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0067.uasset	2024-08-02T07:20:24.622Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0067.uexp	2024-08-02T07:20:24.624Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0068.uasset	2024-08-02T07:20:24.046Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0068.uexp	2024-08-02T07:20:24.048Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0069.uasset	2024-08-02T07:20:22.150Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0069.uexp	2024-08-02T07:20:22.152Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0070.uasset	2024-08-02T07:20:23.854Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0070.uexp	2024-08-02T07:20:23.856Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0071.uasset	2024-08-02T07:20:24.169Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0071.uexp	2024-08-02T07:20:24.170Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0072.uasset	2024-08-02T07:20:21.970Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0072.uexp	2024-08-02T07:20:21.971Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0073.uasset	2024-08-02T07:20:23.726Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0073.uexp	2024-08-02T07:20:23.727Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0074.uasset	2024-08-02T07:20:25.759Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0074.uexp	2024-08-02T07:20:25.761Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0075.uasset	2024-08-02T07:20:21.742Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0075.uexp	2024-08-02T07:20:21.744Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0076.uasset	2024-08-02T07:20:20.428Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0076.uexp	2024-08-02T07:20:20.429Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0077.uasset	2024-08-02T07:20:22.910Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0077.uexp	2024-08-02T07:20:22.912Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0078.uasset	2024-08-02T07:20:23.943Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0078.uexp	2024-08-02T07:20:23.945Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0079.uasset	2024-08-02T07:20:26.589Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0079.uexp	2024-08-02T07:20:26.590Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0080.uasset	2024-08-02T07:20:22.828Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0080.uexp	2024-08-02T07:20:22.829Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0081.uasset	2024-08-02T07:20:21.092Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0081.uexp	2024-08-02T07:20:21.093Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0082.uasset	2024-08-02T07:20:22.686Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0082.uexp	2024-08-02T07:20:22.688Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0083.uasset	2024-08-02T07:20:21.077Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0083.uexp	2024-08-02T07:20:21.079Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0084.uasset	2024-08-02T07:20:26.466Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0084.uexp	2024-08-02T07:20:26.468Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0085.uasset	2024-08-02T07:20:26.159Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0085.uexp	2024-08-02T07:20:26.161Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0086.uasset	2024-08-02T07:20:21.746Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0086.uexp	2024-08-02T07:20:21.747Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0087.uasset	2024-08-02T07:20:22.184Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0087.uexp	2024-08-02T07:20:22.185Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0088.uasset	2024-08-02T07:20:20.304Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0088.uexp	2024-08-02T07:20:20.305Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0089.uasset	2024-08-02T07:20:21.205Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0089.uexp	2024-08-02T07:20:21.206Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0090.uasset	2024-08-02T07:20:22.265Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0090.uexp	2024-08-02T07:20:22.267Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0091.uasset	2024-08-02T07:20:20.424Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0091.uexp	2024-08-02T07:20:20.426Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0092.uasset	2024-08-02T07:20:23.369Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0092.uexp	2024-08-02T07:20:23.370Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0093.uasset	2024-08-02T07:20:22.920Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0093.uexp	2024-08-02T07:20:22.921Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0094.uasset	2024-08-02T07:20:23.930Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0094.uexp	2024-08-02T07:20:23.931Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0095.uasset	2024-08-02T07:20:22.059Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0095.uexp	2024-08-02T07:20:22.060Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0096.uasset	2024-08-02T07:20:25.945Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0096.uexp	2024-08-02T07:20:25.947Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0097.uasset	2024-08-02T07:20:26.716Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0097.uexp	2024-08-02T07:20:26.717Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0098.uasset	2024-08-02T07:20:23.567Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0098.uexp	2024-08-02T07:20:23.569Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0099.uasset	2024-08-02T07:20:23.308Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0099.uexp	2024-08-02T07:20:23.309Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0100.uasset	2024-08-02T07:20:22.459Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0100.uexp	2024-08-02T07:20:22.460Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0101.uasset	2024-08-02T07:20:21.091Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0101.uexp	2024-08-02T07:20:21.092Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0102.uasset	2024-08-02T07:20:22.286Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0102.uexp	2024-08-02T07:20:22.288Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0103.uasset	2024-08-02T07:20:21.308Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0103.uexp	2024-08-02T07:20:21.310Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0104.uasset	2024-08-02T07:20:24.294Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0104.uexp	2024-08-02T07:20:24.296Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0105.uasset	2024-08-02T07:20:23.057Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0105.uexp	2024-08-02T07:20:23.058Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0106.uasset	2024-08-02T07:20:20.879Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0106.uexp	2024-08-02T07:20:20.880Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0107.uasset	2024-08-02T07:20:25.252Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0107.uexp	2024-08-02T07:20:25.253Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0108.uasset	2024-08-02T07:20:23.315Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0108.uexp	2024-08-02T07:20:23.316Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0109.uasset	2024-08-02T07:20:21.235Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0109.uexp	2024-08-02T07:20:21.237Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0110.uasset	2024-08-02T07:20:23.044Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0110.uexp	2024-08-02T07:20:23.045Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0111.uasset	2024-08-02T07:20:24.293Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0111.uexp	2024-08-02T07:20:24.294Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0112.uasset	2024-08-02T07:20:26.793Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0112.uexp	2024-08-02T07:20:26.796Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0113.uasset	2024-08-02T07:20:21.617Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0113.uexp	2024-08-02T07:20:21.618Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0114.uasset	2024-08-02T07:20:20.875Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0114.uexp	2024-08-02T07:20:20.876Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0115.uasset	2024-08-02T07:20:21.626Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0115.uexp	2024-08-02T07:20:21.627Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0116.uasset	2024-08-02T07:20:24.312Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0116.uexp	2024-08-02T07:20:24.314Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0117.uasset	2024-08-02T07:20:21.848Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0117.uexp	2024-08-02T07:20:21.849Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0118.uasset	2024-08-02T07:20:22.936Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0118.uexp	2024-08-02T07:20:22.938Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0119.uasset	2024-08-02T07:20:21.404Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0119.uexp	2024-08-02T07:20:21.413Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0120.uasset	2024-08-02T07:20:26.813Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0120.uexp	2024-08-02T07:20:26.815Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0121.uasset	2024-08-02T07:20:21.822Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0121.uexp	2024-08-02T07:20:21.823Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0122.uasset	2024-08-02T07:20:22.364Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0122.uexp	2024-08-02T07:20:22.365Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0123.uasset	2024-08-02T07:20:26.282Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0123.uexp	2024-08-02T07:20:26.283Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0124.uasset	2024-08-02T07:20:26.490Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0124.uexp	2024-08-02T07:20:26.491Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0125.uasset	2024-08-02T07:20:25.868Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0125.uexp	2024-08-02T07:20:25.870Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0126.uasset	2024-08-02T07:20:20.870Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0126.uexp	2024-08-02T07:20:20.872Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0127.uasset	2024-08-02T07:20:24.487Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0127.uexp	2024-08-02T07:20:24.488Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0128.uasset	2024-08-02T07:20:23.817Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0128.uexp	2024-08-02T07:20:23.818Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0129.uasset	2024-08-02T07:20:22.809Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0129.uexp	2024-08-02T07:20:22.810Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0130.uasset	2024-08-02T07:20:24.504Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0130.uexp	2024-08-02T07:20:24.506Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0131.uasset	2024-08-02T07:20:24.151Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0131.uexp	2024-08-02T07:20:24.152Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0132.uasset	2024-08-02T07:20:20.422Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0132.uexp	2024-08-02T07:20:20.424Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0133.uasset	2024-08-02T07:20:22.616Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0133.uexp	2024-08-02T07:20:22.617Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0134.uasset	2024-08-02T07:20:23.142Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0134.uexp	2024-08-02T07:20:23.143Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0135.uasset	2024-08-02T07:20:21.835Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0135.uexp	2024-08-02T07:20:21.836Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0136.uasset	2024-08-02T07:20:26.818Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0136.uexp	2024-08-02T07:20:26.819Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0137.uasset	2024-08-02T07:20:24.932Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0137.uexp	2024-08-02T07:20:24.933Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0138.uasset	2024-08-02T07:20:26.608Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0138.uexp	2024-08-02T07:20:26.609Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0139.uasset	2024-08-02T07:20:20.856Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0139.uexp	2024-08-02T07:20:20.857Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0140.uasset	2024-08-02T07:20:21.950Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0140.uexp	2024-08-02T07:20:21.951Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0141.uasset	2024-08-02T07:20:23.678Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0141.uexp	2024-08-02T07:20:23.679Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0142.uasset	2024-08-02T07:20:23.133Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0142.uexp	2024-08-02T07:20:23.134Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0143.uasset	2024-08-02T07:20:23.573Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0143.uexp	2024-08-02T07:20:23.575Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0144.uasset	2024-08-02T07:20:21.323Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0144.uexp	2024-08-02T07:20:21.324Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0145.uasset	2024-08-02T07:20:23.144Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0145.uexp	2024-08-02T07:20:23.145Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0146.uasset	2024-08-02T07:20:24.877Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0146.uexp	2024-08-02T07:20:24.879Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0147.uasset	2024-08-02T07:20:20.977Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0147.uexp	2024-08-02T07:20:20.978Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0148.uasset	2024-08-02T07:20:24.931Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0148.uexp	2024-08-02T07:20:24.932Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0149.uasset	2024-08-02T07:20:24.746Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0149.uexp	2024-08-02T07:20:24.747Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0150.uasset	2024-08-02T07:20:24.618Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0150.uexp	2024-08-02T07:20:24.619Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0151.uasset	2024-08-02T07:20:26.584Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0151.uexp	2024-08-02T07:20:26.586Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0152.uasset	2024-08-02T07:20:21.293Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0152.uexp	2024-08-02T07:20:21.296Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0153.uasset	2024-08-02T07:20:25.182Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0153.uexp	2024-08-02T07:20:25.183Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0154.uasset	2024-08-02T07:20:20.191Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0154.uexp	2024-08-02T07:20:20.193Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0155.uasset	2024-08-02T07:20:21.105Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0155.uexp	2024-08-02T07:20:21.106Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0156.uasset	2024-08-02T07:20:21.960Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0156.uexp	2024-08-02T07:20:21.962Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0157.uasset	2024-08-02T07:20:24.968Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0157.uexp	2024-08-02T07:20:24.969Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0158.uasset	2024-08-02T07:20:21.229Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0158.uexp	2024-08-02T07:20:21.230Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0159.uasset	2024-08-02T07:20:23.705Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0159.uexp	2024-08-02T07:20:23.706Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0160.uasset	2024-08-02T07:20:26.479Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0160.uexp	2024-08-02T07:20:26.481Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0161.uasset	2024-08-02T07:20:20.447Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0161.uexp	2024-08-02T07:20:20.448Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0162.uasset	2024-08-02T07:20:22.927Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0162.uexp	2024-08-02T07:20:22.928Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0163.uasset	2024-08-02T07:20:23.926Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0163.uexp	2024-08-02T07:20:23.929Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0164.uasset	2024-08-02T07:20:20.334Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0164.uexp	2024-08-02T07:20:20.335Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0165.uasset	2024-08-02T07:20:20.765Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0165.uexp	2024-08-02T07:20:20.767Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0166.uasset	2024-08-02T07:20:26.065Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0166.uexp	2024-08-02T07:20:26.067Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0167.uasset	2024-08-02T07:20:20.975Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0167.uexp	2024-08-02T07:20:20.977Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0168.uasset	2024-08-02T07:20:23.028Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0168.uexp	2024-08-02T07:20:23.030Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0169.uasset	2024-08-02T07:20:21.642Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0169.uexp	2024-08-02T07:20:21.643Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0170.uasset	2024-08-02T07:20:24.531Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0170.uexp	2024-08-02T07:20:24.532Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0171.uasset	2024-08-02T07:20:26.181Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0171.uexp	2024-08-02T07:20:26.183Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0172.uasset	2024-08-02T07:20:25.628Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0172.uexp	2024-08-02T07:20:25.629Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0173.uasset	2024-08-02T07:20:24.872Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0173.uexp	2024-08-02T07:20:24.874Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0174.uasset	2024-08-02T07:20:20.330Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0174.uexp	2024-08-02T07:20:20.331Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0175.uasset	2024-08-02T07:20:25.261Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0175.uexp	2024-08-02T07:20:25.262Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0176.uasset	2024-08-02T07:20:23.804Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0176.uexp	2024-08-02T07:20:23.805Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0177.uasset	2024-08-02T07:20:25.613Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0177.uexp	2024-08-02T07:20:25.614Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0178.uasset	2024-08-02T07:20:20.322Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0178.uexp	2024-08-02T07:20:20.323Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0179.uasset	2024-08-02T07:20:26.293Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0179.uexp	2024-08-02T07:20:26.294Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0180.uasset	2024-08-02T07:20:22.146Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0180.uexp	2024-08-02T07:20:22.149Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0181.uasset	2024-08-02T07:20:22.144Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0181.uexp	2024-08-02T07:20:22.146Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0182.uasset	2024-08-02T07:20:25.956Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0182.uexp	2024-08-02T07:20:25.958Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0183.uasset	2024-08-02T07:20:24.645Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0183.uexp	2024-08-02T07:20:24.646Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0184.uasset	2024-08-02T07:20:22.165Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0184.uexp	2024-08-02T07:20:22.166Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0185.uasset	2024-08-02T07:20:20.186Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0185.uexp	2024-08-02T07:20:20.188Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0186.uasset	2024-08-02T07:20:26.595Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0186.uexp	2024-08-02T07:20:26.596Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0187.uasset	2024-08-02T07:20:26.081Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0187.uexp	2024-08-02T07:20:26.083Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0188.uasset	2024-08-02T07:20:23.154Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0188.uexp	2024-08-02T07:20:23.156Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0189.uasset	2024-08-02T07:20:25.273Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0189.uexp	2024-08-02T07:20:25.275Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0190.uasset	2024-08-02T07:20:22.568Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0190.uexp	2024-08-02T07:20:22.569Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0191.uasset	2024-08-02T07:20:24.895Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0191.uexp	2024-08-02T07:20:24.896Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0192.uasset	2024-08-02T07:20:25.060Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0192.uexp	2024-08-02T07:20:25.061Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0193.uasset	2024-08-02T07:20:26.788Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0193.uexp	2024-08-02T07:20:26.790Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0194.uasset	2024-08-02T07:20:26.569Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0194.uexp	2024-08-02T07:20:26.571Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0195.uasset	2024-08-02T07:20:24.285Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0195.uexp	2024-08-02T07:20:24.286Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0196.uasset	2024-08-02T07:20:21.403Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0196.uexp	2024-08-02T07:20:21.410Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0197.uasset	2024-08-02T07:20:25.963Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0197.uexp	2024-08-02T07:20:25.965Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0198.uasset	2024-08-02T07:20:25.045Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0198.uexp	2024-08-02T07:20:25.046Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0199.uasset	2024-08-02T07:20:26.041Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0199.uexp	2024-08-02T07:20:26.042Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0200.uasset	2024-08-02T07:20:20.773Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0200.uexp	2024-08-02T07:20:20.774Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0201.uasset	2024-08-02T07:20:25.749Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0201.uexp	2024-08-02T07:20:25.750Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0202.uasset	2024-08-02T07:20:24.629Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0202.uexp	2024-08-02T07:20:24.630Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0203.uasset	2024-08-02T07:20:23.523Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0203.uexp	2024-08-02T07:20:23.524Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0204.uasset	2024-08-02T07:20:26.288Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0204.uexp	2024-08-02T07:20:26.290Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0205.uasset	2024-08-02T07:20:20.321Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0205.uexp	2024-08-02T07:20:20.322Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0206.uasset	2024-08-02T07:20:24.154Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0206.uexp	2024-08-02T07:20:24.155Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0207.uasset	2024-08-02T07:20:21.839Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0207.uexp	2024-08-02T07:20:21.840Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0208.uasset	2024-08-02T07:20:22.929Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0208.uexp	2024-08-02T07:20:22.931Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0209.uasset	2024-08-02T07:20:21.433Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0209.uexp	2024-08-02T07:20:21.434Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0210.uasset	2024-08-02T07:20:21.833Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0210.uexp	2024-08-02T07:20:21.835Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0211.uasset	2024-08-02T07:20:21.234Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0211.uexp	2024-08-02T07:20:21.235Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0212.uasset	2024-08-02T07:20:22.356Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0212.uexp	2024-08-02T07:20:22.358Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0213.uasset	2024-08-02T07:20:20.206Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0213.uexp	2024-08-02T07:20:20.208Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0214.uasset	2024-08-02T07:20:25.834Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0214.uexp	2024-08-02T07:20:25.836Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0215.uasset	2024-08-02T07:20:23.502Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0215.uexp	2024-08-02T07:20:23.504Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0216.uasset	2024-08-02T07:20:21.328Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0216.uexp	2024-08-02T07:20:21.329Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0217.uasset	2024-08-02T07:20:22.598Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0217.uexp	2024-08-02T07:20:22.600Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0218.uasset	2024-08-02T07:20:25.627Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0218.uexp	2024-08-02T07:20:25.628Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0219.uasset	2024-08-02T07:20:21.954Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0219.uexp	2024-08-02T07:20:21.956Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0220.uasset	2024-08-02T07:20:21.098Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0220.uexp	2024-08-02T07:20:21.099Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0221.uasset	2024-08-02T07:20:24.611Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0221.uexp	2024-08-02T07:20:24.613Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0222.uasset	2024-08-02T07:20:26.048Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0222.uexp	2024-08-02T07:20:26.051Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0223.uasset	2024-08-02T07:20:26.939Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0223.uexp	2024-08-02T07:20:26.940Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0224.uasset	2024-08-02T07:20:23.921Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0224.uexp	2024-08-02T07:20:23.922Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0225.uasset	2024-08-02T07:20:20.343Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0225.uexp	2024-08-02T07:20:20.344Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0226.uasset	2024-08-02T07:20:26.311Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0226.uexp	2024-08-02T07:20:26.313Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0227.uasset	2024-08-02T07:20:23.038Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0227.uexp	2024-08-02T07:20:23.040Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0228.uasset	2024-08-02T07:20:22.575Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0228.uexp	2024-08-02T07:20:22.576Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0229.uasset	2024-08-02T07:20:23.151Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0229.uexp	2024-08-02T07:20:23.152Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0230.uasset	2024-08-02T07:20:26.803Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0230.uexp	2024-08-02T07:20:26.805Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0231.uasset	2024-08-02T07:20:23.690Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0231.uexp	2024-08-02T07:20:23.690Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0232.uasset	2024-08-02T07:20:25.521Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0232.uexp	2024-08-02T07:20:25.522Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0233.uasset	2024-08-02T07:20:21.113Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0233.uexp	2024-08-02T07:20:21.114Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0234.uasset	2024-08-02T07:20:26.505Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0234.uexp	2024-08-02T07:20:26.506Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0235.uasset	2024-08-02T07:20:25.539Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0235.uexp	2024-08-02T07:20:25.540Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0236.uasset	2024-08-02T07:20:22.178Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0236.uexp	2024-08-02T07:20:22.179Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0237.uasset	2024-08-02T07:20:25.616Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0237.uexp	2024-08-02T07:20:25.617Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0238.uasset	2024-08-02T07:20:24.880Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0238.uexp	2024-08-02T07:20:24.882Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0239.uasset	2024-08-02T07:20:20.535Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0239.uexp	2024-08-02T07:20:20.536Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0240.uasset	2024-08-02T07:20:21.310Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0240.uexp	2024-08-02T07:20:21.312Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0241.uasset	2024-08-02T07:20:25.520Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0241.uexp	2024-08-02T07:20:25.521Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0242.uasset	2024-08-02T07:20:26.389Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0242.uexp	2024-08-02T07:20:26.390Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0243.uasset	2024-08-02T07:20:25.737Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0243.uexp	2024-08-02T07:20:25.738Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0244.uasset	2024-08-02T07:20:23.301Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0244.uexp	2024-08-02T07:20:23.302Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0245.uasset	2024-08-02T07:20:24.167Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0245.uexp	2024-08-02T07:20:24.168Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0246.uasset	2024-08-02T07:20:25.255Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0246.uexp	2024-08-02T07:20:25.257Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0247.uasset	2024-08-02T07:20:25.864Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0247.uexp	2024-08-02T07:20:25.865Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0248.uasset	2024-08-02T07:20:24.044Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0248.uexp	2024-08-02T07:20:24.046Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0249.uasset	2024-08-02T07:20:24.278Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0249.uexp	2024-08-02T07:20:24.279Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0250.uasset	2024-08-02T07:20:24.157Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0250.uexp	2024-08-02T07:20:24.158Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0251.uasset	2024-08-02T07:20:23.469Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0251.uexp	2024-08-02T07:20:23.470Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0252.uasset	2024-08-02T07:20:20.999Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0252.uexp	2024-08-02T07:20:21.000Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0253.uasset	2024-08-02T07:20:22.386Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0253.uexp	2024-08-02T07:20:22.387Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0254.uasset	2024-08-02T07:20:23.492Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0254.uexp	2024-08-02T07:20:23.493Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0255.uasset	2024-08-02T07:20:24.744Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0000_0255.uexp	2024-08-02T07:20:24.745Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0000.uasset	2024-08-02T07:20:25.761Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0000.uexp	2024-08-02T07:20:25.763Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0001.uasset	2024-08-02T07:20:26.071Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0001.uexp	2024-08-02T07:20:26.074Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0002.uasset	2024-08-02T07:20:21.081Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0002.uexp	2024-08-02T07:20:21.082Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0003.uasset	2024-08-02T07:20:25.074Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0003.uexp	2024-08-02T07:20:25.075Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0004.uasset	2024-08-02T07:20:21.614Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0004.uexp	2024-08-02T07:20:21.615Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0005.uasset	2024-08-02T07:20:21.427Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0005.uexp	2024-08-02T07:20:21.428Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0006.uasset	2024-08-02T07:20:26.088Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0006.uexp	2024-08-02T07:20:26.089Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0007.uasset	2024-08-02T07:20:20.354Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0007.uexp	2024-08-02T07:20:20.356Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0008.uasset	2024-08-02T07:20:23.952Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0008.uexp	2024-08-02T07:20:23.953Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0009.uasset	2024-08-02T07:20:20.966Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0009.uexp	2024-08-02T07:20:20.967Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0010.uasset	2024-08-02T07:20:23.131Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0010.uexp	2024-08-02T07:20:23.132Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0011.uasset	2024-08-02T07:20:21.509Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0011.uexp	2024-08-02T07:20:21.510Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0012.uasset	2024-08-02T07:20:23.504Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0012.uexp	2024-08-02T07:20:23.505Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0013.uasset	2024-08-02T07:20:24.730Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0013.uexp	2024-08-02T07:20:24.731Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0014.uasset	2024-08-02T07:20:24.500Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0014.uexp	2024-08-02T07:20:24.501Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0015.uasset	2024-08-02T07:20:26.935Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0015.uexp	2024-08-02T07:20:26.936Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0016.uasset	2024-08-02T07:20:24.625Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0016.uexp	2024-08-02T07:20:24.627Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0017.uasset	2024-08-02T07:20:21.506Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0017.uexp	2024-08-02T07:20:21.507Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0018.uasset	2024-08-02T07:20:22.593Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0018.uexp	2024-08-02T07:20:22.595Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0019.uasset	2024-08-02T07:20:22.154Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0019.uexp	2024-08-02T07:20:22.156Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0020.uasset	2024-08-02T07:20:26.811Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0020.uexp	2024-08-02T07:20:26.813Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0021.uasset	2024-08-02T07:20:22.607Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0021.uexp	2024-08-02T07:20:22.608Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0022.uasset	2024-08-02T07:20:20.183Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0022.uexp	2024-08-02T07:20:20.185Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0023.uasset	2024-08-02T07:20:25.961Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0023.uexp	2024-08-02T07:20:25.963Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0024.uasset	2024-08-02T07:20:26.486Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0024.uexp	2024-08-02T07:20:26.488Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0025.uasset	2024-08-02T07:20:22.708Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0025.uexp	2024-08-02T07:20:22.710Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0026.uasset	2024-08-02T07:20:23.949Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0026.uexp	2024-08-02T07:20:23.950Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0027.uasset	2024-08-02T07:20:25.651Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0027.uexp	2024-08-02T07:20:25.652Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0028.uasset	2024-08-02T07:20:23.246Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0028.uexp	2024-08-02T07:20:23.248Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0029.uasset	2024-08-02T07:20:22.163Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0029.uexp	2024-08-02T07:20:22.165Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0030.uasset	2024-08-02T07:20:22.373Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0030.uexp	2024-08-02T07:20:22.374Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0031.uasset	2024-08-02T07:20:22.362Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0031.uexp	2024-08-02T07:20:22.363Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0032.uasset	2024-08-02T07:20:25.872Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0032.uexp	2024-08-02T07:20:25.873Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0033.uasset	2024-08-02T07:20:23.734Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0033.uexp	2024-08-02T07:20:23.735Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0034.uasset	2024-08-02T07:20:23.031Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0034.uexp	2024-08-02T07:20:23.033Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0035.uasset	2024-08-02T07:20:20.869Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0035.uexp	2024-08-02T07:20:20.870Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0036.uasset	2024-08-02T07:20:26.604Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0036.uexp	2024-08-02T07:20:26.606Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0037.uasset	2024-08-02T07:20:21.213Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0037.uexp	2024-08-02T07:20:21.214Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0038.uasset	2024-08-02T07:20:22.841Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0038.uexp	2024-08-02T07:20:22.842Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0039.uasset	2024-08-02T07:20:26.314Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0039.uexp	2024-08-02T07:20:26.315Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0040.uasset	2024-08-02T07:20:22.591Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0040.uexp	2024-08-02T07:20:22.592Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0041.uasset	2024-08-02T07:20:20.311Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0041.uexp	2024-08-02T07:20:20.313Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0042.uasset	2024-08-02T07:20:23.713Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0042.uexp	2024-08-02T07:20:23.714Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0043.uasset	2024-08-02T07:20:23.842Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0043.uexp	2024-08-02T07:20:23.844Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0044.uasset	2024-08-02T07:20:22.921Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0044.uexp	2024-08-02T07:20:22.922Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0045.uasset	2024-08-02T07:20:25.633Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0045.uexp	2024-08-02T07:20:25.635Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0046.uasset	2024-08-02T07:20:23.362Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0046.uexp	2024-08-02T07:20:23.364Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0047.uasset	2024-08-02T07:20:23.474Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0047.uexp	2024-08-02T07:20:23.476Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0048.uasset	2024-08-02T07:20:21.539Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0048.uexp	2024-08-02T07:20:21.540Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0049.uasset	2024-08-02T07:20:24.144Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0049.uexp	2024-08-02T07:20:24.145Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0050.uasset	2024-08-02T07:20:26.480Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0050.uexp	2024-08-02T07:20:26.481Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0051.uasset	2024-08-02T07:20:20.673Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0051.uexp	2024-08-02T07:20:20.674Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0052.uasset	2024-08-02T07:20:20.425Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0052.uexp	2024-08-02T07:20:20.427Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0053.uasset	2024-08-02T07:20:21.714Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0053.uexp	2024-08-02T07:20:21.715Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0054.uasset	2024-08-02T07:20:23.477Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0054.uexp	2024-08-02T07:20:23.479Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0055.uasset	2024-08-02T07:20:25.144Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0055.uexp	2024-08-02T07:20:25.146Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0056.uasset	2024-08-02T07:20:23.137Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0056.uexp	2024-08-02T07:20:23.138Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0057.uasset	2024-08-02T07:20:26.588Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0057.uexp	2024-08-02T07:20:26.590Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0058.uasset	2024-08-02T07:20:22.696Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0058.uexp	2024-08-02T07:20:22.698Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0059.uasset	2024-08-02T07:20:21.089Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0059.uexp	2024-08-02T07:20:21.091Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0060.uasset	2024-08-02T07:20:21.942Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0060.uexp	2024-08-02T07:20:21.943Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0061.uasset	2024-08-02T07:20:24.166Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0061.uexp	2024-08-02T07:20:24.167Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0062.uasset	2024-08-02T07:20:22.834Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0062.uexp	2024-08-02T07:20:22.835Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0063.uasset	2024-08-02T07:20:21.432Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0063.uexp	2024-08-02T07:20:21.433Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0064.uasset	2024-08-02T07:20:22.284Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0064.uexp	2024-08-02T07:20:22.285Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0065.uasset	2024-08-02T07:20:24.620Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0065.uexp	2024-08-02T07:20:24.621Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0066.uasset	2024-08-02T07:20:24.758Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0066.uexp	2024-08-02T07:20:24.759Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0067.uasset	2024-08-02T07:20:24.031Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0067.uexp	2024-08-02T07:20:24.033Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0068.uasset	2024-08-02T07:20:20.318Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0068.uexp	2024-08-02T07:20:20.319Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0069.uasset	2024-08-02T07:20:24.374Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0069.uexp	2024-08-02T07:20:24.375Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0070.uasset	2024-08-02T07:20:21.516Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0070.uexp	2024-08-02T07:20:21.517Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0071.uasset	2024-08-02T07:20:26.299Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0071.uexp	2024-08-02T07:20:26.300Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0072.uasset	2024-08-02T07:20:26.503Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0072.uexp	2024-08-02T07:20:26.504Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0073.uasset	2024-08-02T07:20:23.472Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0073.uexp	2024-08-02T07:20:23.474Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0074.uasset	2024-08-02T07:20:21.322Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0074.uexp	2024-08-02T07:20:21.323Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0075.uasset	2024-08-02T07:20:24.298Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0075.uexp	2024-08-02T07:20:24.299Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0076.uasset	2024-08-02T07:20:21.835Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0076.uexp	2024-08-02T07:20:21.837Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0077.uasset	2024-08-02T07:20:21.941Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0077.uexp	2024-08-02T07:20:21.942Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0078.uasset	2024-08-02T07:20:23.711Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0078.uexp	2024-08-02T07:20:23.712Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0079.uasset	2024-08-02T07:20:24.965Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0079.uexp	2024-08-02T07:20:24.967Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0080.uasset	2024-08-02T07:20:25.150Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0080.uexp	2024-08-02T07:20:25.151Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0081.uasset	2024-08-02T07:20:23.574Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0081.uexp	2024-08-02T07:20:23.575Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0082.uasset	2024-08-02T07:20:22.615Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0082.uexp	2024-08-02T07:20:22.616Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0083.uasset	2024-08-02T07:20:25.730Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0083.uexp	2024-08-02T07:20:25.732Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0084.uasset	2024-08-02T07:20:22.360Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0084.uexp	2024-08-02T07:20:22.361Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0085.uasset	2024-08-02T07:20:23.365Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0085.uexp	2024-08-02T07:20:23.366Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0086.uasset	2024-08-02T07:20:24.638Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0086.uexp	2024-08-02T07:20:24.640Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0087.uasset	2024-08-02T07:20:22.048Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0087.uexp	2024-08-02T07:20:22.050Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0088.uasset	2024-08-02T07:20:24.634Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0088.uexp	2024-08-02T07:20:24.635Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0089.uasset	2024-08-02T07:20:20.546Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0089.uexp	2024-08-02T07:20:20.547Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0090.uasset	2024-08-02T07:20:24.858Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0090.uexp	2024-08-02T07:20:24.861Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0091.uasset	2024-08-02T07:20:20.567Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0091.uexp	2024-08-02T07:20:20.568Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0092.uasset	2024-08-02T07:20:23.296Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0092.uexp	2024-08-02T07:20:23.297Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0093.uasset	2024-08-02T07:20:22.040Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0093.uexp	2024-08-02T07:20:22.042Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0094.uasset	2024-08-02T07:20:24.036Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0094.uexp	2024-08-02T07:20:24.037Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0095.uasset	2024-08-02T07:20:23.706Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0095.uexp	2024-08-02T07:20:23.707Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0096.uasset	2024-08-02T07:20:21.943Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0096.uexp	2024-08-02T07:20:21.944Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0097.uasset	2024-08-02T07:20:23.501Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0097.uexp	2024-08-02T07:20:23.502Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0098.uasset	2024-08-02T07:20:26.484Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0098.uexp	2024-08-02T07:20:26.485Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0099.uasset	2024-08-02T07:20:24.973Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0099.uexp	2024-08-02T07:20:24.974Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0100.uasset	2024-08-02T07:20:20.980Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0100.uexp	2024-08-02T07:20:20.981Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0101.uasset	2024-08-02T07:20:23.258Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0101.uexp	2024-08-02T07:20:23.260Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0102.uasset	2024-08-02T07:20:23.511Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0102.uexp	2024-08-02T07:20:23.512Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0103.uasset	2024-08-02T07:20:24.282Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0103.uexp	2024-08-02T07:20:24.284Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0104.uasset	2024-08-02T07:20:23.733Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0104.uexp	2024-08-02T07:20:23.734Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0105.uasset	2024-08-02T07:20:25.388Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0105.uexp	2024-08-02T07:20:25.390Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0106.uasset	2024-08-02T07:20:20.756Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0106.uexp	2024-08-02T07:20:20.758Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0107.uasset	2024-08-02T07:20:20.309Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0107.uexp	2024-08-02T07:20:20.311Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0108.uasset	2024-08-02T07:20:21.857Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0108.uexp	2024-08-02T07:20:21.858Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0109.uasset	2024-08-02T07:20:23.715Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0109.uexp	2024-08-02T07:20:23.717Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0110.uasset	2024-08-02T07:20:23.143Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0110.uexp	2024-08-02T07:20:23.145Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0111.uasset	2024-08-02T07:20:26.943Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0111.uexp	2024-08-02T07:20:26.944Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0112.uasset	2024-08-02T07:20:23.520Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0112.uexp	2024-08-02T07:20:23.521Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0113.uasset	2024-08-02T07:20:21.207Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0113.uexp	2024-08-02T07:20:21.209Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0114.uasset	2024-08-02T07:20:22.169Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0114.uexp	2024-08-02T07:20:22.171Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0115.uasset	2024-08-02T07:20:20.347Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0115.uexp	2024-08-02T07:20:20.349Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0116.uasset	2024-08-02T07:20:22.612Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0116.uexp	2024-08-02T07:20:22.614Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0117.uasset	2024-08-02T07:20:21.507Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0117.uexp	2024-08-02T07:20:21.508Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0118.uasset	2024-08-02T07:20:23.253Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0118.uexp	2024-08-02T07:20:23.255Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0119.uasset	2024-08-02T07:20:21.112Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0119.uexp	2024-08-02T07:20:21.113Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0120.uasset	2024-08-02T07:20:24.518Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0120.uexp	2024-08-02T07:20:24.519Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0121.uasset	2024-08-02T07:20:21.434Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0121.uexp	2024-08-02T07:20:21.435Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0122.uasset	2024-08-02T07:20:25.387Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0122.uexp	2024-08-02T07:20:25.388Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0123.uasset	2024-08-02T07:20:23.122Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0123.uexp	2024-08-02T07:20:23.124Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0124.uasset	2024-08-02T07:20:25.254Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0124.uexp	2024-08-02T07:20:25.255Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0125.uasset	2024-08-02T07:20:26.291Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0125.uexp	2024-08-02T07:20:26.293Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0126.uasset	2024-08-02T07:20:24.627Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0126.uexp	2024-08-02T07:20:24.629Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0127.uasset	2024-08-02T07:20:26.398Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0127.uexp	2024-08-02T07:20:26.400Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0128.uasset	2024-08-02T07:20:24.539Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0128.uexp	2024-08-02T07:20:24.541Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0129.uasset	2024-08-02T07:20:23.267Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0129.uexp	2024-08-02T07:20:23.269Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0130.uasset	2024-08-02T07:20:24.494Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0130.uexp	2024-08-02T07:20:24.496Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0131.uasset	2024-08-02T07:20:25.722Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0131.uexp	2024-08-02T07:20:25.724Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0132.uasset	2024-08-02T07:20:24.632Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0132.uexp	2024-08-02T07:20:24.633Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0133.uasset	2024-08-02T07:20:25.282Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0133.uexp	2024-08-02T07:20:25.283Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0134.uasset	2024-08-02T07:20:23.963Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0134.uexp	2024-08-02T07:20:23.964Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0135.uasset	2024-08-02T07:20:26.823Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0135.uexp	2024-08-02T07:20:26.825Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0136.uasset	2024-08-02T07:20:21.716Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0136.uexp	2024-08-02T07:20:21.717Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0137.uasset	2024-08-02T07:20:26.798Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0137.uexp	2024-08-02T07:20:26.800Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0138.uasset	2024-08-02T07:20:25.653Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0138.uexp	2024-08-02T07:20:25.654Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0139.uasset	2024-08-02T07:20:23.463Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0139.uexp	2024-08-02T07:20:23.464Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0140.uasset	2024-08-02T07:20:24.879Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0140.uexp	2024-08-02T07:20:24.880Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0141.uasset	2024-08-02T07:20:26.287Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0141.uexp	2024-08-02T07:20:26.289Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0142.uasset	2024-08-02T07:20:26.393Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0142.uexp	2024-08-02T07:20:26.394Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0143.uasset	2024-08-02T07:20:23.811Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0143.uexp	2024-08-02T07:20:23.813Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0144.uasset	2024-08-02T07:20:23.856Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0144.uexp	2024-08-02T07:20:23.857Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0145.uasset	2024-08-02T07:20:23.135Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0145.uexp	2024-08-02T07:20:23.136Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0146.uasset	2024-08-02T07:20:20.986Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0146.uexp	2024-08-02T07:20:20.987Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0147.uasset	2024-08-02T07:20:23.815Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0147.uexp	2024-08-02T07:20:23.816Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0148.uasset	2024-08-02T07:20:25.867Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0148.uexp	2024-08-02T07:20:25.869Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0149.uasset	2024-08-02T07:20:25.724Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0149.uexp	2024-08-02T07:20:25.725Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0150.uasset	2024-08-02T07:20:25.392Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0150.uexp	2024-08-02T07:20:25.393Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0151.uasset	2024-08-02T07:20:25.944Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0151.uexp	2024-08-02T07:20:25.947Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0152.uasset	2024-08-02T07:20:21.532Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0152.uexp	2024-08-02T07:20:21.533Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0153.uasset	2024-08-02T07:20:20.566Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0153.uexp	2024-08-02T07:20:20.567Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0154.uasset	2024-08-02T07:20:21.738Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0154.uexp	2024-08-02T07:20:21.740Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0155.uasset	2024-08-02T07:20:21.953Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0155.uexp	2024-08-02T07:20:21.954Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0156.uasset	2024-08-02T07:20:26.937Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0156.uexp	2024-08-02T07:20:26.939Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0157.uasset	2024-08-02T07:20:26.080Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0157.uexp	2024-08-02T07:20:26.082Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0158.uasset	2024-08-02T07:20:21.095Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0158.uexp	2024-08-02T07:20:21.096Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0159.uasset	2024-08-02T07:20:22.455Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0159.uexp	2024-08-02T07:20:22.458Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0160.uasset	2024-08-02T07:20:25.960Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0160.uexp	2024-08-02T07:20:25.961Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0161.uasset	2024-08-02T07:20:24.544Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0161.uexp	2024-08-02T07:20:24.545Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0162.uasset	2024-08-02T07:20:22.902Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0162.uexp	2024-08-02T07:20:22.904Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0163.uasset	2024-08-02T07:20:26.300Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0163.uexp	2024-08-02T07:20:26.302Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0164.uasset	2024-08-02T07:20:25.409Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0164.uexp	2024-08-02T07:20:25.410Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0165.uasset	2024-08-02T07:20:22.826Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0165.uexp	2024-08-02T07:20:22.828Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0166.uasset	2024-08-02T07:20:21.745Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0166.uexp	2024-08-02T07:20:21.747Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0167.uasset	2024-08-02T07:20:20.886Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0167.uexp	2024-08-02T07:20:20.888Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0168.uasset	2024-08-02T07:20:21.624Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0168.uexp	2024-08-02T07:20:21.625Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0169.uasset	2024-08-02T07:20:24.893Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0169.uexp	2024-08-02T07:20:24.895Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0170.uasset	2024-08-02T07:20:25.424Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0170.uexp	2024-08-02T07:20:25.426Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0171.uasset	2024-08-02T07:20:25.936Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0171.uexp	2024-08-02T07:20:25.938Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0172.uasset	2024-08-02T07:20:24.951Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0172.uexp	2024-08-02T07:20:24.954Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0173.uasset	2024-08-02T07:20:22.825Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0173.uexp	2024-08-02T07:20:22.826Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0174.uasset	2024-08-02T07:20:24.519Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0174.uexp	2024-08-02T07:20:24.520Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0175.uasset	2024-08-02T07:20:20.563Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0175.uexp	2024-08-02T07:20:20.564Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0176.uasset	2024-08-02T07:20:26.816Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0176.uexp	2024-08-02T07:20:26.818Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0177.uasset	2024-08-02T07:20:23.053Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0177.uexp	2024-08-02T07:20:23.055Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0178.uasset	2024-08-02T07:20:23.510Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0178.uexp	2024-08-02T07:20:23.511Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0179.uasset	2024-08-02T07:20:21.865Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0179.uexp	2024-08-02T07:20:21.867Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0180.uasset	2024-08-02T07:20:23.313Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0180.uexp	2024-08-02T07:20:23.315Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0181.uasset	2024-08-02T07:20:21.429Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0181.uexp	2024-08-02T07:20:21.430Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0182.uasset	2024-08-02T07:20:21.537Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0182.uexp	2024-08-02T07:20:21.539Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0183.uasset	2024-08-02T07:20:25.545Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0183.uexp	2024-08-02T07:20:25.546Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0184.uasset	2024-08-02T07:20:24.857Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0184.uexp	2024-08-02T07:20:24.858Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0185.uasset	2024-08-02T07:20:25.148Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0185.uexp	2024-08-02T07:20:25.150Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0186.uasset	2024-08-02T07:20:20.204Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0186.uexp	2024-08-02T07:20:20.205Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0187.uasset	2024-08-02T07:20:25.632Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0187.uexp	2024-08-02T07:20:25.634Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0188.uasset	2024-08-02T07:20:26.600Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0188.uexp	2024-08-02T07:20:26.603Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0189.uasset	2024-08-02T07:20:26.477Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0189.uexp	2024-08-02T07:20:26.479Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0190.uasset	2024-08-02T07:20:25.266Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0190.uexp	2024-08-02T07:20:25.268Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0191.uasset	2024-08-02T07:20:26.923Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0191.uexp	2024-08-02T07:20:26.925Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0192.uasset	2024-08-02T07:20:25.728Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0192.uexp	2024-08-02T07:20:25.730Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0193.uasset	2024-08-02T07:20:24.043Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0193.uexp	2024-08-02T07:20:24.044Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0194.uasset	2024-08-02T07:20:21.238Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0194.uexp	2024-08-02T07:20:21.240Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0195.uasset	2024-08-02T07:20:20.564Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0195.uexp	2024-08-02T07:20:20.566Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0196.uasset	2024-08-02T07:20:24.041Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0196.uexp	2024-08-02T07:20:24.042Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0197.uasset	2024-08-02T07:20:25.405Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0197.uexp	2024-08-02T07:20:25.406Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0198.uasset	2024-08-02T07:20:21.102Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0198.uexp	2024-08-02T07:20:21.103Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0199.uasset	2024-08-02T07:20:25.625Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0199.uexp	2024-08-02T07:20:25.627Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0200.uasset	2024-08-02T07:20:26.309Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0200.uexp	2024-08-02T07:20:26.312Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0201.uasset	2024-08-02T07:20:20.752Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0201.uexp	2024-08-02T07:20:20.754Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0202.uasset	2024-08-02T07:20:24.287Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0202.uexp	2024-08-02T07:20:24.289Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0203.uasset	2024-08-02T07:20:20.699Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0203.uexp	2024-08-02T07:20:20.700Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0204.uasset	2024-08-02T07:20:21.524Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0204.uexp	2024-08-02T07:20:21.526Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0205.uasset	2024-08-02T07:20:24.165Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0205.uexp	2024-08-02T07:20:24.166Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0206.uasset	2024-08-02T07:20:20.996Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0206.uexp	2024-08-02T07:20:20.997Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0207.uasset	2024-08-02T07:20:20.994Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0207.uexp	2024-08-02T07:20:20.996Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0208.uasset	2024-08-02T07:20:21.211Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0208.uexp	2024-08-02T07:20:21.212Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0209.uasset	2024-08-02T07:20:26.079Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0209.uexp	2024-08-02T07:20:26.081Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0210.uasset	2024-08-02T07:20:21.426Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0210.uexp	2024-08-02T07:20:21.427Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0211.uasset	2024-08-02T07:20:24.957Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0211.uexp	2024-08-02T07:20:24.960Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0212.uasset	2024-08-02T07:20:21.750Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0212.uexp	2024-08-02T07:20:21.752Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0213.uasset	2024-08-02T07:20:21.412Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0213.uexp	2024-08-02T07:20:21.416Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0214.uasset	2024-08-02T07:20:21.534Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0214.uexp	2024-08-02T07:20:21.535Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0215.uasset	2024-08-02T07:20:24.030Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0215.uexp	2024-08-02T07:20:24.031Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0216.uasset	2024-08-02T07:20:26.086Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0216.uexp	2024-08-02T07:20:26.088Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0217.uasset	2024-08-02T07:20:20.778Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0217.uexp	2024-08-02T07:20:20.779Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0218.uasset	2024-08-02T07:20:20.968Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0218.uexp	2024-08-02T07:20:20.969Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0219.uasset	2024-08-02T07:20:20.709Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0219.uexp	2024-08-02T07:20:20.710Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0220.uasset	2024-08-02T07:20:26.084Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0220.uexp	2024-08-02T07:20:26.086Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0221.uasset	2024-08-02T07:20:23.121Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0221.uexp	2024-08-02T07:20:23.122Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0222.uasset	2024-08-02T07:20:25.624Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0222.uexp	2024-08-02T07:20:25.625Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0223.uasset	2024-08-02T07:20:23.830Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0223.uexp	2024-08-02T07:20:23.833Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0224.uasset	2024-08-02T07:20:26.689Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0224.uexp	2024-08-02T07:20:26.693Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0225.uasset	2024-08-02T07:20:21.226Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0225.uexp	2024-08-02T07:20:21.226Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0226.uasset	2024-08-02T07:20:21.730Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0226.uexp	2024-08-02T07:20:21.731Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0227.uasset	2024-08-02T07:20:25.958Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0227.uexp	2024-08-02T07:20:25.960Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0228.uasset	2024-08-02T07:20:21.935Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0228.uexp	2024-08-02T07:20:21.936Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0229.uasset	2024-08-02T07:20:23.945Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0229.uexp	2024-08-02T07:20:23.946Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0230.uasset	2024-08-02T07:20:20.346Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0230.uexp	2024-08-02T07:20:20.347Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0231.uasset	2024-08-02T07:20:23.141Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0231.uexp	2024-08-02T07:20:23.142Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0232.uasset	2024-08-02T07:20:25.272Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0232.uexp	2024-08-02T07:20:25.274Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0233.uasset	2024-08-02T07:20:20.561Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0233.uexp	2024-08-02T07:20:20.563Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0234.uasset	2024-08-02T07:20:25.070Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0234.uexp	2024-08-02T07:20:25.072Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0235.uasset	2024-08-02T07:20:25.398Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0235.uexp	2024-08-02T07:20:25.399Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0236.uasset	2024-08-02T07:20:24.164Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0236.uexp	2024-08-02T07:20:24.165Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0237.uasset	2024-08-02T07:20:22.688Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0237.uexp	2024-08-02T07:20:22.690Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0238.uasset	2024-08-02T07:20:24.035Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0238.uexp	2024-08-02T07:20:24.036Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0239.uasset	2024-08-02T07:20:23.045Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0239.uexp	2024-08-02T07:20:23.046Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0240.uasset	2024-08-02T07:20:24.964Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0240.uexp	2024-08-02T07:20:24.965Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0241.uasset	2024-08-02T07:20:25.069Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0241.uexp	2024-08-02T07:20:25.070Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0242.uasset	2024-08-02T07:20:24.892Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0242.uexp	2024-08-02T07:20:24.893Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0243.uasset	2024-08-02T07:20:23.687Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0243.uexp	2024-08-02T07:20:23.688Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0244.uasset	2024-08-02T07:20:21.202Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0244.uexp	2024-08-02T07:20:21.203Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0245.uasset	2024-08-02T07:20:22.716Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0245.uexp	2024-08-02T07:20:22.718Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0246.uasset	2024-08-02T07:20:20.784Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0246.uexp	2024-08-02T07:20:20.785Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0247.uasset	2024-08-02T07:20:20.316Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0247.uexp	2024-08-02T07:20:20.318Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0248.uasset	2024-08-02T07:20:22.831Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0248.uexp	2024-08-02T07:20:22.832Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0249.uasset	2024-08-02T07:20:26.826Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0249.uexp	2024-08-02T07:20:26.828Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0250.uasset	2024-08-02T07:20:23.150Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0250.uexp	2024-08-02T07:20:23.152Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0251.uasset	2024-08-02T07:20:24.357Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0251.uexp	2024-08-02T07:20:24.358Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0252.uasset	2024-08-02T07:20:24.963Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0252.uexp	2024-08-02T07:20:24.964Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0253.uasset	2024-08-02T07:20:21.938Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0253.uexp	2024-08-02T07:20:21.940Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0254.uasset	2024-08-02T07:20:26.476Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0254.uexp	2024-08-02T07:20:26.478Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0255.uasset	2024-08-02T07:20:24.937Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0001_0255.uexp	2024-08-02T07:20:24.939Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0000.uasset	2024-08-02T07:20:23.500Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0000.uexp	2024-08-02T07:20:23.501Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0001.uasset	2024-08-02T07:20:21.002Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0001.uexp	2024-08-02T07:20:21.003Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0002.uasset	2024-08-02T07:20:20.689Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0002.uexp	2024-08-02T07:20:20.690Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0003.uasset	2024-08-02T07:20:22.275Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0003.uexp	2024-08-02T07:20:22.276Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0004.uasset	2024-08-02T07:20:20.575Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0004.uexp	2024-08-02T07:20:20.576Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0005.uasset	2024-08-02T07:20:26.403Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0005.uexp	2024-08-02T07:20:26.404Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0006.uasset	2024-08-02T07:20:20.776Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0006.uexp	2024-08-02T07:20:20.777Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0007.uasset	2024-08-02T07:20:21.326Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0007.uexp	2024-08-02T07:20:21.328Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0008.uasset	2024-08-02T07:20:21.096Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0008.uexp	2024-08-02T07:20:21.097Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0009.uasset	2024-08-02T07:20:20.967Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0009.uexp	2024-08-02T07:20:20.969Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0010.uasset	2024-08-02T07:20:24.023Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0010.uexp	2024-08-02T07:20:24.024Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0011.uasset	2024-08-02T07:20:26.815Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0011.uexp	2024-08-02T07:20:26.817Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0012.uasset	2024-08-02T07:20:25.432Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0012.uexp	2024-08-02T07:20:25.433Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0013.uasset	2024-08-02T07:20:23.827Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0013.uexp	2024-08-02T07:20:23.829Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0014.uasset	2024-08-02T07:20:25.269Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0014.uexp	2024-08-02T07:20:25.270Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0015.uasset	2024-08-02T07:20:22.928Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0015.uexp	2024-08-02T07:20:22.930Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0016.uasset	2024-08-02T07:20:24.064Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0016.uexp	2024-08-02T07:20:24.066Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0017.uasset	2024-08-02T07:20:25.054Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0017.uexp	2024-08-02T07:20:25.055Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0018.uasset	2024-08-02T07:20:23.052Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0018.uexp	2024-08-02T07:20:23.053Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0019.uasset	2024-08-02T07:20:24.853Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0019.uexp	2024-08-02T07:20:24.854Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0020.uasset	2024-08-02T07:20:22.468Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0020.uexp	2024-08-02T07:20:22.469Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0021.uasset	2024-08-02T07:20:21.103Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0021.uexp	2024-08-02T07:20:21.105Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0022.uasset	2024-08-02T07:20:21.651Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0022.uexp	2024-08-02T07:20:21.653Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0023.uasset	2024-08-02T07:20:24.054Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0023.uexp	2024-08-02T07:20:24.056Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0024.uasset	2024-08-02T07:20:20.308Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0024.uexp	2024-08-02T07:20:20.309Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0025.uasset	2024-08-02T07:20:22.278Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0025.uexp	2024-08-02T07:20:22.280Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0026.uasset	2024-08-02T07:20:25.537Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0026.uexp	2024-08-02T07:20:25.538Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0027.uasset	2024-08-02T07:20:23.489Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0027.uexp	2024-08-02T07:20:23.491Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0028.uasset	2024-08-02T07:20:24.067Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0028.uexp	2024-08-02T07:20:24.068Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0029.uasset	2024-08-02T07:20:21.726Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0029.uexp	2024-08-02T07:20:21.728Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0030.uasset	2024-08-02T07:20:21.734Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0030.uexp	2024-08-02T07:20:21.735Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0031.uasset	2024-08-02T07:20:25.740Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0031.uexp	2024-08-02T07:20:25.741Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0032.uasset	2024-08-02T07:20:22.938Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0032.uexp	2024-08-02T07:20:22.939Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0033.uasset	2024-08-02T07:20:26.700Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0033.uexp	2024-08-02T07:20:26.701Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0034.uasset	2024-08-02T07:20:22.714Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0034.uexp	2024-08-02T07:20:22.716Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0035.uasset	2024-08-02T07:20:22.044Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0035.uexp	2024-08-02T07:20:22.045Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0036.uasset	2024-08-02T07:20:22.465Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0036.uexp	2024-08-02T07:20:22.466Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0037.uasset	2024-08-02T07:20:23.730Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0037.uexp	2024-08-02T07:20:23.731Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0038.uasset	2024-08-02T07:20:26.701Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0038.uexp	2024-08-02T07:20:26.702Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0039.uasset	2024-08-02T07:20:25.385Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0039.uexp	2024-08-02T07:20:25.387Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0040.uasset	2024-08-02T07:20:24.755Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0040.uexp	2024-08-02T07:20:24.756Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0041.uasset	2024-08-02T07:20:21.615Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0041.uexp	2024-08-02T07:20:21.616Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0042.uasset	2024-08-02T07:20:26.322Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0042.uexp	2024-08-02T07:20:26.326Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0043.uasset	2024-08-02T07:20:26.078Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0043.uexp	2024-08-02T07:20:26.079Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0044.uasset	2024-08-02T07:20:22.047Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0044.uexp	2024-08-02T07:20:22.049Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0045.uasset	2024-08-02T07:20:23.476Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0045.uexp	2024-08-02T07:20:23.477Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0046.uasset	2024-08-02T07:20:24.509Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0046.uexp	2024-08-02T07:20:24.510Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0047.uasset	2024-08-02T07:20:22.600Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0047.uexp	2024-08-02T07:20:22.601Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0048.uasset	2024-08-02T07:20:20.991Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0048.uexp	2024-08-02T07:20:20.993Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0049.uasset	2024-08-02T07:20:23.041Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0049.uexp	2024-08-02T07:20:23.042Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0050.uasset	2024-08-02T07:20:25.411Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0050.uexp	2024-08-02T07:20:25.413Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0051.uasset	2024-08-02T07:20:25.399Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0051.uexp	2024-08-02T07:20:25.400Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0052.uasset	2024-08-02T07:20:23.728Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0052.uexp	2024-08-02T07:20:23.729Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0053.uasset	2024-08-02T07:20:24.046Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0053.uexp	2024-08-02T07:20:24.048Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0054.uasset	2024-08-02T07:20:22.585Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0054.uexp	2024-08-02T07:20:22.586Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0055.uasset	2024-08-02T07:20:24.493Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0055.uexp	2024-08-02T07:20:24.494Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0056.uasset	2024-08-02T07:20:24.160Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0056.uexp	2024-08-02T07:20:24.161Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0057.uasset	2024-08-02T07:20:21.737Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0057.uexp	2024-08-02T07:20:21.739Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0058.uasset	2024-08-02T07:20:25.536Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0058.uexp	2024-08-02T07:20:25.537Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0059.uasset	2024-08-02T07:20:23.027Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0059.uexp	2024-08-02T07:20:23.028Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0060.uasset	2024-08-02T07:20:22.186Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0060.uexp	2024-08-02T07:20:22.187Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0061.uasset	2024-08-02T07:20:20.436Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0061.uexp	2024-08-02T07:20:20.437Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0062.uasset	2024-08-02T07:20:24.750Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0062.uexp	2024-08-02T07:20:24.751Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0063.uasset	2024-08-02T07:20:20.859Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0063.uexp	2024-08-02T07:20:20.861Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0064.uasset	2024-08-02T07:20:23.368Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0064.uexp	2024-08-02T07:20:23.369Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0065.uasset	2024-08-02T07:20:23.260Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0065.uexp	2024-08-02T07:20:23.262Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0066.uasset	2024-08-02T07:20:25.278Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0066.uexp	2024-08-02T07:20:25.280Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0067.uasset	2024-08-02T07:20:25.976Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0067.uexp	2024-08-02T07:20:25.978Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0068.uasset	2024-08-02T07:20:24.604Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0068.uexp	2024-08-02T07:20:24.605Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0069.uasset	2024-08-02T07:20:26.500Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0069.uexp	2024-08-02T07:20:26.502Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0070.uasset	2024-08-02T07:20:21.829Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0070.uexp	2024-08-02T07:20:21.831Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0071.uasset	2024-08-02T07:20:21.844Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0071.uexp	2024-08-02T07:20:21.845Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0072.uasset	2024-08-02T07:20:22.057Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0072.uexp	2024-08-02T07:20:22.059Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0073.uasset	2024-08-02T07:20:22.692Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0073.uexp	2024-08-02T07:20:22.694Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0074.uasset	2024-08-02T07:20:26.305Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0074.uexp	2024-08-02T07:20:26.306Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0075.uasset	2024-08-02T07:20:23.491Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0075.uexp	2024-08-02T07:20:23.493Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0076.uasset	2024-08-02T07:20:20.324Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0076.uexp	2024-08-02T07:20:20.326Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0077.uasset	2024-08-02T07:20:25.863Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0077.uexp	2024-08-02T07:20:25.865Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0078.uasset	2024-08-02T07:20:23.806Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0078.uexp	2024-08-02T07:20:23.808Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0079.uasset	2024-08-02T07:20:21.863Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0079.uexp	2024-08-02T07:20:21.864Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0080.uasset	2024-08-02T07:20:23.723Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0080.uexp	2024-08-02T07:20:23.725Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0081.uasset	2024-08-02T07:20:21.842Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0081.uexp	2024-08-02T07:20:21.844Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0082.uasset	2024-08-02T07:20:24.320Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0082.uexp	2024-08-02T07:20:24.321Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0083.uasset	2024-08-02T07:20:25.643Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0083.uexp	2024-08-02T07:20:25.644Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0084.uasset	2024-08-02T07:20:21.861Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0084.uexp	2024-08-02T07:20:21.862Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0085.uasset	2024-08-02T07:20:24.139Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0085.uexp	2024-08-02T07:20:24.140Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0086.uasset	2024-08-02T07:20:27.013Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0086.uexp	2024-08-02T07:20:27.014Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0087.uasset	2024-08-02T07:20:22.582Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0087.uexp	2024-08-02T07:20:22.584Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0088.uasset	2024-08-02T07:20:20.561Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0088.uexp	2024-08-02T07:20:20.562Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0089.uasset	2024-08-02T07:20:23.508Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0089.uexp	2024-08-02T07:20:23.510Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0090.uasset	2024-08-02T07:20:21.080Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0090.uexp	2024-08-02T07:20:21.081Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0091.uasset	2024-08-02T07:20:20.451Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0091.uexp	2024-08-02T07:20:20.452Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0092.uasset	2024-08-02T07:20:25.171Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0092.uexp	2024-08-02T07:20:25.172Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0093.uasset	2024-08-02T07:20:23.699Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0093.uexp	2024-08-02T07:20:23.700Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0094.uasset	2024-08-02T07:20:25.848Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0094.uexp	2024-08-02T07:20:25.850Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0095.uasset	2024-08-02T07:20:22.730Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0095.uexp	2024-08-02T07:20:22.732Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0096.uasset	2024-08-02T07:20:22.822Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0096.uexp	2024-08-02T07:20:22.824Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0097.uasset	2024-08-02T07:20:22.835Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0097.uexp	2024-08-02T07:20:22.836Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0098.uasset	2024-08-02T07:20:25.277Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0098.uexp	2024-08-02T07:20:25.278Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0099.uasset	2024-08-02T07:20:20.559Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0099.uexp	2024-08-02T07:20:20.561Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0100.uasset	2024-08-02T07:20:24.749Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0100.uexp	2024-08-02T07:20:24.751Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0101.uasset	2024-08-02T07:20:26.303Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0101.uexp	2024-08-02T07:20:26.305Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0102.uasset	2024-08-02T07:20:24.738Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0102.uexp	2024-08-02T07:20:24.739Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0103.uasset	2024-08-02T07:20:26.167Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0103.uexp	2024-08-02T07:20:26.168Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0104.uasset	2024-08-02T07:20:25.744Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0104.uexp	2024-08-02T07:20:25.746Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0105.uasset	2024-08-02T07:20:25.852Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0105.uexp	2024-08-02T07:20:25.854Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0106.uasset	2024-08-02T07:20:26.308Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0106.uexp	2024-08-02T07:20:26.310Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0107.uasset	2024-08-02T07:20:26.494Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0107.uexp	2024-08-02T07:20:26.495Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0108.uasset	2024-08-02T07:20:25.166Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0108.uexp	2024-08-02T07:20:25.167Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0109.uasset	2024-08-02T07:20:26.825Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0109.uexp	2024-08-02T07:20:26.826Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0110.uasset	2024-08-02T07:20:26.499Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0110.uexp	2024-08-02T07:20:26.501Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0111.uasset	2024-08-02T07:20:24.485Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0111.uexp	2024-08-02T07:20:24.487Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0112.uasset	2024-08-02T07:20:23.940Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0112.uexp	2024-08-02T07:20:23.941Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0113.uasset	2024-08-02T07:20:26.593Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0113.uexp	2024-08-02T07:20:26.594Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0114.uasset	2024-08-02T07:20:24.883Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0114.uexp	2024-08-02T07:20:24.885Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0115.uasset	2024-08-02T07:20:26.382Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0115.uexp	2024-08-02T07:20:26.384Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0116.uasset	2024-08-02T07:20:20.353Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0116.uexp	2024-08-02T07:20:20.354Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0117.uasset	2024-08-02T07:20:26.076Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0117.uexp	2024-08-02T07:20:26.078Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0118.uasset	2024-08-02T07:20:20.888Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0118.uexp	2024-08-02T07:20:20.889Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0119.uasset	2024-08-02T07:20:20.306Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0119.uexp	2024-08-02T07:20:20.307Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0120.uasset	2024-08-02T07:20:20.696Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0120.uexp	2024-08-02T07:20:20.697Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0121.uasset	2024-08-02T07:20:21.650Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0121.uexp	2024-08-02T07:20:21.652Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0122.uasset	2024-08-02T07:20:23.265Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0122.uexp	2024-08-02T07:20:23.267Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0123.uasset	2024-08-02T07:20:22.388Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0123.uexp	2024-08-02T07:20:22.389Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0124.uasset	2024-08-02T07:20:23.257Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0124.uexp	2024-08-02T07:20:23.259Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0125.uasset	2024-08-02T07:20:23.300Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0125.uexp	2024-08-02T07:20:23.302Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0126.uasset	2024-08-02T07:20:20.680Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0126.uexp	2024-08-02T07:20:20.682Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0127.uasset	2024-08-02T07:20:22.565Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0127.uexp	2024-08-02T07:20:22.566Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0128.uasset	2024-08-02T07:20:20.434Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0128.uexp	2024-08-02T07:20:20.435Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0129.uasset	2024-08-02T07:20:23.808Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0129.uexp	2024-08-02T07:20:23.810Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0130.uasset	2024-08-02T07:20:25.615Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0130.uexp	2024-08-02T07:20:25.616Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0131.uasset	2024-08-02T07:20:26.085Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0131.uexp	2024-08-02T07:20:26.086Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0132.uasset	2024-08-02T07:20:24.269Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0132.uexp	2024-08-02T07:20:24.270Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0133.uasset	2024-08-02T07:20:25.758Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0133.uexp	2024-08-02T07:20:25.761Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0134.uasset	2024-08-02T07:20:25.156Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0134.uexp	2024-08-02T07:20:25.158Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0135.uasset	2024-08-02T07:20:25.734Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0135.uexp	2024-08-02T07:20:25.736Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0136.uasset	2024-08-02T07:20:25.953Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0136.uexp	2024-08-02T07:20:25.955Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0137.uasset	2024-08-02T07:20:22.812Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0137.uexp	2024-08-02T07:20:22.813Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0138.uasset	2024-08-02T07:20:26.805Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0138.uexp	2024-08-02T07:20:26.806Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0139.uasset	2024-08-02T07:20:26.896Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0139.uexp	2024-08-02T07:20:26.898Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0140.uasset	2024-08-02T07:20:25.875Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0140.uexp	2024-08-02T07:20:25.876Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0141.uasset	2024-08-02T07:20:25.416Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0141.uexp	2024-08-02T07:20:25.418Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0142.uasset	2024-08-02T07:20:21.088Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0142.uexp	2024-08-02T07:20:21.089Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0143.uasset	2024-08-02T07:20:24.527Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0143.uexp	2024-08-02T07:20:24.529Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0144.uasset	2024-08-02T07:20:22.918Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0144.uexp	2024-08-02T07:20:22.920Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0145.uasset	2024-08-02T07:20:25.652Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0145.uexp	2024-08-02T07:20:25.654Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0146.uasset	2024-08-02T07:20:25.423Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0146.uexp	2024-08-02T07:20:25.424Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0147.uasset	2024-08-02T07:20:25.155Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0147.uexp	2024-08-02T07:20:25.156Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0148.uasset	2024-08-02T07:20:25.642Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0148.uexp	2024-08-02T07:20:25.643Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0149.uasset	2024-08-02T07:20:21.237Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0149.uexp	2024-08-02T07:20:21.238Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0150.uasset	2024-08-02T07:20:25.841Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0150.uexp	2024-08-02T07:20:25.842Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0151.uasset	2024-08-02T07:20:24.945Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0151.uexp	2024-08-02T07:20:24.947Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0152.uasset	2024-08-02T07:20:22.272Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0152.uexp	2024-08-02T07:20:22.273Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0153.uasset	2024-08-02T07:20:22.274Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0153.uexp	2024-08-02T07:20:22.275Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0154.uasset	2024-08-02T07:20:25.622Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0154.uexp	2024-08-02T07:20:25.623Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0155.uasset	2024-08-02T07:20:20.783Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0155.uexp	2024-08-02T07:20:20.784Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0156.uasset	2024-08-02T07:20:21.640Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0156.uexp	2024-08-02T07:20:21.642Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0157.uasset	2024-08-02T07:20:24.867Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0157.uexp	2024-08-02T07:20:24.869Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0158.uasset	2024-08-02T07:20:20.688Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0158.uexp	2024-08-02T07:20:20.689Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0159.uasset	2024-08-02T07:20:23.697Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0159.uexp	2024-08-02T07:20:23.698Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0160.uasset	2024-08-02T07:20:20.792Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0160.uexp	2024-08-02T07:20:20.793Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0161.uasset	2024-08-02T07:20:21.964Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0161.uexp	2024-08-02T07:20:21.965Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0162.uasset	2024-08-02T07:20:25.530Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0162.uexp	2024-08-02T07:20:25.531Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0163.uasset	2024-08-02T07:20:23.961Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0163.uexp	2024-08-02T07:20:23.962Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0164.uasset	2024-08-02T07:20:26.926Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0164.uexp	2024-08-02T07:20:26.928Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0165.uasset	2024-08-02T07:20:21.939Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0165.uexp	2024-08-02T07:20:21.941Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0166.uasset	2024-08-02T07:20:22.140Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0166.uexp	2024-08-02T07:20:22.141Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0167.uasset	2024-08-02T07:20:23.317Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0167.uexp	2024-08-02T07:20:23.318Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0168.uasset	2024-08-02T07:20:22.359Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0168.uexp	2024-08-02T07:20:22.361Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0169.uasset	2024-08-02T07:20:24.732Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0169.uexp	2024-08-02T07:20:24.733Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0170.uasset	2024-08-02T07:20:24.881Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0170.uexp	2024-08-02T07:20:24.883Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0171.uasset	2024-08-02T07:20:25.281Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0171.uexp	2024-08-02T07:20:25.282Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0172.uasset	2024-08-02T07:20:26.296Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0172.uexp	2024-08-02T07:20:26.298Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0173.uasset	2024-08-02T07:20:21.637Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0173.uexp	2024-08-02T07:20:21.638Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0174.uasset	2024-08-02T07:20:24.609Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0174.uexp	2024-08-02T07:20:24.611Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0175.uasset	2024-08-02T07:20:26.377Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0175.uexp	2024-08-02T07:20:26.379Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0176.uasset	2024-08-02T07:20:23.939Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0176.uexp	2024-08-02T07:20:23.940Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0177.uasset	2024-08-02T07:20:22.056Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0177.uexp	2024-08-02T07:20:22.057Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0178.uasset	2024-08-02T07:20:20.358Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0178.uexp	2024-08-02T07:20:20.359Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0179.uasset	2024-08-02T07:20:25.064Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0179.uexp	2024-08-02T07:20:25.065Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0180.uasset	2024-08-02T07:20:23.581Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0180.uexp	2024-08-02T07:20:23.582Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0181.uasset	2024-08-02T07:20:23.719Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0181.uexp	2024-08-02T07:20:23.720Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0182.uasset	2024-08-02T07:20:23.316Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0182.uexp	2024-08-02T07:20:23.316Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0183.uasset	2024-08-02T07:20:22.740Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0183.uexp	2024-08-02T07:20:22.740Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0184.uasset	2024-08-02T07:20:23.251Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0184.uexp	2024-08-02T07:20:23.252Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0185.uasset	2024-08-02T07:20:25.407Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0185.uexp	2024-08-02T07:20:25.409Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0186.uasset	2024-08-02T07:20:22.055Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0186.uexp	2024-08-02T07:20:22.056Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0187.uasset	2024-08-02T07:20:25.068Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0187.uexp	2024-08-02T07:20:25.069Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0188.uasset	2024-08-02T07:20:20.195Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0188.uexp	2024-08-02T07:20:20.198Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0189.uasset	2024-08-02T07:20:22.392Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0189.uexp	2024-08-02T07:20:22.393Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0190.uasset	2024-08-02T07:20:21.305Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0190.uexp	2024-08-02T07:20:21.307Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0191.uasset	2024-08-02T07:20:20.891Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0191.uexp	2024-08-02T07:20:20.892Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0192.uasset	2024-08-02T07:20:23.695Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0192.uexp	2024-08-02T07:20:23.697Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0193.uasset	2024-08-02T07:20:25.066Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0193.uexp	2024-08-02T07:20:25.068Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0194.uasset	2024-08-02T07:20:21.503Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0194.uexp	2024-08-02T07:20:21.504Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0195.uasset	2024-08-02T07:20:25.871Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0195.uexp	2024-08-02T07:20:25.873Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0196.uasset	2024-08-02T07:20:25.955Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0196.uexp	2024-08-02T07:20:25.957Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0197.uasset	2024-08-02T07:20:21.728Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0197.uexp	2024-08-02T07:20:21.729Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0198.uasset	2024-08-02T07:20:23.304Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0198.uexp	2024-08-02T07:20:23.305Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0199.uasset	2024-08-02T07:20:20.762Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0199.uexp	2024-08-02T07:20:20.764Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0200.uasset	2024-08-02T07:20:21.400Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0200.uexp	2024-08-02T07:20:21.401Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0201.uasset	2024-08-02T07:20:23.825Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0201.uexp	2024-08-02T07:20:23.826Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0202.uasset	2024-08-02T07:20:24.615Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0202.uexp	2024-08-02T07:20:24.616Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0203.uasset	2024-08-02T07:20:24.863Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0203.uexp	2024-08-02T07:20:24.864Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0204.uasset	2024-08-02T07:20:26.791Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0204.uexp	2024-08-02T07:20:26.793Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0205.uasset	2024-08-02T07:20:21.962Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0205.uexp	2024-08-02T07:20:21.964Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0206.uasset	2024-08-02T07:20:26.583Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0206.uexp	2024-08-02T07:20:26.585Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0207.uasset	2024-08-02T07:20:25.049Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0207.uexp	2024-08-02T07:20:25.051Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0208.uasset	2024-08-02T07:20:26.715Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0208.uexp	2024-08-02T07:20:26.717Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0209.uasset	2024-08-02T07:20:24.742Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0209.uexp	2024-08-02T07:20:24.743Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0210.uasset	2024-08-02T07:20:26.166Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0210.uexp	2024-08-02T07:20:26.167Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0211.uasset	2024-08-02T07:20:24.758Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0211.uexp	2024-08-02T07:20:24.759Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0212.uasset	2024-08-02T07:20:20.178Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0212.uexp	2024-08-02T07:20:20.179Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0213.uasset	2024-08-02T07:20:24.928Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0213.uexp	2024-08-02T07:20:24.929Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0214.uasset	2024-08-02T07:20:25.763Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0214.uexp	2024-08-02T07:20:25.764Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0215.uasset	2024-08-02T07:20:22.611Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0215.uexp	2024-08-02T07:20:22.612Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0216.uasset	2024-08-02T07:20:24.063Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0216.uexp	2024-08-02T07:20:24.064Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0217.uasset	2024-08-02T07:20:23.578Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0217.uexp	2024-08-02T07:20:23.579Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0218.uasset	2024-08-02T07:20:21.749Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0218.uexp	2024-08-02T07:20:21.750Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0219.uasset	2024-08-02T07:20:20.305Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0219.uexp	2024-08-02T07:20:20.307Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0220.uasset	2024-08-02T07:20:25.971Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0220.uexp	2024-08-02T07:20:25.973Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0221.uasset	2024-08-02T07:20:27.011Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0221.uexp	2024-08-02T07:20:27.013Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0222.uasset	2024-08-02T07:20:24.508Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0222.uexp	2024-08-02T07:20:24.509Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0223.uasset	2024-08-02T07:20:22.383Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0223.uexp	2024-08-02T07:20:22.384Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0224.uasset	2024-08-02T07:20:24.274Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0224.uexp	2024-08-02T07:20:24.275Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0225.uasset	2024-08-02T07:20:21.629Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0225.uexp	2024-08-02T07:20:21.630Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0226.uasset	2024-08-02T07:20:21.075Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0226.uexp	2024-08-02T07:20:21.076Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0227.uasset	2024-08-02T07:20:24.163Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0227.uexp	2024-08-02T07:20:24.164Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0228.uasset	2024-08-02T07:20:24.052Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0228.uexp	2024-08-02T07:20:24.053Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0229.uasset	2024-08-02T07:20:22.606Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0229.uexp	2024-08-02T07:20:22.607Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0230.uasset	2024-08-02T07:20:22.183Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0230.uexp	2024-08-02T07:20:22.184Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0231.uasset	2024-08-02T07:20:23.727Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0231.uexp	2024-08-02T07:20:23.729Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0232.uasset	2024-08-02T07:20:22.738Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0232.uexp	2024-08-02T07:20:22.739Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0233.uasset	2024-08-02T07:20:27.025Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0233.uexp	2024-08-02T07:20:27.027Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0234.uasset	2024-08-02T07:20:23.589Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0234.uexp	2024-08-02T07:20:23.590Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0235.uasset	2024-08-02T07:20:21.217Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0235.uexp	2024-08-02T07:20:21.218Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0236.uasset	2024-08-02T07:20:22.820Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0236.uexp	2024-08-02T07:20:22.821Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0237.uasset	2024-08-02T07:20:22.843Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0237.uexp	2024-08-02T07:20:22.844Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0238.uasset	2024-08-02T07:20:20.880Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0238.uexp	2024-08-02T07:20:20.880Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0239.uasset	2024-08-02T07:20:23.709Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0239.uexp	2024-08-02T07:20:23.711Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0240.uasset	2024-08-02T07:20:23.582Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0240.uexp	2024-08-02T07:20:23.584Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0241.uasset	2024-08-02T07:20:23.159Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0241.uexp	2024-08-02T07:20:23.160Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0242.uasset	2024-08-02T07:20:22.379Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0242.uexp	2024-08-02T07:20:22.380Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0243.uasset	2024-08-02T07:20:24.743Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0243.uexp	2024-08-02T07:20:24.744Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0244.uasset	2024-08-02T07:20:21.502Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0244.uexp	2024-08-02T07:20:21.503Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0245.uasset	2024-08-02T07:20:24.616Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0245.uexp	2024-08-02T07:20:24.618Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0246.uasset	2024-08-02T07:20:22.371Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0246.uexp	2024-08-02T07:20:22.372Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0247.uasset	2024-08-02T07:20:22.590Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0247.uexp	2024-08-02T07:20:22.591Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0248.uasset	2024-08-02T07:20:21.000Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0248.uexp	2024-08-02T07:20:21.002Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0249.uasset	2024-08-02T07:20:21.832Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0249.uexp	2024-08-02T07:20:21.833Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0250.uasset	2024-08-02T07:20:20.573Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0250.uexp	2024-08-02T07:20:20.574Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0251.uasset	2024-08-02T07:20:22.264Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0251.uexp	2024-08-02T07:20:22.265Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0252.uasset	2024-08-02T07:20:26.052Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0252.uexp	2024-08-02T07:20:26.054Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0253.uasset	2024-08-02T07:20:21.444Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0253.uexp	2024-08-02T07:20:21.446Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0254.uasset	2024-08-02T07:20:22.177Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0254.uexp	2024-08-02T07:20:22.178Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0255.uasset	2024-08-02T07:20:23.484Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0002_0255.uexp	2024-08-02T07:20:23.486Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0000.uasset	2024-08-02T07:20:23.948Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0000.uexp	2024-08-02T07:20:23.949Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0001.uasset	2024-08-02T07:20:25.528Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0001.uexp	2024-08-02T07:20:25.529Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0002.uasset	2024-08-02T07:20:21.649Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0002.uexp	2024-08-02T07:20:21.650Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0003.uasset	2024-08-02T07:20:23.588Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0003.uexp	2024-08-02T07:20:23.589Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0004.uasset	2024-08-02T07:20:26.046Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0004.uexp	2024-08-02T07:20:26.048Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0005.uasset	2024-08-02T07:20:25.147Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0005.uexp	2024-08-02T07:20:25.148Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0006.uasset	2024-08-02T07:20:20.788Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0006.uexp	2024-08-02T07:20:20.789Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0007.uasset	2024-08-02T07:20:21.951Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0007.uexp	2024-08-02T07:20:21.952Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0008.uasset	2024-08-02T07:20:23.956Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0008.uexp	2024-08-02T07:20:23.958Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0009.uasset	2024-08-02T07:20:20.705Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0009.uexp	2024-08-02T07:20:20.707Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0010.uasset	2024-08-02T07:20:23.938Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0010.uexp	2024-08-02T07:20:23.939Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0011.uasset	2024-08-02T07:20:22.059Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0011.uexp	2024-08-02T07:20:22.061Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0012.uasset	2024-08-02T07:20:24.935Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0012.uexp	2024-08-02T07:20:24.937Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0013.uasset	2024-08-02T07:20:26.164Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0013.uexp	2024-08-02T07:20:26.166Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0014.uasset	2024-08-02T07:20:25.733Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0014.uexp	2024-08-02T07:20:25.735Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0015.uasset	2024-08-02T07:20:22.053Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0015.uexp	2024-08-02T07:20:22.054Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0016.uasset	2024-08-02T07:20:21.233Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0016.uexp	2024-08-02T07:20:21.234Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0017.uasset	2024-08-02T07:20:20.468Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0017.uexp	2024-08-02T07:20:20.469Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0018.uasset	2024-08-02T07:20:23.741Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0018.uexp	2024-08-02T07:20:23.742Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0019.uasset	2024-08-02T07:20:24.748Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0019.uexp	2024-08-02T07:20:24.749Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0020.uasset	2024-08-02T07:20:23.264Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0020.uexp	2024-08-02T07:20:23.267Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0021.uasset	2024-08-02T07:20:25.053Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0021.uexp	2024-08-02T07:20:25.054Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0022.uasset	2024-08-02T07:20:20.764Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0022.uexp	2024-08-02T07:20:20.765Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0023.uasset	2024-08-02T07:20:25.517Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0023.uexp	2024-08-02T07:20:25.519Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0024.uasset	2024-08-02T07:20:26.937Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0024.uexp	2024-08-02T07:20:26.938Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0025.uasset	2024-08-02T07:20:22.175Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0025.uexp	2024-08-02T07:20:22.177Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0026.uasset	2024-08-02T07:20:24.754Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0026.uexp	2024-08-02T07:20:24.755Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0027.uasset	2024-08-02T07:20:22.277Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0027.uexp	2024-08-02T07:20:22.279Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0028.uasset	2024-08-02T07:20:21.623Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0028.uexp	2024-08-02T07:20:21.624Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0029.uasset	2024-08-02T07:20:24.034Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0029.uexp	2024-08-02T07:20:24.035Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0030.uasset	2024-08-02T07:20:21.756Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0030.uexp	2024-08-02T07:20:21.757Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0031.uasset	2024-08-02T07:20:24.367Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0031.uexp	2024-08-02T07:20:24.368Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0032.uasset	2024-08-02T07:20:25.048Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0032.uexp	2024-08-02T07:20:25.049Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0033.uasset	2024-08-02T07:20:23.838Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0033.uexp	2024-08-02T07:20:23.840Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0034.uasset	2024-08-02T07:20:23.471Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0034.uexp	2024-08-02T07:20:23.473Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0035.uasset	2024-08-02T07:20:25.837Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0035.uexp	2024-08-02T07:20:25.839Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0036.uasset	2024-08-02T07:20:22.370Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0036.uexp	2024-08-02T07:20:22.371Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0037.uasset	2024-08-02T07:20:23.149Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0037.uexp	2024-08-02T07:20:23.150Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0038.uasset	2024-08-02T07:20:20.664Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0038.uexp	2024-08-02T07:20:20.665Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0039.uasset	2024-08-02T07:20:25.943Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0039.uexp	2024-08-02T07:20:25.945Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0040.uasset	2024-08-02T07:20:24.727Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0040.uexp	2024-08-02T07:20:24.728Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0041.uasset	2024-08-02T07:20:23.361Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0041.uexp	2024-08-02T07:20:23.362Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0042.uasset	2024-08-02T07:20:22.169Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0042.uexp	2024-08-02T07:20:22.170Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0043.uasset	2024-08-02T07:20:22.291Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0043.uexp	2024-08-02T07:20:22.292Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0044.uasset	2024-08-02T07:20:22.574Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0044.uexp	2024-08-02T07:20:22.575Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0045.uasset	2024-08-02T07:20:21.856Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0045.uexp	2024-08-02T07:20:21.857Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0046.uasset	2024-08-02T07:20:22.387Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0046.uexp	2024-08-02T07:20:22.388Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0047.uasset	2024-08-02T07:20:26.498Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0047.uexp	2024-08-02T07:20:26.499Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0048.uasset	2024-08-02T07:20:24.635Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0048.uexp	2024-08-02T07:20:24.636Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0049.uasset	2024-08-02T07:20:23.470Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0049.uexp	2024-08-02T07:20:23.471Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0050.uasset	2024-08-02T07:20:23.822Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0050.uexp	2024-08-02T07:20:23.825Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0051.uasset	2024-08-02T07:20:24.303Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0051.uexp	2024-08-02T07:20:24.304Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0052.uasset	2024-08-02T07:20:21.723Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0052.uexp	2024-08-02T07:20:21.725Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0053.uasset	2024-08-02T07:20:21.823Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0053.uexp	2024-08-02T07:20:21.824Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0054.uasset	2024-08-02T07:20:26.402Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0054.uexp	2024-08-02T07:20:26.403Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0055.uasset	2024-08-02T07:20:20.327Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0055.uexp	2024-08-02T07:20:20.328Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0056.uasset	2024-08-02T07:20:20.420Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0056.uexp	2024-08-02T07:20:20.421Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0057.uasset	2024-08-02T07:20:26.045Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0057.uexp	2024-08-02T07:20:26.046Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0058.uasset	2024-08-02T07:20:25.738Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0058.uexp	2024-08-02T07:20:25.740Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0059.uasset	2024-08-02T07:20:22.917Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0059.uexp	2024-08-02T07:20:22.918Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0060.uasset	2024-08-02T07:20:23.297Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0060.uexp	2024-08-02T07:20:23.299Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0061.uasset	2024-08-02T07:20:24.862Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0061.uexp	2024-08-02T07:20:24.863Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0062.uasset	2024-08-02T07:20:26.577Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0062.uexp	2024-08-02T07:20:26.579Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0063.uasset	2024-08-02T07:20:25.866Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0063.uexp	2024-08-02T07:20:25.868Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0064.uasset	2024-08-02T07:20:20.873Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0064.uexp	2024-08-02T07:20:20.875Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0065.uasset	2024-08-02T07:20:23.051Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0065.uexp	2024-08-02T07:20:23.052Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0066.uasset	2024-08-02T07:20:26.707Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0066.uexp	2024-08-02T07:20:26.708Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0067.uasset	2024-08-02T07:20:20.320Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0067.uexp	2024-08-02T07:20:20.321Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0068.uasset	2024-08-02T07:20:22.179Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0068.uexp	2024-08-02T07:20:22.180Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0069.uasset	2024-08-02T07:20:20.543Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0069.uexp	2024-08-02T07:20:20.545Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0070.uasset	2024-08-02T07:20:21.110Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0070.uexp	2024-08-02T07:20:21.112Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0071.uasset	2024-08-02T07:20:22.622Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0071.uexp	2024-08-02T07:20:22.623Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0072.uasset	2024-08-02T07:20:26.689Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0072.uexp	2024-08-02T07:20:26.693Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0073.uasset	2024-08-02T07:20:22.818Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0073.uexp	2024-08-02T07:20:22.820Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0074.uasset	2024-08-02T07:20:23.465Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0074.uexp	2024-08-02T07:20:23.467Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0075.uasset	2024-08-02T07:20:26.572Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0075.uexp	2024-08-02T07:20:26.574Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0076.uasset	2024-08-02T07:20:20.572Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0076.uexp	2024-08-02T07:20:20.573Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0077.uasset	2024-08-02T07:20:22.737Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0077.uexp	2024-08-02T07:20:22.738Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0078.uasset	2024-08-02T07:20:25.440Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0078.uexp	2024-08-02T07:20:25.441Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0079.uasset	2024-08-02T07:20:24.291Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0079.uexp	2024-08-02T07:20:24.293Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0080.uasset	2024-08-02T07:20:25.527Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0080.uexp	2024-08-02T07:20:25.527Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0081.uasset	2024-08-02T07:20:23.577Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0081.uexp	2024-08-02T07:20:23.578Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0082.uasset	2024-08-02T07:20:26.154Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0082.uexp	2024-08-02T07:20:26.155Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0083.uasset	2024-08-02T07:20:23.048Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0083.uexp	2024-08-02T07:20:23.050Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0084.uasset	2024-08-02T07:20:27.023Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0084.uexp	2024-08-02T07:20:27.024Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0085.uasset	2024-08-02T07:20:21.325Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0085.uexp	2024-08-02T07:20:21.327Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0086.uasset	2024-08-02T07:20:24.529Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0086.uexp	2024-08-02T07:20:24.530Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0087.uasset	2024-08-02T07:20:26.163Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0087.uexp	2024-08-02T07:20:26.164Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0088.uasset	2024-08-02T07:20:25.260Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0088.uexp	2024-08-02T07:20:25.261Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0089.uasset	2024-08-02T07:20:24.516Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0089.uexp	2024-08-02T07:20:24.518Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0090.uasset	2024-08-02T07:20:26.042Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0090.uexp	2024-08-02T07:20:26.044Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0091.uasset	2024-08-02T07:20:24.856Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0091.uexp	2024-08-02T07:20:24.857Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0092.uasset	2024-08-02T07:20:25.154Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0092.uexp	2024-08-02T07:20:25.155Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0093.uasset	2024-08-02T07:20:22.946Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0093.uexp	2024-08-02T07:20:22.947Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0094.uasset	2024-08-02T07:20:21.969Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0094.uexp	2024-08-02T07:20:21.970Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0095.uasset	2024-08-02T07:20:20.357Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0095.uexp	2024-08-02T07:20:20.358Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0096.uasset	2024-08-02T07:20:25.533Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0096.uexp	2024-08-02T07:20:25.535Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0097.uasset	2024-08-02T07:20:23.704Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0097.uexp	2024-08-02T07:20:23.705Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0098.uasset	2024-08-02T07:20:26.709Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0098.uexp	2024-08-02T07:20:26.710Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0099.uasset	2024-08-02T07:20:26.050Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0099.uexp	2024-08-02T07:20:26.052Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0100.uasset	2024-08-02T07:20:22.142Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0100.uexp	2024-08-02T07:20:22.144Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0101.uasset	2024-08-02T07:20:22.073Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0101.uexp	2024-08-02T07:20:22.074Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0102.uasset	2024-08-02T07:20:22.695Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0102.uexp	2024-08-02T07:20:22.697Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0103.uasset	2024-08-02T07:20:20.787Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0103.uexp	2024-08-02T07:20:20.788Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0104.uasset	2024-08-02T07:20:23.718Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0104.uexp	2024-08-02T07:20:23.719Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0105.uasset	2024-08-02T07:20:21.086Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0105.uexp	2024-08-02T07:20:21.088Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0106.uasset	2024-08-02T07:20:24.488Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0106.uexp	2024-08-02T07:20:24.489Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0107.uasset	2024-08-02T07:20:21.647Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0107.uexp	2024-08-02T07:20:21.647Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0108.uasset	2024-08-02T07:20:21.733Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0108.uexp	2024-08-02T07:20:21.734Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0109.uasset	2024-08-02T07:20:20.769Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0109.uexp	2024-08-02T07:20:20.770Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0110.uasset	2024-08-02T07:20:21.285Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0110.uexp	2024-08-02T07:20:21.287Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0111.uasset	2024-08-02T07:20:21.412Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0111.uexp	2024-08-02T07:20:21.416Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0112.uasset	2024-08-02T07:20:24.147Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0112.uexp	2024-08-02T07:20:24.148Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0113.uasset	2024-08-02T07:20:24.514Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0113.uexp	2024-08-02T07:20:24.516Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0114.uasset	2024-08-02T07:20:20.538Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0114.uexp	2024-08-02T07:20:20.540Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0115.uasset	2024-08-02T07:20:20.964Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0115.uexp	2024-08-02T07:20:20.966Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0116.uasset	2024-08-02T07:20:26.067Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0116.uexp	2024-08-02T07:20:26.068Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0117.uasset	2024-08-02T07:20:22.588Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0117.uexp	2024-08-02T07:20:22.589Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0118.uasset	2024-08-02T07:20:25.847Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0118.uexp	2024-08-02T07:20:25.849Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0119.uasset	2024-08-02T07:20:25.180Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0119.uexp	2024-08-02T07:20:25.182Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0120.uasset	2024-08-02T07:20:21.933Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0120.uexp	2024-08-02T07:20:21.934Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0121.uasset	2024-08-02T07:20:25.515Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0121.uexp	2024-08-02T07:20:25.517Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0122.uasset	2024-08-02T07:20:21.719Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0122.uexp	2024-08-02T07:20:21.720Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0123.uasset	2024-08-02T07:20:20.672Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0123.uexp	2024-08-02T07:20:20.673Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0124.uasset	2024-08-02T07:20:26.942Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0124.uexp	2024-08-02T07:20:26.943Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0125.uasset	2024-08-02T07:20:21.643Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0125.uexp	2024-08-02T07:20:21.644Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0126.uasset	2024-08-02T07:20:25.532Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0126.uexp	2024-08-02T07:20:25.534Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0127.uasset	2024-08-02T07:20:21.504Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0127.uexp	2024-08-02T07:20:21.505Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0128.uasset	2024-08-02T07:20:21.232Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0128.uexp	2024-08-02T07:20:21.233Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0129.uasset	2024-08-02T07:20:21.523Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0129.uexp	2024-08-02T07:20:21.524Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0130.uasset	2024-08-02T07:20:22.372Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0130.uexp	2024-08-02T07:20:22.373Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0131.uasset	2024-08-02T07:20:24.943Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0131.uexp	2024-08-02T07:20:24.946Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0132.uasset	2024-08-02T07:20:25.952Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0132.uexp	2024-08-02T07:20:25.954Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0133.uasset	2024-08-02T07:20:25.951Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0133.uexp	2024-08-02T07:20:25.953Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0134.uasset	2024-08-02T07:20:22.617Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0134.uexp	2024-08-02T07:20:22.618Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0135.uasset	2024-08-02T07:20:20.708Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0135.uexp	2024-08-02T07:20:20.709Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0136.uasset	2024-08-02T07:20:22.573Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0136.uexp	2024-08-02T07:20:22.574Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0137.uasset	2024-08-02T07:20:22.808Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0137.uexp	2024-08-02T07:20:22.809Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0138.uasset	2024-08-02T07:20:26.496Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0138.uexp	2024-08-02T07:20:26.498Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0139.uasset	2024-08-02T07:20:23.692Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0139.uexp	2024-08-02T07:20:23.693Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0140.uasset	2024-08-02T07:20:21.228Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0140.uexp	2024-08-02T07:20:21.229Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0141.uasset	2024-08-02T07:20:24.373Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0141.uexp	2024-08-02T07:20:24.374Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0142.uasset	2024-08-02T07:20:21.721Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0142.uexp	2024-08-02T07:20:21.723Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0143.uasset	2024-08-02T07:20:23.835Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0143.uexp	2024-08-02T07:20:23.837Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0144.uasset	2024-08-02T07:20:25.621Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0144.uexp	2024-08-02T07:20:25.623Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0145.uasset	2024-08-02T07:20:23.497Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0145.uexp	2024-08-02T07:20:23.498Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0146.uasset	2024-08-02T07:20:24.512Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0146.uexp	2024-08-02T07:20:24.513Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0147.uasset	2024-08-02T07:20:24.319Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0147.uexp	2024-08-02T07:20:24.320Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0148.uasset	2024-08-02T07:20:26.803Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0148.uexp	2024-08-02T07:20:26.804Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0149.uasset	2024-08-02T07:20:23.585Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0149.uexp	2024-08-02T07:20:23.586Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0150.uasset	2024-08-02T07:20:24.360Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0150.uexp	2024-08-02T07:20:24.362Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0151.uasset	2024-08-02T07:20:22.916Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0151.uexp	2024-08-02T07:20:22.917Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0152.uasset	2024-08-02T07:20:27.018Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0152.uexp	2024-08-02T07:20:27.020Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0153.uasset	2024-08-02T07:20:25.544Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0153.uexp	2024-08-02T07:20:25.546Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0154.uasset	2024-08-02T07:20:25.035Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0154.uexp	2024-08-02T07:20:25.036Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0155.uasset	2024-08-02T07:20:24.266Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0155.uexp	2024-08-02T07:20:24.267Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0156.uasset	2024-08-02T07:20:20.203Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0156.uexp	2024-08-02T07:20:20.204Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0157.uasset	2024-08-02T07:20:21.947Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0157.uexp	2024-08-02T07:20:21.948Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0158.uasset	2024-08-02T07:20:22.452Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0158.uexp	2024-08-02T07:20:22.454Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0159.uasset	2024-08-02T07:20:24.538Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0159.uexp	2024-08-02T07:20:24.539Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0160.uasset	2024-08-02T07:20:23.356Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0160.uexp	2024-08-02T07:20:23.357Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0161.uasset	2024-08-02T07:20:20.860Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0161.uexp	2024-08-02T07:20:20.862Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0162.uasset	2024-08-02T07:20:23.355Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0162.uexp	2024-08-02T07:20:23.356Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0163.uasset	2024-08-02T07:20:25.384Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0163.uexp	2024-08-02T07:20:25.386Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0164.uasset	2024-08-02T07:20:25.037Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0164.uexp	2024-08-02T07:20:25.038Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0165.uasset	2024-08-02T07:20:20.542Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0165.uexp	2024-08-02T07:20:20.544Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0166.uasset	2024-08-02T07:20:26.386Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0166.uexp	2024-08-02T07:20:26.388Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0167.uasset	2024-08-02T07:20:23.310Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0167.uexp	2024-08-02T07:20:23.312Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0168.uasset	2024-08-02T07:20:25.850Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0168.uexp	2024-08-02T07:20:25.851Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0169.uasset	2024-08-02T07:20:25.165Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0169.uexp	2024-08-02T07:20:25.166Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0170.uasset	2024-08-02T07:20:24.027Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0170.uexp	2024-08-02T07:20:24.029Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0171.uasset	2024-08-02T07:20:25.052Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0171.uexp	2024-08-02T07:20:25.053Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0172.uasset	2024-08-02T07:20:26.706Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0172.uexp	2024-08-02T07:20:26.708Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0173.uasset	2024-08-02T07:20:23.684Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0173.uexp	2024-08-02T07:20:23.685Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0174.uasset	2024-08-02T07:20:23.359Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0174.uexp	2024-08-02T07:20:23.361Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0175.uasset	2024-08-02T07:20:21.512Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0175.uexp	2024-08-02T07:20:21.514Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0176.uasset	2024-08-02T07:20:25.063Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0176.uexp	2024-08-02T07:20:25.064Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0177.uasset	2024-08-02T07:20:20.432Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0177.uexp	2024-08-02T07:20:20.433Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0178.uasset	2024-08-02T07:20:22.735Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0178.uexp	2024-08-02T07:20:22.737Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0179.uasset	2024-08-02T07:20:26.371Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0179.uexp	2024-08-02T07:20:26.373Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0180.uasset	2024-08-02T07:20:20.983Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0180.uexp	2024-08-02T07:20:20.985Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0181.uasset	2024-08-02T07:20:21.396Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0181.uexp	2024-08-02T07:20:21.398Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0182.uasset	2024-08-02T07:20:25.617Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0182.uexp	2024-08-02T07:20:25.619Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0183.uasset	2024-08-02T07:20:25.158Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0183.uexp	2024-08-02T07:20:25.160Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0184.uasset	2024-08-02T07:20:26.368Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0184.uexp	2024-08-02T07:20:26.370Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0185.uasset	2024-08-02T07:20:21.094Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0185.uexp	2024-08-02T07:20:21.095Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0186.uasset	2024-08-02T07:20:20.885Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0186.uexp	2024-08-02T07:20:20.887Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0187.uasset	2024-08-02T07:20:23.934Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0187.uexp	2024-08-02T07:20:23.936Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0188.uasset	2024-08-02T07:20:20.697Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0188.uexp	2024-08-02T07:20:20.698Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0189.uasset	2024-08-02T07:20:21.320Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0189.uexp	2024-08-02T07:20:21.321Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0190.uasset	2024-08-02T07:20:23.372Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0190.uexp	2024-08-02T07:20:23.373Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0191.uasset	2024-08-02T07:20:26.158Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0191.uexp	2024-08-02T07:20:26.159Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0192.uasset	2024-08-02T07:20:26.157Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0192.uexp	2024-08-02T07:20:26.158Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0193.uasset	2024-08-02T07:20:26.387Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0193.uexp	2024-08-02T07:20:26.388Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0194.uasset	2024-08-02T07:20:24.152Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0194.uexp	2024-08-02T07:20:24.153Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0195.uasset	2024-08-02T07:20:23.514Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0195.uexp	2024-08-02T07:20:23.515Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0196.uasset	2024-08-02T07:20:21.631Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0196.uexp	2024-08-02T07:20:21.632Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0197.uasset	2024-08-02T07:20:26.797Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0197.uexp	2024-08-02T07:20:26.798Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0198.uasset	2024-08-02T07:20:23.513Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0198.uexp	2024-08-02T07:20:23.514Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0199.uasset	2024-08-02T07:20:25.061Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0199.uexp	2024-08-02T07:20:25.062Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0200.uasset	2024-08-02T07:20:26.475Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0200.uexp	2024-08-02T07:20:26.477Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0201.uasset	2024-08-02T07:20:26.316Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0201.uexp	2024-08-02T07:20:26.318Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0202.uasset	2024-08-02T07:20:23.701Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0202.uexp	2024-08-02T07:20:23.703Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0203.uasset	2024-08-02T07:20:25.152Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0203.uexp	2024-08-02T07:20:25.154Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0204.uasset	2024-08-02T07:20:23.580Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0204.uexp	2024-08-02T07:20:23.581Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0205.uasset	2024-08-02T07:20:25.280Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0205.uexp	2024-08-02T07:20:25.281Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0206.uasset	2024-08-02T07:20:24.309Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0206.uexp	2024-08-02T07:20:24.310Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0207.uasset	2024-08-02T07:20:25.975Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0207.uexp	2024-08-02T07:20:25.977Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0208.uasset	2024-08-02T07:20:21.430Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0208.uexp	2024-08-02T07:20:21.432Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0209.uasset	2024-08-02T07:20:24.150Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0209.uexp	2024-08-02T07:20:24.151Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0210.uasset	2024-08-02T07:20:22.824Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0210.uexp	2024-08-02T07:20:22.825Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0211.uasset	2024-08-02T07:20:24.365Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0211.uexp	2024-08-02T07:20:24.366Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0212.uasset	2024-08-02T07:20:24.890Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0212.uexp	2024-08-02T07:20:24.891Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0213.uasset	2024-08-02T07:20:24.526Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0213.uexp	2024-08-02T07:20:24.527Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0214.uasset	2024-08-02T07:20:25.439Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0214.uexp	2024-08-02T07:20:25.440Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0215.uasset	2024-08-02T07:20:22.623Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0215.uexp	2024-08-02T07:20:22.625Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0216.uasset	2024-08-02T07:20:25.855Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0216.uexp	2024-08-02T07:20:25.856Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0217.uasset	2024-08-02T07:20:26.796Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0217.uexp	2024-08-02T07:20:26.798Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0218.uasset	2024-08-02T07:20:23.256Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0218.uexp	2024-08-02T07:20:23.257Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0219.uasset	2024-08-02T07:20:23.153Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0219.uexp	2024-08-02T07:20:23.154Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0220.uasset	2024-08-02T07:20:27.022Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0220.uexp	2024-08-02T07:20:27.024Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0221.uasset	2024-08-02T07:20:26.603Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0221.uexp	2024-08-02T07:20:26.605Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0222.uasset	2024-08-02T07:20:20.445Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0222.uexp	2024-08-02T07:20:20.446Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0223.uasset	2024-08-02T07:20:27.016Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0223.uexp	2024-08-02T07:20:27.018Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0224.uasset	2024-08-02T07:20:20.761Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0224.uexp	2024-08-02T07:20:20.762Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0225.uasset	2024-08-02T07:20:22.255Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0225.uexp	2024-08-02T07:20:22.257Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0226.uasset	2024-08-02T07:20:24.866Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0226.uexp	2024-08-02T07:20:24.867Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0227.uasset	2024-08-02T07:20:24.726Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0227.uexp	2024-08-02T07:20:24.727Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0228.uasset	2024-08-02T07:20:24.156Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0228.uexp	2024-08-02T07:20:24.157Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0229.uasset	2024-08-02T07:20:20.439Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0229.uexp	2024-08-02T07:20:20.440Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0230.uasset	2024-08-02T07:20:20.978Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0230.uexp	2024-08-02T07:20:20.980Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0231.uasset	2024-08-02T07:20:21.399Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0231.uexp	2024-08-02T07:20:21.400Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0232.uasset	2024-08-02T07:20:25.415Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0232.uexp	2024-08-02T07:20:25.416Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0233.uasset	2024-08-02T07:20:24.969Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0233.uexp	2024-08-02T07:20:24.970Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0234.uasset	2024-08-02T07:20:23.686Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0234.uexp	2024-08-02T07:20:23.687Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0235.uasset	2024-08-02T07:20:23.059Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0235.uexp	2024-08-02T07:20:23.060Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0236.uasset	2024-08-02T07:20:24.155Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0236.uexp	2024-08-02T07:20:24.156Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0237.uasset	2024-08-02T07:20:25.151Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0237.uexp	2024-08-02T07:20:25.152Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0238.uasset	2024-08-02T07:20:20.997Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0238.uexp	2024-08-02T07:20:20.998Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0239.uasset	2024-08-02T07:20:26.576Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0239.uexp	2024-08-02T07:20:26.578Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0240.uasset	2024-08-02T07:20:24.179Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0240.uexp	2024-08-02T07:20:24.180Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0241.uasset	2024-08-02T07:20:20.449Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0241.uexp	2024-08-02T07:20:20.450Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0242.uasset	2024-08-02T07:20:26.933Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0242.uexp	2024-08-02T07:20:26.934Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0243.uasset	2024-08-02T07:20:23.714Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0243.uexp	2024-08-02T07:20:23.715Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0244.uasset	2024-08-02T07:20:25.550Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0244.uexp	2024-08-02T07:20:25.552Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0245.uasset	2024-08-02T07:20:23.030Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0245.uexp	2024-08-02T07:20:23.031Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0246.uasset	2024-08-02T07:20:25.042Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0246.uexp	2024-08-02T07:20:25.043Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0247.uasset	2024-08-02T07:20:22.842Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0247.uexp	2024-08-02T07:20:22.843Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0248.uasset	2024-08-02T07:20:23.689Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0248.uexp	2024-08-02T07:20:23.690Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0249.uasset	2024-08-02T07:20:26.719Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0249.uexp	2024-08-02T07:20:26.721Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0250.uasset	2024-08-02T07:20:23.271Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0250.uexp	2024-08-02T07:20:23.272Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0251.uasset	2024-08-02T07:20:22.282Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0251.uexp	2024-08-02T07:20:22.283Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0252.uasset	2024-08-02T07:20:20.465Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0252.uexp	2024-08-02T07:20:20.467Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0253.uasset	2024-08-02T07:20:22.570Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0253.uexp	2024-08-02T07:20:22.572Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0254.uasset	2024-08-02T07:20:24.496Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0254.uexp	2024-08-02T07:20:24.497Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0255.uasset	2024-08-02T07:20:20.470Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0003_0255.uexp	2024-08-02T07:20:20.472Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0000.uasset	2024-08-02T07:20:21.732Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0000.uexp	2024-08-02T07:20:21.733Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0001.uasset	2024-08-02T07:20:25.046Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0001.uexp	2024-08-02T07:20:25.048Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0002.uasset	2024-08-02T07:20:26.932Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0002.uexp	2024-08-02T07:20:26.933Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0003.uasset	2024-08-02T07:20:20.537Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0003.uexp	2024-08-02T07:20:20.538Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0004.uasset	2024-08-02T07:20:23.496Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0004.uexp	2024-08-02T07:20:23.496Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0005.uasset	2024-08-02T07:20:24.846Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0005.uexp	2024-08-02T07:20:24.847Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0006.uasset	2024-08-02T07:20:22.263Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0006.uexp	2024-08-02T07:20:22.264Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0007.uasset	2024-08-02T07:20:23.037Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0007.uexp	2024-08-02T07:20:23.039Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0008.uasset	2024-08-02T07:20:21.220Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0008.uexp	2024-08-02T07:20:21.222Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0009.uasset	2024-08-02T07:20:25.406Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0009.uexp	2024-08-02T07:20:25.407Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0010.uasset	2024-08-02T07:20:26.483Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0010.uexp	2024-08-02T07:20:26.484Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0011.uasset	2024-08-02T07:20:20.990Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0011.uexp	2024-08-02T07:20:20.991Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0012.uasset	2024-08-02T07:20:22.039Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0012.uexp	2024-08-02T07:20:22.040Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0013.uasset	2024-08-02T07:20:24.484Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0013.uexp	2024-08-02T07:20:24.485Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0014.uasset	2024-08-02T07:20:26.303Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0014.uexp	2024-08-02T07:20:26.304Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0015.uasset	2024-08-02T07:20:25.379Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0015.uexp	2024-08-02T07:20:25.380Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0016.uasset	2024-08-02T07:20:23.354Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0016.uexp	2024-08-02T07:20:23.355Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0017.uasset	2024-08-02T07:20:21.413Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0017.uexp	2024-08-02T07:20:21.417Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0018.uasset	2024-08-02T07:20:25.721Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0018.uexp	2024-08-02T07:20:25.723Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0019.uasset	2024-08-02T07:20:26.795Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0019.uexp	2024-08-02T07:20:26.796Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0020.uasset	2024-08-02T07:20:21.226Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0020.uexp	2024-08-02T07:20:21.228Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0021.uasset	2024-08-02T07:20:24.062Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0021.uexp	2024-08-02T07:20:24.063Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0022.uasset	2024-08-02T07:20:25.513Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0022.uexp	2024-08-02T07:20:25.515Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0023.uasset	2024-08-02T07:20:21.521Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0023.uexp	2024-08-02T07:20:21.523Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0024.uasset	2024-08-02T07:20:24.739Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0024.uexp	2024-08-02T07:20:24.741Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0025.uasset	2024-08-02T07:20:24.641Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0025.uexp	2024-08-02T07:20:24.643Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0026.uasset	2024-08-02T07:20:24.966Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0026.uexp	2024-08-02T07:20:24.968Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0027.uasset	2024-08-02T07:20:25.860Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0027.uexp	2024-08-02T07:20:25.862Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0028.uasset	2024-08-02T07:20:25.258Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0028.uexp	2024-08-02T07:20:25.260Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0029.uasset	2024-08-02T07:20:20.454Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0029.uexp	2024-08-02T07:20:20.455Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0030.uasset	2024-08-02T07:20:23.282Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0030.uexp	2024-08-02T07:20:23.284Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0031.uasset	2024-08-02T07:20:21.829Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0031.uexp	2024-08-02T07:20:21.830Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0032.uasset	2024-08-02T07:20:24.307Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0032.uexp	2024-08-02T07:20:24.308Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0033.uasset	2024-08-02T07:20:24.159Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0033.uexp	2024-08-02T07:20:24.160Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0034.uasset	2024-08-02T07:20:22.476Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0034.uexp	2024-08-02T07:20:22.477Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0035.uasset	2024-08-02T07:20:23.148Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0035.uexp	2024-08-02T07:20:23.149Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0036.uasset	2024-08-02T07:20:20.201Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0036.uexp	2024-08-02T07:20:20.203Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0037.uasset	2024-08-02T07:20:26.618Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0037.uexp	2024-08-02T07:20:26.619Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0038.uasset	2024-08-02T07:20:26.286Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0038.uexp	2024-08-02T07:20:26.288Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0039.uasset	2024-08-02T07:20:24.852Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0039.uexp	2024-08-02T07:20:24.853Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0040.uasset	2024-08-02T07:20:22.817Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0040.uexp	2024-08-02T07:20:22.818Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0041.uasset	2024-08-02T07:20:21.520Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0041.uexp	2024-08-02T07:20:21.521Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0042.uasset	2024-08-02T07:20:21.530Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0042.uexp	2024-08-02T07:20:21.531Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0043.uasset	2024-08-02T07:20:22.597Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0043.uexp	2024-08-02T07:20:22.598Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0044.uasset	2024-08-02T07:20:22.271Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0044.uexp	2024-08-02T07:20:22.272Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0045.uasset	2024-08-02T07:20:20.541Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0045.uexp	2024-08-02T07:20:20.542Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0046.uasset	2024-08-02T07:20:22.572Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0046.uexp	2024-08-02T07:20:22.573Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0047.uasset	2024-08-02T07:20:22.067Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0047.uexp	2024-08-02T07:20:22.069Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0048.uasset	2024-08-02T07:20:21.319Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0048.uexp	2024-08-02T07:20:21.320Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0049.uasset	2024-08-02T07:20:21.519Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0049.uexp	2024-08-02T07:20:21.520Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0050.uasset	2024-08-02T07:20:23.814Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0050.uexp	2024-08-02T07:20:23.815Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0051.uasset	2024-08-02T07:20:25.968Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0051.uexp	2024-08-02T07:20:25.970Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0052.uasset	2024-08-02T07:20:25.258Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0052.uexp	2024-08-02T07:20:25.259Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0053.uasset	2024-08-02T07:20:21.966Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0053.uexp	2024-08-02T07:20:21.967Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0054.uasset	2024-08-02T07:20:22.943Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0054.uexp	2024-08-02T07:20:22.944Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0055.uasset	2024-08-02T07:20:26.920Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0055.uexp	2024-08-02T07:20:26.921Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0056.uasset	2024-08-02T07:20:21.949Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0056.uexp	2024-08-02T07:20:21.950Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0057.uasset	2024-08-02T07:20:22.580Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0057.uexp	2024-08-02T07:20:22.582Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0058.uasset	2024-08-02T07:20:25.172Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0058.uexp	2024-08-02T07:20:25.173Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0059.uasset	2024-08-02T07:20:26.155Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0059.uexp	2024-08-02T07:20:26.157Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0060.uasset	2024-08-02T07:20:21.224Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0060.uexp	2024-08-02T07:20:21.226Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0061.uasset	2024-08-02T07:20:25.420Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0061.uexp	2024-08-02T07:20:25.421Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0062.uasset	2024-08-02T07:20:26.575Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0062.uexp	2024-08-02T07:20:26.576Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0063.uasset	2024-08-02T07:20:22.701Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0063.uexp	2024-08-02T07:20:22.702Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0064.uasset	2024-08-02T07:20:20.545Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0064.uexp	2024-08-02T07:20:20.547Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0065.uasset	2024-08-02T07:20:24.384Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0065.uexp	2024-08-02T07:20:24.385Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0066.uasset	2024-08-02T07:20:24.177Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0066.uexp	2024-08-02T07:20:24.179Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0067.uasset	2024-08-02T07:20:26.368Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0067.uexp	2024-08-02T07:20:26.370Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0068.uasset	2024-08-02T07:20:26.571Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0068.uexp	2024-08-02T07:20:26.573Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0069.uasset	2024-08-02T07:20:20.209Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0069.uexp	2024-08-02T07:20:20.210Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0070.uasset	2024-08-02T07:20:24.747Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0070.uexp	2024-08-02T07:20:24.748Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0071.uasset	2024-08-02T07:20:20.679Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0071.uexp	2024-08-02T07:20:20.680Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0072.uasset	2024-08-02T07:20:23.924Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0072.uexp	2024-08-02T07:20:23.926Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0073.uasset	2024-08-02T07:20:22.596Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0073.uexp	2024-08-02T07:20:22.597Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0074.uasset	2024-08-02T07:20:25.270Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0074.uexp	2024-08-02T07:20:25.271Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0075.uasset	2024-08-02T07:20:21.423Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0075.uexp	2024-08-02T07:20:21.424Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0076.uasset	2024-08-02T07:20:21.620Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0076.uexp	2024-08-02T07:20:21.621Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0077.uasset	2024-08-02T07:20:26.178Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0077.uexp	2024-08-02T07:20:26.179Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0078.uasset	2024-08-02T07:20:22.384Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0078.uexp	2024-08-02T07:20:22.386Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0079.uasset	2024-08-02T07:20:25.861Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0079.uexp	2024-08-02T07:20:25.863Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0080.uasset	2024-08-02T07:20:26.489Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0080.uexp	2024-08-02T07:20:26.490Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0081.uasset	2024-08-02T07:20:25.639Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0081.uexp	2024-08-02T07:20:25.640Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0082.uasset	2024-08-02T07:20:24.753Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0082.uexp	2024-08-02T07:20:24.754Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0083.uasset	2024-08-02T07:20:25.636Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0083.uexp	2024-08-02T07:20:25.638Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0084.uasset	2024-08-02T07:20:21.611Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0084.uexp	2024-08-02T07:20:21.612Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0085.uasset	2024-08-02T07:20:24.311Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0085.uexp	2024-08-02T07:20:24.313Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0086.uasset	2024-08-02T07:20:20.356Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0086.uexp	2024-08-02T07:20:20.357Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0087.uasset	2024-08-02T07:20:26.723Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0087.uexp	2024-08-02T07:20:26.724Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0088.uasset	2024-08-02T07:20:22.036Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0088.uexp	2024-08-02T07:20:22.037Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0089.uasset	2024-08-02T07:20:23.821Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0089.uexp	2024-08-02T07:20:23.824Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0090.uasset	2024-08-02T07:20:21.402Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0090.uexp	2024-08-02T07:20:21.402Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0091.uasset	2024-08-02T07:20:26.069Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0091.uexp	2024-08-02T07:20:26.071Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0092.uasset	2024-08-02T07:20:26.385Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0092.uexp	2024-08-02T07:20:26.386Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0093.uasset	2024-08-02T07:20:25.551Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0093.uexp	2024-08-02T07:20:25.553Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0094.uasset	2024-08-02T07:20:20.694Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0094.uexp	2024-08-02T07:20:20.695Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0095.uasset	2024-08-02T07:20:26.613Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0095.uexp	2024-08-02T07:20:26.614Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0096.uasset	2024-08-02T07:20:27.020Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0096.uexp	2024-08-02T07:20:27.022Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0097.uasset	2024-08-02T07:20:24.066Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0097.uexp	2024-08-02T07:20:24.067Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0098.uasset	2024-08-02T07:20:21.303Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0098.uexp	2024-08-02T07:20:21.306Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0099.uasset	2024-08-02T07:20:25.727Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0099.uexp	2024-08-02T07:20:25.729Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0100.uasset	2024-08-02T07:20:20.772Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0100.uexp	2024-08-02T07:20:20.774Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0101.uasset	2024-08-02T07:20:24.364Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0101.uexp	2024-08-02T07:20:24.365Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0102.uasset	2024-08-02T07:20:20.544Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0102.uexp	2024-08-02T07:20:20.545Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0103.uasset	2024-08-02T07:20:23.280Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0103.uexp	2024-08-02T07:20:23.281Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0104.uasset	2024-08-02T07:20:25.543Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0104.uexp	2024-08-02T07:20:25.544Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0105.uasset	2024-08-02T07:20:22.702Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0105.uexp	2024-08-02T07:20:22.703Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0106.uasset	2024-08-02T07:20:20.707Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0106.uexp	2024-08-02T07:20:20.708Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0107.uasset	2024-08-02T07:20:23.693Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0107.uexp	2024-08-02T07:20:23.695Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0108.uasset	2024-08-02T07:20:26.395Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0108.uexp	2024-08-02T07:20:26.397Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0109.uasset	2024-08-02T07:20:23.487Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0109.uexp	2024-08-02T07:20:23.488Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0110.uasset	2024-08-02T07:20:21.721Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0110.uexp	2024-08-02T07:20:21.722Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0111.uasset	2024-08-02T07:20:24.536Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0111.uexp	2024-08-02T07:20:24.538Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0112.uasset	2024-08-02T07:20:23.937Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0112.uexp	2024-08-02T07:20:23.938Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0113.uasset	2024-08-02T07:20:23.295Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0113.uexp	2024-08-02T07:20:23.296Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0114.uasset	2024-08-02T07:20:24.865Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0114.uexp	2024-08-02T07:20:24.866Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0115.uasset	2024-08-02T07:20:21.736Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0115.uexp	2024-08-02T07:20:21.737Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0116.uasset	2024-08-02T07:20:22.270Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0116.uexp	2024-08-02T07:20:22.271Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0117.uasset	2024-08-02T07:20:22.691Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0117.uexp	2024-08-02T07:20:22.692Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0118.uasset	2024-08-02T07:20:21.393Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0118.uexp	2024-08-02T07:20:21.394Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0119.uasset	2024-08-02T07:20:23.125Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0119.uexp	2024-08-02T07:20:23.127Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0120.uasset	2024-08-02T07:20:23.505Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0120.uexp	2024-08-02T07:20:23.507Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0121.uasset	2024-08-02T07:20:25.039Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0121.uexp	2024-08-02T07:20:25.040Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0122.uasset	2024-08-02T07:20:25.397Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0122.uexp	2024-08-02T07:20:25.398Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0123.uasset	2024-08-02T07:20:24.049Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0123.uexp	2024-08-02T07:20:24.050Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0124.uasset	2024-08-02T07:20:21.752Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0124.uexp	2024-08-02T07:20:21.753Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0125.uasset	2024-08-02T07:20:26.366Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0125.uexp	2024-08-02T07:20:26.368Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0126.uasset	2024-08-02T07:20:20.877Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0126.uexp	2024-08-02T07:20:20.879Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0127.uasset	2024-08-02T07:20:20.876Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0127.uexp	2024-08-02T07:20:20.878Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0128.uasset	2024-08-02T07:20:26.472Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0128.uexp	2024-08-02T07:20:26.473Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0129.uasset	2024-08-02T07:20:25.970Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0129.uexp	2024-08-02T07:20:25.972Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0130.uasset	2024-08-02T07:20:22.276Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0130.uexp	2024-08-02T07:20:22.277Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0131.uasset	2024-08-02T07:20:25.846Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0131.uexp	2024-08-02T07:20:25.848Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0132.uasset	2024-08-02T07:20:20.342Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0132.uexp	2024-08-02T07:20:20.343Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0133.uasset	2024-08-02T07:20:25.640Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0133.uexp	2024-08-02T07:20:25.642Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0134.uasset	2024-08-02T07:20:24.854Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0134.uexp	2024-08-02T07:20:24.856Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0135.uasset	2024-08-02T07:20:20.352Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0135.uexp	2024-08-02T07:20:20.352Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0136.uasset	2024-08-02T07:20:24.296Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0136.uexp	2024-08-02T07:20:24.298Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0137.uasset	2024-08-02T07:20:26.821Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0137.uexp	2024-08-02T07:20:26.822Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0138.uasset	2024-08-02T07:20:20.336Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0138.uexp	2024-08-02T07:20:20.336Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0139.uasset	2024-08-02T07:20:25.538Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0139.uexp	2024-08-02T07:20:25.539Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0140.uasset	2024-08-02T07:20:22.358Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0140.uexp	2024-08-02T07:20:22.359Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0141.uasset	2024-08-02T07:20:24.956Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0141.uexp	2024-08-02T07:20:24.957Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0142.uasset	2024-08-02T07:20:24.619Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0142.uexp	2024-08-02T07:20:24.620Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0143.uasset	2024-08-02T07:20:21.412Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0143.uexp	2024-08-02T07:20:21.416Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0144.uasset	2024-08-02T07:20:21.613Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0144.uexp	2024-08-02T07:20:21.614Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0145.uasset	2024-08-02T07:20:22.609Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0145.uexp	2024-08-02T07:20:22.611Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0146.uasset	2024-08-02T07:20:21.425Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0146.uexp	2024-08-02T07:20:21.426Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0147.uasset	2024-08-02T07:20:23.306Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0147.uexp	2024-08-02T07:20:23.308Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0148.uasset	2024-08-02T07:20:23.960Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0148.uexp	2024-08-02T07:20:23.961Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0149.uasset	2024-08-02T07:20:23.929Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0149.uexp	2024-08-02T07:20:23.931Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0150.uasset	2024-08-02T07:20:22.909Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0150.uexp	2024-08-02T07:20:22.910Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0151.uasset	2024-08-02T07:20:26.169Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0151.uexp	2024-08-02T07:20:26.170Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0152.uasset	2024-08-02T07:20:22.254Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0152.uexp	2024-08-02T07:20:22.255Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0153.uasset	2024-08-02T07:20:23.571Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0153.uexp	2024-08-02T07:20:23.573Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0154.uasset	2024-08-02T07:20:22.046Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0154.uexp	2024-08-02T07:20:22.047Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0155.uasset	2024-08-02T07:20:26.698Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0155.uexp	2024-08-02T07:20:26.700Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0156.uasset	2024-08-02T07:20:22.253Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0156.uexp	2024-08-02T07:20:22.253Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0157.uasset	2024-08-02T07:20:25.276Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0157.uexp	2024-08-02T07:20:25.277Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0158.uasset	2024-08-02T07:20:23.134Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0158.uexp	2024-08-02T07:20:23.136Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0159.uasset	2024-08-02T07:20:24.849Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0159.uexp	2024-08-02T07:20:24.851Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0160.uasset	2024-08-02T07:20:26.036Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0160.uexp	2024-08-02T07:20:26.038Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0161.uasset	2024-08-02T07:20:26.485Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0161.uexp	2024-08-02T07:20:26.487Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0162.uasset	2024-08-02T07:20:25.967Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0162.uexp	2024-08-02T07:20:25.968Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0163.uasset	2024-08-02T07:20:21.114Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0163.uexp	2024-08-02T07:20:21.115Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0164.uasset	2024-08-02T07:20:25.418Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0164.uexp	2024-08-02T07:20:25.420Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0165.uasset	2024-08-02T07:20:24.756Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0165.uexp	2024-08-02T07:20:24.758Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0166.uasset	2024-08-02T07:20:22.037Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0166.uexp	2024-08-02T07:20:22.038Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0167.uasset	2024-08-02T07:20:20.474Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0167.uexp	2024-08-02T07:20:20.475Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0168.uasset	2024-08-02T07:20:25.409Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0168.uexp	2024-08-02T07:20:25.411Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0169.uasset	2024-08-02T07:20:25.414Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0169.uexp	2024-08-02T07:20:25.415Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0170.uasset	2024-08-02T07:20:21.500Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0170.uexp	2024-08-02T07:20:21.502Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0171.uasset	2024-08-02T07:20:20.348Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0171.uexp	2024-08-02T07:20:20.349Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0172.uasset	2024-08-02T07:20:21.004Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0172.uexp	2024-08-02T07:20:21.007Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0173.uasset	2024-08-02T07:20:23.852Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0173.uexp	2024-08-02T07:20:23.854Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0174.uasset	2024-08-02T07:20:25.289Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0174.uexp	2024-08-02T07:20:25.291Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0175.uasset	2024-08-02T07:20:24.626Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0175.uexp	2024-08-02T07:20:24.628Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0176.uasset	2024-08-02T07:20:22.906Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0176.uexp	2024-08-02T07:20:22.907Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0177.uasset	2024-08-02T07:20:26.062Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0177.uexp	2024-08-02T07:20:26.065Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0178.uasset	2024-08-02T07:20:26.176Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0178.uexp	2024-08-02T07:20:26.177Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0179.uasset	2024-08-02T07:20:25.179Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0179.uexp	2024-08-02T07:20:25.180Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0180.uasset	2024-08-02T07:20:21.531Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0180.uexp	2024-08-02T07:20:21.533Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0181.uasset	2024-08-02T07:20:21.223Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0181.uexp	2024-08-02T07:20:21.224Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0182.uasset	2024-08-02T07:20:26.892Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0182.uexp	2024-08-02T07:20:26.894Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0183.uasset	2024-08-02T07:20:26.697Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0183.uexp	2024-08-02T07:20:26.698Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0184.uasset	2024-08-02T07:20:26.703Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0184.uexp	2024-08-02T07:20:26.705Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0185.uasset	2024-08-02T07:20:23.840Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0185.uexp	2024-08-02T07:20:23.842Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0186.uasset	2024-08-02T07:20:24.281Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0186.uexp	2024-08-02T07:20:24.283Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0187.uasset	2024-08-02T07:20:24.498Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0187.uexp	2024-08-02T07:20:24.500Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0188.uasset	2024-08-02T07:20:22.935Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0188.uexp	2024-08-02T07:20:22.936Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0189.uasset	2024-08-02T07:20:25.940Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0189.uexp	2024-08-02T07:20:25.941Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0190.uasset	2024-08-02T07:20:25.275Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0190.uexp	2024-08-02T07:20:25.276Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0191.uasset	2024-08-02T07:20:22.474Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0191.uexp	2024-08-02T07:20:22.475Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0192.uasset	2024-08-02T07:20:23.468Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0192.uexp	2024-08-02T07:20:23.469Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0193.uasset	2024-08-02T07:20:24.534Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0193.uexp	2024-08-02T07:20:24.536Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0194.uasset	2024-08-02T07:20:23.935Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0194.uexp	2024-08-02T07:20:23.937Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0195.uasset	2024-08-02T07:20:24.751Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0195.uexp	2024-08-02T07:20:24.752Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0196.uasset	2024-08-02T07:20:20.896Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0196.uexp	2024-08-02T07:20:20.898Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0197.uasset	2024-08-02T07:20:25.839Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0197.uexp	2024-08-02T07:20:25.841Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0198.uasset	2024-08-02T07:20:24.873Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0198.uexp	2024-08-02T07:20:24.875Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0199.uasset	2024-08-02T07:20:25.417Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0199.uexp	2024-08-02T07:20:25.419Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0200.uasset	2024-08-02T07:20:24.497Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0200.uexp	2024-08-02T07:20:24.498Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0201.uasset	2024-08-02T07:20:23.507Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0201.uexp	2024-08-02T07:20:23.508Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0202.uasset	2024-08-02T07:20:26.929Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0202.uexp	2024-08-02T07:20:26.931Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0203.uasset	2024-08-02T07:20:25.747Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0203.uexp	2024-08-02T07:20:25.748Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0204.uasset	2024-08-02T07:20:25.844Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0204.uexp	2024-08-02T07:20:25.846Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0205.uasset	2024-08-02T07:20:25.284Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0205.uexp	2024-08-02T07:20:25.285Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0206.uasset	2024-08-02T07:20:21.826Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0206.uexp	2024-08-02T07:20:21.827Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0207.uasset	2024-08-02T07:20:23.820Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0207.uexp	2024-08-02T07:20:23.822Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0208.uasset	2024-08-02T07:20:23.499Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0208.uexp	2024-08-02T07:20:23.500Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0209.uasset	2024-08-02T07:20:26.488Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0209.uexp	2024-08-02T07:20:26.489Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0210.uasset	2024-08-02T07:20:23.357Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0210.uexp	2024-08-02T07:20:23.359Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0211.uasset	2024-08-02T07:20:26.695Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0211.uexp	2024-08-02T07:20:26.696Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0212.uasset	2024-08-02T07:20:22.621Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0212.uexp	2024-08-02T07:20:22.622Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0213.uasset	2024-08-02T07:20:22.579Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0213.uexp	2024-08-02T07:20:22.580Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0214.uasset	2024-08-02T07:20:25.875Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0214.uexp	2024-08-02T07:20:25.876Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0215.uasset	2024-08-02T07:20:25.173Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0215.uexp	2024-08-02T07:20:25.175Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0216.uasset	2024-08-02T07:20:24.528Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0216.uexp	2024-08-02T07:20:24.529Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0217.uasset	2024-08-02T07:20:20.865Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0217.uexp	2024-08-02T07:20:20.866Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0218.uasset	2024-08-02T07:20:20.957Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0218.uexp	2024-08-02T07:20:20.959Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0219.uasset	2024-08-02T07:20:26.401Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0219.uexp	2024-08-02T07:20:26.402Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0220.uasset	2024-08-02T07:20:20.443Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0220.uexp	2024-08-02T07:20:20.445Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0221.uasset	2024-08-02T07:20:24.503Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0221.uexp	2024-08-02T07:20:24.504Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0222.uasset	2024-08-02T07:20:26.599Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0222.uexp	2024-08-02T07:20:26.600Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0223.uasset	2024-08-02T07:20:24.306Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0223.uexp	2024-08-02T07:20:24.307Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0224.uasset	2024-08-02T07:20:26.705Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0224.uexp	2024-08-02T07:20:26.706Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0225.uasset	2024-08-02T07:20:24.060Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0225.uexp	2024-08-02T07:20:24.061Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0226.uasset	2024-08-02T07:20:26.606Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0226.uexp	2024-08-02T07:20:26.608Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0227.uasset	2024-08-02T07:20:23.312Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0227.uexp	2024-08-02T07:20:23.313Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0228.uasset	2024-08-02T07:20:23.366Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0228.uexp	2024-08-02T07:20:23.367Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0229.uasset	2024-08-02T07:20:26.370Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0229.uexp	2024-08-02T07:20:26.371Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0230.uasset	2024-08-02T07:20:23.254Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0230.uexp	2024-08-02T07:20:23.255Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0231.uasset	2024-08-02T07:20:26.474Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0231.uexp	2024-08-02T07:20:26.476Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0232.uasset	2024-08-02T07:20:26.074Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0232.uexp	2024-08-02T07:20:26.076Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0233.uasset	2024-08-02T07:20:25.508Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0233.uexp	2024-08-02T07:20:25.510Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0234.uasset	2024-08-02T07:20:26.376Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0234.uexp	2024-08-02T07:20:26.377Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0235.uasset	2024-08-02T07:20:26.810Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0235.uexp	2024-08-02T07:20:26.812Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0236.uasset	2024-08-02T07:20:23.302Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0236.uexp	2024-08-02T07:20:23.304Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0237.uasset	2024-08-02T07:20:25.403Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0237.uexp	2024-08-02T07:20:25.404Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0238.uasset	2024-08-02T07:20:20.435Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0238.uexp	2024-08-02T07:20:20.436Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0239.uasset	2024-08-02T07:20:24.608Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0239.uexp	2024-08-02T07:20:24.609Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0240.uasset	2024-08-02T07:20:21.086Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0240.uexp	2024-08-02T07:20:21.087Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0241.uasset	2024-08-02T07:20:20.768Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0241.uexp	2024-08-02T07:20:20.769Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0242.uasset	2024-08-02T07:20:25.262Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0242.uexp	2024-08-02T07:20:25.263Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0243.uasset	2024-08-02T07:20:21.083Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0243.uexp	2024-08-02T07:20:21.084Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0244.uasset	2024-08-02T07:20:21.529Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0244.uexp	2024-08-02T07:20:21.530Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0245.uasset	2024-08-02T07:20:24.731Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0245.uexp	2024-08-02T07:20:24.733Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0246.uasset	2024-08-02T07:20:25.163Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0246.uexp	2024-08-02T07:20:25.165Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0247.uasset	2024-08-02T07:20:20.457Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0247.uexp	2024-08-02T07:20:20.459Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0248.uasset	2024-08-02T07:20:22.934Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0248.uexp	2024-08-02T07:20:22.935Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0249.uasset	2024-08-02T07:20:22.261Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0249.uexp	2024-08-02T07:20:22.262Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0250.uasset	2024-08-02T07:20:21.412Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0250.uexp	2024-08-02T07:20:21.416Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0251.uasset	2024-08-02T07:20:21.621Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0251.uexp	2024-08-02T07:20:21.622Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0252.uasset	2024-08-02T07:20:24.053Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0252.uexp	2024-08-02T07:20:24.054Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0253.uasset	2024-08-02T07:20:26.177Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0253.uexp	2024-08-02T07:20:26.178Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0254.uasset	2024-08-02T07:20:22.182Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0254.uexp	2024-08-02T07:20:22.183Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0255.uasset	2024-08-02T07:20:23.844Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0004_0255.uexp	2024-08-02T07:20:23.846Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0000.uasset	2024-08-02T07:20:23.933Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0000.uexp	2024-08-02T07:20:23.934Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0001.uasset	2024-08-02T07:20:22.065Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0001.uexp	2024-08-02T07:20:22.066Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0002.uasset	2024-08-02T07:20:24.721Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0002.uexp	2024-08-02T07:20:24.723Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0003.uasset	2024-08-02T07:20:25.404Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0003.uexp	2024-08-02T07:20:25.405Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0004.uasset	2024-08-02T07:20:20.961Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0004.uexp	2024-08-02T07:20:20.963Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0005.uasset	2024-08-02T07:20:20.554Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0005.uexp	2024-08-02T07:20:20.555Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0006.uasset	2024-08-02T07:20:24.039Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0006.uexp	2024-08-02T07:20:24.040Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0007.uasset	2024-08-02T07:20:21.827Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0007.uexp	2024-08-02T07:20:21.829Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0008.uasset	2024-08-02T07:20:22.174Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0008.uexp	2024-08-02T07:20:22.175Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0009.uasset	2024-08-02T07:20:22.705Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0009.uexp	2024-08-02T07:20:22.708Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0010.uasset	2024-08-02T07:20:22.051Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0010.uexp	2024-08-02T07:20:22.053Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0011.uasset	2024-08-02T07:20:24.889Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0011.uexp	2024-08-02T07:20:24.890Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0012.uasset	2024-08-02T07:20:25.065Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0012.uexp	2024-08-02T07:20:25.066Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0013.uasset	2024-08-02T07:20:24.286Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0013.uexp	2024-08-02T07:20:24.287Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0014.uasset	2024-08-02T07:20:24.280Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0014.uexp	2024-08-02T07:20:24.281Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0015.uasset	2024-08-02T07:20:21.853Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0015.uexp	2024-08-02T07:20:21.856Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0016.uasset	2024-08-02T07:20:21.209Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0016.uexp	2024-08-02T07:20:21.211Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0017.uasset	2024-08-02T07:20:23.035Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0017.uexp	2024-08-02T07:20:23.036Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0018.uasset	2024-08-02T07:20:22.592Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0018.uexp	2024-08-02T07:20:22.593Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0019.uasset	2024-08-02T07:20:25.942Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0019.uexp	2024-08-02T07:20:25.943Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0020.uasset	2024-08-02T07:20:25.075Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0020.uexp	2024-08-02T07:20:25.076Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0021.uasset	2024-08-02T07:20:22.932Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0021.uexp	2024-08-02T07:20:22.933Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0022.uasset	2024-08-02T07:20:25.966Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0022.uexp	2024-08-02T07:20:25.967Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0023.uasset	2024-08-02T07:20:24.734Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0023.uexp	2024-08-02T07:20:24.735Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0024.uasset	2024-08-02T07:20:23.486Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0024.uexp	2024-08-02T07:20:23.487Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0025.uasset	2024-08-02T07:20:26.597Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0025.uexp	2024-08-02T07:20:26.599Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0026.uasset	2024-08-02T07:20:24.644Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0026.uexp	2024-08-02T07:20:24.645Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0027.uasset	2024-08-02T07:20:26.727Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0027.uexp	2024-08-02T07:20:26.728Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0028.uasset	2024-08-02T07:20:26.898Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0028.uexp	2024-08-02T07:20:26.900Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0029.uasset	2024-08-02T07:20:24.950Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0029.uexp	2024-08-02T07:20:24.953Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0030.uasset	2024-08-02T07:20:20.569Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0030.uexp	2024-08-02T07:20:20.571Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0031.uasset	2024-08-02T07:20:21.219Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0031.uexp	2024-08-02T07:20:21.221Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0032.uasset	2024-08-02T07:20:24.161Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0032.uexp	2024-08-02T07:20:24.162Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0033.uasset	2024-08-02T07:20:21.744Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0033.uexp	2024-08-02T07:20:21.745Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0034.uasset	2024-08-02T07:20:26.089Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0034.uexp	2024-08-02T07:20:26.090Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0035.uasset	2024-08-02T07:20:23.685Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0035.uexp	2024-08-02T07:20:23.686Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0036.uasset	2024-08-02T07:20:25.395Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0036.uexp	2024-08-02T07:20:25.396Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0037.uasset	2024-08-02T07:20:22.173Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0037.uexp	2024-08-02T07:20:22.175Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0038.uasset	2024-08-02T07:20:20.974Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0038.uexp	2024-08-02T07:20:20.976Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0039.uasset	2024-08-02T07:20:20.462Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0039.uexp	2024-08-02T07:20:20.465Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0040.uasset	2024-08-02T07:20:23.321Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0040.uexp	2024-08-02T07:20:23.322Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0041.uasset	2024-08-02T07:20:24.146Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0041.uexp	2024-08-02T07:20:24.147Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0042.uasset	2024-08-02T07:20:22.463Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0042.uexp	2024-08-02T07:20:22.465Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0043.uasset	2024-08-02T07:20:24.637Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0043.uexp	2024-08-02T07:20:24.639Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0044.uasset	2024-08-02T07:20:20.179Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0044.uexp	2024-08-02T07:20:20.182Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0045.uasset	2024-08-02T07:20:25.940Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0045.uexp	2024-08-02T07:20:25.942Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0046.uasset	2024-08-02T07:20:22.063Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0046.uexp	2024-08-02T07:20:22.065Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0047.uasset	2024-08-02T07:20:22.042Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0047.uexp	2024-08-02T07:20:22.044Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0048.uasset	2024-08-02T07:20:23.364Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0048.uexp	2024-08-02T07:20:23.365Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0049.uasset	2024-08-02T07:20:22.391Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0049.uexp	2024-08-02T07:20:22.392Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0050.uasset	2024-08-02T07:20:20.686Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0050.uexp	2024-08-02T07:20:20.688Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0051.uasset	2024-08-02T07:20:24.946Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0051.uexp	2024-08-02T07:20:24.949Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0052.uasset	2024-08-02T07:20:22.905Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0052.uexp	2024-08-02T07:20:22.906Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0053.uasset	2024-08-02T07:20:22.260Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0053.uexp	2024-08-02T07:20:22.261Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0054.uasset	2024-08-02T07:20:20.333Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0054.uexp	2024-08-02T07:20:20.334Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0055.uasset	2024-08-02T07:20:26.283Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0055.uexp	2024-08-02T07:20:26.285Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0056.uasset	2024-08-02T07:20:20.459Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0056.uexp	2024-08-02T07:20:20.461Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0057.uasset	2024-08-02T07:20:20.442Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0057.uexp	2024-08-02T07:20:20.444Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0058.uasset	2024-08-02T07:20:21.245Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0058.uexp	2024-08-02T07:20:21.247Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0059.uasset	2024-08-02T07:20:24.972Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0059.uexp	2024-08-02T07:20:24.973Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0060.uasset	2024-08-02T07:20:23.467Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0060.uexp	2024-08-02T07:20:23.468Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0061.uasset	2024-08-02T07:20:23.716Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0061.uexp	2024-08-02T07:20:23.717Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0062.uasset	2024-08-02T07:20:20.682Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0062.uexp	2024-08-02T07:20:20.684Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0063.uasset	2024-08-02T07:20:20.781Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0063.uexp	2024-08-02T07:20:20.783Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0064.uasset	2024-08-02T07:20:20.302Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0064.uexp	2024-08-02T07:20:20.302Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0065.uasset	2024-08-02T07:20:22.613Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0065.uexp	2024-08-02T07:20:22.615Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0066.uasset	2024-08-02T07:20:24.614Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0066.uexp	2024-08-02T07:20:24.615Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0067.uasset	2024-08-02T07:20:25.176Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0067.uexp	2024-08-02T07:20:25.177Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0068.uasset	2024-08-02T07:20:22.472Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0068.uexp	2024-08-02T07:20:22.473Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0069.uasset	2024-08-02T07:20:24.621Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0069.uexp	2024-08-02T07:20:24.623Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0070.uasset	2024-08-02T07:20:23.320Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0070.uexp	2024-08-02T07:20:23.321Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0071.uasset	2024-08-02T07:20:22.290Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0071.uexp	2024-08-02T07:20:22.291Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0072.uasset	2024-08-02T07:20:20.332Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0072.uexp	2024-08-02T07:20:20.333Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0073.uasset	2024-08-02T07:20:23.371Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0073.uexp	2024-08-02T07:20:23.372Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0074.uasset	2024-08-02T07:20:25.526Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0074.uexp	2024-08-02T07:20:25.527Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0075.uasset	2024-08-02T07:20:23.724Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0075.uexp	2024-08-02T07:20:23.726Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0076.uasset	2024-08-02T07:20:20.790Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0076.uexp	2024-08-02T07:20:20.791Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0077.uasset	2024-08-02T07:20:25.393Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0077.uexp	2024-08-02T07:20:25.395Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0078.uasset	2024-08-02T07:20:20.319Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0078.uexp	2024-08-02T07:20:20.320Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0079.uasset	2024-08-02T07:20:24.941Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0079.uexp	2024-08-02T07:20:24.943Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0080.uasset	2024-08-02T07:20:26.801Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0080.uexp	2024-08-02T07:20:26.803Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0081.uasset	2024-08-02T07:20:24.143Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0081.uexp	2024-08-02T07:20:24.144Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0082.uasset	2024-08-02T07:20:24.874Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0082.uexp	2024-08-02T07:20:24.876Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0083.uasset	2024-08-02T07:20:25.843Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0083.uexp	2024-08-02T07:20:25.845Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0084.uasset	2024-08-02T07:20:20.789Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0084.uexp	2024-08-02T07:20:20.790Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0085.uasset	2024-08-02T07:20:25.396Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0085.uexp	2024-08-02T07:20:25.397Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0086.uasset	2024-08-02T07:20:21.850Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0086.uexp	2024-08-02T07:20:21.851Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0087.uasset	2024-08-02T07:20:26.153Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0087.uexp	2024-08-02T07:20:26.154Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0088.uasset	2024-08-02T07:20:22.268Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0088.uexp	2024-08-02T07:20:22.270Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0089.uasset	2024-08-02T07:20:24.514Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0089.uexp	2024-08-02T07:20:24.516Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0090.uasset	2024-08-02T07:20:24.310Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0090.uexp	2024-08-02T07:20:24.311Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0091.uasset	2024-08-02T07:20:24.038Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0091.uexp	2024-08-02T07:20:24.039Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0092.uasset	2024-08-02T07:20:21.847Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0092.uexp	2024-08-02T07:20:21.848Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0093.uasset	2024-08-02T07:20:23.036Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0093.uexp	2024-08-02T07:20:23.038Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0094.uasset	2024-08-02T07:20:25.549Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0094.uexp	2024-08-02T07:20:25.550Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0095.uasset	2024-08-02T07:20:25.974Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0095.uexp	2024-08-02T07:20:25.976Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0096.uasset	2024-08-02T07:20:24.970Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0096.uexp	2024-08-02T07:20:24.972Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0097.uasset	2024-08-02T07:20:26.392Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0097.uexp	2024-08-02T07:20:26.394Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0098.uasset	2024-08-02T07:20:24.173Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0098.uexp	2024-08-02T07:20:24.173Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0099.uasset	2024-08-02T07:20:24.718Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0099.uexp	2024-08-02T07:20:24.719Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0100.uasset	2024-08-02T07:20:21.527Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0100.uexp	2024-08-02T07:20:21.529Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0101.uasset	2024-08-02T07:20:24.887Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0101.uexp	2024-08-02T07:20:24.889Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0102.uasset	2024-08-02T07:20:21.244Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0102.uexp	2024-08-02T07:20:21.245Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0103.uasset	2024-08-02T07:20:26.054Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0103.uexp	2024-08-02T07:20:26.055Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0104.uasset	2024-08-02T07:20:25.051Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0104.uexp	2024-08-02T07:20:25.052Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0105.uasset	2024-08-02T07:20:20.864Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0105.uexp	2024-08-02T07:20:20.866Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0106.uasset	2024-08-02T07:20:25.949Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0106.uexp	2024-08-02T07:20:25.951Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0107.uasset	2024-08-02T07:20:23.286Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0107.uexp	2024-08-02T07:20:23.289Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0108.uasset	2024-08-02T07:20:23.034Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0108.uexp	2024-08-02T07:20:23.035Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0109.uasset	2024-08-02T07:20:26.161Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0109.uexp	2024-08-02T07:20:26.163Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0110.uasset	2024-08-02T07:20:23.273Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0110.uexp	2024-08-02T07:20:23.275Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0111.uasset	2024-08-02T07:20:25.938Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0111.uexp	2024-08-02T07:20:25.940Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0112.uasset	2024-08-02T07:20:23.147Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0112.uexp	2024-08-02T07:20:23.148Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0113.uasset	2024-08-02T07:20:26.160Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0113.uexp	2024-08-02T07:20:26.161Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0114.uasset	2024-08-02T07:20:24.524Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0114.uexp	2024-08-02T07:20:24.526Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0115.uasset	2024-08-02T07:20:24.974Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0115.uexp	2024-08-02T07:20:24.976Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0116.uasset	2024-08-02T07:20:25.542Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0116.uexp	2024-08-02T07:20:25.543Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0117.uasset	2024-08-02T07:20:23.518Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0117.uexp	2024-08-02T07:20:23.520Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0118.uasset	2024-08-02T07:20:27.014Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0118.uexp	2024-08-02T07:20:27.016Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0119.uasset	2024-08-02T07:20:23.955Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0119.uexp	2024-08-02T07:20:23.956Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0120.uasset	2024-08-02T07:20:20.205Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0120.uexp	2024-08-02T07:20:20.206Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0121.uasset	2024-08-02T07:20:22.267Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0121.uexp	2024-08-02T07:20:22.268Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0122.uasset	2024-08-02T07:20:26.044Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0122.uexp	2024-08-02T07:20:26.045Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0123.uasset	2024-08-02T07:20:22.815Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0123.uexp	2024-08-02T07:20:22.817Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0124.uasset	2024-08-02T07:20:24.502Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0124.uexp	2024-08-02T07:20:24.503Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0125.uasset	2024-08-02T07:20:22.907Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0125.uexp	2024-08-02T07:20:22.909Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0126.uasset	2024-08-02T07:20:21.536Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0126.uexp	2024-08-02T07:20:21.538Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0127.uasset	2024-08-02T07:20:20.553Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0127.uexp	2024-08-02T07:20:20.553Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0128.uasset	2024-08-02T07:20:22.625Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0128.uexp	2024-08-02T07:20:22.626Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0129.uasset	2024-08-02T07:20:23.738Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0129.uexp	2024-08-02T07:20:23.739Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0130.uasset	2024-08-02T07:20:20.882Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0130.uexp	2024-08-02T07:20:20.884Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0131.uasset	2024-08-02T07:20:25.742Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0131.uexp	2024-08-02T07:20:25.744Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0132.uasset	2024-08-02T07:20:24.481Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0132.uexp	2024-08-02T07:20:24.482Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0133.uasset	2024-08-02T07:20:23.124Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0133.uexp	2024-08-02T07:20:23.126Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0134.uasset	2024-08-02T07:20:20.767Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0134.uexp	2024-08-02T07:20:20.768Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0135.uasset	2024-08-02T07:20:27.019Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0135.uexp	2024-08-02T07:20:27.022Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0136.uasset	2024-08-02T07:20:22.285Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0136.uexp	2024-08-02T07:20:22.286Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0137.uasset	2024-08-02T07:20:23.847Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0137.uexp	2024-08-02T07:20:23.849Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0138.uasset	2024-08-02T07:20:26.830Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0138.uexp	2024-08-02T07:20:26.831Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0139.uasset	2024-08-02T07:20:24.521Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0139.uexp	2024-08-02T07:20:24.522Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0140.uasset	2024-08-02T07:20:24.492Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0140.uexp	2024-08-02T07:20:24.493Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0141.uasset	2024-08-02T07:20:24.032Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0141.uexp	2024-08-02T07:20:24.034Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0142.uasset	2024-08-02T07:20:23.156Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0142.uexp	2024-08-02T07:20:23.157Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0143.uasset	2024-08-02T07:20:26.284Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0143.uexp	2024-08-02T07:20:26.285Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0144.uasset	2024-08-02T07:20:25.748Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0144.uexp	2024-08-02T07:20:25.750Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0145.uasset	2024-08-02T07:20:24.359Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0145.uexp	2024-08-02T07:20:24.360Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0146.uasset	2024-08-02T07:20:22.602Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0146.uexp	2024-08-02T07:20:22.603Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0147.uasset	2024-08-02T07:20:25.620Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0147.uexp	2024-08-02T07:20:25.621Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0148.uasset	2024-08-02T07:20:22.839Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0148.uexp	2024-08-02T07:20:22.840Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0149.uasset	2024-08-02T07:20:20.198Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0149.uexp	2024-08-02T07:20:20.201Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0150.uasset	2024-08-02T07:20:21.852Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0150.uexp	2024-08-02T07:20:21.853Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0151.uasset	2024-08-02T07:20:21.422Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0151.uexp	2024-08-02T07:20:21.423Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0152.uasset	2024-08-02T07:20:22.594Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0152.uexp	2024-08-02T07:20:22.596Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0153.uasset	2024-08-02T07:20:21.288Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0153.uexp	2024-08-02T07:20:21.290Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0154.uasset	2024-08-02T07:20:23.850Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0154.uexp	2024-08-02T07:20:23.851Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0155.uasset	2024-08-02T07:20:22.172Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0155.uexp	2024-08-02T07:20:22.173Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0156.uasset	2024-08-02T07:20:25.719Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0156.uexp	2024-08-02T07:20:25.721Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0157.uasset	2024-08-02T07:20:24.325Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0157.uexp	2024-08-02T07:20:24.327Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0158.uasset	2024-08-02T07:20:26.313Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0158.uexp	2024-08-02T07:20:26.314Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0159.uasset	2024-08-02T07:20:24.886Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0159.uexp	2024-08-02T07:20:24.887Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0160.uasset	2024-08-02T07:20:23.299Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0160.uexp	2024-08-02T07:20:23.300Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0161.uasset	2024-08-02T07:20:25.842Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0161.uexp	2024-08-02T07:20:25.843Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0162.uasset	2024-08-02T07:20:23.932Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0162.uexp	2024-08-02T07:20:23.933Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0163.uasset	2024-08-02T07:20:22.281Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0163.uexp	2024-08-02T07:20:22.282Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0164.uasset	2024-08-02T07:20:20.299Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0164.uexp	2024-08-02T07:20:20.300Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0165.uasset	2024-08-02T07:20:24.636Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0165.uexp	2024-08-02T07:20:24.637Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0166.uasset	2024-08-02T07:20:23.490Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0166.uexp	2024-08-02T07:20:23.492Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0167.uasset	2024-08-02T07:20:25.040Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0167.uexp	2024-08-02T07:20:25.042Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0168.uasset	2024-08-02T07:20:26.298Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0168.uexp	2024-08-02T07:20:26.299Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0169.uasset	2024-08-02T07:20:20.668Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0169.uexp	2024-08-02T07:20:20.669Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0170.uasset	2024-08-02T07:20:22.462Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0170.uexp	2024-08-02T07:20:22.464Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0171.uasset	2024-08-02T07:20:25.073Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0171.uexp	2024-08-02T07:20:25.074Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0172.uasset	2024-08-02T07:20:27.014Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0172.uexp	2024-08-02T07:20:27.015Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0173.uasset	2024-08-02T07:20:22.922Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0173.uexp	2024-08-02T07:20:22.924Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0174.uasset	2024-08-02T07:20:25.870Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0174.uexp	2024-08-02T07:20:25.872Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0175.uasset	2024-08-02T07:20:24.295Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0175.uexp	2024-08-02T07:20:24.297Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0176.uasset	2024-08-02T07:20:20.671Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0176.uexp	2024-08-02T07:20:20.672Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0177.uasset	2024-08-02T07:20:22.578Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0177.uexp	2024-08-02T07:20:22.579Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0178.uasset	2024-08-02T07:20:24.362Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0178.uexp	2024-08-02T07:20:24.363Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0179.uasset	2024-08-02T07:20:20.330Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0179.uexp	2024-08-02T07:20:20.332Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0180.uasset	2024-08-02T07:20:25.547Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0180.uexp	2024-08-02T07:20:25.549Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0181.uasset	2024-08-02T07:20:24.176Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0181.uexp	2024-08-02T07:20:24.177Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0182.uasset	2024-08-02T07:20:26.378Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0182.uexp	2024-08-02T07:20:26.380Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0183.uasset	2024-08-02T07:20:20.702Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0183.uexp	2024-08-02T07:20:20.704Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0184.uasset	2024-08-02T07:20:25.162Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0184.uexp	2024-08-02T07:20:25.163Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0185.uasset	2024-08-02T07:20:20.984Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0185.uexp	2024-08-02T07:20:20.985Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0186.uasset	2024-08-02T07:20:21.292Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0186.uexp	2024-08-02T07:20:21.295Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0187.uasset	2024-08-02T07:20:23.942Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0187.uexp	2024-08-02T07:20:23.943Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0188.uasset	2024-08-02T07:20:25.857Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0188.uexp	2024-08-02T07:20:25.859Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0189.uasset	2024-08-02T07:20:22.352Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0189.uexp	2024-08-02T07:20:22.353Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0190.uasset	2024-08-02T07:20:23.854Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0190.uexp	2024-08-02T07:20:23.855Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0191.uasset	2024-08-02T07:20:21.499Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0191.uexp	2024-08-02T07:20:21.500Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0192.uasset	2024-08-02T07:20:20.675Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0192.uexp	2024-08-02T07:20:20.676Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0193.uasset	2024-08-02T07:20:26.905Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0193.uexp	2024-08-02T07:20:26.907Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0194.uasset	2024-08-02T07:20:24.028Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0194.uexp	2024-08-02T07:20:24.029Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0195.uasset	2024-08-02T07:20:22.471Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0195.uexp	2024-08-02T07:20:22.472Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0196.uasset	2024-08-02T07:20:26.596Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0196.uexp	2024-08-02T07:20:26.597Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0197.uasset	2024-08-02T07:20:24.724Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0197.uexp	2024-08-02T07:20:24.726Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0198.uasset	2024-08-02T07:20:22.710Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0198.uexp	2024-08-02T07:20:22.712Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0199.uasset	2024-08-02T07:20:25.431Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0199.uexp	2024-08-02T07:20:25.432Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0200.uasset	2024-08-02T07:20:22.914Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0200.uexp	2024-08-02T07:20:22.915Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0201.uasset	2024-08-02T07:20:21.317Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0201.uexp	2024-08-02T07:20:21.318Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0202.uasset	2024-08-02T07:20:22.035Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0202.uexp	2024-08-02T07:20:22.036Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0203.uasset	2024-08-02T07:20:20.973Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0203.uexp	2024-08-02T07:20:20.974Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0204.uasset	2024-08-02T07:20:21.741Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0204.uexp	2024-08-02T07:20:21.742Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0205.uasset	2024-08-02T07:20:26.188Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0205.uexp	2024-08-02T07:20:26.189Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0206.uasset	2024-08-02T07:20:22.624Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0206.uexp	2024-08-02T07:20:22.626Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0207.uasset	2024-08-02T07:20:25.161Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0207.uexp	2024-08-02T07:20:25.162Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0208.uasset	2024-08-02T07:20:24.507Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0208.uexp	2024-08-02T07:20:24.508Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0209.uasset	2024-08-02T07:20:20.785Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0209.uexp	2024-08-02T07:20:20.787Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0210.uasset	2024-08-02T07:20:25.752Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0210.uexp	2024-08-02T07:20:25.754Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0211.uasset	2024-08-02T07:20:25.288Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0211.uexp	2024-08-02T07:20:25.289Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0212.uasset	2024-08-02T07:20:24.607Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0212.uexp	2024-08-02T07:20:24.607Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0213.uasset	2024-08-02T07:20:23.277Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0213.uexp	2024-08-02T07:20:23.279Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0214.uasset	2024-08-02T07:20:26.689Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0214.uexp	2024-08-02T07:20:26.693Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0215.uasset	2024-08-02T07:20:24.382Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0215.uexp	2024-08-02T07:20:24.383Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0216.uasset	2024-08-02T07:20:26.693Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0216.uexp	2024-08-02T07:20:26.696Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0217.uasset	2024-08-02T07:20:22.289Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0217.uexp	2024-08-02T07:20:22.290Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0218.uasset	2024-08-02T07:20:23.950Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0218.uexp	2024-08-02T07:20:23.951Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0219.uasset	2024-08-02T07:20:20.890Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0219.uexp	2024-08-02T07:20:20.891Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0220.uasset	2024-08-02T07:20:25.268Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0220.uexp	2024-08-02T07:20:25.269Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0221.uasset	2024-08-02T07:20:26.495Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0221.uexp	2024-08-02T07:20:26.497Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0222.uasset	2024-08-02T07:20:26.903Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0222.uexp	2024-08-02T07:20:26.905Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0223.uasset	2024-08-02T07:20:22.354Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0223.uexp	2024-08-02T07:20:22.355Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0224.uasset	2024-08-02T07:20:26.940Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0224.uexp	2024-08-02T07:20:26.942Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0225.uasset	2024-08-02T07:20:21.301Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0225.uexp	2024-08-02T07:20:21.302Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0226.uasset	2024-08-02T07:20:24.723Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0226.uexp	2024-08-02T07:20:24.724Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0227.uasset	2024-08-02T07:20:26.473Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0227.uexp	2024-08-02T07:20:26.475Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0228.uasset	2024-08-02T07:20:26.394Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0228.uexp	2024-08-02T07:20:26.395Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0229.uasset	2024-08-02T07:20:24.511Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0229.uexp	2024-08-02T07:20:24.512Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0230.uasset	2024-08-02T07:20:25.422Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0230.uexp	2024-08-02T07:20:25.423Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0231.uasset	2024-08-02T07:20:26.184Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0231.uexp	2024-08-02T07:20:26.185Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0232.uasset	2024-08-02T07:20:26.278Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0232.uexp	2024-08-02T07:20:26.281Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0233.uasset	2024-08-02T07:20:24.174Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0233.uexp	2024-08-02T07:20:24.175Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0234.uasset	2024-08-02T07:20:23.269Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0234.uexp	2024-08-02T07:20:23.271Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0235.uasset	2024-08-02T07:20:24.371Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0235.uexp	2024-08-02T07:20:24.372Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0236.uasset	2024-08-02T07:20:23.158Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0236.uexp	2024-08-02T07:20:23.159Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0237.uasset	2024-08-02T07:20:21.967Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0237.uexp	2024-08-02T07:20:21.969Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0238.uasset	2024-08-02T07:20:20.471Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0238.uexp	2024-08-02T07:20:20.473Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0239.uasset	2024-08-02T07:20:22.604Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0239.uexp	2024-08-02T07:20:22.606Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0240.uasset	2024-08-02T07:20:22.375Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0240.uexp	2024-08-02T07:20:22.376Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0241.uasset	2024-08-02T07:20:26.318Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0241.uexp	2024-08-02T07:20:26.319Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0242.uasset	2024-08-02T07:20:24.050Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0242.uexp	2024-08-02T07:20:24.052Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0243.uasset	2024-08-02T07:20:25.524Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0243.uexp	2024-08-02T07:20:25.526Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0244.uasset	2024-08-02T07:20:22.395Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0244.uexp	2024-08-02T07:20:22.396Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0245.uasset	2024-08-02T07:20:21.289Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0245.uexp	2024-08-02T07:20:21.292Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0246.uasset	2024-08-02T07:20:21.215Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0246.uexp	2024-08-02T07:20:21.216Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0247.uasset	2024-08-02T07:20:23.859Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0247.uexp	2024-08-02T07:20:23.860Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0248.uasset	2024-08-02T07:20:24.501Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0248.uexp	2024-08-02T07:20:24.502Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0249.uasset	2024-08-02T07:20:23.833Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0249.uexp	2024-08-02T07:20:23.835Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0250.uasset	2024-08-02T07:20:21.249Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0250.uexp	2024-08-02T07:20:21.250Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0251.uasset	2024-08-02T07:20:24.290Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0251.uexp	2024-08-02T07:20:24.291Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0252.uasset	2024-08-02T07:20:23.026Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0252.uexp	2024-08-02T07:20:23.026Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0253.uasset	2024-08-02T07:20:25.430Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0253.uexp	2024-08-02T07:20:25.431Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0254.uasset	2024-08-02T07:20:25.552Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0254.uexp	2024-08-02T07:20:25.553Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0255.uasset	2024-08-02T07:20:21.501Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0005_0255.uexp	2024-08-02T07:20:21.502Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0000.uasset	2024-08-02T07:20:23.959Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0000.uexp	2024-08-02T07:20:23.960Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0001.uasset	2024-08-02T07:20:20.557Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0001.uexp	2024-08-02T07:20:20.558Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0002.uasset	2024-08-02T07:20:23.319Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0002.uexp	2024-08-02T07:20:23.319Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0003.uasset	2024-08-02T07:20:20.551Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0003.uexp	2024-08-02T07:20:20.553Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0004.uasset	2024-08-02T07:20:26.792Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0004.uexp	2024-08-02T07:20:26.794Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0005.uasset	2024-08-02T07:20:21.618Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0005.uexp	2024-08-02T07:20:21.620Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0006.uasset	2024-08-02T07:20:20.341Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0006.uexp	2024-08-02T07:20:20.342Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0007.uasset	2024-08-02T07:20:25.634Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0007.uexp	2024-08-02T07:20:25.635Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0008.uasset	2024-08-02T07:20:25.433Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0008.uexp	2024-08-02T07:20:25.434Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0009.uasset	2024-08-02T07:20:25.044Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0009.uexp	2024-08-02T07:20:25.045Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0010.uasset	2024-08-02T07:20:24.313Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0010.uexp	2024-08-02T07:20:24.315Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0011.uasset	2024-08-02T07:20:21.748Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0011.uexp	2024-08-02T07:20:21.749Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0012.uasset	2024-08-02T07:20:24.642Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0012.uexp	2024-08-02T07:20:24.643Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0013.uasset	2024-08-02T07:20:25.969Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0013.uexp	2024-08-02T07:20:25.971Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0014.uasset	2024-08-02T07:20:22.833Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0014.uexp	2024-08-02T07:20:22.835Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0015.uasset	2024-08-02T07:20:23.818Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0015.uexp	2024-08-02T07:20:23.820Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0016.uasset	2024-08-02T07:20:24.040Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0016.uexp	2024-08-02T07:20:24.041Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0017.uasset	2024-08-02T07:20:21.972Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0017.uexp	2024-08-02T07:20:21.973Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0018.uasset	2024-08-02T07:20:25.851Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0018.uexp	2024-08-02T07:20:25.852Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0019.uasset	2024-08-02T07:20:21.001Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0019.uexp	2024-08-02T07:20:21.003Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0020.uasset	2024-08-02T07:20:26.491Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0020.uexp	2024-08-02T07:20:26.493Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0021.uasset	2024-08-02T07:20:20.868Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0021.uexp	2024-08-02T07:20:20.869Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0022.uasset	2024-08-02T07:20:25.383Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0022.uexp	2024-08-02T07:20:25.384Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0023.uasset	2024-08-02T07:20:25.731Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0023.uexp	2024-08-02T07:20:25.734Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0024.uasset	2024-08-02T07:20:24.059Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0024.uexp	2024-08-02T07:20:24.060Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0025.uasset	2024-08-02T07:20:23.049Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0025.uexp	2024-08-02T07:20:23.050Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0026.uasset	2024-08-02T07:20:21.324Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0026.uexp	2024-08-02T07:20:21.326Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0027.uasset	2024-08-02T07:20:27.010Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0027.uexp	2024-08-02T07:20:27.013Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0028.uasset	2024-08-02T07:20:23.033Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0028.uexp	2024-08-02T07:20:23.034Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0029.uasset	2024-08-02T07:20:22.390Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0029.uexp	2024-08-02T07:20:22.391Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0030.uasset	2024-08-02T07:20:22.181Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0030.uexp	2024-08-02T07:20:22.182Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0031.uasset	2024-08-02T07:20:21.647Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0031.uexp	2024-08-02T07:20:21.648Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0032.uasset	2024-08-02T07:20:22.066Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0032.uexp	2024-08-02T07:20:22.068Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0033.uasset	2024-08-02T07:20:26.482Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0033.uexp	2024-08-02T07:20:26.483Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0034.uasset	2024-08-02T07:20:24.146Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0034.uexp	2024-08-02T07:20:24.147Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0035.uasset	2024-08-02T07:20:22.062Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0035.uexp	2024-08-02T07:20:22.063Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0036.uasset	2024-08-02T07:20:22.257Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0036.uexp	2024-08-02T07:20:22.258Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0037.uasset	2024-08-02T07:20:25.648Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0037.uexp	2024-08-02T07:20:25.650Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0038.uasset	2024-08-02T07:20:26.059Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0038.uexp	2024-08-02T07:20:26.062Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0039.uasset	2024-08-02T07:20:20.326Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0039.uexp	2024-08-02T07:20:20.327Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0040.uasset	2024-08-02T07:20:20.872Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0040.uexp	2024-08-02T07:20:20.873Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0041.uasset	2024-08-02T07:20:24.543Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0041.uexp	2024-08-02T07:20:24.544Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0042.uasset	2024-08-02T07:20:26.179Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0042.uexp	2024-08-02T07:20:26.181Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0043.uasset	2024-08-02T07:20:25.265Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0043.uexp	2024-08-02T07:20:25.267Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0044.uasset	2024-08-02T07:20:25.947Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0044.uexp	2024-08-02T07:20:25.948Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0045.uasset	2024-08-02T07:20:21.946Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0045.uexp	2024-08-02T07:20:21.947Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0046.uasset	2024-08-02T07:20:20.315Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0046.uexp	2024-08-02T07:20:20.316Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0047.uasset	2024-08-02T07:20:20.881Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0047.uexp	2024-08-02T07:20:20.883Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0048.uasset	2024-08-02T07:20:24.363Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0048.uexp	2024-08-02T07:20:24.364Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0049.uasset	2024-08-02T07:20:27.008Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0049.uexp	2024-08-02T07:20:27.010Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0050.uasset	2024-08-02T07:20:21.084Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0050.uexp	2024-08-02T07:20:21.086Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0051.uasset	2024-08-02T07:20:20.550Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0051.uexp	2024-08-02T07:20:20.551Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0052.uasset	2024-08-02T07:20:21.957Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0052.uexp	2024-08-02T07:20:21.958Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0053.uasset	2024-08-02T07:20:20.549Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0053.uexp	2024-08-02T07:20:20.551Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0054.uasset	2024-08-02T07:20:21.859Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0054.uexp	2024-08-02T07:20:21.860Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0055.uasset	2024-08-02T07:20:23.130Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0055.uexp	2024-08-02T07:20:23.132Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0056.uasset	2024-08-02T07:20:23.732Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0056.uexp	2024-08-02T07:20:23.733Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0057.uasset	2024-08-02T07:20:22.804Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0057.uexp	2024-08-02T07:20:22.806Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0058.uasset	2024-08-02T07:20:26.187Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0058.uexp	2024-08-02T07:20:26.188Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0059.uasset	2024-08-02T07:20:23.494Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0059.uexp	2024-08-02T07:20:23.495Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0060.uasset	2024-08-02T07:20:24.318Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0060.uexp	2024-08-02T07:20:24.319Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0061.uasset	2024-08-02T07:20:21.419Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0061.uexp	2024-08-02T07:20:21.420Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0062.uasset	2024-08-02T07:20:23.042Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0062.uexp	2024-08-02T07:20:23.044Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0063.uasset	2024-08-02T07:20:26.809Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0063.uexp	2024-08-02T07:20:26.811Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0064.uasset	2024-08-02T07:20:21.100Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0064.uexp	2024-08-02T07:20:21.101Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0065.uasset	2024-08-02T07:20:22.608Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0065.uexp	2024-08-02T07:20:22.609Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0066.uasset	2024-08-02T07:20:21.412Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0066.uexp	2024-08-02T07:20:21.416Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0067.uasset	2024-08-02T07:20:24.490Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0067.uexp	2024-08-02T07:20:24.492Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0068.uasset	2024-08-02T07:20:26.469Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0068.uexp	2024-08-02T07:20:26.471Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0069.uasset	2024-08-02T07:20:25.531Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0069.uexp	2024-08-02T07:20:25.533Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0070.uasset	2024-08-02T07:20:21.639Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0070.uexp	2024-08-02T07:20:21.641Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0071.uasset	2024-08-02T07:20:23.305Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0071.uexp	2024-08-02T07:20:23.306Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0072.uasset	2024-08-02T07:20:25.437Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0072.uexp	2024-08-02T07:20:25.439Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0073.uasset	2024-08-02T07:20:21.729Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0073.uexp	2024-08-02T07:20:21.730Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0074.uasset	2024-08-02T07:20:24.623Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0074.uexp	2024-08-02T07:20:24.625Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0075.uasset	2024-08-02T07:20:20.677Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0075.uexp	2024-08-02T07:20:20.679Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0076.uasset	2024-08-02T07:20:21.824Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0076.uexp	2024-08-02T07:20:21.826Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0077.uasset	2024-08-02T07:20:20.667Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0077.uexp	2024-08-02T07:20:20.668Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0078.uasset	2024-08-02T07:20:21.630Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0078.uexp	2024-08-02T07:20:21.632Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0079.uasset	2024-08-02T07:20:26.470Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0079.uexp	2024-08-02T07:20:26.472Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0080.uasset	2024-08-02T07:20:22.931Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0080.uexp	2024-08-02T07:20:22.932Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0081.uasset	2024-08-02T07:20:25.157Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0081.uexp	2024-08-02T07:20:25.159Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0082.uasset	2024-08-02T07:20:22.941Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0082.uexp	2024-08-02T07:20:22.943Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0083.uasset	2024-08-02T07:20:26.301Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0083.uexp	2024-08-02T07:20:26.303Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0084.uasset	2024-08-02T07:20:25.071Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0084.uexp	2024-08-02T07:20:25.073Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0085.uasset	2024-08-02T07:20:21.959Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0085.uexp	2024-08-02T07:20:21.960Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0086.uasset	2024-08-02T07:20:25.859Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0086.uexp	2024-08-02T07:20:25.860Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0087.uasset	2024-08-02T07:20:23.460Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0087.uexp	2024-08-02T07:20:23.462Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0088.uasset	2024-08-02T07:20:20.863Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0088.uexp	2024-08-02T07:20:20.864Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0089.uasset	2024-08-02T07:20:25.287Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0089.uexp	2024-08-02T07:20:25.288Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0090.uasset	2024-08-02T07:20:24.273Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0090.uexp	2024-08-02T07:20:24.274Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0091.uasset	2024-08-02T07:20:21.739Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0091.uexp	2024-08-02T07:20:21.741Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0092.uasset	2024-08-02T07:20:24.057Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0092.uexp	2024-08-02T07:20:24.059Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0093.uasset	2024-08-02T07:20:25.948Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0093.uexp	2024-08-02T07:20:25.949Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0094.uasset	2024-08-02T07:20:25.964Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0094.uexp	2024-08-02T07:20:25.965Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0095.uasset	2024-08-02T07:20:22.807Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0095.uexp	2024-08-02T07:20:22.808Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0096.uasset	2024-08-02T07:20:21.955Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0096.uexp	2024-08-02T07:20:21.956Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0097.uasset	2024-08-02T07:20:23.720Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0097.uexp	2024-08-02T07:20:23.722Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0098.uasset	2024-08-02T07:20:25.178Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0098.uexp	2024-08-02T07:20:25.179Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0099.uasset	2024-08-02T07:20:20.312Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0099.uexp	2024-08-02T07:20:20.313Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0100.uasset	2024-08-02T07:20:23.275Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0100.uexp	2024-08-02T07:20:23.278Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0101.uasset	2024-08-02T07:20:23.517Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0101.uexp	2024-08-02T07:20:23.519Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0102.uasset	2024-08-02T07:20:26.912Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0102.uexp	2024-08-02T07:20:26.915Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0103.uasset	2024-08-02T07:20:20.693Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0103.uexp	2024-08-02T07:20:20.694Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0104.uasset	2024-08-02T07:20:22.053Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0104.uexp	2024-08-02T07:20:22.054Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0105.uasset	2024-08-02T07:20:24.720Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0105.uexp	2024-08-02T07:20:24.721Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0106.uasset	2024-08-02T07:20:22.699Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0106.uexp	2024-08-02T07:20:22.700Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0107.uasset	2024-08-02T07:20:20.701Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0107.uexp	2024-08-02T07:20:20.702Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0108.uasset	2024-08-02T07:20:23.252Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0108.uexp	2024-08-02T07:20:23.253Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0109.uasset	2024-08-02T07:20:23.353Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0109.uexp	2024-08-02T07:20:23.354Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0110.uasset	2024-08-02T07:20:24.940Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0110.uexp	2024-08-02T07:20:24.941Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0111.uasset	2024-08-02T07:20:25.751Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0111.uexp	2024-08-02T07:20:25.752Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0112.uasset	2024-08-02T07:20:22.456Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0112.uexp	2024-08-02T07:20:22.458Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0113.uasset	2024-08-02T07:20:20.748Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0113.uexp	2024-08-02T07:20:20.749Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0114.uasset	2024-08-02T07:20:26.582Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0114.uexp	2024-08-02T07:20:26.584Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0115.uasset	2024-08-02T07:20:22.042Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0115.uexp	2024-08-02T07:20:22.042Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0116.uasset	2024-08-02T07:20:20.988Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0116.uexp	2024-08-02T07:20:20.990Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0117.uasset	2024-08-02T07:20:24.869Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0117.uexp	2024-08-02T07:20:24.870Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0118.uasset	2024-08-02T07:20:23.740Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0118.uexp	2024-08-02T07:20:23.741Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0119.uasset	2024-08-02T07:20:26.726Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0119.uexp	2024-08-02T07:20:26.727Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0120.uasset	2024-08-02T07:20:21.735Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0120.uexp	2024-08-02T07:20:21.736Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0121.uasset	2024-08-02T07:20:27.027Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0121.uexp	2024-08-02T07:20:27.028Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0122.uasset	2024-08-02T07:20:26.713Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0122.uexp	2024-08-02T07:20:26.715Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0123.uasset	2024-08-02T07:20:21.831Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0123.uexp	2024-08-02T07:20:21.832Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0124.uasset	2024-08-02T07:20:25.757Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0124.uexp	2024-08-02T07:20:25.759Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0125.uasset	2024-08-02T07:20:26.724Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0125.uexp	2024-08-02T07:20:26.726Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0126.uasset	2024-08-02T07:20:25.836Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0126.uexp	2024-08-02T07:20:25.838Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0127.uasset	2024-08-02T07:20:25.865Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0127.uexp	2024-08-02T07:20:25.867Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0128.uasset	2024-08-02T07:20:24.729Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0128.uexp	2024-08-02T07:20:24.730Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0129.uasset	2024-08-02T07:20:20.571Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0129.uexp	2024-08-02T07:20:20.572Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0130.uasset	2024-08-02T07:20:20.438Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0130.uexp	2024-08-02T07:20:20.439Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0131.uasset	2024-08-02T07:20:24.301Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0131.uexp	2024-08-02T07:20:24.303Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0132.uasset	2024-08-02T07:20:26.397Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0132.uexp	2024-08-02T07:20:26.398Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0133.uasset	2024-08-02T07:20:26.721Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0133.uexp	2024-08-02T07:20:26.723Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0134.uasset	2024-08-02T07:20:20.568Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0134.uexp	2024-08-02T07:20:20.569Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0135.uasset	2024-08-02T07:20:24.533Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0135.uexp	2024-08-02T07:20:24.535Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0136.uasset	2024-08-02T07:20:25.522Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0136.uexp	2024-08-02T07:20:25.524Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0137.uasset	2024-08-02T07:20:21.206Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0137.uexp	2024-08-02T07:20:21.208Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0138.uasset	2024-08-02T07:20:20.971Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0138.uexp	2024-08-02T07:20:20.973Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0139.uasset	2024-08-02T07:20:21.242Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0139.uexp	2024-08-02T07:20:21.244Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0140.uasset	2024-08-02T07:20:26.038Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0140.uexp	2024-08-02T07:20:26.040Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0141.uasset	2024-08-02T07:20:21.241Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0141.uexp	2024-08-02T07:20:21.243Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0142.uasset	2024-08-02T07:20:24.740Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0142.uexp	2024-08-02T07:20:24.742Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0143.uasset	2024-08-02T07:20:21.093Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0143.uexp	2024-08-02T07:20:21.094Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0144.uasset	2024-08-02T07:20:22.071Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0144.uexp	2024-08-02T07:20:22.073Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0145.uasset	2024-08-02T07:20:25.756Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0145.uexp	2024-08-02T07:20:25.757Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0146.uasset	2024-08-02T07:20:23.857Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0146.uexp	2024-08-02T07:20:23.859Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0147.uasset	2024-08-02T07:20:26.290Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0147.uexp	2024-08-02T07:20:26.291Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0148.uasset	2024-08-02T07:20:26.928Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0148.uexp	2024-08-02T07:20:26.929Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0149.uasset	2024-08-02T07:20:22.726Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0149.uexp	2024-08-02T07:20:22.727Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0150.uasset	2024-08-02T07:20:26.056Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0150.uexp	2024-08-02T07:20:26.059Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0151.uasset	2024-08-02T07:20:25.631Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0151.uexp	2024-08-02T07:20:25.633Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0152.uasset	2024-08-02T07:20:24.640Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0152.uexp	2024-08-02T07:20:24.641Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0153.uasset	2024-08-02T07:20:24.289Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0153.uexp	2024-08-02T07:20:24.290Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0154.uasset	2024-08-02T07:20:24.316Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0154.uexp	2024-08-02T07:20:24.317Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0155.uasset	2024-08-02T07:20:22.599Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0155.uexp	2024-08-02T07:20:22.600Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0156.uasset	2024-08-02T07:20:23.479Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0156.uexp	2024-08-02T07:20:23.480Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0157.uasset	2024-08-02T07:20:24.736Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0157.uexp	2024-08-02T07:20:24.737Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0158.uasset	2024-08-02T07:20:26.574Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0158.uexp	2024-08-02T07:20:26.575Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0159.uasset	2024-08-02T07:20:21.517Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0159.uexp	2024-08-02T07:20:21.518Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0160.uasset	2024-08-02T07:20:20.558Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0160.uexp	2024-08-02T07:20:20.560Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0161.uasset	2024-08-02T07:20:21.718Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0161.uexp	2024-08-02T07:20:21.719Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0162.uasset	2024-08-02T07:20:24.934Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0162.uexp	2024-08-02T07:20:24.935Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0163.uasset	2024-08-02T07:20:22.469Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0163.uexp	2024-08-02T07:20:22.470Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0164.uasset	2024-08-02T07:20:20.339Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0164.uexp	2024-08-02T07:20:20.341Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0165.uasset	2024-08-02T07:20:23.291Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0165.uexp	2024-08-02T07:20:23.292Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0166.uasset	2024-08-02T07:20:21.284Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0166.uexp	2024-08-02T07:20:21.286Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0167.uasset	2024-08-02T07:20:20.775Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0167.uexp	2024-08-02T07:20:20.776Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0168.uasset	2024-08-02T07:20:21.218Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0168.uexp	2024-08-02T07:20:21.220Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0169.uasset	2024-08-02T07:20:24.315Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0169.uexp	2024-08-02T07:20:24.316Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0170.uasset	2024-08-02T07:20:26.168Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0170.uexp	2024-08-02T07:20:26.170Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0171.uasset	2024-08-02T07:20:21.510Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0171.uexp	2024-08-02T07:20:21.512Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0172.uasset	2024-08-02T07:20:25.726Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0172.uexp	2024-08-02T07:20:25.728Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0173.uasset	2024-08-02T07:20:22.821Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0173.uexp	2024-08-02T07:20:22.822Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0174.uasset	2024-08-02T07:20:23.156Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0174.uexp	2024-08-02T07:20:23.157Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0175.uasset	2024-08-02T07:20:24.930Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0175.uexp	2024-08-02T07:20:24.931Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0176.uasset	2024-08-02T07:20:25.264Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0176.uexp	2024-08-02T07:20:25.265Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0177.uasset	2024-08-02T07:20:25.745Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0177.uexp	2024-08-02T07:20:25.747Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0178.uasset	2024-08-02T07:20:21.222Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0178.uexp	2024-08-02T07:20:21.223Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0179.uasset	2024-08-02T07:20:26.580Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0179.uexp	2024-08-02T07:20:26.582Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0180.uasset	2024-08-02T07:20:21.840Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0180.uexp	2024-08-02T07:20:21.841Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0181.uasset	2024-08-02T07:20:20.780Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0181.uexp	2024-08-02T07:20:20.781Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0182.uasset	2024-08-02T07:20:26.918Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0182.uexp	2024-08-02T07:20:26.920Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0183.uasset	2024-08-02T07:20:25.401Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0183.uexp	2024-08-02T07:20:25.403Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0184.uasset	2024-08-02T07:20:21.082Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0184.uexp	2024-08-02T07:20:21.083Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0185.uasset	2024-08-02T07:20:25.972Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0185.uexp	2024-08-02T07:20:25.974Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0186.uasset	2024-08-02T07:20:22.152Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0186.uexp	2024-08-02T07:20:22.154Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0187.uasset	2024-08-02T07:20:21.417Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0187.uexp	2024-08-02T07:20:21.419Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0188.uasset	2024-08-02T07:20:24.277Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0188.uexp	2024-08-02T07:20:24.278Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0189.uasset	2024-08-02T07:20:25.057Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0189.uexp	2024-08-02T07:20:25.058Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0190.uasset	2024-08-02T07:20:26.917Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0190.uexp	2024-08-02T07:20:26.918Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0191.uasset	2024-08-02T07:20:22.367Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0191.uexp	2024-08-02T07:20:22.368Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0192.uasset	2024-08-02T07:20:25.145Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0192.uexp	2024-08-02T07:20:25.147Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0193.uasset	2024-08-02T07:20:23.022Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0193.uexp	2024-08-02T07:20:23.023Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0194.uasset	2024-08-02T07:20:23.262Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0194.uexp	2024-08-02T07:20:23.263Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0195.uasset	2024-08-02T07:20:23.737Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0195.uexp	2024-08-02T07:20:23.738Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0196.uasset	2024-08-02T07:20:24.520Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0196.uexp	2024-08-02T07:20:24.522Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0197.uasset	2024-08-02T07:20:24.324Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0197.uexp	2024-08-02T07:20:24.325Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0198.uasset	2024-08-02T07:20:23.570Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0198.uexp	2024-08-02T07:20:23.571Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0199.uasset	2024-08-02T07:20:22.134Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0199.uexp	2024-08-02T07:20:22.137Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0200.uasset	2024-08-02T07:20:21.282Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0200.uexp	2024-08-02T07:20:21.283Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0201.uasset	2024-08-02T07:20:24.953Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0201.uexp	2024-08-02T07:20:24.955Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0202.uasset	2024-08-02T07:20:23.016Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0202.uexp	2024-08-02T07:20:23.018Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0203.uasset	2024-08-02T07:20:25.630Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0203.uexp	2024-08-02T07:20:25.632Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0204.uasset	2024-08-02T07:20:25.291Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0204.uexp	2024-08-02T07:20:25.292Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0205.uasset	2024-08-02T07:20:21.635Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0205.uexp	2024-08-02T07:20:21.637Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0206.uasset	2024-08-02T07:20:25.546Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0206.uexp	2024-08-02T07:20:25.548Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0207.uasset	2024-08-02T07:20:22.727Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0207.uexp	2024-08-02T07:20:22.729Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0208.uasset	2024-08-02T07:20:24.859Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0208.uexp	2024-08-02T07:20:24.862Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0209.uasset	2024-08-02T07:20:26.151Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0209.uexp	2024-08-02T07:20:26.152Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0210.uasset	2024-08-02T07:20:22.925Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0210.uexp	2024-08-02T07:20:22.927Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0211.uasset	2024-08-02T07:20:21.287Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0211.uexp	2024-08-02T07:20:21.288Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0212.uasset	2024-08-02T07:20:26.610Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0212.uexp	2024-08-02T07:20:26.611Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0213.uasset	2024-08-02T07:20:26.807Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0213.uexp	2024-08-02T07:20:26.808Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0214.uasset	2024-08-02T07:20:24.505Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0214.uexp	2024-08-02T07:20:24.507Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0215.uasset	2024-08-02T07:20:20.540Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0215.uexp	2024-08-02T07:20:20.541Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0216.uasset	2024-08-02T07:20:22.837Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0216.uexp	2024-08-02T07:20:22.838Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0217.uasset	2024-08-02T07:20:24.271Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0217.uexp	2024-08-02T07:20:24.273Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0218.uasset	2024-08-02T07:20:22.280Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0218.uexp	2024-08-02T07:20:22.281Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0219.uasset	2024-08-02T07:20:25.271Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0219.uexp	2024-08-02T07:20:25.273Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0220.uasset	2024-08-02T07:20:23.482Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0220.uexp	2024-08-02T07:20:23.484Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0221.uasset	2024-08-02T07:20:24.300Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0221.uexp	2024-08-02T07:20:24.302Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0222.uasset	2024-08-02T07:20:25.391Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0222.uexp	2024-08-02T07:20:25.392Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0223.uasset	2024-08-02T07:20:25.428Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0223.uexp	2024-08-02T07:20:25.430Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0224.uasset	2024-08-02T07:20:21.395Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0224.uexp	2024-08-02T07:20:21.396Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0225.uasset	2024-08-02T07:20:25.400Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0225.uexp	2024-08-02T07:20:25.402Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0226.uasset	2024-08-02T07:20:21.849Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0226.uexp	2024-08-02T07:20:21.851Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0227.uasset	2024-08-02T07:20:23.521Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0227.uexp	2024-08-02T07:20:23.523Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0228.uasset	2024-08-02T07:20:23.480Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0228.uexp	2024-08-02T07:20:23.481Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0229.uasset	2024-08-02T07:20:21.625Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0229.uexp	2024-08-02T07:20:21.626Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0230.uasset	2024-08-02T07:20:26.935Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0230.uexp	2024-08-02T07:20:26.937Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0231.uasset	2024-08-02T07:20:23.739Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0231.uexp	2024-08-02T07:20:23.740Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0232.uasset	2024-08-02T07:20:24.863Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0232.uexp	2024-08-02T07:20:24.864Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0233.uasset	2024-08-02T07:20:24.283Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0233.uexp	2024-08-02T07:20:24.285Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0234.uasset	2024-08-02T07:20:26.039Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0234.uexp	2024-08-02T07:20:26.041Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0235.uasset	2024-08-02T07:20:20.461Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0235.uexp	2024-08-02T07:20:20.464Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0236.uasset	2024-08-02T07:20:22.171Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0236.uexp	2024-08-02T07:20:22.172Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0237.uasset	2024-08-02T07:20:20.779Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0237.uexp	2024-08-02T07:20:20.780Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0238.uasset	2024-08-02T07:20:20.450Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0238.uexp	2024-08-02T07:20:20.451Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0239.uasset	2024-08-02T07:20:22.381Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0239.uexp	2024-08-02T07:20:22.382Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0240.uasset	2024-08-02T07:20:22.583Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0240.uexp	2024-08-02T07:20:22.585Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0241.uasset	2024-08-02T07:20:22.698Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0241.uexp	2024-08-02T07:20:22.699Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0242.uasset	2024-08-02T07:20:24.523Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0242.uexp	2024-08-02T07:20:24.524Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0243.uasset	2024-08-02T07:20:26.307Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0243.uexp	2024-08-02T07:20:26.309Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0244.uasset	2024-08-02T07:20:21.248Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0244.uexp	2024-08-02T07:20:21.249Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0245.uasset	2024-08-02T07:20:22.569Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0245.uexp	2024-08-02T07:20:22.571Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0246.uasset	2024-08-02T07:20:26.910Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0246.uexp	2024-08-02T07:20:26.912Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0247.uasset	2024-08-02T07:20:20.323Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0247.uexp	2024-08-02T07:20:20.324Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0248.uasset	2024-08-02T07:20:22.703Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0248.uexp	2024-08-02T07:20:22.704Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0249.uasset	2024-08-02T07:20:20.960Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0249.uexp	2024-08-02T07:20:20.961Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0250.uasset	2024-08-02T07:20:24.279Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0250.uexp	2024-08-02T07:20:24.280Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0251.uasset	2024-08-02T07:20:26.503Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0251.uexp	2024-08-02T07:20:26.504Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0252.uasset	2024-08-02T07:20:25.637Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0252.uexp	2024-08-02T07:20:25.639Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0253.uasset	2024-08-02T07:20:20.350Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0253.uexp	2024-08-02T07:20:20.351Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0254.uasset	2024-08-02T07:20:21.413Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0254.uexp	2024-08-02T07:20:21.416Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0255.uasset	2024-08-02T07:20:24.175Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0006_0255.uexp	2024-08-02T07:20:24.176Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0000.uasset	2024-08-02T07:20:23.249Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0000.uexp	2024-08-02T07:20:23.250Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0001.uasset	2024-08-02T07:20:22.806Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0001.uexp	2024-08-02T07:20:22.807Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0002.uasset	2024-08-02T07:20:26.592Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0002.uexp	2024-08-02T07:20:26.593Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0003.uasset	2024-08-02T07:20:22.704Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0003.uexp	2024-08-02T07:20:22.706Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0004.uasset	2024-08-02T07:20:23.119Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0004.uexp	2024-08-02T07:20:23.121Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0005.uasset	2024-08-02T07:20:21.754Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0005.uexp	2024-08-02T07:20:21.756Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0006.uasset	2024-08-02T07:20:26.790Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0006.uexp	2024-08-02T07:20:26.792Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0007.uasset	2024-08-02T07:20:26.373Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0007.uexp	2024-08-02T07:20:26.374Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0008.uasset	2024-08-02T07:20:26.083Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0008.uexp	2024-08-02T07:20:26.085Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0009.uasset	2024-08-02T07:20:20.987Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0009.uexp	2024-08-02T07:20:20.988Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0010.uasset	2024-08-02T07:20:21.841Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0010.uexp	2024-08-02T07:20:21.842Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0011.uasset	2024-08-02T07:20:25.957Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0011.uexp	2024-08-02T07:20:25.959Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0012.uasset	2024-08-02T07:20:22.940Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0012.uexp	2024-08-02T07:20:22.941Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0013.uasset	2024-08-02T07:20:23.284Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0013.uexp	2024-08-02T07:20:23.286Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0014.uasset	2024-08-02T07:20:23.680Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0014.uexp	2024-08-02T07:20:23.682Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0015.uasset	2024-08-02T07:20:25.619Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0015.uexp	2024-08-02T07:20:25.620Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0016.uasset	2024-08-02T07:20:27.025Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0016.uexp	2024-08-02T07:20:27.026Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0017.uasset	2024-08-02T07:20:21.240Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0017.uexp	2024-08-02T07:20:21.242Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0018.uasset	2024-08-02T07:20:24.631Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0018.uexp	2024-08-02T07:20:24.633Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0019.uasset	2024-08-02T07:20:25.838Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0019.uexp	2024-08-02T07:20:25.840Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0020.uasset	2024-08-02T07:20:25.540Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0020.uexp	2024-08-02T07:20:25.541Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0021.uasset	2024-08-02T07:20:22.694Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0021.uexp	2024-08-02T07:20:22.696Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0022.uasset	2024-08-02T07:20:21.312Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0022.uexp	2024-08-02T07:20:21.313Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0023.uasset	2024-08-02T07:20:25.143Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0023.uexp	2024-08-02T07:20:25.145Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0024.uasset	2024-08-02T07:20:26.702Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0024.uexp	2024-08-02T07:20:26.704Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0025.uasset	2024-08-02T07:20:22.250Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0025.uexp	2024-08-02T07:20:22.252Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0026.uasset	2024-08-02T07:20:25.390Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0026.uexp	2024-08-02T07:20:25.391Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0027.uasset	2024-08-02T07:20:26.182Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0027.uexp	2024-08-02T07:20:26.184Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0028.uasset	2024-08-02T07:20:25.421Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0028.uexp	2024-08-02T07:20:25.422Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0029.uasset	2024-08-02T07:20:26.925Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0029.uexp	2024-08-02T07:20:26.927Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0030.uasset	2024-08-02T07:20:21.526Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0030.uexp	2024-08-02T07:20:21.527Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0031.uasset	2024-08-02T07:20:21.971Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0031.uexp	2024-08-02T07:20:21.973Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0032.uasset	2024-08-02T07:20:20.685Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0032.uexp	2024-08-02T07:20:20.686Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0033.uasset	2024-08-02T07:20:27.017Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0033.uexp	2024-08-02T07:20:27.019Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0034.uasset	2024-08-02T07:20:20.669Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0034.uexp	2024-08-02T07:20:20.671Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0035.uasset	2024-08-02T07:20:21.515Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0035.uexp	2024-08-02T07:20:21.516Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0036.uasset	2024-08-02T07:20:26.691Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0036.uexp	2024-08-02T07:20:26.694Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0037.uasset	2024-08-02T07:20:24.630Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0037.uexp	2024-08-02T07:20:24.631Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0038.uasset	2024-08-02T07:20:20.692Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0038.uexp	2024-08-02T07:20:20.693Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0039.uasset	2024-08-02T07:20:23.946Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0039.uexp	2024-08-02T07:20:23.948Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0040.uasset	2024-08-02T07:20:25.381Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0040.uexp	2024-08-02T07:20:25.382Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0041.uasset	2024-08-02T07:20:21.101Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0041.uexp	2024-08-02T07:20:21.103Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0042.uasset	2024-08-02T07:20:22.394Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0042.uexp	2024-08-02T07:20:22.395Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0043.uasset	2024-08-02T07:20:23.700Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0043.uexp	2024-08-02T07:20:23.701Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0044.uasset	2024-08-02T07:20:23.293Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0044.uexp	2024-08-02T07:20:23.295Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0045.uasset	2024-08-02T07:20:21.845Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0045.uexp	2024-08-02T07:20:21.846Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0046.uasset	2024-08-02T07:20:23.708Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0046.uexp	2024-08-02T07:20:23.709Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0047.uasset	2024-08-02T07:20:22.712Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0047.uexp	2024-08-02T07:20:22.713Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0048.uasset	2024-08-02T07:20:22.803Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0048.uexp	2024-08-02T07:20:22.804Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0049.uasset	2024-08-02T07:20:25.427Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0049.uexp	2024-08-02T07:20:25.428Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0050.uasset	2024-08-02T07:20:20.676Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0050.uexp	2024-08-02T07:20:20.678Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0051.uasset	2024-08-02T07:20:24.141Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0051.uexp	2024-08-02T07:20:24.143Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0052.uasset	2024-08-02T07:20:26.828Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0052.uexp	2024-08-02T07:20:26.830Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0053.uasset	2024-08-02T07:20:26.894Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0053.uexp	2024-08-02T07:20:26.896Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0054.uasset	2024-08-02T07:20:26.590Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0054.uexp	2024-08-02T07:20:26.592Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0055.uasset	2024-08-02T07:20:24.270Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0055.uexp	2024-08-02T07:20:24.271Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0056.uasset	2024-08-02T07:20:26.689Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0056.uexp	2024-08-02T07:20:26.692Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0057.uasset	2024-08-02T07:20:21.078Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0057.uexp	2024-08-02T07:20:21.080Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0058.uasset	2024-08-02T07:20:23.056Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0058.uexp	2024-08-02T07:20:23.057Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0059.uasset	2024-08-02T07:20:25.412Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0059.uexp	2024-08-02T07:20:25.413Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0060.uasset	2024-08-02T07:20:22.061Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0060.uexp	2024-08-02T07:20:22.062Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0061.uasset	2024-08-02T07:20:25.056Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0061.uexp	2024-08-02T07:20:25.057Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0062.uasset	2024-08-02T07:20:25.175Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0062.uexp	2024-08-02T07:20:25.176Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0063.uasset	2024-08-02T07:20:22.838Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0063.uexp	2024-08-02T07:20:22.839Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0064.uasset	2024-08-02T07:20:23.145Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0064.uexp	2024-08-02T07:20:23.146Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0065.uasset	2024-08-02T07:20:26.172Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0065.uexp	2024-08-02T07:20:26.173Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0066.uasset	2024-08-02T07:20:20.207Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0066.uexp	2024-08-02T07:20:20.208Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0067.uasset	2024-08-02T07:20:21.330Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0067.uexp	2024-08-02T07:20:21.331Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0068.uasset	2024-08-02T07:20:20.970Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0068.uexp	2024-08-02T07:20:20.970Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0069.uasset	2024-08-02T07:20:24.542Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0069.uexp	2024-08-02T07:20:24.543Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0070.uasset	2024-08-02T07:20:21.725Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0070.uexp	2024-08-02T07:20:21.726Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0071.uasset	2024-08-02T07:20:22.723Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0071.uexp	2024-08-02T07:20:22.724Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0072.uasset	2024-08-02T07:20:22.368Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0072.uexp	2024-08-02T07:20:22.370Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0073.uasset	2024-08-02T07:20:20.894Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0073.uexp	2024-08-02T07:20:20.895Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0074.uasset	2024-08-02T07:20:22.071Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0074.uexp	2024-08-02T07:20:22.072Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0075.uasset	2024-08-02T07:20:24.378Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0075.uexp	2024-08-02T07:20:24.380Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0076.uasset	2024-08-02T07:20:22.460Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0076.uexp	2024-08-02T07:20:22.462Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0077.uasset	2024-08-02T07:20:20.441Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0077.uexp	2024-08-02T07:20:20.442Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0078.uasset	2024-08-02T07:20:26.711Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0078.uexp	2024-08-02T07:20:26.713Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0079.uasset	2024-08-02T07:20:21.298Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0079.uexp	2024-08-02T07:20:21.300Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0080.uasset	2024-08-02T07:20:20.861Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0080.uexp	2024-08-02T07:20:20.863Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0081.uasset	2024-08-02T07:20:24.851Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0081.uexp	2024-08-02T07:20:24.852Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0082.uasset	2024-08-02T07:20:20.771Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0082.uexp	2024-08-02T07:20:20.772Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0083.uasset	2024-08-02T07:20:21.837Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0083.uexp	2024-08-02T07:20:21.838Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0084.uasset	2024-08-02T07:20:22.619Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0084.uexp	2024-08-02T07:20:22.620Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0085.uasset	2024-08-02T07:20:21.250Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0085.uexp	2024-08-02T07:20:21.251Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0086.uasset	2024-08-02T07:20:25.169Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0086.uexp	2024-08-02T07:20:25.170Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0087.uasset	2024-08-02T07:20:23.139Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0087.uexp	2024-08-02T07:20:23.140Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0088.uasset	2024-08-02T07:20:23.260Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0088.uexp	2024-08-02T07:20:23.262Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0089.uasset	2024-08-02T07:20:20.858Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0089.uexp	2024-08-02T07:20:20.859Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0090.uasset	2024-08-02T07:20:24.613Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0090.uexp	2024-08-02T07:20:24.614Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0091.uasset	2024-08-02T07:20:20.338Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0091.uexp	2024-08-02T07:20:20.339Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0092.uasset	2024-08-02T07:20:24.489Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0092.uexp	2024-08-02T07:20:24.491Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0093.uasset	2024-08-02T07:20:26.615Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0093.uexp	2024-08-02T07:20:26.617Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0094.uasset	2024-08-02T07:20:22.814Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0094.uexp	2024-08-02T07:20:22.815Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0095.uasset	2024-08-02T07:20:23.138Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0095.uexp	2024-08-02T07:20:23.140Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0096.uasset	2024-08-02T07:20:21.398Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0096.uexp	2024-08-02T07:20:21.399Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0097.uasset	2024-08-02T07:20:26.295Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0097.uexp	2024-08-02T07:20:26.296Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0098.uasset	2024-08-02T07:20:22.259Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0098.uexp	2024-08-02T07:20:22.260Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0099.uasset	2024-08-02T07:20:20.349Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0099.uexp	2024-08-02T07:20:20.351Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0100.uasset	2024-08-02T07:20:20.328Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0100.uexp	2024-08-02T07:20:20.330Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0101.uasset	2024-08-02T07:20:24.871Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0101.uexp	2024-08-02T07:20:24.872Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0102.uasset	2024-08-02T07:20:25.753Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0102.uexp	2024-08-02T07:20:25.755Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0103.uasset	2024-08-02T07:20:21.945Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0103.uexp	2024-08-02T07:20:21.946Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0104.uasset	2024-08-02T07:20:22.377Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0104.uexp	2024-08-02T07:20:22.378Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0105.uasset	2024-08-02T07:20:22.376Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0105.uexp	2024-08-02T07:20:22.378Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0106.uasset	2024-08-02T07:20:20.758Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0106.uexp	2024-08-02T07:20:20.760Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0107.uasset	2024-08-02T07:20:26.321Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0107.uexp	2024-08-02T07:20:26.322Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0108.uasset	2024-08-02T07:20:26.808Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0108.uexp	2024-08-02T07:20:26.810Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0109.uasset	2024-08-02T07:20:23.586Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0109.uexp	2024-08-02T07:20:23.588Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0110.uasset	2024-08-02T07:20:25.437Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0110.uexp	2024-08-02T07:20:25.438Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0111.uasset	2024-08-02T07:20:20.883Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0111.uexp	2024-08-02T07:20:20.884Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0112.uasset	2024-08-02T07:20:23.682Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0112.uexp	2024-08-02T07:20:23.683Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0113.uasset	2024-08-02T07:20:25.647Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0113.uexp	2024-08-02T07:20:25.649Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0114.uasset	2024-08-02T07:20:22.355Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0114.uexp	2024-08-02T07:20:22.357Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0115.uasset	2024-08-02T07:20:21.214Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0115.uexp	2024-08-02T07:20:21.216Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0116.uasset	2024-08-02T07:20:20.303Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0116.uexp	2024-08-02T07:20:20.304Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0117.uasset	2024-08-02T07:20:25.286Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0117.uexp	2024-08-02T07:20:25.287Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0118.uasset	2024-08-02T07:20:21.391Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0118.uexp	2024-08-02T07:20:21.392Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0119.uasset	2024-08-02T07:20:23.129Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0119.uexp	2024-08-02T07:20:23.131Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0120.uasset	2024-08-02T07:20:24.370Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0120.uexp	2024-08-02T07:20:24.372Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0121.uasset	2024-08-02T07:20:23.289Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0121.uexp	2024-08-02T07:20:23.291Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0122.uasset	2024-08-02T07:20:20.893Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0122.uexp	2024-08-02T07:20:20.894Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0123.uasset	2024-08-02T07:20:25.854Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0123.uexp	2024-08-02T07:20:25.856Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0124.uasset	2024-08-02T07:20:21.645Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0124.uexp	2024-08-02T07:20:21.647Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0125.uasset	2024-08-02T07:20:22.166Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0125.uexp	2024-08-02T07:20:22.168Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0126.uasset	2024-08-02T07:20:21.496Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0126.uexp	2024-08-02T07:20:21.498Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0127.uasset	2024-08-02T07:20:24.532Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0127.uexp	2024-08-02T07:20:24.533Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0128.uasset	2024-08-02T07:20:23.020Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0128.uexp	2024-08-02T07:20:23.020Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0129.uasset	2024-08-02T07:20:25.077Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0129.uexp	2024-08-02T07:20:25.078Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0130.uasset	2024-08-02T07:20:22.832Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0130.uexp	2024-08-02T07:20:22.833Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0131.uasset	2024-08-02T07:20:25.741Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0131.uexp	2024-08-02T07:20:25.742Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0132.uasset	2024-08-02T07:20:26.579Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0132.uexp	2024-08-02T07:20:26.581Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0133.uasset	2024-08-02T07:20:26.587Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0133.uexp	2024-08-02T07:20:26.588Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0134.uasset	2024-08-02T07:20:21.638Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0134.uexp	2024-08-02T07:20:21.639Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0135.uasset	2024-08-02T07:20:26.468Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0135.uexp	2024-08-02T07:20:26.470Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0136.uasset	2024-08-02T07:20:22.939Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0136.uexp	2024-08-02T07:20:22.940Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0137.uasset	2024-08-02T07:20:22.913Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0137.uexp	2024-08-02T07:20:22.914Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0138.uasset	2024-08-02T07:20:22.138Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0138.uexp	2024-08-02T07:20:22.139Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0139.uasset	2024-08-02T07:20:23.813Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0139.uexp	2024-08-02T07:20:23.814Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0140.uasset	2024-08-02T07:20:25.535Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0140.uexp	2024-08-02T07:20:25.536Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0141.uasset	2024-08-02T07:20:22.287Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0141.uexp	2024-08-02T07:20:22.288Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0142.uasset	2024-08-02T07:20:21.535Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0142.uexp	2024-08-02T07:20:21.536Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0143.uasset	2024-08-02T07:20:25.058Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0143.uexp	2024-08-02T07:20:25.060Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0144.uasset	2024-08-02T07:20:23.024Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0144.uexp	2024-08-02T07:20:23.025Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0145.uasset	2024-08-02T07:20:24.323Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0145.uexp	2024-08-02T07:20:24.324Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0146.uasset	2024-08-02T07:20:23.707Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0146.uexp	2024-08-02T07:20:23.709Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0147.uasset	2024-08-02T07:20:26.404Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0147.uexp	2024-08-02T07:20:26.405Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0148.uasset	2024-08-02T07:20:24.275Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0148.uexp	2024-08-02T07:20:24.277Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0149.uasset	2024-08-02T07:20:22.258Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0149.uexp	2024-08-02T07:20:22.259Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0150.uasset	2024-08-02T07:20:24.960Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0150.uexp	2024-08-02T07:20:24.962Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0151.uasset	2024-08-02T07:20:22.801Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0151.uexp	2024-08-02T07:20:22.802Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0152.uasset	2024-08-02T07:20:22.365Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0152.uexp	2024-08-02T07:20:22.366Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0153.uasset	2024-08-02T07:20:22.829Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0153.uexp	2024-08-02T07:20:22.831Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0154.uasset	2024-08-02T07:20:26.502Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0154.uexp	2024-08-02T07:20:26.503Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0155.uasset	2024-08-02T07:20:25.755Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0155.uexp	2024-08-02T07:20:25.756Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0156.uasset	2024-08-02T07:20:24.321Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0156.uexp	2024-08-02T07:20:24.323Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0157.uasset	2024-08-02T07:20:22.912Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0157.uexp	2024-08-02T07:20:22.913Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0158.uasset	2024-08-02T07:20:26.822Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0158.uexp	2024-08-02T07:20:26.824Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0159.uasset	2024-08-02T07:20:26.720Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0159.uexp	2024-08-02T07:20:26.722Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0160.uasset	2024-08-02T07:20:24.368Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0160.uexp	2024-08-02T07:20:24.370Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0161.uasset	2024-08-02T07:20:24.735Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0161.uexp	2024-08-02T07:20:24.736Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0162.uasset	2024-08-02T07:20:20.704Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0162.uexp	2024-08-02T07:20:20.705Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0163.uasset	2024-08-02T07:20:23.055Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0163.uexp	2024-08-02T07:20:23.056Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0164.uasset	2024-08-02T07:20:21.107Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0164.uexp	2024-08-02T07:20:21.108Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0165.uasset	2024-08-02T07:20:21.644Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0165.uexp	2024-08-02T07:20:21.645Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0166.uasset	2024-08-02T07:20:21.633Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0166.uexp	2024-08-02T07:20:21.634Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0167.uasset	2024-08-02T07:20:24.172Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0167.uexp	2024-08-02T07:20:24.173Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0168.uasset	2024-08-02T07:20:25.285Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0168.uexp	2024-08-02T07:20:25.286Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0169.uasset	2024-08-02T07:20:20.963Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0169.uexp	2024-08-02T07:20:20.964Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0170.uasset	2024-08-02T07:20:23.923Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0170.uexp	2024-08-02T07:20:23.924Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0171.uasset	2024-08-02T07:20:23.047Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0171.uexp	2024-08-02T07:20:23.048Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0172.uasset	2024-08-02T07:20:26.901Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0172.uexp	2024-08-02T07:20:26.903Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0173.uasset	2024-08-02T07:20:23.576Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0173.uexp	2024-08-02T07:20:23.577Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0174.uasset	2024-08-02T07:20:22.033Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0174.uexp	2024-08-02T07:20:22.034Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0175.uasset	2024-08-02T07:20:20.427Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0175.uexp	2024-08-02T07:20:20.428Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0176.uasset	2024-08-02T07:20:21.934Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0176.uexp	2024-08-02T07:20:21.935Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0177.uasset	2024-08-02T07:20:25.042Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0177.uexp	2024-08-02T07:20:25.043Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0178.uasset	2024-08-02T07:20:26.718Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0178.uexp	2024-08-02T07:20:26.719Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0179.uasset	2024-08-02T07:20:25.649Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0179.uexp	2024-08-02T07:20:25.651Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0180.uasset	2024-08-02T07:20:23.957Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0180.uexp	2024-08-02T07:20:23.959Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0181.uasset	2024-08-02T07:20:22.603Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0181.uexp	2024-08-02T07:20:22.604Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0182.uasset	2024-08-02T07:20:22.587Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0182.uexp	2024-08-02T07:20:22.589Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0183.uasset	2024-08-02T07:20:22.187Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0183.uexp	2024-08-02T07:20:22.188Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0184.uasset	2024-08-02T07:20:26.184Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0184.uexp	2024-08-02T07:20:26.186Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0185.uasset	2024-08-02T07:20:25.256Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0185.uexp	2024-08-02T07:20:25.258Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0186.uasset	2024-08-02T07:20:21.931Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0186.uexp	2024-08-02T07:20:21.932Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0187.uasset	2024-08-02T07:20:25.167Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0187.uexp	2024-08-02T07:20:25.169Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0188.uasset	2024-08-02T07:20:24.170Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0188.uexp	2024-08-02T07:20:24.172Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0189.uasset	2024-08-02T07:20:23.953Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0189.uexp	2024-08-02T07:20:23.954Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0190.uasset	2024-08-02T07:20:22.167Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0190.uexp	2024-08-02T07:20:22.169Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0191.uasset	2024-08-02T07:20:23.691Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0191.uexp	2024-08-02T07:20:23.692Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0192.uasset	2024-08-02T07:20:26.294Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0192.uexp	2024-08-02T07:20:26.295Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0193.uasset	2024-08-02T07:20:24.026Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0193.uexp	2024-08-02T07:20:24.027Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0194.uasset	2024-08-02T07:20:20.750Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0194.uexp	2024-08-02T07:20:20.752Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0195.uasset	2024-08-02T07:20:21.099Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0195.uexp	2024-08-02T07:20:21.100Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0196.uasset	2024-08-02T07:20:22.718Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0196.uexp	2024-08-02T07:20:22.720Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0197.uasset	2024-08-02T07:20:24.870Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0197.uexp	2024-08-02T07:20:24.870Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0198.uasset	2024-08-02T07:20:20.982Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0198.uexp	2024-08-02T07:20:20.983Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0199.uasset	2024-08-02T07:20:25.139Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0199.uexp	2024-08-02T07:20:25.140Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0200.uasset	2024-08-02T07:20:24.885Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0200.uexp	2024-08-02T07:20:24.886Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0201.uasset	2024-08-02T07:20:24.299Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0201.uexp	2024-08-02T07:20:24.300Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0202.uasset	2024-08-02T07:20:25.435Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0202.uexp	2024-08-02T07:20:25.437Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0203.uasset	2024-08-02T07:20:20.895Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0203.uexp	2024-08-02T07:20:20.897Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0204.uasset	2024-08-02T07:20:25.141Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0204.uexp	2024-08-02T07:20:25.143Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0205.uasset	2024-08-02T07:20:22.380Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0205.uexp	2024-08-02T07:20:22.382Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0206.uasset	2024-08-02T07:20:23.516Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0206.uexp	2024-08-02T07:20:23.517Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0207.uasset	2024-08-02T07:20:26.689Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0207.uexp	2024-08-02T07:20:26.693Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0208.uasset	2024-08-02T07:20:23.703Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0208.uexp	2024-08-02T07:20:23.703Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0209.uasset	2024-08-02T07:20:26.819Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0209.uexp	2024-08-02T07:20:26.821Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0210.uasset	2024-08-02T07:20:20.754Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0210.uexp	2024-08-02T07:20:20.756Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0211.uasset	2024-08-02T07:20:23.128Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0211.uexp	2024-08-02T07:20:23.129Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0212.uasset	2024-08-02T07:20:23.351Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0212.uexp	2024-08-02T07:20:23.352Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0213.uasset	2024-08-02T07:20:20.337Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0213.uexp	2024-08-02T07:20:20.338Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0214.uasset	2024-08-02T07:20:23.954Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0214.uexp	2024-08-02T07:20:23.955Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0215.uasset	2024-08-02T07:20:22.811Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0215.uexp	2024-08-02T07:20:22.812Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0216.uasset	2024-08-02T07:20:21.753Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0216.uexp	2024-08-02T07:20:21.754Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0217.uasset	2024-08-02T07:20:20.683Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0217.uexp	2024-08-02T07:20:20.684Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0218.uasset	2024-08-02T07:20:20.744Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0218.uexp	2024-08-02T07:20:20.746Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0219.uasset	2024-08-02T07:20:23.849Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0219.uexp	2024-08-02T07:20:23.850Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0220.uasset	2024-08-02T07:20:22.618Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0220.uexp	2024-08-02T07:20:22.620Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0221.uasset	2024-08-02T07:20:22.161Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0221.uexp	2024-08-02T07:20:22.163Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0222.uasset	2024-08-02T07:20:23.126Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0222.uexp	2024-08-02T07:20:23.127Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0223.uasset	2024-08-02T07:20:20.456Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0223.uexp	2024-08-02T07:20:20.457Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0224.uasset	2024-08-02T07:20:23.464Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0224.uexp	2024-08-02T07:20:23.466Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0225.uasset	2024-08-02T07:20:23.524Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0225.uexp	2024-08-02T07:20:23.524Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0226.uasset	2024-08-02T07:20:20.188Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0226.uexp	2024-08-02T07:20:20.190Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0227.uasset	2024-08-02T07:20:23.735Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0227.uexp	2024-08-02T07:20:23.737Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0228.uasset	2024-08-02T07:20:25.724Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0228.uexp	2024-08-02T07:20:25.725Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0229.uasset	2024-08-02T07:20:22.721Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0229.uexp	2024-08-02T07:20:22.723Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0230.uasset	2024-08-02T07:20:20.548Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0230.uexp	2024-08-02T07:20:20.549Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0231.uasset	2024-08-02T07:20:24.375Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0231.uexp	2024-08-02T07:20:24.378Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0232.uasset	2024-08-02T07:20:21.820Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0232.uexp	2024-08-02T07:20:21.821Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0233.uasset	2024-08-02T07:20:21.965Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0233.uexp	2024-08-02T07:20:21.966Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0234.uasset	2024-08-02T07:20:26.175Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0234.uexp	2024-08-02T07:20:26.176Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0235.uasset	2024-08-02T07:20:24.876Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0235.uexp	2024-08-02T07:20:24.877Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0236.uasset	2024-08-02T07:20:25.635Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0236.uexp	2024-08-02T07:20:25.637Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0237.uasset	2024-08-02T07:20:26.493Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0237.uexp	2024-08-02T07:20:26.494Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0238.uasset	2024-08-02T07:20:26.170Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0238.uexp	2024-08-02T07:20:26.172Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0239.uasset	2024-08-02T07:20:23.829Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0239.uexp	2024-08-02T07:20:23.831Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0240.uasset	2024-08-02T07:20:22.924Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0240.uexp	2024-08-02T07:20:22.925Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0241.uasset	2024-08-02T07:20:22.690Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0241.uexp	2024-08-02T07:20:22.691Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0242.uasset	2024-08-02T07:20:23.927Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0242.uexp	2024-08-02T07:20:23.929Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0243.uasset	2024-08-02T07:20:21.109Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0243.uexp	2024-08-02T07:20:21.110Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0244.uasset	2024-08-02T07:20:22.045Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0244.uexp	2024-08-02T07:20:22.046Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0245.uasset	2024-08-02T07:20:22.577Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0245.uexp	2024-08-02T07:20:22.578Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0246.uasset	2024-08-02T07:20:22.473Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0246.uexp	2024-08-02T07:20:22.475Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0247.uasset	2024-08-02T07:20:26.055Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0247.uexp	2024-08-02T07:20:26.058Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0248.uasset	2024-08-02T07:20:26.190Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0248.uexp	2024-08-02T07:20:26.192Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0249.uasset	2024-08-02T07:20:20.700Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0249.uexp	2024-08-02T07:20:20.701Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0250.uasset	2024-08-02T07:20:23.583Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0250.uexp	2024-08-02T07:20:23.585Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0251.uasset	2024-08-02T07:20:26.319Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0251.uexp	2024-08-02T07:20:26.320Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0252.uasset	2024-08-02T07:20:20.345Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0252.uexp	2024-08-02T07:20:20.346Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0253.uasset	2024-08-02T07:20:26.375Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0253.uexp	2024-08-02T07:20:26.376Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0254.uasset	2024-08-02T07:20:25.646Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0254.uexp	2024-08-02T07:20:25.647Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0255.uasset	2024-08-02T07:20:23.722Z
+Engine/Content/EngineMaterials/Substrate/Glints2/dict_0007_0255.uexp	2024-08-02T07:20:23.723Z
+Engine/Content/EngineMaterials/Substrate/Volume/SubstrateSimpleVolumeEnvLUT2D.uasset	2024-08-02T07:20:20.080Z
+Engine/Content/EngineMaterials/Substrate/Volume/SubstrateSimpleVolumeEnvLUT2D.uexp	2024-08-02T07:20:20.081Z
+Engine/Content/EngineMaterials/Substrate/Volume/SubstrateSimpleVolumeEnvLUT3D.uasset	2024-08-02T07:20:32.116Z
+Engine/Content/EngineMaterials/Substrate/Volume/SubstrateSimpleVolumeEnvLUT3D.uexp	2024-08-02T07:20:32.118Z
+Engine/Content/EngineMaterials/Substrate/Volume/SubstrateSimpleVolumeLUT2D.uasset	2024-08-02T07:20:20.182Z
+Engine/Content/EngineMaterials/Substrate/Volume/SubstrateSimpleVolumeLUT2D.uexp	2024-08-02T07:20:20.184Z
+Engine/Content/EngineMaterials/Substrate/Volume/SubstrateSimpleVolumeLUT3D.uasset	2024-08-02T07:20:32.118Z
+Engine/Content/EngineMaterials/Substrate/Volume/SubstrateSimpleVolumeLUT3D.uexp	2024-08-02T07:20:32.119Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Chromakeying/DespillByAvg.uasset	2024-08-02T07:20:31.194Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Chromakeying/DespillByAvg.uexp	2024-08-02T07:20:31.196Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Chromakeying/RGBtoHSV.uasset	2024-08-02T07:20:18.866Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Chromakeying/RGBtoHSV.uexp	2024-08-02T07:20:18.867Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Coordinates/1Dto2DIndex.uasset	2024-08-02T07:20:31.253Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Coordinates/1Dto2DIndex.uexp	2024-08-02T07:20:31.255Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Gradient/LinearGradient.uasset	2024-08-02T07:20:18.369Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Gradient/LinearGradient.uexp	2024-08-02T07:20:18.371Z
+Engine/Content/Functions/Engine_MaterialFunctions01/ImageAdjustment/CheapContrast.uasset	2024-08-02T07:20:31.030Z
+Engine/Content/Functions/Engine_MaterialFunctions01/ImageAdjustment/CheapContrast.uexp	2024-08-02T07:20:31.031Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Opacity/CameraDepthFade.uasset	2024-08-02T07:20:19.011Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Opacity/CameraDepthFade.uexp	2024-08-02T07:20:19.013Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec.uasset	2024-08-02T07:20:19.013Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec.uexp	2024-08-02T07:20:19.015Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness.uasset	2024-08-02T07:20:19.015Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness.uexp	2024-08-02T07:20:19.016Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Texturing/BakedDisplacement.uasset	2024-08-02T07:20:30.641Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Texturing/BakedDisplacement.uexp	2024-08-02T07:20:30.643Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Texturing/ComputeMipLevel.uasset	2024-08-02T07:20:30.773Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Texturing/ComputeMipLevel.uexp	2024-08-02T07:20:30.775Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Texturing/FlattenNormal.uasset	2024-08-02T07:20:18.744Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Texturing/FlattenNormal.uexp	2024-08-02T07:20:18.745Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Texturing/ScaleUVsByCenter.uasset	2024-08-02T07:20:31.373Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Texturing/ScaleUVsByCenter.uexp	2024-08-02T07:20:31.374Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Texturing/TextureCropping.uasset	2024-08-02T07:20:31.459Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Texturing/TextureCropping.uexp	2024-08-02T07:20:31.463Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Texturing/WorldAlignedTexture.uasset	2024-08-02T07:20:32.224Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Texturing/WorldAlignedTexture.uexp	2024-08-02T07:20:32.225Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Vectors/RotateVector.uasset	2024-08-02T07:20:18.736Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Vectors/RotateVector.uexp	2024-08-02T07:20:18.737Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Volumetrics/BeersLaw.uasset	2024-08-02T07:20:30.588Z
+Engine/Content/Functions/Engine_MaterialFunctions01/Volumetrics/BeersLaw.uexp	2024-08-02T07:20:30.590Z
+Engine/Content/Functions/Engine_MaterialFunctions02/ExampleContent/DebugNumberStrip.uasset	2024-08-02T07:20:30.952Z
+Engine/Content/Functions/Engine_MaterialFunctions02/ExampleContent/DebugNumberStrip.uexp	2024-08-02T07:20:30.954Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Math/AddComponents.uasset	2024-08-02T07:20:18.740Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Math/AddComponents.uexp	2024-08-02T07:20:18.741Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Math/InverseTransformMatrix.uasset	2024-08-02T07:20:18.361Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Math/InverseTransformMatrix.uexp	2024-08-02T07:20:18.364Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Math/MakeVectorsOrthogonal.uasset	2024-08-02T07:20:18.361Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Math/MakeVectorsOrthogonal.uexp	2024-08-02T07:20:18.364Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Math/RGBtoHSV.uasset	2024-08-02T07:20:34.814Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Math/RGBtoHSV.uexp	2024-08-02T07:20:34.815Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Math/Transform3x3Matrix.uasset	2024-08-02T07:20:31.249Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Math/Transform3x3Matrix.uexp	2024-08-02T07:20:31.251Z
+Engine/Content/Functions/Engine_MaterialFunctions02/PivotPainter2/Black_1x1_EXR_Texture.uasset	2024-08-02T07:20:19.026Z
+Engine/Content/Functions/Engine_MaterialFunctions02/PivotPainter2/Black_1x1_EXR_Texture.uexp	2024-08-02T07:20:19.027Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Texturing/CustomRotator.uasset	2024-08-02T07:20:30.770Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Texturing/CustomRotator.uexp	2024-08-02T07:20:30.772Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Texturing/FlipBook.uasset	2024-08-02T07:20:34.815Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Texturing/FlipBook.uexp	2024-08-02T07:20:34.817Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Texturing/ScreenAlignedPixelToPixelUVs.uasset	2024-08-02T07:20:18.741Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Texturing/ScreenAlignedPixelToPixelUVs.uexp	2024-08-02T07:20:18.742Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/AppendMany.uasset	2024-08-02T07:20:30.508Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/AppendMany.uexp	2024-08-02T07:20:30.510Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/BlendAngleCorrectedNormals.uasset	2024-08-02T07:20:30.510Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/BlendAngleCorrectedNormals.uexp	2024-08-02T07:20:30.511Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat2Components.uasset	2024-08-02T07:20:18.996Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat2Components.uexp	2024-08-02T07:20:18.997Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat3Components.uasset	2024-08-02T07:20:18.949Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat3Components.uexp	2024-08-02T07:20:18.950Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat4Components.uasset	2024-08-02T07:20:18.716Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat4Components.uexp	2024-08-02T07:20:18.717Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/CameraDirectionVector.uasset	2024-08-02T07:20:18.936Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/CameraDirectionVector.uexp	2024-08-02T07:20:18.939Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/CameraVectorWithWPOOptions.uasset	2024-08-02T07:20:18.359Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/CameraVectorWithWPOOptions.uexp	2024-08-02T07:20:18.363Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/DebugFloat2Values.uasset	2024-08-02T07:20:33.704Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/DebugFloat2Values.uexp	2024-08-02T07:20:33.705Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/DebugFloat3Values.uasset	2024-08-02T07:20:33.701Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/DebugFloat3Values.uexp	2024-08-02T07:20:33.703Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/DebugScalarValues.uasset	2024-08-02T07:20:32.510Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/DebugScalarValues.uexp	2024-08-02T07:20:32.512Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/DepthFromWorldPosition.uasset	2024-08-02T07:20:31.163Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/DepthFromWorldPosition.uexp	2024-08-02T07:20:31.165Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/MakeFloat2.uasset	2024-08-02T07:20:18.955Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/MakeFloat2.uexp	2024-08-02T07:20:18.956Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/MakeFloat3.uasset	2024-08-02T07:20:18.944Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/MakeFloat3.uexp	2024-08-02T07:20:18.946Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/MakeFloat4.uasset	2024-08-02T07:20:18.715Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/MakeFloat4.uexp	2024-08-02T07:20:18.716Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/VectorLength.uasset	2024-08-02T07:20:18.733Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/VectorLength.uexp	2024-08-02T07:20:18.734Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/VectorToRadialValue.uasset	2024-08-02T07:20:18.343Z
+Engine/Content/Functions/Engine_MaterialFunctions02/Utility/VectorToRadialValue.uexp	2024-08-02T07:20:18.345Z
+Engine/Content/Functions/Engine_MaterialFunctions02/UVs/BoundingBoxBased_0-1_UVW.uasset	2024-08-02T07:20:31.246Z
+Engine/Content/Functions/Engine_MaterialFunctions02/UVs/BoundingBoxBased_0-1_UVW.uexp	2024-08-02T07:20:31.249Z
+Engine/Content/Functions/Engine_MaterialFunctions02/WorldPositionOffset/AlignMeshToTheCamera.uasset	2024-08-02T07:20:32.407Z
+Engine/Content/Functions/Engine_MaterialFunctions02/WorldPositionOffset/AlignMeshToTheCamera.uexp	2024-08-02T07:20:32.408Z
+Engine/Content/Functions/Engine_MaterialFunctions02/WorldPositionOffset/CameraOffset.uasset	2024-08-02T07:20:18.750Z
+Engine/Content/Functions/Engine_MaterialFunctions02/WorldPositionOffset/CameraOffset.uexp	2024-08-02T07:20:18.755Z
+Engine/Content/Functions/Engine_MaterialFunctions02/WorldPositionOffset/ComponentPivotLocation.uasset	2024-08-02T07:20:18.359Z
+Engine/Content/Functions/Engine_MaterialFunctions02/WorldPositionOffset/ComponentPivotLocation.uexp	2024-08-02T07:20:18.363Z
+Engine/Content/Functions/Engine_MaterialFunctions02/WorldPositionOffset/LocalPosition.uasset	2024-08-02T07:20:18.731Z
+Engine/Content/Functions/Engine_MaterialFunctions02/WorldPositionOffset/LocalPosition.uexp	2024-08-02T07:20:18.732Z
+Engine/Content/Functions/Engine_MaterialFunctions02/WorldPositionOffset/ObjectScale.uasset	2024-08-02T07:20:31.119Z
+Engine/Content/Functions/Engine_MaterialFunctions02/WorldPositionOffset/ObjectScale.uexp	2024-08-02T07:20:31.121Z
+Engine/Content/Functions/Engine_MaterialFunctions03/Math/RemapValueRange.uasset	2024-08-02T07:20:30.591Z
+Engine/Content/Functions/Engine_MaterialFunctions03/Math/RemapValueRange.uexp	2024-08-02T07:20:30.592Z
+Engine/Content/VREditor/Devices/Generic/GenericHMD.uasset	2024-08-02T07:20:32.130Z
+Engine/Content/VREditor/Devices/Generic/GenericHMD.ubulk	2024-08-02T07:20:32.128Z
+Engine/Content/VREditor/Devices/Generic/GenericHMD.uexp	2024-08-02T07:20:32.133Z
+Engine/Content/VREditor/Devices/Generic/GenericHMDMaterial.uasset	2024-08-02T07:20:30.653Z
+Engine/Content/VREditor/Devices/Generic/GenericHMDMaterial.uexp	2024-08-02T07:20:30.655Z
+Engine/Content/VREditor/Devices/Vive/UE4_Logo.uasset	2024-08-02T07:20:18.472Z
+Engine/Content/VREditor/Devices/Vive/UE4_Logo.ubulk	2024-08-02T07:20:18.470Z
+Engine/Content/VREditor/Devices/Vive/UE4_Logo.uexp	2024-08-02T07:20:18.473Z
+Engine/Content/VREditor/Sounds/UI/Camera_Shutter.uasset	2024-08-02T07:20:18.137Z
+Engine/Content/VREditor/Sounds/UI/Camera_Shutter.ubulk	2024-08-02T07:20:18.136Z
+Engine/Content/VREditor/Sounds/UI/Camera_Shutter.uexp	2024-08-02T07:20:18.138Z
+Engine/Content/VREditor/Sounds/UI/Drop_Item_From_ContentBrowser.uasset	2024-08-02T07:20:19.062Z
+Engine/Content/VREditor/Sounds/UI/Drop_Item_From_ContentBrowser.ubulk	2024-08-02T07:20:19.060Z
+Engine/Content/VREditor/Sounds/UI/Drop_Item_From_ContentBrowser.uexp	2024-08-02T07:20:19.063Z
+Engine/Content/VREditor/Sounds/UI/Gizmo_Handle_Clicked.uasset	2024-08-02T07:20:19.060Z
+Engine/Content/VREditor/Sounds/UI/Gizmo_Handle_Clicked.ubulk	2024-08-02T07:20:19.059Z
+Engine/Content/VREditor/Sounds/UI/Gizmo_Handle_Clicked.uexp	2024-08-02T07:20:19.062Z
+Engine/Content/VREditor/Sounds/UI/Object_PickUp.uasset	2024-08-02T07:20:19.058Z
+Engine/Content/VREditor/Sounds/UI/Object_PickUp.ubulk	2024-08-02T07:20:19.057Z
+Engine/Content/VREditor/Sounds/UI/Object_PickUp.uexp	2024-08-02T07:20:19.060Z
+Engine/Content/VREditor/Sounds/UI/Object_Snaps_To_Another_Actor.uasset	2024-08-02T07:20:19.058Z
+Engine/Content/VREditor/Sounds/UI/Object_Snaps_To_Another_Actor.ubulk	2024-08-02T07:20:19.056Z
+Engine/Content/VREditor/Sounds/UI/Object_Snaps_To_Another_Actor.uexp	2024-08-02T07:20:19.059Z
+Engine/Content/VREditor/Sounds/UI/Object_Snaps_To_Grid.uasset	2024-08-02T07:20:19.055Z
+Engine/Content/VREditor/Sounds/UI/Object_Snaps_To_Grid.ubulk	2024-08-02T07:20:19.054Z
+Engine/Content/VREditor/Sounds/UI/Object_Snaps_To_Grid.uexp	2024-08-02T07:20:19.056Z
+Engine/Content/VREditor/Sounds/UI/Scaling_Down.uasset	2024-08-02T07:20:19.022Z
+Engine/Content/VREditor/Sounds/UI/Scaling_Down.ubulk	2024-08-02T07:20:19.021Z
+Engine/Content/VREditor/Sounds/UI/Scaling_Down.uexp	2024-08-02T07:20:19.023Z
+Engine/Content/VREditor/Sounds/UI/Scaling_Up.uasset	2024-08-02T07:20:19.021Z
+Engine/Content/VREditor/Sounds/UI/Scaling_Up.ubulk	2024-08-02T07:20:19.019Z
+Engine/Content/VREditor/Sounds/UI/Scaling_Up.uexp	2024-08-02T07:20:19.022Z
+Engine/Content/VREditor/Sounds/UI/Selection_Changes.uasset	2024-08-02T07:20:19.054Z
+Engine/Content/VREditor/Sounds/UI/Selection_Changes.ubulk	2024-08-02T07:20:19.053Z
+Engine/Content/VREditor/Sounds/UI/Selection_Changes.uexp	2024-08-02T07:20:19.056Z
+Engine/Plugins/2D/Paper2D/Content/DefaultPaperTerrainMaterial.uasset	2024-08-02T07:20:32.314Z
+Engine/Plugins/2D/Paper2D/Content/DefaultPaperTerrainMaterial.uexp	2024-08-02T07:20:32.315Z
+Engine/Plugins/2D/Paper2D/Content/DefaultSpriteMaterial.uasset	2024-08-02T07:20:31.223Z
+Engine/Plugins/2D/Paper2D/Content/DefaultSpriteMaterial.uexp	2024-08-02T07:20:31.224Z
+Engine/Plugins/2D/Paper2D/Content/DummySprite.uasset	2024-08-02T07:20:31.133Z
+Engine/Plugins/2D/Paper2D/Content/DummySprite.uexp	2024-08-02T07:20:31.135Z
+Engine/Plugins/2D/Paper2D/Content/MaskedUnlitSpriteMaterial.uasset	2024-08-02T07:20:32.315Z
+Engine/Plugins/2D/Paper2D/Content/MaskedUnlitSpriteMaterial.uexp	2024-08-02T07:20:32.316Z
+Engine/Plugins/2D/Paper2D/Content/OpaqueUnlitSpriteMaterial.uasset	2024-08-02T07:20:32.400Z
+Engine/Plugins/2D/Paper2D/Content/OpaqueUnlitSpriteMaterial.uexp	2024-08-02T07:20:32.401Z
+Engine/Plugins/Animation/ACLPlugin/Content/ACLAnimBoneCompressionSettings.uasset	2024-08-02T07:20:18.762Z
+Engine/Plugins/Animation/ACLPlugin/Content/ACLAnimBoneCompressionSettings.uexp	2024-08-02T07:20:18.763Z
+Engine/Plugins/Animation/ControlRig/Content/M_Manip.uasset	2024-08-02T07:20:31.219Z
+Engine/Plugins/Animation/ControlRig/Content/M_Manip.uexp	2024-08-02T07:20:31.220Z
+Engine/Plugins/Developer/AnimationSharing/Content/AnimSharingBase.uasset	2024-08-02T07:20:17.929Z
+Engine/Plugins/Developer/AnimationSharing/Content/AnimSharingBase.uexp	2024-08-02T07:20:17.930Z
+Engine/Plugins/Developer/AnimationSharing/Content/AnimSharingRed.uasset	2024-08-02T07:20:30.796Z
+Engine/Plugins/Developer/AnimationSharing/Content/AnimSharingRed.uexp	2024-08-02T07:20:30.798Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/BP_VirtualProductionLibrary.uasset	2024-08-02T07:20:18.375Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/BP_VirtualProductionLibrary.uexp	2024-08-02T07:20:18.377Z
+Engine/Plugins/Media/MediaPlate/Content/SM_MediaPlateScreen.uasset	2024-08-02T07:20:33.210Z
+Engine/Plugins/Media/MediaPlate/Content/SM_MediaPlateScreen.ubulk	2024-08-02T07:20:33.208Z
+Engine/Plugins/Media/MediaPlate/Content/SM_MediaPlateScreen.uexp	2024-08-02T07:20:33.212Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Animations/A_MannequinsXR_Grasp_Right.uasset	2024-08-02T07:20:32.113Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Animations/A_MannequinsXR_Grasp_Right.uexp	2024-08-02T07:20:32.114Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Animations/A_MannequinsXR_Idle_Right.uasset	2024-08-02T07:20:32.111Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Animations/A_MannequinsXR_Idle_Right.uexp	2024-08-02T07:20:32.113Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Animations/A_MannequinsXR_IndexCurl_Right.uasset	2024-08-02T07:20:32.109Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Animations/A_MannequinsXR_IndexCurl_Right.uexp	2024-08-02T07:20:32.111Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Animations/A_MannequinsXR_Point_Right.uasset	2024-08-02T07:20:32.107Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Animations/A_MannequinsXR_Point_Right.uexp	2024-08-02T07:20:32.109Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Animations/A_MannequinsXR_ThumbUp_Right.uasset	2024-08-02T07:20:31.977Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Animations/A_MannequinsXR_ThumbUp_Right.uexp	2024-08-02T07:20:31.979Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Animations/MDT_MannequinsXR.uasset	2024-08-02T07:20:31.976Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Animations/MDT_MannequinsXR.uexp	2024-08-02T07:20:31.978Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/M_Mannequin.uasset	2024-08-02T07:20:34.167Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/M_Mannequin.uexp	2024-08-02T07:20:34.169Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Meshes/ABP_MannequinsXR.uasset	2024-08-02T07:20:40.155Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Meshes/ABP_MannequinsXR.uexp	2024-08-02T07:20:40.156Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Meshes/SKM_MannyXR_left.uasset	2024-08-02T07:20:37.119Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Meshes/SKM_MannyXR_left.uexp	2024-08-02T07:20:37.122Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Meshes/SKM_MannyXR_right.uasset	2024-08-02T07:20:37.117Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Meshes/SKM_MannyXR_right.uexp	2024-08-02T07:20:37.119Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Meshes/SKM_QuinnXR_left.uasset	2024-08-02T07:20:37.115Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Meshes/SKM_QuinnXR_left.uexp	2024-08-02T07:20:37.118Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Meshes/SKM_QuinnXR_right.uasset	2024-08-02T07:20:37.114Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Meshes/SKM_QuinnXR_right.uexp	2024-08-02T07:20:37.116Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Meshes/SK_MannequinsXR.uasset	2024-08-02T07:20:20.060Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Meshes/SK_MannequinsXR.uexp	2024-08-02T07:20:20.061Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/ML_GlossyBlack_Latex_UE4.uasset	2024-08-02T07:20:31.968Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/ML_GlossyBlack_Latex_UE4.uexp	2024-08-02T07:20:31.970Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/ML_Plastic_Shiny_Beige.uasset	2024-08-02T07:20:19.868Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/ML_Plastic_Shiny_Beige.uexp	2024-08-02T07:20:19.869Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/ML_Screen.uasset	2024-08-02T07:20:19.866Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/ML_Screen.uexp	2024-08-02T07:20:19.868Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/ML_SoftMetal_UE4.uasset	2024-08-02T07:20:31.971Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/ML_SoftMetal_UE4.uexp	2024-08-02T07:20:31.973Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/T_ML_Aluminum01.uasset	2024-08-02T07:20:20.141Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/T_ML_Aluminum01.ubulk	2024-08-02T07:20:20.138Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/T_ML_Aluminum01.uexp	2024-08-02T07:20:20.142Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/T_ML_Aluminum01_N.uasset	2024-08-02T07:20:20.103Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/T_ML_Aluminum01_N.ubulk	2024-08-02T07:20:20.102Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/T_ML_Aluminum01_N.uexp	2024-08-02T07:20:20.104Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/T_ML_FineRubber.uasset	2024-08-02T07:20:20.101Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/T_ML_FineRubber.ubulk	2024-08-02T07:20:20.099Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/T_ML_FineRubber.uexp	2024-08-02T07:20:20.102Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/T_ML_Rubber_Blue_01_D.uasset	2024-08-02T07:20:20.098Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/T_ML_Rubber_Blue_01_D.ubulk	2024-08-02T07:20:20.096Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/T_ML_Rubber_Blue_01_D.uexp	2024-08-02T07:20:20.099Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/T_ML_Rubber_Blue_01_N.uasset	2024-08-02T07:20:19.891Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/T_ML_Rubber_Blue_01_N.ubulk	2024-08-02T07:20:19.888Z
+MetaCastBachelor/Content/FPWeapon/Materials/MaterialLayers/T_ML_Rubber_Blue_01_N.uexp	2024-08-02T07:20:19.893Z
+MetaCastBachelor/Content/VRSpectator/Input/Actions/IA_VRSpectator_FadeInOut.uasset	2024-08-02T07:20:19.716Z
+MetaCastBachelor/Content/VRSpectator/Input/Actions/IA_VRSpectator_FadeInOut.uexp	2024-08-02T07:20:19.717Z
+MetaCastBachelor/Content/VRSpectator/Input/Actions/IA_VRSpectator_FOV.uasset	2024-08-02T07:20:19.715Z
+MetaCastBachelor/Content/VRSpectator/Input/Actions/IA_VRSpectator_FOV.uexp	2024-08-02T07:20:19.716Z
+MetaCastBachelor/Content/VRSpectator/Input/Actions/IA_VRSpectator_FOV_Reset.uasset	2024-08-02T07:20:19.714Z
+MetaCastBachelor/Content/VRSpectator/Input/Actions/IA_VRSpectator_FOV_Reset.uexp	2024-08-02T07:20:19.715Z
+MetaCastBachelor/Content/VRSpectator/Input/Actions/IA_VRSpectator_Look.uasset	2024-08-02T07:20:19.680Z
+MetaCastBachelor/Content/VRSpectator/Input/Actions/IA_VRSpectator_Look.uexp	2024-08-02T07:20:19.681Z
+MetaCastBachelor/Content/VRSpectator/Input/Actions/IA_VRSpectator_Move.uasset	2024-08-02T07:20:19.672Z
+MetaCastBachelor/Content/VRSpectator/Input/Actions/IA_VRSpectator_Move.uexp	2024-08-02T07:20:19.680Z
+MetaCastBachelor/Content/VRSpectator/Input/Actions/IA_VRSpectator_ResetRotation.uasset	2024-08-02T07:20:19.671Z
+MetaCastBachelor/Content/VRSpectator/Input/Actions/IA_VRSpectator_ResetRotation.uexp	2024-08-02T07:20:19.679Z
+MetaCastBachelor/Content/VRSpectator/Input/Actions/IA_VRSpectator_Toggle.uasset	2024-08-02T07:20:19.671Z
+MetaCastBachelor/Content/VRSpectator/Input/Actions/IA_VRSpectator_Toggle.uexp	2024-08-02T07:20:19.672Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Grab_Left.uasset	2024-08-02T07:20:19.631Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Grab_Left.uexp	2024-08-02T07:20:19.631Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Grab_Right.uasset	2024-08-02T07:20:19.630Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Grab_Right.uexp	2024-08-02T07:20:19.631Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Menu_Cursor_Left.uasset	2024-08-02T07:20:19.629Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Menu_Cursor_Left.uexp	2024-08-02T07:20:19.630Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Menu_Cursor_Right.uasset	2024-08-02T07:20:19.627Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Menu_Cursor_Right.uexp	2024-08-02T07:20:19.629Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Menu_Interact_Left.uasset	2024-08-02T07:20:19.625Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Menu_Interact_Left.uexp	2024-08-02T07:20:19.626Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Menu_Interact_Right.uasset	2024-08-02T07:20:19.623Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Menu_Interact_Right.uexp	2024-08-02T07:20:19.624Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Menu_Toggle_Left.uasset	2024-08-02T07:20:19.622Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Menu_Toggle_Left.uexp	2024-08-02T07:20:19.623Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Menu_Toggle_Right.uasset	2024-08-02T07:20:19.621Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Menu_Toggle_Right.uexp	2024-08-02T07:20:19.623Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Move.uasset	2024-08-02T07:20:31.716Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Move.uexp	2024-08-02T07:20:31.718Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Shoot_Left.uasset	2024-08-02T07:20:19.620Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Shoot_Left.uexp	2024-08-02T07:20:19.621Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Shoot_Right.uasset	2024-08-02T07:20:19.619Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Shoot_Right.uexp	2024-08-02T07:20:19.621Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Turn.uasset	2024-08-02T07:20:19.617Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/IA_Turn.uexp	2024-08-02T07:20:19.618Z
+MetaCastBachelor/Content/VRTemplate/Materials/Functions/MF_OccludedPixels.uasset	2024-08-02T07:20:32.367Z
+MetaCastBachelor/Content/VRTemplate/Materials/Functions/MF_OccludedPixels.uexp	2024-08-02T07:20:32.368Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/DebugConeMaterial.uasset	2024-08-02T07:20:18.788Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/DebugConeMaterial.uexp	2024-08-02T07:20:18.792Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/DebugConeMesh.uasset	2024-08-02T07:20:18.693Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/DebugConeMesh.ubulk	2024-08-02T07:20:18.689Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/DebugConeMesh.uexp	2024-08-02T07:20:18.697Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/ForwadRayMaterial.uasset	2024-08-02T07:20:31.213Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/ForwadRayMaterial.uexp	2024-08-02T07:20:31.215Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/ForwardRayParams.uasset	2024-08-02T07:20:18.666Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/ForwardRayParams.uexp	2024-08-02T07:20:18.676Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/ForwardRayTransparencyCurve.uasset	2024-08-02T07:20:18.667Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/ForwardRayTransparencyCurve.uexp	2024-08-02T07:20:18.678Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/IntenSelectClick.uasset	2024-08-02T07:20:18.667Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/IntenSelectClick.uexp	2024-08-02T07:20:18.679Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/OnSelectHapticFeedback.uasset	2024-08-02T07:20:18.666Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/OnSelectHapticFeedback.uexp	2024-08-02T07:20:18.678Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/OnSelectSound.uasset	2024-08-02T07:20:18.786Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/OnSelectSound.ubulk	2024-08-02T07:20:18.784Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/OnSelectSound.uexp	2024-08-02T07:20:18.787Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/RayMesh.uasset	2024-08-02T07:20:18.677Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/RayMesh.ubulk	2024-08-02T07:20:18.667Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/RayMesh.uexp	2024-08-02T07:20:18.680Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/sectionedCubeMesh.uasset	2024-08-02T07:20:33.207Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/sectionedCubeMesh.ubulk	2024-08-02T07:20:33.205Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/sectionedCubeMesh.uexp	2024-08-02T07:20:33.208Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/SelectionSplineMaterial.uasset	2024-08-02T07:20:18.785Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/IntenSelect/SelectionSplineMaterial.uexp	2024-08-02T07:20:18.788Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/LiveLinkPresets/AixCaveDTrackNamedPreset.uasset	2024-08-02T07:20:19.364Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/LiveLinkPresets/AixCaveDTrackNamedPreset.uexp	2024-08-02T07:20:19.365Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/LiveLinkPresets/AixCaveDTrackPreset.uasset	2024-08-02T07:20:19.320Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/LiveLinkPresets/AixCaveDTrackPreset.uexp	2024-08-02T07:20:19.322Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/LiveLinkPresets/SteamVRPreset.uasset	2024-08-02T07:20:19.319Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/LiveLinkPresets/SteamVRPreset.uexp	2024-08-02T07:20:19.321Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Pawn/BP_RWTHVRPawn_Default.uasset	2024-08-02T07:20:37.298Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Pawn/BP_RWTHVRPawn_Default.uexp	2024-08-02T07:20:37.299Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/PointingRay/Ray_Material.uasset	2024-08-02T07:20:19.431Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/PointingRay/Ray_Material.uexp	2024-08-02T07:20:19.432Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/PointingRay/Ray_Mesh.uasset	2024-08-02T07:20:31.557Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/PointingRay/Ray_Mesh.ubulk	2024-08-02T07:20:31.555Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/PointingRay/Ray_Mesh.uexp	2024-08-02T07:20:31.559Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/BP_CaveSetup.uasset	2024-08-02T07:20:35.886Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/BP_CaveSetup.uexp	2024-08-02T07:20:35.888Z
+MetaCastBachelor/Plugins/UE4_GPUPointCloudRenderer/Content/Streaming/buncloud512_2.uasset	2024-08-02T07:20:18.844Z
+MetaCastBachelor/Plugins/UE4_GPUPointCloudRenderer/Content/Streaming/buncloud512_2.uexp	2024-08-02T07:20:18.850Z
+MetaCastBachelor/Plugins/UE4_GPUPointCloudRenderer/Content/Streaming/colormap_viridis.uasset	2024-08-02T07:20:18.850Z
+MetaCastBachelor/Plugins/UE4_GPUPointCloudRenderer/Content/Streaming/colormap_viridis.ubulk	2024-08-02T07:20:18.843Z
+MetaCastBachelor/Plugins/UE4_GPUPointCloudRenderer/Content/Streaming/colormap_viridis.uexp	2024-08-02T07:20:18.853Z
+MetaCastBachelor/Plugins/UE4_GPUPointCloudRenderer/Content/Streaming/DynPCMat.uasset	2024-08-02T07:20:32.609Z
+MetaCastBachelor/Plugins/UE4_GPUPointCloudRenderer/Content/Streaming/DynPCMat.uexp	2024-08-02T07:20:32.611Z
+MetaCastBachelor/Plugins/UE4_GPUPointCloudRenderer/Content/Streaming/DynPCMat1.uasset	2024-08-02T07:20:32.617Z
+MetaCastBachelor/Plugins/UE4_GPUPointCloudRenderer/Content/Streaming/DynPCMat1.uexp	2024-08-02T07:20:32.619Z
+Engine/Content/Functions/Engine_MaterialFunctions02/ExampleContent/Textures/DebugNumberPeriod.uasset	2024-08-02T07:20:30.954Z
+Engine/Content/Functions/Engine_MaterialFunctions02/ExampleContent/Textures/DebugNumberPeriod.uexp	2024-08-02T07:20:30.956Z
+Engine/Content/Functions/Engine_MaterialFunctions02/ExampleContent/Textures/flipbook.uasset	2024-08-02T07:20:30.925Z
+Engine/Content/Functions/Engine_MaterialFunctions02/ExampleContent/Textures/flipbook.ubulk	2024-08-02T07:20:30.924Z
+Engine/Content/Functions/Engine_MaterialFunctions02/ExampleContent/Textures/flipbook.uexp	2024-08-02T07:20:30.927Z
+Engine/Plugins/2D/Paper2D/Content/PlaceholderTextures/DummySpriteTexture.uasset	2024-08-02T07:20:18.867Z
+Engine/Plugins/2D/Paper2D/Content/PlaceholderTextures/DummySpriteTexture.ubulk	2024-08-02T07:20:18.866Z
+Engine/Plugins/2D/Paper2D/Content/PlaceholderTextures/DummySpriteTexture.uexp	2024-08-02T07:20:18.868Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRigGizmoMaterial.uasset	2024-08-02T07:20:17.600Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRigGizmoMaterial.uexp	2024-08-02T07:20:17.602Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRigXRayMaterial.uasset	2024-08-02T07:20:18.853Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRigXRayMaterial.uexp	2024-08-02T07:20:18.855Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow2_1mm.uasset	2024-08-02T07:20:33.196Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow2_1mm.ubulk	2024-08-02T07:20:33.194Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow2_1mm.uexp	2024-08-02T07:20:33.198Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow2_3mm.uasset	2024-08-02T07:20:32.835Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow2_3mm.ubulk	2024-08-02T07:20:32.834Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow2_3mm.uexp	2024-08-02T07:20:32.837Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow2_solid.uasset	2024-08-02T07:20:32.834Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow2_solid.ubulk	2024-08-02T07:20:32.832Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow2_solid.uexp	2024-08-02T07:20:32.835Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow4_1mm.uasset	2024-08-02T07:20:32.832Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow4_1mm.ubulk	2024-08-02T07:20:32.830Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow4_1mm.uexp	2024-08-02T07:20:32.833Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow4_3mm.uasset	2024-08-02T07:20:32.830Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow4_3mm.ubulk	2024-08-02T07:20:32.828Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow4_3mm.uexp	2024-08-02T07:20:32.832Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow4_solid.uasset	2024-08-02T07:20:32.828Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow4_solid.ubulk	2024-08-02T07:20:32.826Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow4_solid.uexp	2024-08-02T07:20:32.829Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow_1mm.uasset	2024-08-02T07:20:32.825Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow_1mm.ubulk	2024-08-02T07:20:32.823Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow_1mm.uexp	2024-08-02T07:20:32.827Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow_3mm.uasset	2024-08-02T07:20:32.823Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow_3mm.ubulk	2024-08-02T07:20:32.821Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow_3mm.uexp	2024-08-02T07:20:32.825Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow_solid.uasset	2024-08-02T07:20:32.822Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow_solid.ubulk	2024-08-02T07:20:32.820Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Arrow_solid.uexp	2024-08-02T07:20:32.824Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Box_1mm.uasset	2024-08-02T07:20:32.814Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Box_1mm.ubulk	2024-08-02T07:20:32.812Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Box_1mm.uexp	2024-08-02T07:20:32.815Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Box_3mm.uasset	2024-08-02T07:20:32.812Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Box_3mm.ubulk	2024-08-02T07:20:32.811Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Box_3mm.uexp	2024-08-02T07:20:32.813Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Box_solid.uasset	2024-08-02T07:20:32.810Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Box_solid.ubulk	2024-08-02T07:20:32.809Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Box_solid.uexp	2024-08-02T07:20:32.811Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Circle_1mm.uasset	2024-08-02T07:20:32.806Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Circle_1mm.ubulk	2024-08-02T07:20:32.805Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Circle_1mm.uexp	2024-08-02T07:20:32.807Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Circle_3mm.uasset	2024-08-02T07:20:32.803Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Circle_3mm.ubulk	2024-08-02T07:20:32.802Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Circle_3mm.uexp	2024-08-02T07:20:32.805Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Circle_solid.uasset	2024-08-02T07:20:32.801Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Circle_solid.ubulk	2024-08-02T07:20:32.800Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Circle_solid.uexp	2024-08-02T07:20:32.802Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Diamond_1mm.uasset	2024-08-02T07:20:32.799Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Diamond_1mm.ubulk	2024-08-02T07:20:32.798Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Diamond_1mm.uexp	2024-08-02T07:20:32.802Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Diamond_3mm.uasset	2024-08-02T07:20:32.797Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Diamond_3mm.ubulk	2024-08-02T07:20:32.795Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Diamond_3mm.uexp	2024-08-02T07:20:32.799Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Diamond_solid.uasset	2024-08-02T07:20:32.765Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Diamond_solid.ubulk	2024-08-02T07:20:32.763Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Diamond_solid.uexp	2024-08-02T07:20:32.767Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_HalfCircle_1mm.uasset	2024-08-02T07:20:32.762Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_HalfCircle_1mm.ubulk	2024-08-02T07:20:32.760Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_HalfCircle_1mm.uexp	2024-08-02T07:20:32.763Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_HalfCircle_3mm.uasset	2024-08-02T07:20:32.794Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_HalfCircle_3mm.ubulk	2024-08-02T07:20:32.793Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_HalfCircle_3mm.uexp	2024-08-02T07:20:32.795Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_HalfCircle_solid.uasset	2024-08-02T07:20:32.789Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_HalfCircle_solid.ubulk	2024-08-02T07:20:32.788Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_HalfCircle_solid.uexp	2024-08-02T07:20:32.790Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Hexagon_1mm.uasset	2024-08-02T07:20:32.785Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Hexagon_1mm.ubulk	2024-08-02T07:20:32.784Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Hexagon_1mm.uexp	2024-08-02T07:20:32.786Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Hexagon_3mm.uasset	2024-08-02T07:20:32.783Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Hexagon_3mm.ubulk	2024-08-02T07:20:32.782Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Hexagon_3mm.uexp	2024-08-02T07:20:32.785Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Hexagon_solid.uasset	2024-08-02T07:20:32.782Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Hexagon_solid.ubulk	2024-08-02T07:20:32.781Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Hexagon_solid.uexp	2024-08-02T07:20:32.784Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Octagon_1mm.uasset	2024-08-02T07:20:32.781Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Octagon_1mm.ubulk	2024-08-02T07:20:32.779Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Octagon_1mm.uexp	2024-08-02T07:20:32.782Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Octagon_3mm.uasset	2024-08-02T07:20:32.778Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Octagon_3mm.ubulk	2024-08-02T07:20:32.777Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Octagon_3mm.uexp	2024-08-02T07:20:32.780Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Octagon_solid.uasset	2024-08-02T07:20:32.777Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Octagon_solid.ubulk	2024-08-02T07:20:32.775Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Octagon_solid.uexp	2024-08-02T07:20:32.778Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Pyramid_1mm.uasset	2024-08-02T07:20:32.775Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Pyramid_1mm.ubulk	2024-08-02T07:20:32.774Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Pyramid_1mm.uexp	2024-08-02T07:20:32.777Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Pyramid_3mm.uasset	2024-08-02T07:20:32.773Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Pyramid_3mm.ubulk	2024-08-02T07:20:32.771Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Pyramid_3mm.uexp	2024-08-02T07:20:32.775Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Pyramid_solid.uasset	2024-08-02T07:20:32.771Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Pyramid_solid.ubulk	2024-08-02T07:20:32.770Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Pyramid_solid.uexp	2024-08-02T07:20:32.773Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_QuarterCircle_1mm.uasset	2024-08-02T07:20:32.769Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_QuarterCircle_1mm.ubulk	2024-08-02T07:20:32.767Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_QuarterCircle_1mm.uexp	2024-08-02T07:20:32.770Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_QuarterCircle_3mm.uasset	2024-08-02T07:20:32.767Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_QuarterCircle_3mm.ubulk	2024-08-02T07:20:32.766Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_QuarterCircle_3mm.uexp	2024-08-02T07:20:32.769Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_QuarterCircle_solid.uasset	2024-08-02T07:20:32.766Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_QuarterCircle_solid.ubulk	2024-08-02T07:20:32.764Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_QuarterCircle_solid.uexp	2024-08-02T07:20:32.768Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_RoundedSquare_1mm.uasset	2024-08-02T07:20:32.714Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_RoundedSquare_1mm.ubulk	2024-08-02T07:20:32.712Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_RoundedSquare_1mm.uexp	2024-08-02T07:20:32.717Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_RoundedSquare_3mm.uasset	2024-08-02T07:20:32.711Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_RoundedSquare_3mm.ubulk	2024-08-02T07:20:32.709Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_RoundedSquare_3mm.uexp	2024-08-02T07:20:32.714Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_RoundedSquare_solid.uasset	2024-08-02T07:20:32.708Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_RoundedSquare_solid.ubulk	2024-08-02T07:20:32.706Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_RoundedSquare_solid.uexp	2024-08-02T07:20:32.710Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_RoundedTriangle_1mm.uasset	2024-08-02T07:20:32.706Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_RoundedTriangle_1mm.ubulk	2024-08-02T07:20:32.702Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_RoundedTriangle_1mm.uexp	2024-08-02T07:20:32.708Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_RoundedTriangle_3mm.uasset	2024-08-02T07:20:32.701Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_RoundedTriangle_3mm.ubulk	2024-08-02T07:20:32.699Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_RoundedTriangle_3mm.uexp	2024-08-02T07:20:32.703Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_RoundedTriangle_solid.uasset	2024-08-02T07:20:32.699Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_RoundedTriangle_solid.ubulk	2024-08-02T07:20:32.696Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_RoundedTriangle_solid.uexp	2024-08-02T07:20:32.700Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Sphere_1mm.uasset	2024-08-02T07:20:32.696Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Sphere_1mm.ubulk	2024-08-02T07:20:32.694Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Sphere_1mm.uexp	2024-08-02T07:20:32.698Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Sphere_3mm.uasset	2024-08-02T07:20:32.694Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Sphere_3mm.ubulk	2024-08-02T07:20:32.690Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Sphere_3mm.uexp	2024-08-02T07:20:32.697Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Sphere_solid.uasset	2024-08-02T07:20:33.198Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Sphere_solid.ubulk	2024-08-02T07:20:33.196Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Sphere_solid.uexp	2024-08-02T07:20:33.199Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Square_1mm.uasset	2024-08-02T07:20:32.653Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Square_1mm.ubulk	2024-08-02T07:20:32.651Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Square_1mm.uexp	2024-08-02T07:20:32.654Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Square_3mm.uasset	2024-08-02T07:20:32.648Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Square_3mm.ubulk	2024-08-02T07:20:32.647Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Square_3mm.uexp	2024-08-02T07:20:32.649Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Square_solid.uasset	2024-08-02T07:20:32.644Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Square_solid.ubulk	2024-08-02T07:20:32.643Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Square_solid.uexp	2024-08-02T07:20:32.645Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Star4_1mm.uasset	2024-08-02T07:20:32.643Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Star4_1mm.ubulk	2024-08-02T07:20:32.642Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Star4_1mm.uexp	2024-08-02T07:20:32.643Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Star4_3mm.uasset	2024-08-02T07:20:32.640Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Star4_3mm.ubulk	2024-08-02T07:20:32.639Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Star4_3mm.uexp	2024-08-02T07:20:32.643Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Star4_solid.uasset	2024-08-02T07:20:32.638Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Star4_solid.ubulk	2024-08-02T07:20:32.637Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Star4_solid.uexp	2024-08-02T07:20:32.640Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Triangle_1mm.uasset	2024-08-02T07:20:32.636Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Triangle_1mm.ubulk	2024-08-02T07:20:32.635Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Triangle_1mm.uexp	2024-08-02T07:20:32.638Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Triangle_3mm.uasset	2024-08-02T07:20:32.634Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Triangle_3mm.ubulk	2024-08-02T07:20:32.633Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Triangle_3mm.uexp	2024-08-02T07:20:32.636Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Triangle_solid.uasset	2024-08-02T07:20:32.537Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Triangle_solid.ubulk	2024-08-02T07:20:32.536Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Triangle_solid.uexp	2024-08-02T07:20:32.538Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Wedge_1mm.uasset	2024-08-02T07:20:32.535Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Wedge_1mm.ubulk	2024-08-02T07:20:32.534Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Wedge_1mm.uexp	2024-08-02T07:20:32.537Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Wedge_3mm.uasset	2024-08-02T07:20:32.534Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Wedge_3mm.ubulk	2024-08-02T07:20:32.532Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Wedge_3mm.uexp	2024-08-02T07:20:32.536Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Wedge_solid.uasset	2024-08-02T07:20:32.531Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Wedge_solid.ubulk	2024-08-02T07:20:32.530Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/ControlRig_Wedge_solid.uexp	2024-08-02T07:20:32.533Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/DefaultGizmoLibraryNormalized.uasset	2024-08-02T07:20:18.753Z
+Engine/Plugins/Animation/ControlRig/Content/Controls/DefaultGizmoLibraryNormalized.uexp	2024-08-02T07:20:18.754Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/Empty.uasset	2024-08-02T07:20:18.779Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/Empty.uexp	2024-08-02T07:20:18.781Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/EmptyNormal.uasset	2024-08-02T07:20:18.836Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/EmptyNormal.uexp	2024-08-02T07:20:18.838Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/game_wind_noise.uasset	2024-08-02T07:20:18.843Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/game_wind_noise.ubulk	2024-08-02T07:20:18.840Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/game_wind_noise.uexp	2024-08-02T07:20:18.849Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/SpeedTreeBillboard.uasset	2024-08-02T07:20:18.724Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/SpeedTreeBillboard.uexp	2024-08-02T07:20:18.725Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/SpeedTreeBillboardMaster.uasset	2024-08-02T07:20:34.592Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/SpeedTreeBillboardMaster.uexp	2024-08-02T07:20:34.594Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/SpeedTreeBranchMotion.uasset	2024-08-02T07:20:32.398Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/SpeedTreeBranchMotion.uexp	2024-08-02T07:20:32.399Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/SpeedTreeCameraFacing.uasset	2024-08-02T07:20:18.724Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/SpeedTreeCameraFacing.uexp	2024-08-02T07:20:18.725Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/SpeedTreeMaster.uasset	2024-08-02T07:20:34.564Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/SpeedTreeMaster.uexp	2024-08-02T07:20:34.565Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/SpeedTreeWind.uasset	2024-08-02T07:20:33.547Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/SpeedTreeWind.uexp	2024-08-02T07:20:33.549Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/SpeedTreeWindMotion.uasset	2024-08-02T07:20:31.114Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/SpeedTreeWindMotion.uexp	2024-08-02T07:20:31.115Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/UnpackDirection.uasset	2024-08-02T07:20:18.725Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/UnpackDirection.uexp	2024-08-02T07:20:18.728Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/UnpackInteger3.uasset	2024-08-02T07:20:31.243Z
+Engine/Plugins/Editor/SpeedTreeImporter/Content/SpeedTree9/UnpackInteger3.uexp	2024-08-02T07:20:31.244Z
+Engine/Plugins/Experimental/ColorCorrectRegions/Content/Materials/M_ColorCorrectRegionTransparentPreview.uasset	2024-08-02T07:20:19.039Z
+Engine/Plugins/Experimental/ColorCorrectRegions/Content/Materials/M_ColorCorrectRegionTransparentPreview.uexp	2024-08-02T07:20:19.040Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Bookmark/BookmarkVPMesh.uasset	2024-08-02T07:20:32.097Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Bookmark/BookmarkVPMesh.ubulk	2024-08-02T07:20:32.095Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Bookmark/BookmarkVPMesh.uexp	2024-08-02T07:20:32.099Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Bookmark/BP_VPBookmarkActor.uasset	2024-08-02T07:20:34.493Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Bookmark/BP_VPBookmarkActor.uexp	2024-08-02T07:20:34.495Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Bookmark/CameraFacingTextMaterial.uasset	2024-08-02T07:20:33.641Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Bookmark/CameraFacingTextMaterial.uexp	2024-08-02T07:20:33.642Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Bookmark/MI_BookmarkVPNoUser.uasset	2024-08-02T07:20:30.837Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Bookmark/MI_BookmarkVPNoUser.uexp	2024-08-02T07:20:30.839Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Bookmark/M_BookmarkVP.uasset	2024-08-02T07:20:18.541Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Bookmark/M_BookmarkVP.uexp	2024-08-02T07:20:18.543Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Bookmark/VPCameraMark.uasset	2024-08-02T07:20:34.488Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Bookmark/VPCameraMark.uexp	2024-08-02T07:20:34.490Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Camera/VPCineCameraModel.uasset	2024-08-02T07:20:32.332Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Camera/VPCineCameraModel.ubulk	2024-08-02T07:20:32.331Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Camera/VPCineCameraModel.uexp	2024-08-02T07:20:32.335Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Dolly/M_DollyTangentVP.uasset	2024-08-02T07:20:30.801Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Dolly/M_DollyTangentVP.uexp	2024-08-02T07:20:30.803Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Dolly/M_DollyVP.uasset	2024-08-02T07:20:18.004Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Dolly/M_DollyVP.uexp	2024-08-02T07:20:18.005Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Icons/S_VPRootActor.uasset	2024-08-02T07:20:18.897Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Icons/S_VPRootActor.ubulk	2024-08-02T07:20:18.896Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Icons/S_VPRootActor.uexp	2024-08-02T07:20:18.899Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/LineRenderer/FX_Beam.uasset	2024-08-02T07:20:34.439Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/LineRenderer/FX_Beam.uexp	2024-08-02T07:20:34.442Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Materials/MarkerColorMaterial.uasset	2024-08-02T07:20:31.008Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Materials/MarkerColorMaterial.uexp	2024-08-02T07:20:31.009Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Materials/MF_IgnoreExposure.uasset	2024-08-02T07:20:18.373Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Materials/MF_IgnoreExposure.uexp	2024-08-02T07:20:18.374Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Materials/MI_SnapshotScreen.uasset	2024-08-02T07:20:32.302Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Materials/MI_SnapshotScreen.uexp	2024-08-02T07:20:32.306Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Materials/M_UnlitText.uasset	2024-08-02T07:20:31.492Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Materials/M_UnlitText.uexp	2024-08-02T07:20:31.495Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Materials/VpRenderTextureMaterial.uasset	2024-08-02T07:20:31.100Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Materials/VpRenderTextureMaterial.uexp	2024-08-02T07:20:31.102Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Materials/WidgetPostProcessMaterial.uasset	2024-08-02T07:20:31.332Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Materials/WidgetPostProcessMaterial.uexp	2024-08-02T07:20:31.333Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/ScoutingFlare/M_PulsingFlare.uasset	2024-08-02T07:20:31.108Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/ScoutingFlare/M_PulsingFlare.uexp	2024-08-02T07:20:31.110Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VR/EClickingController.uasset	2024-08-02T07:20:17.689Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VR/EClickingController.uexp	2024-08-02T07:20:17.690Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VRTools/EMeasuringToolState.uasset	2024-08-02T07:20:17.616Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VRTools/EMeasuringToolState.uexp	2024-08-02T07:20:17.619Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VRTools/ETouchpadStates.uasset	2024-08-02T07:20:18.346Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VRTools/ETouchpadStates.uexp	2024-08-02T07:20:18.348Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VRTools/EVRToolType.uasset	2024-08-02T07:20:18.351Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VRTools/EVRToolType.uexp	2024-08-02T07:20:18.357Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VRTools/GafferActor_BP.uasset	2024-08-02T07:20:34.826Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VRTools/GafferActor_BP.uexp	2024-08-02T07:20:34.827Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VRTools/GafferActor_Tripod.uasset	2024-08-02T07:20:33.819Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VRTools/GafferActor_Tripod.uexp	2024-08-02T07:20:33.821Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VRTools/MarkerMesh.uasset	2024-08-02T07:20:32.149Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VRTools/MarkerMesh.uexp	2024-08-02T07:20:32.151Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VRTools/Snapshot.uasset	2024-08-02T07:20:33.822Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VRTools/Snapshot.uexp	2024-08-02T07:20:33.824Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VRTools/TripodActor.uasset	2024-08-02T07:20:34.413Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VRTools/TripodActor.uexp	2024-08-02T07:20:34.414Z
+Engine/Plugins/FX/Niagara/Content/DefaultAssets/DefaultSpriteMaterial.uasset	2024-08-02T07:20:17.910Z
+Engine/Plugins/FX/Niagara/Content/DefaultAssets/DefaultSpriteMaterial.uexp	2024-08-02T07:20:17.911Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraArraySamplingMode.uasset	2024-08-02T07:20:30.505Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraArraySamplingMode.uexp	2024-08-02T07:20:30.507Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraChannelCorrelation.uasset	2024-08-02T07:20:18.299Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraChannelCorrelation.uexp	2024-08-02T07:20:18.303Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraEmitterLifeCycleMode.uasset	2024-08-02T07:20:18.327Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraEmitterLifeCycleMode.uexp	2024-08-02T07:20:18.330Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraEmitterScalabilityMode_Limited.uasset	2024-08-02T07:20:18.327Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraEmitterScalabilityMode_Limited.uexp	2024-08-02T07:20:18.330Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraExecutionStateManagement.uasset	2024-08-02T07:20:18.319Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraExecutionStateManagement.uexp	2024-08-02T07:20:18.327Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraInactiveMode.uasset	2024-08-02T07:20:18.317Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraInactiveMode.uexp	2024-08-02T07:20:18.325Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraRandomnessEvaluation.uasset	2024-08-02T07:20:18.308Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraRandomnessEvaluation.uexp	2024-08-02T07:20:18.309Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraRandomnessMode.uasset	2024-08-02T07:20:18.316Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraRandomnessMode.uexp	2024-08-02T07:20:18.317Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraScaleColorMode.uasset	2024-08-02T07:20:17.693Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraScaleColorMode.uexp	2024-08-02T07:20:17.694Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraSystemInactiveMode.uasset	2024-08-02T07:20:17.698Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraSystemInactiveMode.uexp	2024-08-02T07:20:17.699Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraTorusDistributionMode.uasset	2024-08-02T07:20:30.503Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraTorusDistributionMode.uexp	2024-08-02T07:20:30.504Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraTorusMode.uasset	2024-08-02T07:20:30.504Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraTorusMode.uexp	2024-08-02T07:20:30.505Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraVector4_Channels.uasset	2024-08-02T07:20:30.765Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagaraVector4_Channels.uexp	2024-08-02T07:20:30.767Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_ColorInitializationMode.uasset	2024-08-02T07:20:18.306Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_ColorInitializationMode.uexp	2024-08-02T07:20:18.307Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_EmitterStateOptions.uasset	2024-08-02T07:20:18.327Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_EmitterStateOptions.uexp	2024-08-02T07:20:18.330Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_InfiniteLoopDuration.uasset	2024-08-02T07:20:18.327Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_InfiniteLoopDuration.uexp	2024-08-02T07:20:18.330Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_LifetimeMode.uasset	2024-08-02T07:20:18.304Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_LifetimeMode.uexp	2024-08-02T07:20:18.306Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_MassInitializationMode.uasset	2024-08-02T07:20:18.302Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_MassInitializationMode.uexp	2024-08-02T07:20:18.305Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_PositionInitializationMode.uasset	2024-08-02T07:20:18.301Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_PositionInitializationMode.uexp	2024-08-02T07:20:18.304Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_SizeScaleMode.uasset	2024-08-02T07:20:18.301Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_SizeScaleMode.uexp	2024-08-02T07:20:18.303Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_SpriteRotationMode.uasset	2024-08-02T07:20:18.301Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_SpriteRotationMode.uexp	2024-08-02T07:20:18.304Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_UVFlippingMode.uasset	2024-08-02T07:20:18.300Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_UVFlippingMode.uexp	2024-08-02T07:20:18.302Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_WrapClamp.uasset	2024-08-02T07:20:30.506Z
+Engine/Plugins/FX/Niagara/Content/Enums/ENiagara_WrapClamp.uexp	2024-08-02T07:20:30.507Z
+Engine/Plugins/Interchange/Runtime/Content/Functions/MF_Iridescence.uasset	2024-08-02T07:20:32.020Z
+Engine/Plugins/Interchange/Runtime/Content/Functions/MF_Iridescence.uexp	2024-08-02T07:20:32.021Z
+Engine/Plugins/Interchange/Runtime/Content/Functions/MF_OrenNayerView.uasset	2024-08-02T07:20:20.071Z
+Engine/Plugins/Interchange/Runtime/Content/Functions/MF_OrenNayerView.uexp	2024-08-02T07:20:20.073Z
+Engine/Plugins/Interchange/Runtime/Content/Functions/MF_SchlickApprox.uasset	2024-08-02T07:20:20.073Z
+Engine/Plugins/Interchange/Runtime/Content/Functions/MF_SchlickApprox.uexp	2024-08-02T07:20:20.075Z
+Engine/Plugins/Interchange/Runtime/Content/Functions/MX_StandardSurface.uasset	2024-08-02T07:20:33.403Z
+Engine/Plugins/Interchange/Runtime/Content/Functions/MX_StandardSurface.uexp	2024-08-02T07:20:33.403Z
+Engine/Plugins/Interchange/Runtime/Content/Functions/MX_SurfaceUnlit.uasset	2024-08-02T07:20:17.503Z
+Engine/Plugins/Interchange/Runtime/Content/Functions/MX_SurfaceUnlit.uexp	2024-08-02T07:20:17.504Z
+Engine/Plugins/Interchange/Runtime/Content/Functions/MX_Transmission.uasset	2024-08-02T07:20:32.365Z
+Engine/Plugins/Interchange/Runtime/Content/Functions/MX_Transmission.uexp	2024-08-02T07:20:32.366Z
+Engine/Plugins/Interchange/Runtime/Content/Functions/MX_TransmissionSurface.uasset	2024-08-02T07:20:34.174Z
+Engine/Plugins/Interchange/Runtime/Content/Functions/MX_TransmissionSurface.uexp	2024-08-02T07:20:34.175Z
+Engine/Plugins/Interchange/Runtime/Content/Functions/MX_UsdPreviewSurface.uasset	2024-08-02T07:20:17.490Z
+Engine/Plugins/Interchange/Runtime/Content/Functions/MX_UsdPreviewSurface.uexp	2024-08-02T07:20:17.491Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/M_ClearCoat.uasset	2024-08-02T07:20:36.114Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/M_ClearCoat.uexp	2024-08-02T07:20:36.115Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/M_Default.uasset	2024-08-02T07:20:36.119Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/M_Default.uexp	2024-08-02T07:20:36.120Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/M_Sheen.uasset	2024-08-02T07:20:36.107Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/M_Sheen.uexp	2024-08-02T07:20:36.108Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/M_SpecularGlossiness.uasset	2024-08-02T07:20:36.096Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/M_SpecularGlossiness.uexp	2024-08-02T07:20:36.097Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/M_Transmission.uasset	2024-08-02T07:20:36.102Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/M_Transmission.uexp	2024-08-02T07:20:36.103Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/M_Unlit.uasset	2024-08-02T07:20:34.581Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/M_Unlit.uexp	2024-08-02T07:20:34.582Z
+Engine/Plugins/Interchange/Runtime/Content/Pipelines/DefaultAssetsPipeline.uasset	2024-08-02T07:20:17.526Z
+Engine/Plugins/Interchange/Runtime/Content/Pipelines/DefaultAssetsPipeline.uexp	2024-08-02T07:20:17.527Z
+Engine/Plugins/Interchange/Runtime/Content/Pipelines/DefaultGLTFAssetsPipeline.uasset	2024-08-02T07:20:17.517Z
+Engine/Plugins/Interchange/Runtime/Content/Pipelines/DefaultGLTFAssetsPipeline.uexp	2024-08-02T07:20:17.518Z
+Engine/Plugins/Interchange/Runtime/Content/Pipelines/DefaultGLTFPipeline.uasset	2024-08-02T07:20:17.515Z
+Engine/Plugins/Interchange/Runtime/Content/Pipelines/DefaultGLTFPipeline.uexp	2024-08-02T07:20:17.515Z
+Engine/Plugins/Interchange/Runtime/Content/Pipelines/DefaultGLTFSceneAssetsPipeline.uasset	2024-08-02T07:20:17.506Z
+Engine/Plugins/Interchange/Runtime/Content/Pipelines/DefaultGLTFSceneAssetsPipeline.uexp	2024-08-02T07:20:17.507Z
+Engine/Plugins/Interchange/Runtime/Content/Pipelines/DefaultMaterialPipeline.uasset	2024-08-02T07:20:17.513Z
+Engine/Plugins/Interchange/Runtime/Content/Pipelines/DefaultMaterialPipeline.uexp	2024-08-02T07:20:17.514Z
+Engine/Plugins/Interchange/Runtime/Content/Pipelines/DefaultMaterialXPipeline.uasset	2024-08-02T07:20:17.523Z
+Engine/Plugins/Interchange/Runtime/Content/Pipelines/DefaultMaterialXPipeline.uexp	2024-08-02T07:20:17.523Z
+Engine/Plugins/Interchange/Runtime/Content/Pipelines/DefaultSceneAssetsPipeline.uasset	2024-08-02T07:20:17.509Z
+Engine/Plugins/Interchange/Runtime/Content/Pipelines/DefaultSceneAssetsPipeline.uexp	2024-08-02T07:20:17.511Z
+Engine/Plugins/Interchange/Runtime/Content/Pipelines/DefaultSceneLevelPipeline.uasset	2024-08-02T07:20:17.507Z
+Engine/Plugins/Interchange/Runtime/Content/Pipelines/DefaultSceneLevelPipeline.uexp	2024-08-02T07:20:17.509Z
+Engine/Plugins/Interchange/Runtime/Content/Pipelines/DefaultTexturePipeline.uasset	2024-08-02T07:20:17.511Z
+Engine/Plugins/Interchange/Runtime/Content/Pipelines/DefaultTexturePipeline.uexp	2024-08-02T07:20:17.513Z
+Engine/Plugins/Interchange/Runtime/Content/Utilities/New_LUT.uasset	2024-08-02T07:20:30.684Z
+Engine/Plugins/Interchange/Runtime/Content/Utilities/New_LUT.uexp	2024-08-02T07:20:30.812Z
+Engine/Plugins/MovieScene/MovieRenderPipeline/Content/Blueprints/DefaultBurnIn.uasset	2024-08-02T07:20:32.327Z
+Engine/Plugins/MovieScene/MovieRenderPipeline/Content/Blueprints/DefaultBurnIn.uexp	2024-08-02T07:20:32.329Z
+Engine/Plugins/MovieScene/MovieRenderPipeline/Content/Blueprints/M_MoviePipelineRenderPreview.uasset	2024-08-02T07:20:31.215Z
+Engine/Plugins/MovieScene/MovieRenderPipeline/Content/Blueprints/M_MoviePipelineRenderPreview.uexp	2024-08-02T07:20:31.217Z
+Engine/Plugins/MovieScene/MovieRenderPipeline/Content/Blueprints/UI_MovieRenderPipelineInfoTableRow.uasset	2024-08-02T07:20:18.721Z
+Engine/Plugins/MovieScene/MovieRenderPipeline/Content/Blueprints/UI_MovieRenderPipelineInfoTableRow.uexp	2024-08-02T07:20:18.722Z
+Engine/Plugins/MovieScene/MovieRenderPipeline/Content/Blueprints/UI_MovieRenderPipelineScreenOverlay.uasset	2024-08-02T07:20:32.279Z
+Engine/Plugins/MovieScene/MovieRenderPipeline/Content/Blueprints/UI_MovieRenderPipelineScreenOverlay.uexp	2024-08-02T07:20:32.281Z
+Engine/Plugins/MovieScene/MovieRenderPipeline/Content/Materials/MoviePipeline_StencilCutout.uasset	2024-08-02T07:20:18.832Z
+Engine/Plugins/MovieScene/MovieRenderPipeline/Content/Materials/MoviePipeline_StencilCutout.uexp	2024-08-02T07:20:18.835Z
+Engine/Plugins/MovieScene/MovieRenderPipeline/Content/Materials/MovieRenderQueue_MotionVectors.uasset	2024-08-02T07:20:31.275Z
+Engine/Plugins/MovieScene/MovieRenderPipeline/Content/Materials/MovieRenderQueue_MotionVectors.uexp	2024-08-02T07:20:31.277Z
+Engine/Plugins/MovieScene/MovieRenderPipeline/Content/Materials/MovieRenderQueue_WorldDepth.uasset	2024-08-02T07:20:31.326Z
+Engine/Plugins/MovieScene/MovieRenderPipeline/Content/Materials/MovieRenderQueue_WorldDepth.uexp	2024-08-02T07:20:31.327Z
+Engine/Plugins/Runtime/MeshModelingToolset/Content/Materials/M_DynamicMeshComponentVtxColor.uasset	2024-08-02T07:20:18.551Z
+Engine/Plugins/Runtime/MeshModelingToolset/Content/Materials/M_DynamicMeshComponentVtxColor.uexp	2024-08-02T07:20:18.553Z
+Engine/Plugins/Runtime/nDisplay/Content/Icons/S_nDisplayViewOrigin.uasset	2024-08-02T07:20:18.894Z
+Engine/Plugins/Runtime/nDisplay/Content/Icons/S_nDisplayViewOrigin.uexp	2024-08-02T07:20:18.895Z
+Engine/Plugins/Runtime/nDisplay/Content/LightCard/M_LightCard.uasset	2024-08-02T07:20:31.229Z
+Engine/Plugins/Runtime/nDisplay/Content/LightCard/M_LightCard.uexp	2024-08-02T07:20:31.231Z
+Engine/Plugins/Runtime/nDisplay/Content/LightCard/M_UVIndicator.uasset	2024-08-02T07:20:31.565Z
+Engine/Plugins/Runtime/nDisplay/Content/LightCard/M_UVIndicator.uexp	2024-08-02T07:20:31.568Z
+Engine/Plugins/Runtime/nDisplay/Content/LightCard/SM_LightCardPlane.uasset	2024-08-02T07:20:32.320Z
+Engine/Plugins/Runtime/nDisplay/Content/LightCard/SM_LightCardPlane.ubulk	2024-08-02T07:20:32.318Z
+Engine/Plugins/Runtime/nDisplay/Content/LightCard/SM_LightCardPlane.uexp	2024-08-02T07:20:32.321Z
+Engine/Plugins/Runtime/nDisplay/Content/LightCard/SM_UVIndicator.uasset	2024-08-02T07:20:32.483Z
+Engine/Plugins/Runtime/nDisplay/Content/LightCard/SM_UVIndicator.ubulk	2024-08-02T07:20:32.482Z
+Engine/Plugins/Runtime/nDisplay/Content/LightCard/SM_UVIndicator.uexp	2024-08-02T07:20:32.484Z
+Engine/Plugins/Runtime/nDisplay/Content/LightCard/T_UVIndicator.uasset	2024-08-02T07:20:18.890Z
+Engine/Plugins/Runtime/nDisplay/Content/LightCard/T_UVIndicator.uexp	2024-08-02T07:20:18.892Z
+Engine/Plugins/Runtime/nDisplay/Content/Meshes/plane_hd_1x1.uasset	2024-08-02T07:20:33.210Z
+Engine/Plugins/Runtime/nDisplay/Content/Meshes/plane_hd_1x1.ubulk	2024-08-02T07:20:33.208Z
+Engine/Plugins/Runtime/nDisplay/Content/Meshes/plane_hd_1x1.uexp	2024-08-02T07:20:33.213Z
+Engine/Plugins/Runtime/nDisplay/Content/Textures/T_TrackingMarker_A.uasset	2024-08-02T07:20:18.895Z
+Engine/Plugins/Runtime/nDisplay/Content/Textures/T_TrackingMarker_A.uexp	2024-08-02T07:20:18.899Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/M_XRController.uasset	2024-08-02T07:20:31.329Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/M_XRController.uexp	2024-08-02T07:20:31.331Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/Functions/CA_Mannequin.uasset	2024-08-02T07:20:32.114Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/Functions/CA_Mannequin.uexp	2024-08-02T07:20:32.115Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/Functions/ChromaticCurve.uasset	2024-08-02T07:20:20.064Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/Functions/ChromaticCurve.uexp	2024-08-02T07:20:20.065Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/Functions/MF_Diffraction.uasset	2024-08-02T07:20:33.389Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/Functions/MF_Diffraction.uexp	2024-08-02T07:20:33.390Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/Functions/MF_logo3layers.uasset	2024-08-02T07:20:32.487Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/Functions/MF_logo3layers.uexp	2024-08-02T07:20:32.488Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/Functions/ML_BaseColorFallOff.uasset	2024-08-02T07:20:20.063Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/Functions/ML_BaseColorFallOff.uexp	2024-08-02T07:20:20.065Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_ASAOPMASK_MSK.uasset	2024-08-02T07:20:20.146Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_ASAOPMASK_MSK.ubulk	2024-08-02T07:20:20.145Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_ASAOPMASK_MSK.uexp	2024-08-02T07:20:20.148Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_BN.uasset	2024-08-02T07:20:20.151Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_BN.ubulk	2024-08-02T07:20:20.150Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_BN.uexp	2024-08-02T07:20:20.152Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_CCRCCPlastic_MSK.uasset	2024-08-02T07:20:20.142Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_CCRCCPlastic_MSK.ubulk	2024-08-02T07:20:20.139Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_CCRCCPlastic_MSK.uexp	2024-08-02T07:20:20.144Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_D.uasset	2024-08-02T07:20:20.139Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_D.ubulk	2024-08-02T07:20:20.138Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_D.uexp	2024-08-02T07:20:20.141Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_MSR_MSK.uasset	2024-08-02T07:20:19.986Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_MSR_MSK.ubulk	2024-08-02T07:20:19.985Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_MSR_MSK.uexp	2024-08-02T07:20:19.987Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_N.uasset	2024-08-02T07:20:20.072Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_N.ubulk	2024-08-02T07:20:20.070Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_N.uexp	2024-08-02T07:20:20.074Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_Tan.uasset	2024-08-02T07:20:20.068Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_Tan.ubulk	2024-08-02T07:20:20.067Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_01_Tan.uexp	2024-08-02T07:20:20.069Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_ASAOPMASK_MSK.uasset	2024-08-02T07:20:20.057Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_ASAOPMASK_MSK.ubulk	2024-08-02T07:20:20.054Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_ASAOPMASK_MSK.uexp	2024-08-02T07:20:20.058Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_BN.uasset	2024-08-02T07:20:20.060Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_BN.ubulk	2024-08-02T07:20:20.059Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_BN.uexp	2024-08-02T07:20:20.061Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_CCRCCPlastic_MSK.uasset	2024-08-02T07:20:20.050Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_CCRCCPlastic_MSK.ubulk	2024-08-02T07:20:20.048Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_CCRCCPlastic_MSK.uexp	2024-08-02T07:20:20.052Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_D.uasset	2024-08-02T07:20:20.050Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_D.ubulk	2024-08-02T07:20:20.047Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_D.uexp	2024-08-02T07:20:20.052Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_MSR_MSK.uasset	2024-08-02T07:20:20.047Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_MSR_MSK.ubulk	2024-08-02T07:20:20.044Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_MSR_MSK.uexp	2024-08-02T07:20:20.049Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_N.uasset	2024-08-02T07:20:20.056Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_N.ubulk	2024-08-02T07:20:20.054Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_N.uexp	2024-08-02T07:20:20.058Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_Tan.uasset	2024-08-02T07:20:20.049Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_Tan.ubulk	2024-08-02T07:20:20.046Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Manny/T_Manny_02_Tan.uexp	2024-08-02T07:20:20.052Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_BN.uasset	2024-08-02T07:20:20.044Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_BN.ubulk	2024-08-02T07:20:20.042Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_BN.uexp	2024-08-02T07:20:20.046Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_D.uasset	2024-08-02T07:20:20.054Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_D.ubulk	2024-08-02T07:20:20.052Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_D.uexp	2024-08-02T07:20:20.056Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_MSR_MSK.uasset	2024-08-02T07:20:20.025Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_MSR_MSK.ubulk	2024-08-02T07:20:20.023Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_MSR_MSK.uexp	2024-08-02T07:20:20.026Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_N.uasset	2024-08-02T07:20:20.028Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_N.ubulk	2024-08-02T07:20:20.027Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_N.uexp	2024-08-02T07:20:20.029Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_Tan.uasset	2024-08-02T07:20:20.024Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_Tan.ubulk	2024-08-02T07:20:20.023Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01ID_Tan.uexp	2024-08-02T07:20:20.026Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01_ASAOMASK_MSK.uasset	2024-08-02T07:20:20.016Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01_ASAOMASK_MSK.ubulk	2024-08-02T07:20:20.014Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01_ASAOMASK_MSK.uexp	2024-08-02T07:20:20.018Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01_CCRCCPlastic_MSK.uasset	2024-08-02T07:20:20.019Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01_CCRCCPlastic_MSK.ubulk	2024-08-02T07:20:20.017Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_01_CCRCCPlastic_MSK.uexp	2024-08-02T07:20:20.020Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_BN.uasset	2024-08-02T07:20:19.998Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_BN.ubulk	2024-08-02T07:20:19.997Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_BN.uexp	2024-08-02T07:20:20.000Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_D.uasset	2024-08-02T07:20:19.988Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_D.ubulk	2024-08-02T07:20:19.986Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_D.uexp	2024-08-02T07:20:19.989Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_MSR_MSK.uasset	2024-08-02T07:20:20.014Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_MSR_MSK.ubulk	2024-08-02T07:20:20.012Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_MSR_MSK.uexp	2024-08-02T07:20:20.016Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_N.uasset	2024-08-02T07:20:20.018Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_N.ubulk	2024-08-02T07:20:20.016Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_N.uexp	2024-08-02T07:20:20.019Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_Tan.uasset	2024-08-02T07:20:20.015Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_Tan.ubulk	2024-08-02T07:20:20.013Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02ID_Tan.uexp	2024-08-02T07:20:20.016Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02_ASAOMASK_MSK.uasset	2024-08-02T07:20:20.003Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02_ASAOMASK_MSK.ubulk	2024-08-02T07:20:20.001Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02_ASAOMASK_MSK.uexp	2024-08-02T07:20:20.003Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02_CCRCCPlastic_MSK.uasset	2024-08-02T07:20:20.001Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02_CCRCCPlastic_MSK.ubulk	2024-08-02T07:20:20.000Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Quinn/T_Quinn_02_CCRCCPlastic_MSK.uexp	2024-08-02T07:20:20.003Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Shared/T_UE_Logo_M.uasset	2024-08-02T07:20:19.991Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Textures/Shared/T_UE_Logo_M.uexp	2024-08-02T07:20:19.995Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/Hands/IA_Hand_Grasp_Left.uasset	2024-08-02T07:20:19.577Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/Hands/IA_Hand_Grasp_Left.uexp	2024-08-02T07:20:19.578Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/Hands/IA_Hand_Grasp_Right.uasset	2024-08-02T07:20:19.576Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/Hands/IA_Hand_Grasp_Right.uexp	2024-08-02T07:20:19.577Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/Hands/IA_Hand_IndexCurl_Left.uasset	2024-08-02T07:20:19.574Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/Hands/IA_Hand_IndexCurl_Left.uexp	2024-08-02T07:20:19.575Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/Hands/IA_Hand_IndexCurl_Right.uasset	2024-08-02T07:20:19.573Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/Hands/IA_Hand_IndexCurl_Right.uexp	2024-08-02T07:20:19.575Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/Hands/IA_Hand_Point_Left.uasset	2024-08-02T07:20:19.572Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/Hands/IA_Hand_Point_Left.uexp	2024-08-02T07:20:19.573Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/Hands/IA_Hand_Point_Right.uasset	2024-08-02T07:20:19.569Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/Hands/IA_Hand_Point_Right.uexp	2024-08-02T07:20:19.571Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/Hands/IA_Hand_ThumbUp_Left.uasset	2024-08-02T07:20:19.568Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/Hands/IA_Hand_ThumbUp_Left.uexp	2024-08-02T07:20:19.570Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/Hands/IA_Hand_ThumbUp_Right.uasset	2024-08-02T07:20:19.568Z
+MetaCastBachelor/Content/VRTemplate/Input/Actions/Hands/IA_Hand_ThumbUp_Right.uexp	2024-08-02T07:20:19.570Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/DirectInteraction/BP_DirectInteractionComponent.uasset	2024-08-02T07:20:31.596Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/DirectInteraction/BP_DirectInteractionComponent.uexp	2024-08-02T07:20:31.599Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/DirectInteraction/IA_DirectInteractionLeft.uasset	2024-08-02T07:20:19.494Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/DirectInteraction/IA_DirectInteractionLeft.uexp	2024-08-02T07:20:19.495Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/DirectInteraction/IA_DirectInteractionRight.uasset	2024-08-02T07:20:19.493Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/DirectInteraction/IA_DirectInteractionRight.uexp	2024-08-02T07:20:19.495Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/IA_Move.uasset	2024-08-02T07:20:19.492Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/IA_Move.uexp	2024-08-02T07:20:19.492Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/IA_MoveUp.uasset	2024-08-02T07:20:19.490Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/IA_MoveUp.uexp	2024-08-02T07:20:19.491Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/RaycastInteraction/BP_RaycastInteractionComponent.uasset	2024-08-02T07:20:19.474Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/RaycastInteraction/BP_RaycastInteractionComponent.uexp	2024-08-02T07:20:19.475Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/RaycastInteraction/IA_RaycastInteractionLeft.uasset	2024-08-02T07:20:19.473Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/RaycastInteraction/IA_RaycastInteractionLeft.uexp	2024-08-02T07:20:19.474Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/RaycastInteraction/IA_RaycastInteractionRight.uasset	2024-08-02T07:20:19.472Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/RaycastInteraction/IA_RaycastInteractionRight.uexp	2024-08-02T07:20:19.473Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/WidgetInteraction/BP_RWTHVRWidgetInteractionComponent.uasset	2024-08-02T07:20:33.258Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/WidgetInteraction/BP_RWTHVRWidgetInteractionComponent.uexp	2024-08-02T07:20:33.259Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/WidgetInteraction/IA_WidgetClick.uasset	2024-08-02T07:20:19.470Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/WidgetInteraction/IA_WidgetClick.uexp	2024-08-02T07:20:19.472Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/BP_RWTHVRContentExamplesGameModeBase.uasset	2024-08-02T07:20:38.596Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/BP_RWTHVRContentExamplesGameModeBase.uexp	2024-08-02T07:20:38.597Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/ToolkitExamples.uexp	2024-08-02T07:20:39.333Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/ToolkitExamples.umap	2024-08-02T07:20:39.322Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/ReplicationExamples.uexp	2024-08-02T07:20:38.908Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/ReplicationExamples.umap	2024-08-02T07:20:38.906Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Input/Default_IMC/IMC_General.uasset	2024-08-02T07:20:31.594Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Input/Default_IMC/IMC_General.uexp	2024-08-02T07:20:31.598Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Input/Default_IMC/IMC_MovementLeftHand.uasset	2024-08-02T07:20:31.582Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Input/Default_IMC/IMC_MovementLeftHand.uexp	2024-08-02T07:20:31.585Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Input/Default_IMC/IMC_MovementRightHand.uasset	2024-08-02T07:20:31.581Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Input/Default_IMC/IMC_MovementRightHand.uexp	2024-08-02T07:20:31.584Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Pawn/Base/BP_RWTHVRPawn_Base.uasset	2024-08-02T07:20:36.814Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Pawn/Base/BP_RWTHVRPawn_Base.uexp	2024-08-02T07:20:36.815Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/CAVEOverlay/BP_CaveOverlay.uasset	2024-08-02T07:20:34.477Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/CAVEOverlay/BP_CaveOverlay.uexp	2024-08-02T07:20:34.479Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/CAVEOverlay/DoorOverlay.uasset	2024-08-02T07:20:19.316Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/CAVEOverlay/DoorOverlay.uexp	2024-08-02T07:20:19.318Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/CAVEOverlay/IA_ToggleOverlay.uasset	2024-08-02T07:20:19.314Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/CAVEOverlay/IA_ToggleOverlay.uexp	2024-08-02T07:20:19.315Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/CAVEOverlay/Sign.uasset	2024-08-02T07:20:33.257Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/CAVEOverlay/Sign.ubulk	2024-08-02T07:20:33.255Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/CAVEOverlay/Sign.uexp	2024-08-02T07:20:33.259Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/CAVEOverlay/StopMaterial.uasset	2024-08-02T07:20:31.609Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/CAVEOverlay/StopMaterial.uexp	2024-08-02T07:20:31.612Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/CAVEOverlay/StopSign.uasset	2024-08-02T07:20:19.312Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/CAVEOverlay/StopSign.uexp	2024-08-02T07:20:19.318Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/CAVEOverlay/Stripes.uasset	2024-08-02T07:20:32.358Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/CAVEOverlay/Stripes.uexp	2024-08-02T07:20:32.360Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/CAVEOverlay/TapeMesh.uasset	2024-08-02T07:20:33.532Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/CAVEOverlay/TapeMesh.ubulk	2024-08-02T07:20:33.531Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/CAVEOverlay/TapeMesh.uexp	2024-08-02T07:20:33.535Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/Config/aixcave.uasset	2024-08-02T07:20:19.271Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/Config/aixcave.uexp	2024-08-02T07:20:19.272Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/Config/aixcave_two_player.uasset	2024-08-02T07:20:19.219Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/RWTHVRCluster/Config/aixcave_two_player.uexp	2024-08-02T07:20:19.220Z
+Engine/Plugins/Compositing/Composure/Content/Materials/ChromaKeying/Bias.uasset	2024-08-02T07:20:18.908Z
+Engine/Plugins/Compositing/Composure/Content/Materials/ChromaKeying/Bias.uexp	2024-08-02T07:20:18.909Z
+Engine/Plugins/Compositing/Composure/Content/Materials/ChromaKeying/MF_KeyColorMask.uasset	2024-08-02T07:20:31.347Z
+Engine/Plugins/Compositing/Composure/Content/Materials/ChromaKeying/MF_KeyColorMask.uexp	2024-08-02T07:20:31.349Z
+Engine/Plugins/Compositing/Composure/Content/Materials/ChromaKeying/M_SinglePassChromaKeyer.uasset	2024-08-02T07:20:32.631Z
+Engine/Plugins/Compositing/Composure/Content/Materials/ChromaKeying/M_SinglePassChromaKeyer.uexp	2024-08-02T07:20:32.632Z
+Engine/Plugins/Compositing/Composure/Content/Materials/ChromaKeying/M_SinglePassDespill.uasset	2024-08-02T07:20:31.198Z
+Engine/Plugins/Compositing/Composure/Content/Materials/ChromaKeying/M_SinglePassDespill.uexp	2024-08-02T07:20:31.199Z
+Engine/Plugins/Compositing/Composure/Content/Materials/Compositing/M_AlphaScale.uasset	2024-08-02T07:20:18.903Z
+Engine/Plugins/Compositing/Composure/Content/Materials/Compositing/M_AlphaScale.uexp	2024-08-02T07:20:18.904Z
+Engine/Plugins/Compositing/Composure/Content/Materials/Compositing/PreMult.uasset	2024-08-02T07:20:18.904Z
+Engine/Plugins/Compositing/Composure/Content/Materials/Compositing/PreMult.uexp	2024-08-02T07:20:18.906Z
+Engine/Plugins/Compositing/Composure/Content/Materials/Compositing/Radial.uasset	2024-08-02T07:20:31.137Z
+Engine/Plugins/Compositing/Composure/Content/Materials/Compositing/Radial.uexp	2024-08-02T07:20:31.140Z
+Engine/Plugins/Compositing/Composure/Content/Materials/Compositing/UnpreMult.uasset	2024-08-02T07:20:18.873Z
+Engine/Plugins/Compositing/Composure/Content/Materials/Compositing/UnpreMult.uexp	2024-08-02T07:20:18.874Z
+Engine/Plugins/Compositing/Composure/Content/Materials/Media/M_StaticVideoPlateDebug.uasset	2024-08-02T07:20:31.200Z
+Engine/Plugins/Compositing/Composure/Content/Materials/Media/M_StaticVideoPlateDebug.uexp	2024-08-02T07:20:31.201Z
+Engine/Plugins/Compositing/Composure/Content/Materials/Media/M_VideoPlateDefault.uasset	2024-08-02T07:20:31.238Z
+Engine/Plugins/Compositing/Composure/Content/Materials/Media/M_VideoPlateDefault.uexp	2024-08-02T07:20:31.239Z
+Engine/Plugins/Compositing/Composure/Content/Materials/Media/T_EmptyMediaTexture.uasset	2024-08-02T07:20:18.909Z
+Engine/Plugins/Compositing/Composure/Content/Materials/Media/T_EmptyMediaTexture.uexp	2024-08-02T07:20:18.911Z
+Engine/Plugins/Compositing/Composure/Content/Materials/PassSetup/ComposureBeforeTranslucencySetBlack.uasset	2024-08-02T07:20:19.034Z
+Engine/Plugins/Compositing/Composure/Content/Materials/PassSetup/ComposureBeforeTranslucencySetBlack.uexp	2024-08-02T07:20:19.035Z
+Engine/Plugins/Compositing/Composure/Content/Materials/PassSetup/ComposureSimpleSetupMaterial.uasset	2024-08-02T07:20:19.033Z
+Engine/Plugins/Compositing/Composure/Content/Materials/PassSetup/ComposureSimpleSetupMaterial.uexp	2024-08-02T07:20:19.034Z
+Engine/Plugins/Compositing/Composure/Content/Materials/ReplaceTonemapper/ComposureReplaceTonemapperByTexture.uasset	2024-08-02T07:20:18.899Z
+Engine/Plugins/Compositing/Composure/Content/Materials/ReplaceTonemapper/ComposureReplaceTonemapperByTexture.uexp	2024-08-02T07:20:18.900Z
+Engine/Plugins/Compositing/Composure/Content/Materials/ReplaceTonemapper/ComposureReplaceTonemapperComposeBloom.uasset	2024-08-02T07:20:18.901Z
+Engine/Plugins/Compositing/Composure/Content/Materials/ReplaceTonemapper/ComposureReplaceTonemapperComposeBloom.uexp	2024-08-02T07:20:18.903Z
+Engine/Plugins/Compositing/Composure/Content/Textures/Debug/T_CompilerError.uasset	2024-08-02T07:20:19.037Z
+Engine/Plugins/Compositing/Composure/Content/Textures/Debug/T_CompilerError.ubulk	2024-08-02T07:20:19.036Z
+Engine/Plugins/Compositing/Composure/Content/Textures/Debug/T_CompilerError.uexp	2024-08-02T07:20:19.038Z
+Engine/Plugins/Compositing/Composure/Content/Textures/Debug/T_DisabledElement.uasset	2024-08-02T07:20:19.031Z
+Engine/Plugins/Compositing/Composure/Content/Textures/Debug/T_DisabledElement.ubulk	2024-08-02T07:20:19.030Z
+Engine/Plugins/Compositing/Composure/Content/Textures/Debug/T_DisabledElement.uexp	2024-08-02T07:20:19.033Z
+Engine/Plugins/Compositing/Composure/Content/Textures/Debug/T_EmptyElement.uasset	2024-08-02T07:20:19.030Z
+Engine/Plugins/Compositing/Composure/Content/Textures/Debug/T_EmptyElement.ubulk	2024-08-02T07:20:19.028Z
+Engine/Plugins/Compositing/Composure/Content/Textures/Debug/T_EmptyElement.uexp	2024-08-02T07:20:19.032Z
+Engine/Plugins/Compositing/Composure/Content/Textures/Debug/T_SuspendedElement.uasset	2024-08-02T07:20:19.030Z
+Engine/Plugins/Compositing/Composure/Content/Textures/Debug/T_SuspendedElement.ubulk	2024-08-02T07:20:19.029Z
+Engine/Plugins/Compositing/Composure/Content/Textures/Debug/T_SuspendedElement.uexp	2024-08-02T07:20:19.032Z
+Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/HeadMesh.uasset	2024-08-02T07:20:33.428Z
+Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/HeadMesh.ubulk	2024-08-02T07:20:33.425Z
+Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/HeadMesh.uexp	2024-08-02T07:20:33.430Z
+Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/Mannequin__normals.uasset	2024-08-02T07:20:30.953Z
+Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/Mannequin__normals.ubulk	2024-08-02T07:20:30.951Z
+Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/Mannequin__normals.uexp	2024-08-02T07:20:30.955Z
+Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/M_Head_Body.uasset	2024-08-02T07:20:32.133Z
+Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/M_Head_Body.uexp	2024-08-02T07:20:32.136Z
+Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/SM_Hand-Lft-Mesh.uasset	2024-08-02T07:20:33.428Z
+Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/SM_Hand-Lft-Mesh.ubulk	2024-08-02T07:20:33.427Z
+Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/SM_Hand-Lft-Mesh.uexp	2024-08-02T07:20:33.431Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Bookmark/SM_Bookmark.uasset	2024-08-02T07:20:32.141Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Bookmark/SM_Bookmark.ubulk	2024-08-02T07:20:32.139Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Bookmark/SM_Bookmark.uexp	2024-08-02T07:20:32.142Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Controller/SM_ColorPicker.uasset	2024-08-02T07:20:33.496Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Controller/SM_ColorPicker.ubulk	2024-08-02T07:20:33.495Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Controller/SM_ColorPicker.uexp	2024-08-02T07:20:33.498Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Controller/SM_Controller_RiftS.uasset	2024-08-02T07:20:33.499Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Controller/SM_Controller_RiftS.ubulk	2024-08-02T07:20:33.498Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Controller/SM_Controller_RiftS.uexp	2024-08-02T07:20:33.502Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Controller/SM_VPController.uasset	2024-08-02T07:20:33.503Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Controller/SM_VPController.ubulk	2024-08-02T07:20:33.502Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Controller/SM_VPController.uexp	2024-08-02T07:20:33.508Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/SM_BG_Center.uasset	2024-08-02T07:20:33.203Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/SM_BG_Center.ubulk	2024-08-02T07:20:33.202Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/SM_BG_Center.uexp	2024-08-02T07:20:33.204Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/SM_BG_Left.uasset	2024-08-02T07:20:33.201Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/SM_BG_Left.ubulk	2024-08-02T07:20:33.200Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/SM_BG_Left.uexp	2024-08-02T07:20:33.202Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/SM_BG_Right.uasset	2024-08-02T07:20:33.194Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/SM_BG_Right.ubulk	2024-08-02T07:20:33.192Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/SM_BG_Right.uexp	2024-08-02T07:20:33.196Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/SM_HelpSpline.uasset	2024-08-02T07:20:32.214Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/SM_HelpSpline.ubulk	2024-08-02T07:20:32.211Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/SM_HelpSpline.uexp	2024-08-02T07:20:32.217Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Monitor/SM_ShoulderRig.uasset	2024-08-02T07:20:33.465Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Monitor/SM_ShoulderRig.ubulk	2024-08-02T07:20:33.464Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Monitor/SM_ShoulderRig.uexp	2024-08-02T07:20:33.466Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Marker.uasset	2024-08-02T07:20:33.507Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Marker.ubulk	2024-08-02T07:20:33.506Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Marker.uexp	2024-08-02T07:20:33.510Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/SM_Erasor.uasset	2024-08-02T07:20:32.838Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/SM_Erasor.ubulk	2024-08-02T07:20:32.837Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/SM_Erasor.uexp	2024-08-02T07:20:32.839Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tripod/SM_Tripod_Head.uasset	2024-08-02T07:20:33.462Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tripod/SM_Tripod_Head.ubulk	2024-08-02T07:20:33.461Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tripod/SM_Tripod_Head.uexp	2024-08-02T07:20:33.464Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tripod/SM_Tripod_Head_Plate.uasset	2024-08-02T07:20:33.460Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tripod/SM_Tripod_Head_Plate.ubulk	2024-08-02T07:20:33.458Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tripod/SM_Tripod_Head_Plate.uexp	2024-08-02T07:20:33.462Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tripod/SM_Tripod_Head_Plate_Mount.uasset	2024-08-02T07:20:33.455Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tripod/SM_Tripod_Head_Plate_Mount.ubulk	2024-08-02T07:20:33.454Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tripod/SM_Tripod_Head_Plate_Mount.uexp	2024-08-02T07:20:33.456Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tripod/SM_Tripod_Height.uasset	2024-08-02T07:20:33.451Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tripod/SM_Tripod_Height.ubulk	2024-08-02T07:20:33.450Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tripod/SM_Tripod_Height.uexp	2024-08-02T07:20:33.452Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tripod/SM_Tripod_Legs.uasset	2024-08-02T07:20:33.448Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tripod/SM_Tripod_Legs.ubulk	2024-08-02T07:20:33.447Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tripod/SM_Tripod_Legs.uexp	2024-08-02T07:20:33.450Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tripod/SM_Tripod_Pivot.uasset	2024-08-02T07:20:33.447Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tripod/SM_Tripod_Pivot.ubulk	2024-08-02T07:20:33.445Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tripod/SM_Tripod_Pivot.uexp	2024-08-02T07:20:33.448Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Viewfinder/MI_Viewfinder_Frame.uasset	2024-08-02T07:20:31.022Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Viewfinder/MI_Viewfinder_Frame.uexp	2024-08-02T07:20:31.025Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Viewfinder/MI_Viewfinder_InfoBG.uasset	2024-08-02T07:20:32.151Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Viewfinder/MI_Viewfinder_InfoBG.uexp	2024-08-02T07:20:32.153Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Viewfinder/M_Viewfinder_Frame.uasset	2024-08-02T07:20:18.439Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Viewfinder/M_Viewfinder_Frame.uexp	2024-08-02T07:20:18.440Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Viewfinder/M_Viewfinder_InfoBG.uasset	2024-08-02T07:20:31.011Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Viewfinder/M_Viewfinder_InfoBG.uexp	2024-08-02T07:20:31.013Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Viewfinder/SM_Viewfinder_ContentWindow.uasset	2024-08-02T07:20:33.205Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Viewfinder/SM_Viewfinder_ContentWindow.ubulk	2024-08-02T07:20:33.204Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Viewfinder/SM_Viewfinder_ContentWindow.uexp	2024-08-02T07:20:33.207Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Viewfinder/SM_Viewfinder_Info.uasset	2024-08-02T07:20:33.512Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Viewfinder/SM_Viewfinder_Info.ubulk	2024-08-02T07:20:33.509Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Viewfinder/SM_Viewfinder_Info.uexp	2024-08-02T07:20:33.514Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Audio/UI/A_Hover.uasset	2024-08-02T07:20:18.482Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Audio/UI/A_Hover.ubulk	2024-08-02T07:20:18.480Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Audio/UI/A_Hover.uexp	2024-08-02T07:20:18.482Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Audio/UI/A_Hover_Cue.uasset	2024-08-02T07:20:30.835Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Audio/UI/A_Hover_Cue.uexp	2024-08-02T07:20:30.837Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/BP/HelpSystem/E_Directions.uasset	2024-08-02T07:20:18.348Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/BP/HelpSystem/E_Directions.uexp	2024-08-02T07:20:18.350Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/BP/HelpSystem/E_TouchpadButtons.uasset	2024-08-02T07:20:18.349Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/BP/HelpSystem/E_TouchpadButtons.uexp	2024-08-02T07:20:18.351Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Editor/Meshes/M_ContentWindow.uasset	2024-08-02T07:20:18.127Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Editor/Meshes/M_ContentWindow.uexp	2024-08-02T07:20:18.129Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Editor/Meshes/VirtualProductionMenu_Main.uasset	2024-08-02T07:20:30.804Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Editor/Meshes/VirtualProductionMenu_Main.ubulk	2024-08-02T07:20:30.803Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Editor/Meshes/VirtualProductionMenu_Main.uexp	2024-08-02T07:20:30.807Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Editor/Meshes/VirtualProductionMenu_Sides.uasset	2024-08-02T07:20:30.809Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Editor/Meshes/VirtualProductionMenu_Sides.ubulk	2024-08-02T07:20:30.807Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/Editor/Meshes/VirtualProductionMenu_Sides.uexp	2024-08-02T07:20:30.811Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/LineRenderer/Laser/MF_IgnoreExposure.uasset	2024-08-02T07:20:17.666Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/LineRenderer/Laser/MF_IgnoreExposure.uexp	2024-08-02T07:20:17.667Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/LineRenderer/Laser/MI_LaserHit.uasset	2024-08-02T07:20:32.064Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/LineRenderer/Laser/MI_LaserHit.uexp	2024-08-02T07:20:32.066Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/LineRenderer/Laser/M_LaserHit.uasset	2024-08-02T07:20:30.966Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/LineRenderer/Laser/M_LaserHit.uexp	2024-08-02T07:20:30.968Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/LineRenderer/Laser/NS_AimLaser.uasset	2024-08-02T07:20:34.428Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/LineRenderer/Laser/NS_AimLaser.uexp	2024-08-02T07:20:34.430Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/LineRenderer/Materials/DefaultRibbonMaterial_NoGradient.uasset	2024-08-02T07:20:30.969Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/LineRenderer/Materials/DefaultRibbonMaterial_NoGradient.uexp	2024-08-02T07:20:30.970Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/LineRenderer/Materials/Mat_Beam.uasset	2024-08-02T07:20:31.019Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/LineRenderer/Materials/Mat_Beam.uexp	2024-08-02T07:20:31.021Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/LineRenderer/VScoutPrototype/SM_LaserPointerHit.uasset	2024-08-02T07:20:32.054Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/LineRenderer/VScoutPrototype/SM_LaserPointerHit.ubulk	2024-08-02T07:20:32.052Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/LineRenderer/VScoutPrototype/SM_LaserPointerHit.uexp	2024-08-02T07:20:32.056Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VR/Meshes/Indicator_ModeFlying.uasset	2024-08-02T07:20:32.041Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VR/Meshes/Indicator_ModeFlying.ubulk	2024-08-02T07:20:32.038Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VR/Meshes/Indicator_ModeFlying.uexp	2024-08-02T07:20:32.045Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VR/Textures/IconFlyingMode.uasset	2024-08-02T07:20:17.781Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VR/Textures/IconFlyingMode.ubulk	2024-08-02T07:20:17.780Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VR/Textures/IconFlyingMode.uexp	2024-08-02T07:20:17.783Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VR/Textures/IconFlyingMode_Mat.uasset	2024-08-02T07:20:30.925Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VR/Textures/IconFlyingMode_Mat.uexp	2024-08-02T07:20:30.927Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VR/Textures/RT_LinearBlack.uasset	2024-08-02T07:20:18.363Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/VR/Textures/RT_LinearBlack.uexp	2024-08-02T07:20:18.365Z
+Engine/Plugins/FX/Niagara/Content/Enums/Ribbons/ENiagara_UnsetDirectSet.uasset	2024-08-02T07:20:17.707Z
+Engine/Plugins/FX/Niagara/Content/Enums/Ribbons/ENiagara_UnsetDirectSet.uexp	2024-08-02T07:20:17.708Z
+Engine/Plugins/FX/Niagara/Content/Enums/Ribbons/ENiagara_UnsetDirectSetRandom.uasset	2024-08-02T07:20:17.705Z
+Engine/Plugins/FX/Niagara/Content/Enums/Ribbons/ENiagara_UnsetDirectSetRandom.uexp	2024-08-02T07:20:17.707Z
+Engine/Plugins/FX/Niagara/Content/Icons/Modules/T_Icon_Particle_InfiniteLife.uasset	2024-08-02T07:20:18.132Z
+Engine/Plugins/FX/Niagara/Content/Icons/Modules/T_Icon_Particle_InfiniteLife.uexp	2024-08-02T07:20:18.133Z
+Engine/Plugins/FX/Niagara/Content/Icons/Modules/T_Icon_Solver_LimitAccel.uasset	2024-08-02T07:20:18.461Z
+Engine/Plugins/FX/Niagara/Content/Icons/Modules/T_Icon_Solver_LimitAccel.uexp	2024-08-02T07:20:18.464Z
+Engine/Plugins/FX/Niagara/Content/Icons/Modules/T_Icon_Solver_LimitSpeed.uasset	2024-08-02T07:20:18.460Z
+Engine/Plugins/FX/Niagara/Content/Icons/Modules/T_Icon_Solver_LimitSpeed.uexp	2024-08-02T07:20:18.463Z
+Engine/Plugins/FX/Niagara/Content/Icons/Modules/T_Icon_Solver_RotationalSolve.uasset	2024-08-02T07:20:18.310Z
+Engine/Plugins/FX/Niagara/Content/Icons/Modules/T_Icon_Solver_RotationalSolve.uexp	2024-08-02T07:20:18.311Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialBodies/MF_ClearCoat_Body.uasset	2024-08-02T07:20:34.514Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialBodies/MF_ClearCoat_Body.uexp	2024-08-02T07:20:34.516Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialBodies/MF_Default_Body.uasset	2024-08-02T07:20:34.518Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialBodies/MF_Default_Body.uexp	2024-08-02T07:20:34.519Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialBodies/MF_Sheen_Body.uasset	2024-08-02T07:20:34.509Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialBodies/MF_Sheen_Body.uexp	2024-08-02T07:20:34.510Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialBodies/MF_SpecularGlossiness_Body.uasset	2024-08-02T07:20:34.497Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialBodies/MF_SpecularGlossiness_Body.uexp	2024-08-02T07:20:34.499Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialBodies/MF_Transmission_Body.uasset	2024-08-02T07:20:34.505Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialBodies/MF_Transmission_Body.uexp	2024-08-02T07:20:34.506Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialBodies/MF_Unlit_Body.uasset	2024-08-02T07:20:33.540Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialBodies/MF_Unlit_Body.uexp	2024-08-02T07:20:33.541Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_BaseColor.uasset	2024-08-02T07:20:32.312Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_BaseColor.uexp	2024-08-02T07:20:32.313Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_Clearcoat.uasset	2024-08-02T07:20:33.550Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_Clearcoat.uexp	2024-08-02T07:20:33.551Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_DiffuseSpecGloss.uasset	2024-08-02T07:20:32.302Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_DiffuseSpecGloss.uexp	2024-08-02T07:20:32.306Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_Emissive.uasset	2024-08-02T07:20:32.308Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_Emissive.uexp	2024-08-02T07:20:32.310Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_Fresnel_DS.uasset	2024-08-02T07:20:18.743Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_Fresnel_DS.uexp	2024-08-02T07:20:18.744Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_IOR.uasset	2024-08-02T07:20:18.746Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_IOR.uexp	2024-08-02T07:20:18.747Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_MetallicRoughness.uasset	2024-08-02T07:20:32.306Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_MetallicRoughness.uexp	2024-08-02T07:20:32.308Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_Normals.uasset	2024-08-02T07:20:33.553Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_Normals.uexp	2024-08-02T07:20:33.554Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_Occlusion.uasset	2024-08-02T07:20:32.302Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_Occlusion.uexp	2024-08-02T07:20:32.304Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_PerceivedBrightness.uasset	2024-08-02T07:20:31.121Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_PerceivedBrightness.uexp	2024-08-02T07:20:31.123Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_RotateNormals_TS.uasset	2024-08-02T07:20:32.409Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_RotateNormals_TS.uexp	2024-08-02T07:20:32.412Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_RotateV2.uasset	2024-08-02T07:20:18.747Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_RotateV2.uexp	2024-08-02T07:20:18.749Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_Sheen.uasset	2024-08-02T07:20:32.297Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_Sheen.uexp	2024-08-02T07:20:32.298Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_SpecGlossToMetalRoughness.uasset	2024-08-02T07:20:32.290Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_SpecGlossToMetalRoughness.uexp	2024-08-02T07:20:32.292Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_Specular.uasset	2024-08-02T07:20:32.299Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_Specular.uexp	2024-08-02T07:20:32.300Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_Temporal_Blur.uasset	2024-08-02T07:20:31.159Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_Temporal_Blur.uexp	2024-08-02T07:20:31.161Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_TransformUVs.uasset	2024-08-02T07:20:31.128Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_TransformUVs.uexp	2024-08-02T07:20:31.131Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_Transmission.uasset	2024-08-02T07:20:32.295Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialFunctions/MF_Transmission.uexp	2024-08-02T07:20:32.296Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_ClearCoat_Blend.uasset	2024-08-02T07:20:37.105Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_ClearCoat_Blend.uexp	2024-08-02T07:20:37.107Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_ClearCoat_Blend_DS.uasset	2024-08-02T07:20:37.093Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_ClearCoat_Blend_DS.uexp	2024-08-02T07:20:37.095Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_ClearCoat_Mask.uasset	2024-08-02T07:20:37.059Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_ClearCoat_Mask.uexp	2024-08-02T07:20:37.061Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_ClearCoat_Mask_DS.uasset	2024-08-02T07:20:37.098Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_ClearCoat_Mask_DS.uexp	2024-08-02T07:20:37.099Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_ClearCoat_Opaque.uasset	2024-08-02T07:20:36.925Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_ClearCoat_Opaque.uexp	2024-08-02T07:20:36.926Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_ClearCoat_Opaque_DS.uasset	2024-08-02T07:20:37.102Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_ClearCoat_Opaque_DS.uexp	2024-08-02T07:20:37.103Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Default_Blend.uasset	2024-08-02T07:20:37.599Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Default_Blend.uexp	2024-08-02T07:20:37.600Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Default_Blend_DS.uasset	2024-08-02T07:20:37.063Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Default_Blend_DS.uexp	2024-08-02T07:20:37.066Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Default_Mask.uasset	2024-08-02T07:20:37.602Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Default_Mask.uexp	2024-08-02T07:20:37.603Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Default_Mask_DS.uasset	2024-08-02T07:20:37.593Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Default_Mask_DS.uexp	2024-08-02T07:20:37.595Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Default_Opaque.uasset	2024-08-02T07:20:37.110Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Default_Opaque.uexp	2024-08-02T07:20:37.112Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Default_Opaque_DS.uasset	2024-08-02T07:20:37.596Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Default_Opaque_DS.uexp	2024-08-02T07:20:37.597Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Sheen_Blend.uasset	2024-08-02T07:20:37.087Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Sheen_Blend.uexp	2024-08-02T07:20:37.089Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Sheen_Blend_DS.uasset	2024-08-02T07:20:37.077Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Sheen_Blend_DS.uexp	2024-08-02T07:20:37.079Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Sheen_Mask.uasset	2024-08-02T07:20:37.091Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Sheen_Mask.uexp	2024-08-02T07:20:37.092Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Sheen_Mask_DS.uasset	2024-08-02T07:20:37.081Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Sheen_Mask_DS.uexp	2024-08-02T07:20:37.082Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Sheen_Opaque.uasset	2024-08-02T07:20:36.919Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Sheen_Opaque.uexp	2024-08-02T07:20:36.921Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Sheen_Opaque_DS.uasset	2024-08-02T07:20:37.084Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Sheen_Opaque_DS.uexp	2024-08-02T07:20:37.086Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_SpecularGlossiness_Blend.uasset	2024-08-02T07:20:37.066Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_SpecularGlossiness_Blend.uexp	2024-08-02T07:20:37.068Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_SpecularGlossiness_Blend_DS.uasset	2024-08-02T07:20:36.891Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_SpecularGlossiness_Blend_DS.uexp	2024-08-02T07:20:36.892Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_SpecularGlossiness_Mask.uasset	2024-08-02T07:20:37.069Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_SpecularGlossiness_Mask.uexp	2024-08-02T07:20:37.071Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_SpecularGlossiness_Mask_DS.uasset	2024-08-02T07:20:36.899Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_SpecularGlossiness_Mask_DS.uexp	2024-08-02T07:20:36.901Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_SpecularGlossiness_Opaque.uasset	2024-08-02T07:20:36.906Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_SpecularGlossiness_Opaque.uexp	2024-08-02T07:20:36.907Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_SpecularGlossiness_Opaque_DS.uasset	2024-08-02T07:20:36.903Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_SpecularGlossiness_Opaque_DS.uexp	2024-08-02T07:20:36.906Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Transmission.uasset	2024-08-02T07:20:36.910Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Transmission.uexp	2024-08-02T07:20:36.912Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Transmission_DS.uasset	2024-08-02T07:20:37.073Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Transmission_DS.uexp	2024-08-02T07:20:37.075Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Unlit_Blend.uasset	2024-08-02T07:20:36.089Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Unlit_Blend.uexp	2024-08-02T07:20:36.090Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Unlit_Blend_DS.uasset	2024-08-02T07:20:35.894Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Unlit_Blend_DS.uexp	2024-08-02T07:20:35.896Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Unlit_Mask.uasset	2024-08-02T07:20:36.091Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Unlit_Mask.uexp	2024-08-02T07:20:36.092Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Unlit_Mask_DS.uasset	2024-08-02T07:20:35.898Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Unlit_Mask_DS.uexp	2024-08-02T07:20:35.900Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Unlit_Opaque.uasset	2024-08-02T07:20:35.928Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Unlit_Opaque.uexp	2024-08-02T07:20:35.931Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Unlit_Opaque_DS.uasset	2024-08-02T07:20:36.087Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/MaterialInstances/MI_Unlit_Opaque_DS.uexp	2024-08-02T07:20:36.089Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/Textures/T_Generic_N.uasset	2024-08-02T07:20:18.778Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/Textures/T_Generic_N.uexp	2024-08-02T07:20:18.779Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/Textures/T_White_Linear.uasset	2024-08-02T07:20:18.841Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/Textures/T_White_Linear.uexp	2024-08-02T07:20:18.846Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/Textures/T_White_srgb.uasset	2024-08-02T07:20:18.846Z
+Engine/Plugins/Interchange/Runtime/Content/gltf/Textures/T_White_srgb.uexp	2024-08-02T07:20:18.853Z
+Engine/Plugins/Runtime/nDisplay/Content/Materials/Preview/M_ProjPolicyPreview.uasset	2024-08-02T07:20:31.227Z
+Engine/Plugins/Runtime/nDisplay/Content/Materials/Preview/M_ProjPolicyPreview.uexp	2024-08-02T07:20:31.228Z
+Engine/Plugins/Runtime/nDisplay/Content/TestPatterns/Animated/M_TPAChevron.uasset	2024-08-02T07:20:18.878Z
+Engine/Plugins/Runtime/nDisplay/Content/TestPatterns/Animated/M_TPAChevron.uexp	2024-08-02T07:20:18.879Z
+Engine/Plugins/Runtime/nDisplay/Content/TestPatterns/Animated/M_TPAGrid.uasset	2024-08-02T07:20:18.876Z
+Engine/Plugins/Runtime/nDisplay/Content/TestPatterns/Animated/M_TPAGrid.uexp	2024-08-02T07:20:18.877Z
+Engine/Plugins/Runtime/nDisplay/Content/TestPatterns/Animated/M_TPAMirroredChevron.uasset	2024-08-02T07:20:18.873Z
+Engine/Plugins/Runtime/nDisplay/Content/TestPatterns/Animated/M_TPAMirroredChevron.uexp	2024-08-02T07:20:18.875Z
+Engine/Plugins/Runtime/nDisplay/Content/TestPatterns/Animated/M_TPARadar.uasset	2024-08-02T07:20:18.774Z
+Engine/Plugins/Runtime/nDisplay/Content/TestPatterns/Animated/M_TPARadar.uexp	2024-08-02T07:20:18.776Z
+Engine/Plugins/Runtime/nDisplay/Content/TestPatterns/Animated/M_TPAStrips.uasset	2024-08-02T07:20:18.772Z
+Engine/Plugins/Runtime/nDisplay/Content/TestPatterns/Animated/M_TPAStrips.uexp	2024-08-02T07:20:18.774Z
+Engine/Plugins/Runtime/nDisplay/Content/TestPatterns/Statics/M_TPSCircles.uasset	2024-08-02T07:20:18.887Z
+Engine/Plugins/Runtime/nDisplay/Content/TestPatterns/Statics/M_TPSCircles.uexp	2024-08-02T07:20:18.888Z
+Engine/Plugins/Runtime/nDisplay/Content/TestPatterns/Statics/M_TPSColoredBars.uasset	2024-08-02T07:20:18.885Z
+Engine/Plugins/Runtime/nDisplay/Content/TestPatterns/Statics/M_TPSColoredBars.uexp	2024-08-02T07:20:18.887Z
+Engine/Plugins/Runtime/nDisplay/Content/TestPatterns/Statics/M_TPSGrayBars.uasset	2024-08-02T07:20:18.883Z
+Engine/Plugins/Runtime/nDisplay/Content/TestPatterns/Statics/M_TPSGrayBars.uexp	2024-08-02T07:20:18.884Z
+Engine/Plugins/Runtime/nDisplay/Content/TestPatterns/Statics/M_TPSGridCircles.uasset	2024-08-02T07:20:18.880Z
+Engine/Plugins/Runtime/nDisplay/Content/TestPatterns/Statics/M_TPSGridCircles.uexp	2024-08-02T07:20:18.882Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/BaseTexture.uasset	2024-08-02T07:20:18.808Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/BaseTexture.ubulk	2024-08-02T07:20:18.806Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/BaseTexture.uexp	2024-08-02T07:20:18.810Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/EmissiveTexture.uasset	2024-08-02T07:20:18.808Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/EmissiveTexture.ubulk	2024-08-02T07:20:18.804Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/EmissiveTexture.uexp	2024-08-02T07:20:18.809Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/MI_HPMixedReality.uasset	2024-08-02T07:20:32.556Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/MI_HPMixedReality.uexp	2024-08-02T07:20:32.557Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/MRTexture.uasset	2024-08-02T07:20:18.804Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/MRTexture.ubulk	2024-08-02T07:20:18.802Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/MRTexture.uexp	2024-08-02T07:20:18.808Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/NormalTexture.uasset	2024-08-02T07:20:18.804Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/NormalTexture.ubulk	2024-08-02T07:20:18.802Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/NormalTexture.uexp	2024-08-02T07:20:18.808Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HTCVive/BaseTexture.uasset	2024-08-02T07:20:18.832Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HTCVive/BaseTexture.ubulk	2024-08-02T07:20:18.830Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HTCVive/BaseTexture.uexp	2024-08-02T07:20:18.835Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HTCVive/HTCViveController.uasset	2024-08-02T07:20:33.613Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HTCVive/HTCViveController.ubulk	2024-08-02T07:20:33.610Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HTCVive/HTCViveController.uexp	2024-08-02T07:20:33.619Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HTCVive/MI_HTCVive.uasset	2024-08-02T07:20:32.419Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HTCVive/MI_HTCVive.uexp	2024-08-02T07:20:32.420Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/BaseTexture.uasset	2024-08-02T07:20:18.824Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/BaseTexture.ubulk	2024-08-02T07:20:18.822Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/BaseTexture.uexp	2024-08-02T07:20:18.827Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/EmissiveTexture.uasset	2024-08-02T07:20:18.824Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/EmissiveTexture.ubulk	2024-08-02T07:20:18.821Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/EmissiveTexture.uexp	2024-08-02T07:20:18.826Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/MI_MicrosoftMixedReality.uasset	2024-08-02T07:20:32.599Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/MI_MicrosoftMixedReality.uexp	2024-08-02T07:20:32.601Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/MRTexture.uasset	2024-08-02T07:20:18.819Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/MRTexture.ubulk	2024-08-02T07:20:18.817Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/MRTexture.uexp	2024-08-02T07:20:18.822Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/NormalTexture.uasset	2024-08-02T07:20:18.791Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/NormalTexture.ubulk	2024-08-02T07:20:18.789Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/NormalTexture.uexp	2024-08-02T07:20:18.794Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusGo/BaseTexture.uasset	2024-08-02T07:20:18.788Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusGo/BaseTexture.ubulk	2024-08-02T07:20:18.785Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusGo/BaseTexture.uexp	2024-08-02T07:20:18.790Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusGo/MI_OculusGo.uasset	2024-08-02T07:20:32.416Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusGo/MI_OculusGo.uexp	2024-08-02T07:20:32.418Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusGo/OculusGoController.uasset	2024-08-02T07:20:33.601Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusGo/OculusGoController.ubulk	2024-08-02T07:20:33.600Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusGo/OculusGoController.uexp	2024-08-02T07:20:33.603Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch/BaseTexture.uasset	2024-08-02T07:20:18.824Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch/BaseTexture.ubulk	2024-08-02T07:20:18.821Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch/BaseTexture.uexp	2024-08-02T07:20:18.827Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch/MI_OculusTouch.uasset	2024-08-02T07:20:32.597Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch/MI_OculusTouch.uexp	2024-08-02T07:20:32.598Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch/MRTexture.uasset	2024-08-02T07:20:18.817Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch/MRTexture.ubulk	2024-08-02T07:20:18.816Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch/MRTexture.uexp	2024-08-02T07:20:18.820Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v2/BaseTexture.uasset	2024-08-02T07:20:18.808Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v2/BaseTexture.ubulk	2024-08-02T07:20:18.804Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v2/BaseTexture.uexp	2024-08-02T07:20:18.810Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v2/MI_OculusTouch_v2.uasset	2024-08-02T07:20:32.554Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v2/MI_OculusTouch_v2.uexp	2024-08-02T07:20:32.555Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v2/MRTexture.uasset	2024-08-02T07:20:18.803Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v2/MRTexture.ubulk	2024-08-02T07:20:18.801Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v2/MRTexture.uexp	2024-08-02T07:20:18.805Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v3/BaseTexture.uasset	2024-08-02T07:20:18.794Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v3/BaseTexture.ubulk	2024-08-02T07:20:18.792Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v3/BaseTexture.uexp	2024-08-02T07:20:18.796Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v3/MI_OculusTouch_v3.uasset	2024-08-02T07:20:32.551Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v3/MI_OculusTouch_v3.uexp	2024-08-02T07:20:32.553Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v3/MRTexture.uasset	2024-08-02T07:20:18.792Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v3/MRTexture.ubulk	2024-08-02T07:20:18.790Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v3/MRTexture.uexp	2024-08-02T07:20:18.794Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/ValveIndex/BaseTexture.uasset	2024-08-02T07:20:18.820Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/ValveIndex/BaseTexture.ubulk	2024-08-02T07:20:18.817Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/ValveIndex/BaseTexture.uexp	2024-08-02T07:20:18.822Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/ValveIndex/MRTexture.uasset	2024-08-02T07:20:18.816Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/ValveIndex/MRTexture.ubulk	2024-08-02T07:20:18.813Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/ValveIndex/MRTexture.uexp	2024-08-02T07:20:18.817Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/Instances/Manny/MI_Manny_01.uasset	2024-08-02T07:20:34.987Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/Instances/Manny/MI_Manny_01.uexp	2024-08-02T07:20:34.988Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/Instances/Manny/MI_Manny_02.uasset	2024-08-02T07:20:36.593Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/Instances/Manny/MI_Manny_02.uexp	2024-08-02T07:20:36.594Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/Instances/Quinn/MI_Quinn_01.uasset	2024-08-02T07:20:34.984Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/Instances/Quinn/MI_Quinn_01.uexp	2024-08-02T07:20:34.986Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/Instances/Quinn/MI_Quinn_02.uasset	2024-08-02T07:20:36.589Z
+MetaCastBachelor/Content/Characters/MannequinsXR/Materials/Instances/Quinn/MI_Quinn_02.uexp	2024-08-02T07:20:36.591Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/ContinuousMovement/BP_ContinuousMovementComponent.uasset	2024-08-02T07:20:31.592Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/ContinuousMovement/BP_ContinuousMovementComponent.uexp	2024-08-02T07:20:31.594Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/Arrow.uasset	2024-08-02T07:20:31.707Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/Arrow.ubulk	2024-08-02T07:20:31.702Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/Arrow.uexp	2024-08-02T07:20:31.710Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/BP_TeleportationComponent.uasset	2024-08-02T07:20:37.121Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/BP_TeleportationComponent.uexp	2024-08-02T07:20:37.123Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/BP_VRTeleportVisualizer.uasset	2024-08-02T07:20:36.595Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/BP_VRTeleportVisualizer.uexp	2024-08-02T07:20:36.596Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/mat5.uasset	2024-08-02T07:20:19.561Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/mat5.uexp	2024-08-02T07:20:19.562Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Turn/BP_TurnComponent.uasset	2024-08-02T07:20:31.575Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Turn/BP_TurnComponent.uexp	2024-08-02T07:20:31.578Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Turn/IA_DesktopRotation.uasset	2024-08-02T07:20:19.488Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Turn/IA_DesktopRotation.uexp	2024-08-02T07:20:19.490Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Turn/IA_Turn.uasset	2024-08-02T07:20:19.487Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Turn/IA_Turn.uexp	2024-08-02T07:20:19.488Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoAssets/BP_GrabbableTestObject.uasset	2024-08-02T07:20:35.192Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoAssets/BP_GrabbableTestObject.uexp	2024-08-02T07:20:35.194Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoAssets/BP_IntenselectableObject.uasset	2024-08-02T07:20:35.102Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoAssets/BP_IntenselectableObject.uexp	2024-08-02T07:20:35.104Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/BP_DemoRoom.uasset	2024-08-02T07:20:33.280Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/BP_DemoRoom.uexp	2024-08-02T07:20:33.281Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/BP_Demostation.uasset	2024-08-02T07:20:33.267Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/BP_Demostation.uexp	2024-08-02T07:20:33.269Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_back_piller.uasset	2024-08-02T07:20:31.693Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_back_piller.ubulk	2024-08-02T07:20:31.691Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_back_piller.uexp	2024-08-02T07:20:31.695Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_connector.uasset	2024-08-02T07:20:31.707Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_connector.ubulk	2024-08-02T07:20:31.704Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_connector.uexp	2024-08-02T07:20:31.711Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_floor.uasset	2024-08-02T07:20:31.700Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_floor.ubulk	2024-08-02T07:20:31.697Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_floor.uexp	2024-08-02T07:20:31.702Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_front_pillar.uasset	2024-08-02T07:20:31.690Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_front_pillar.ubulk	2024-08-02T07:20:31.688Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_front_pillar.uexp	2024-08-02T07:20:31.692Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_long_wall.uasset	2024-08-02T07:20:31.683Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_long_wall.ubulk	2024-08-02T07:20:31.681Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_long_wall.uexp	2024-08-02T07:20:31.686Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_short_wall.uasset	2024-08-02T07:20:31.562Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_short_wall.ubulk	2024-08-02T07:20:31.560Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_short_wall.uexp	2024-08-02T07:20:31.565Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_vertical_end_piller.uasset	2024-08-02T07:20:31.687Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_vertical_end_piller.ubulk	2024-08-02T07:20:31.684Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomAssets_vertical_end_piller.uexp	2024-08-02T07:20:31.689Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomTest.uexp	2024-08-02T07:20:35.100Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/DemoRoomTest.umap	2024-08-02T07:20:35.098Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/demostation.uasset	2024-08-02T07:20:31.699Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/demostation.ubulk	2024-08-02T07:20:31.696Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/demostation.uexp	2024-08-02T07:20:31.708Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/Entrance_Pillars.uasset	2024-08-02T07:20:19.554Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/Entrance_Pillars.uexp	2024-08-02T07:20:19.555Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/Floor.uasset	2024-08-02T07:20:19.552Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/Floor.uexp	2024-08-02T07:20:19.553Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/Frame.uasset	2024-08-02T07:20:19.550Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/Frame.uexp	2024-08-02T07:20:19.551Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/Inner_Walls.uasset	2024-08-02T07:20:19.548Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/Inner_Walls.uexp	2024-08-02T07:20:19.549Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/Interior.uasset	2024-08-02T07:20:19.545Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/Interior.uexp	2024-08-02T07:20:19.546Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/Outer_Pillars.uasset	2024-08-02T07:20:19.543Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/Outer_Pillars.uexp	2024-08-02T07:20:19.544Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/Outer_Walls.uasset	2024-08-02T07:20:19.424Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/Outer_Walls.uexp	2024-08-02T07:20:19.430Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/S_RoomSettings.uasset	2024-08-02T07:20:19.419Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/DemoRoomAssets/S_RoomSettings.uexp	2024-08-02T07:20:19.422Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Pawns/BP_ContentExamplesPawn.uasset	2024-08-02T07:20:37.398Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Pawns/BP_ContentExamplesPawn.uexp	2024-08-02T07:20:37.400Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Pawns/BP_TeleportPawn.uasset	2024-08-02T07:20:37.496Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Pawns/BP_TeleportPawn.uexp	2024-08-02T07:20:37.498Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Trigger/ContinuousNavigationModeTrigger.uasset	2024-08-02T07:20:19.395Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Trigger/ContinuousNavigationModeTrigger.uexp	2024-08-02T07:20:19.397Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Trigger/InteractionTechniquesEnum.uasset	2024-08-02T07:20:19.389Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Trigger/InteractionTechniquesEnum.uexp	2024-08-02T07:20:19.391Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Trigger/InteractionTechniqueSwapTrigger.uasset	2024-08-02T07:20:38.498Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Trigger/InteractionTechniqueSwapTrigger.uexp	2024-08-02T07:20:38.500Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Trigger/MovementTechniqueSwapTrigger.uasset	2024-08-02T07:20:38.423Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Trigger/MovementTechniqueSwapTrigger.uexp	2024-08-02T07:20:38.425Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Widgets/BP_PawnSwapWidgetActor.uasset	2024-08-02T07:20:38.095Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Widgets/BP_PawnSwapWidgetActor.uexp	2024-08-02T07:20:38.097Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Widgets/BP_WidgetDemoActor.uasset	2024-08-02T07:20:32.233Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Widgets/BP_WidgetDemoActor.uexp	2024-08-02T07:20:32.234Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Widgets/ClickMeWidget.uasset	2024-08-02T07:20:31.032Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Widgets/ClickMeWidget.uexp	2024-08-02T07:20:31.033Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Widgets/DemostationTextboxWidget.uasset	2024-08-02T07:20:19.386Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Widgets/DemostationTextboxWidget.uexp	2024-08-02T07:20:19.388Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Widgets/PawnSwapButtonWidget.uasset	2024-08-02T07:20:19.384Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ContentExamples/Widgets/PawnSwapButtonWidget.uexp	2024-08-02T07:20:19.385Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Blueprints/BP_locomotive.uasset	2024-08-02T07:20:33.828Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Blueprints/BP_locomotive.uexp	2024-08-02T07:20:33.829Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Blueprints/BP_loc_NoReplication.uasset	2024-08-02T07:20:34.882Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Blueprints/BP_loc_NoReplication.uexp	2024-08-02T07:20:34.883Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Blueprints/BP_loc_replication.uasset	2024-08-02T07:20:34.831Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Blueprints/BP_loc_replication.uexp	2024-08-02T07:20:34.832Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Blueprints/BP_RE_1_1.uasset	2024-08-02T07:20:36.489Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Blueprints/BP_RE_1_1.uexp	2024-08-02T07:20:36.490Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Blueprints/BP_RE_1_2.uasset	2024-08-02T07:20:36.388Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Blueprints/BP_RE_1_2.uexp	2024-08-02T07:20:36.390Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Blueprints/BP_RE_1_3.uasset	2024-08-02T07:20:36.291Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Blueprints/BP_RE_1_3.uexp	2024-08-02T07:20:36.293Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Blueprints/BP_RE_1_4.uasset	2024-08-02T07:20:36.187Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Blueprints/BP_RE_1_4.uexp	2024-08-02T07:20:36.188Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Blueprints/BP_RE_1_5.uasset	2024-08-02T07:20:36.126Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Blueprints/BP_RE_1_5.uexp	2024-08-02T07:20:36.128Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Models/BP_locomotiveAnimation.uasset	2024-08-02T07:20:33.262Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Models/BP_locomotiveAnimation.uexp	2024-08-02T07:20:33.263Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Models/Face.uasset	2024-08-02T07:20:19.468Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Models/Face.uexp	2024-08-02T07:20:19.470Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Models/Light_Wood.uasset	2024-08-02T07:20:19.466Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Models/Light_Wood.uexp	2024-08-02T07:20:19.467Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Models/locomotive.uasset	2024-08-02T07:20:31.558Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Models/locomotive.uexp	2024-08-02T07:20:31.562Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Models/locomotive_Anim.uasset	2024-08-02T07:20:31.611Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Models/locomotive_Anim.uexp	2024-08-02T07:20:31.614Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Models/locomotive_PhysicsAsset.uasset	2024-08-02T07:20:19.380Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Models/locomotive_PhysicsAsset.uexp	2024-08-02T07:20:19.383Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Models/locomotive_Skeleton.uasset	2024-08-02T07:20:19.380Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Models/locomotive_Skeleton.uexp	2024-08-02T07:20:19.383Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Models/Wood.uasset	2024-08-02T07:20:19.463Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Examples/ReplicationExamples/Models/Wood.uexp	2024-08-02T07:20:19.465Z
+Engine/Plugins/Enterprise/DatasmithContent/Content/Materials/FBXImporter/VRED/Glass.uasset	2024-08-02T07:20:36.081Z
+Engine/Plugins/Enterprise/DatasmithContent/Content/Materials/FBXImporter/VRED/Glass.uexp	2024-08-02T07:20:36.083Z
+Engine/Plugins/Enterprise/DatasmithContent/Content/Materials/FBXImporter/VRED/PlanarMapping.uasset	2024-08-02T07:20:32.031Z
+Engine/Plugins/Enterprise/DatasmithContent/Content/Materials/FBXImporter/VRED/PlanarMapping.uexp	2024-08-02T07:20:32.033Z
+Engine/Plugins/Enterprise/DatasmithContent/Content/Materials/FBXImporter/VRED/ProcessNormal.uasset	2024-08-02T07:20:31.193Z
+Engine/Plugins/Enterprise/DatasmithContent/Content/Materials/FBXImporter/VRED/ProcessNormal.uexp	2024-08-02T07:20:31.195Z
+Engine/Plugins/Enterprise/DatasmithContent/Content/Materials/FBXImporter/VRED/TriplanarMapping.uasset	2024-08-02T07:20:32.284Z
+Engine/Plugins/Enterprise/DatasmithContent/Content/Materials/FBXImporter/VRED/TriplanarMapping.uexp	2024-08-02T07:20:32.286Z
+Engine/Plugins/Enterprise/DatasmithContent/Content/Materials/FBXImporter/VRED/UVMapping.uasset	2024-08-02T07:20:32.035Z
+Engine/Plugins/Enterprise/DatasmithContent/Content/Materials/FBXImporter/VRED/UVMapping.uexp	2024-08-02T07:20:32.037Z
+Engine/Plugins/Enterprise/DatasmithContent/Content/Materials/FBXImporter/VRED/VREDRepeatMode.uasset	2024-08-02T07:20:30.773Z
+Engine/Plugins/Enterprise/DatasmithContent/Content/Materials/FBXImporter/VRED/VREDRepeatMode.uexp	2024-08-02T07:20:30.775Z
+Engine/Plugins/Enterprise/DatasmithContent/Content/Materials/FBXImporter/VRED/VREDTextureRead.uasset	2024-08-02T07:20:33.535Z
+Engine/Plugins/Enterprise/DatasmithContent/Content/Materials/FBXImporter/VRED/VREDTextureRead.uexp	2024-08-02T07:20:33.538Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Bookmark/M_Bookmark_Light.uasset	2024-08-02T07:20:30.995Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Bookmark/M_Bookmark_Light.uexp	2024-08-02T07:20:30.996Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Bookmark/M_Bookmark_MeasureSource.uasset	2024-08-02T07:20:30.993Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Bookmark/M_Bookmark_MeasureSource.uexp	2024-08-02T07:20:30.994Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Bookmark/M_Metal.uasset	2024-08-02T07:20:17.914Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Bookmark/M_Metal.uexp	2024-08-02T07:20:17.915Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/MI_Controller_Body.uasset	2024-08-02T07:20:32.209Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/MI_Controller_Body.uexp	2024-08-02T07:20:32.211Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/MI_Controller_Body_Rift.uasset	2024-08-02T07:20:32.203Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/MI_Controller_Body_Rift.uexp	2024-08-02T07:20:32.206Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/MI_Controller_Buttons.uasset	2024-08-02T07:20:32.144Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/MI_Controller_Buttons.uexp	2024-08-02T07:20:32.145Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/MI_Picker_Inner.uasset	2024-08-02T07:20:32.142Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/MI_Picker_Inner.uexp	2024-08-02T07:20:32.145Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/MI_Picker_Outer.uasset	2024-08-02T07:20:32.140Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/MI_Picker_Outer.uexp	2024-08-02T07:20:32.142Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/M_Controller_Body.uasset	2024-08-02T07:20:30.983Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/M_Controller_Body.uexp	2024-08-02T07:20:30.984Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/M_Controller_Body_Rift.uasset	2024-08-02T07:20:30.979Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/M_Controller_Body_Rift.uexp	2024-08-02T07:20:30.980Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/M_Controller_Buttons.uasset	2024-08-02T07:20:31.003Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/M_Controller_Buttons.uexp	2024-08-02T07:20:31.004Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/M_Controller_ColorWheel_RiftS.uasset	2024-08-02T07:20:30.918Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/M_Controller_ColorWheel_RiftS.uexp	2024-08-02T07:20:30.920Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/M_Controller_Indicator.uasset	2024-08-02T07:20:30.990Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/M_Controller_Indicator.uexp	2024-08-02T07:20:30.992Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/M_Controller_Touchpad.uasset	2024-08-02T07:20:30.988Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/M_Controller_Touchpad.uexp	2024-08-02T07:20:30.989Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/M_Picker.uasset	2024-08-02T07:20:31.000Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/M_Picker.uexp	2024-08-02T07:20:31.001Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/M_SettingsButton.uasset	2024-08-02T07:20:30.985Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Controller/M_SettingsButton.uexp	2024-08-02T07:20:30.986Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/HelpSystem/MI_ArrowDown.uasset	2024-08-02T07:20:32.192Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/HelpSystem/MI_ArrowDown.uexp	2024-08-02T07:20:32.195Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/HelpSystem/MI_BG.uasset	2024-08-02T07:20:32.199Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/HelpSystem/MI_BG.uexp	2024-08-02T07:20:32.201Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/HelpSystem/MI_BG_Outline.uasset	2024-08-02T07:20:32.196Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/HelpSystem/MI_BG_Outline.uexp	2024-08-02T07:20:32.199Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/HelpSystem/M_Unlit.uasset	2024-08-02T07:20:31.094Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/HelpSystem/M_Unlit.uexp	2024-08-02T07:20:31.097Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/T_Controller_RiftS_FadeMask.uasset	2024-08-02T07:20:18.245Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/T_Controller_RiftS_FadeMask.uexp	2024-08-02T07:20:18.862Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/T_Controller_RiftS_Mask.uasset	2024-08-02T07:20:17.858Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/T_Controller_RiftS_Mask.uexp	2024-08-02T07:20:18.140Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/T_OpacityColorMask.uasset	2024-08-02T07:20:18.952Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/T_OpacityColorMask.ubulk	2024-08-02T07:20:18.945Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/T_OpacityColorMask.uexp	2024-08-02T07:20:18.953Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/T_PuckMask.uasset	2024-08-02T07:20:18.961Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/T_PuckMask.ubulk	2024-08-02T07:20:18.953Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/T_PuckMask.uexp	2024-08-02T07:20:18.962Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/Rift/SM_Arrow_Back.uasset	2024-08-02T07:20:32.196Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/Rift/SM_Arrow_Back.ubulk	2024-08-02T07:20:32.193Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/Rift/SM_Arrow_Back.uexp	2024-08-02T07:20:32.199Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/Rift/SM_Arrow_Down.uasset	2024-08-02T07:20:33.521Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/Rift/SM_Arrow_Down.ubulk	2024-08-02T07:20:33.519Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/Rift/SM_Arrow_Down.uexp	2024-08-02T07:20:33.523Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/Rift/SM_Arrow_Forward.uasset	2024-08-02T07:20:32.192Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/Rift/SM_Arrow_Forward.ubulk	2024-08-02T07:20:32.190Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/Rift/SM_Arrow_Forward.uexp	2024-08-02T07:20:32.195Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/Rift/SM_Arrow_Left.uasset	2024-08-02T07:20:32.188Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/Rift/SM_Arrow_Left.ubulk	2024-08-02T07:20:32.186Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/Rift/SM_Arrow_Left.uexp	2024-08-02T07:20:32.191Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/Rift/SM_Arrow_Right.uasset	2024-08-02T07:20:32.161Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/Rift/SM_Arrow_Right.ubulk	2024-08-02T07:20:32.159Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/HelpSystem/Rift/SM_Arrow_Right.uexp	2024-08-02T07:20:32.162Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Clamp_1.uasset	2024-08-02T07:20:33.194Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Clamp_1.ubulk	2024-08-02T07:20:33.192Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Clamp_1.uexp	2024-08-02T07:20:33.196Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Clamp_2.uasset	2024-08-02T07:20:33.191Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Clamp_2.ubulk	2024-08-02T07:20:33.189Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Clamp_2.uexp	2024-08-02T07:20:33.193Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Flap.uasset	2024-08-02T07:20:32.855Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Flap.ubulk	2024-08-02T07:20:32.854Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Flap.uexp	2024-08-02T07:20:32.857Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Flap_2.uasset	2024-08-02T07:20:32.851Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Flap_2.ubulk	2024-08-02T07:20:32.850Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Flap_2.uexp	2024-08-02T07:20:32.852Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Flap_3.uasset	2024-08-02T07:20:32.849Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Flap_3.ubulk	2024-08-02T07:20:32.848Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Flap_3.uexp	2024-08-02T07:20:32.851Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Flap_4.uasset	2024-08-02T07:20:32.847Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Flap_4.ubulk	2024-08-02T07:20:32.846Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Flap_4.uexp	2024-08-02T07:20:32.848Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Hinge.uasset	2024-08-02T07:20:32.845Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Hinge.ubulk	2024-08-02T07:20:32.844Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Hinge.uexp	2024-08-02T07:20:32.847Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Hinge_Base.uasset	2024-08-02T07:20:33.188Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Hinge_Base.ubulk	2024-08-02T07:20:33.187Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Hinge_Base.uexp	2024-08-02T07:20:33.190Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Knob.uasset	2024-08-02T07:20:32.842Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Knob.ubulk	2024-08-02T07:20:32.841Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Knob.uexp	2024-08-02T07:20:32.844Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Legs.uasset	2024-08-02T07:20:33.186Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Legs.ubulk	2024-08-02T07:20:33.185Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Legs.uexp	2024-08-02T07:20:33.188Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Light.uasset	2024-08-02T07:20:32.841Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Light.ubulk	2024-08-02T07:20:32.839Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Light.uexp	2024-08-02T07:20:32.842Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Pole.uasset	2024-08-02T07:20:33.183Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Pole.ubulk	2024-08-02T07:20:33.181Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/Tools/Gaffer/SM_Gaffer_Pole.uexp	2024-08-02T07:20:33.185Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/UI/ContextMenu/SM_ContextMenu_Frame.uasset	2024-08-02T07:20:30.809Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/UI/ContextMenu/SM_ContextMenu_Frame.ubulk	2024-08-02T07:20:30.806Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/UI/ContextMenu/SM_ContextMenu_Frame.uexp	2024-08-02T07:20:30.811Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/UI/ContextMenu/SM_Interactor_Cursor.uasset	2024-08-02T07:20:33.515Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/UI/ContextMenu/SM_Interactor_Cursor.ubulk	2024-08-02T07:20:33.513Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/3D/UI/ContextMenu/SM_Interactor_Cursor.uexp	2024-08-02T07:20:33.517Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/Left/left_HPMixedRealityController.uasset	2024-08-02T07:20:33.581Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/Left/left_HPMixedRealityController.ubulk	2024-08-02T07:20:33.579Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/Left/left_HPMixedRealityController.uexp	2024-08-02T07:20:33.584Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/Right/right_HPMixedRealityController.uasset	2024-08-02T07:20:33.578Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/Right/right_HPMixedRealityController.ubulk	2024-08-02T07:20:33.577Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/HPMixedReality/Right/right_HPMixedRealityController.uexp	2024-08-02T07:20:33.581Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/Left/left_MicrosoftMixedRealityController.uasset	2024-08-02T07:20:33.609Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/Left/left_MicrosoftMixedRealityController.ubulk	2024-08-02T07:20:33.607Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/Left/left_MicrosoftMixedRealityController.uexp	2024-08-02T07:20:33.614Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/Right/right_MicrosoftMixedRealityController.uasset	2024-08-02T07:20:33.609Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/Right/right_MicrosoftMixedRealityController.ubulk	2024-08-02T07:20:33.607Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/MicrosoftMixedReality/Right/right_MicrosoftMixedRealityController.uexp	2024-08-02T07:20:33.614Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch/Left/left_OculusTouchController.uasset	2024-08-02T07:20:33.599Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch/Left/left_OculusTouchController.ubulk	2024-08-02T07:20:33.597Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch/Left/left_OculusTouchController.uexp	2024-08-02T07:20:33.602Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch/Right/right_OculusTouchController.uasset	2024-08-02T07:20:33.596Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch/Right/right_OculusTouchController.ubulk	2024-08-02T07:20:33.595Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch/Right/right_OculusTouchController.uexp	2024-08-02T07:20:33.600Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v2/Left/left_OculusTouch_v2Controller.uasset	2024-08-02T07:20:33.575Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v2/Left/left_OculusTouch_v2Controller.ubulk	2024-08-02T07:20:33.574Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v2/Left/left_OculusTouch_v2Controller.uexp	2024-08-02T07:20:33.577Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v2/Right/right_OculusTouch_v2Controller.uasset	2024-08-02T07:20:33.566Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v2/Right/right_OculusTouch_v2Controller.ubulk	2024-08-02T07:20:33.565Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v2/Right/right_OculusTouch_v2Controller.uexp	2024-08-02T07:20:33.568Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v3/Left/left_OculusTouch_v3Controller.uasset	2024-08-02T07:20:33.565Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v3/Left/left_OculusTouch_v3Controller.ubulk	2024-08-02T07:20:33.564Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v3/Left/left_OculusTouch_v3Controller.uexp	2024-08-02T07:20:33.568Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v3/Right/right_OculusTouch_v3Controller.uasset	2024-08-02T07:20:33.563Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v3/Right/right_OculusTouch_v3Controller.ubulk	2024-08-02T07:20:33.561Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/OculusTouch_v3/Right/right_OculusTouch_v3Controller.uexp	2024-08-02T07:20:33.566Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/ValveIndex/Left/left_ValveIndexController.uasset	2024-08-02T07:20:33.587Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/ValveIndex/Left/left_ValveIndexController.ubulk	2024-08-02T07:20:33.586Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/ValveIndex/Left/left_ValveIndexController.uexp	2024-08-02T07:20:33.590Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/ValveIndex/Left/MI_left_ValveIndex.uasset	2024-08-02T07:20:32.561Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/ValveIndex/Left/MI_left_ValveIndex.uexp	2024-08-02T07:20:32.563Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/ValveIndex/Right/MI_right_ValveIndex.uasset	2024-08-02T07:20:32.559Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/ValveIndex/Right/MI_right_ValveIndex.uexp	2024-08-02T07:20:32.560Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/ValveIndex/Right/right_ValveIndexController.uasset	2024-08-02T07:20:33.584Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/ValveIndex/Right/right_ValveIndexController.ubulk	2024-08-02T07:20:33.582Z
+Engine/Plugins/Runtime/OpenXR/Content/Devices/ValveIndex/Right/right_ValveIndexController.uexp	2024-08-02T07:20:33.587Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/Materials/DefaultRibbonMaterial_NoGradient.uasset	2024-08-02T07:20:19.558Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/Materials/DefaultRibbonMaterial_NoGradient.uexp	2024-08-02T07:20:19.559Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/Materials/M_TeleportCylinder.uasset	2024-08-02T07:20:32.403Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/Materials/M_TeleportCylinder.uexp	2024-08-02T07:20:32.405Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/Materials/M_TeleportNoise.uasset	2024-08-02T07:20:31.124Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/Materials/M_TeleportNoise.uexp	2024-08-02T07:20:31.126Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/VFX/NPC_VRTemplate.uasset	2024-08-02T07:20:18.386Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/VFX/NPC_VRTemplate.uexp	2024-08-02T07:20:18.387Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/VFX/NS_PlayAreaBounds.uasset	2024-08-02T07:20:34.461Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/VFX/NS_PlayAreaBounds.uexp	2024-08-02T07:20:34.465Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/VFX/NS_TeleportRing.uasset	2024-08-02T07:20:35.387Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/VFX/NS_TeleportRing.uexp	2024-08-02T07:20:35.390Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/VFX/NS_TeleportTrace.uasset	2024-08-02T07:20:35.593Z
+MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content/Components/Movement/Teleportation/VFX/NS_TeleportTrace.uexp	2024-08-02T07:20:35.595Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Tools/Gaffer/MI_Gaffer.uasset	2024-08-02T07:20:32.478Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Tools/Gaffer/MI_Gaffer.uexp	2024-08-02T07:20:32.481Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Tools/Gaffer/M_Gaffer.uasset	2024-08-02T07:20:31.344Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Tools/Gaffer/M_Gaffer.uexp	2024-08-02T07:20:31.346Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Tools/Handheld/MI_Handheld.uasset	2024-08-02T07:20:32.070Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Tools/Handheld/MI_Handheld.uexp	2024-08-02T07:20:32.071Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Tools/Handheld/MI_Handheld_02.uasset	2024-08-02T07:20:32.067Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Tools/Handheld/MI_Handheld_02.uexp	2024-08-02T07:20:32.069Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Tools/Handheld/M_Handheld.uasset	2024-08-02T07:20:30.922Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Tools/Handheld/M_Handheld.uexp	2024-08-02T07:20:30.923Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Tools/Marker/M_Erasor.uasset	2024-08-02T07:20:31.005Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Tools/Marker/M_Erasor.uexp	2024-08-02T07:20:31.007Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Tools/Tripod/MI_Tripod.uasset	2024-08-02T07:20:32.066Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Tools/Tripod/MI_Tripod.uexp	2024-08-02T07:20:32.068Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Tools/Tripod/M_Tripod.uasset	2024-08-02T07:20:30.972Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/Tools/Tripod/M_Tripod.uexp	2024-08-02T07:20:30.973Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/ContextMenu/MI_Interactor_Cursor.uasset	2024-08-02T07:20:32.154Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/ContextMenu/MI_Interactor_Cursor.uexp	2024-08-02T07:20:32.155Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/ContextMenu/MI_Interactor_Cursor_Outline.uasset	2024-08-02T07:20:32.152Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/ContextMenu/MI_Interactor_Cursor_Outline.uexp	2024-08-02T07:20:32.154Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/ContextMenu/M_Interactor_Cursor.uasset	2024-08-02T07:20:31.015Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/ContextMenu/M_Interactor_Cursor.uexp	2024-08-02T07:20:31.016Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/ColorPickerWheel/Picker.uasset	2024-08-02T07:20:18.472Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/ColorPickerWheel/Picker.uexp	2024-08-02T07:20:18.473Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/ColorPickerWheel/T_ColorWheel.uasset	2024-08-02T07:20:18.470Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/ColorPickerWheel/T_ColorWheel.uexp	2024-08-02T07:20:18.496Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/ColorPickerWheel/T_ColorWheel_Hovered.uasset	2024-08-02T07:20:17.925Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/ColorPickerWheel/T_ColorWheel_Hovered.uexp	2024-08-02T07:20:17.928Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Dolly/T_Dolly_Hovered_Bottom.uasset	2024-08-02T07:20:18.001Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Dolly/T_Dolly_Hovered_Bottom.uexp	2024-08-02T07:20:18.013Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Dolly/T_Dolly_Hovered_Top.uasset	2024-08-02T07:20:17.994Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Dolly/T_Dolly_Hovered_Top.uexp	2024-08-02T07:20:18.005Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Dolly/T_Dolly_Idle.uasset	2024-08-02T07:20:17.989Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Dolly/T_Dolly_Idle.uexp	2024-08-02T07:20:18.000Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Flags/T_Flags_Hovered_Bottom.uasset	2024-08-02T07:20:17.905Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Flags/T_Flags_Hovered_Bottom.uexp	2024-08-02T07:20:17.917Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Flags/T_Flags_Hovered_Top.uasset	2024-08-02T07:20:17.895Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Flags/T_Flags_Hovered_Top.uexp	2024-08-02T07:20:17.906Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Flags/T_Flags_Idle.uasset	2024-08-02T07:20:17.890Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Flags/T_Flags_Idle.uexp	2024-08-02T07:20:17.901Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Gaffer/T_Gaffer_Hovered_Bottom.uasset	2024-08-02T07:20:17.983Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Gaffer/T_Gaffer_Hovered_Bottom.uexp	2024-08-02T07:20:17.995Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Gaffer/T_Gaffer_Hovered_Left.uasset	2024-08-02T07:20:17.976Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Gaffer/T_Gaffer_Hovered_Left.uexp	2024-08-02T07:20:17.987Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Gaffer/T_Gaffer_Hovered_Right.uasset	2024-08-02T07:20:17.970Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Gaffer/T_Gaffer_Hovered_Right.uexp	2024-08-02T07:20:17.982Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Gaffer/T_Gaffer_Hovered_Top.uasset	2024-08-02T07:20:17.964Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Gaffer/T_Gaffer_Hovered_Top.uexp	2024-08-02T07:20:17.977Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Gaffer/T_Gaffer_Idle.uasset	2024-08-02T07:20:17.960Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Gaffer/T_Gaffer_Idle.uexp	2024-08-02T07:20:17.971Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Bookmark.uasset	2024-08-02T07:20:17.808Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Bookmark.ubulk	2024-08-02T07:20:17.807Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Bookmark.uexp	2024-08-02T07:20:17.809Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Dolly.uasset	2024-08-02T07:20:17.807Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Dolly.ubulk	2024-08-02T07:20:17.806Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Dolly.uexp	2024-08-02T07:20:17.808Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Gaffer.uasset	2024-08-02T07:20:17.805Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Gaffer.ubulk	2024-08-02T07:20:17.803Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Gaffer.uexp	2024-08-02T07:20:17.806Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Handheld.uasset	2024-08-02T07:20:17.803Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Handheld.ubulk	2024-08-02T07:20:17.801Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Handheld.uexp	2024-08-02T07:20:17.805Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Interact.uasset	2024-08-02T07:20:17.724Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Interact.ubulk	2024-08-02T07:20:17.722Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Interact.uexp	2024-08-02T07:20:17.727Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Marker.uasset	2024-08-02T07:20:17.723Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Marker.ubulk	2024-08-02T07:20:17.720Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Marker.uexp	2024-08-02T07:20:17.726Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Measure.uasset	2024-08-02T07:20:17.723Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Measure.ubulk	2024-08-02T07:20:17.719Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Measure.uexp	2024-08-02T07:20:17.725Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Navigation.uasset	2024-08-02T07:20:17.801Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Navigation.ubulk	2024-08-02T07:20:17.799Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Navigation.uexp	2024-08-02T07:20:17.802Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Timeline.uasset	2024-08-02T07:20:17.795Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Timeline.uexp	2024-08-02T07:20:17.799Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Tripod.uasset	2024-08-02T07:20:17.797Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Tripod.ubulk	2024-08-02T07:20:17.796Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Tripod.uexp	2024-08-02T07:20:17.798Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Viewfinder.uasset	2024-08-02T07:20:17.720Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Viewfinder.ubulk	2024-08-02T07:20:17.718Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Indicators/T_Indicator_Viewfinder.uexp	2024-08-02T07:20:17.723Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Interact/T_Interaction_Hovered_Bottom.uasset	2024-08-02T07:20:18.064Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Interact/T_Interaction_Hovered_Bottom.uexp	2024-08-02T07:20:18.074Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Interact/T_Interaction_Hovered_Left.uasset	2024-08-02T07:20:18.058Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Interact/T_Interaction_Hovered_Left.uexp	2024-08-02T07:20:18.068Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Interact/T_Interaction_Hovered_Right.uasset	2024-08-02T07:20:18.053Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Interact/T_Interaction_Hovered_Right.uexp	2024-08-02T07:20:18.063Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Interact/T_Interaction_Hovered_Top.uasset	2024-08-02T07:20:18.047Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Interact/T_Interaction_Hovered_Top.uexp	2024-08-02T07:20:18.057Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Interact/T_Interaction_Idle.uasset	2024-08-02T07:20:18.041Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Interact/T_Interaction_Idle.uexp	2024-08-02T07:20:18.052Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Interact/T_Interaction_Rotate.uasset	2024-08-02T07:20:18.036Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Interact/T_Interaction_Rotate.uexp	2024-08-02T07:20:18.047Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Interact/T_Interaction_Scale.uasset	2024-08-02T07:20:18.032Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Interact/T_Interaction_Scale.uexp	2024-08-02T07:20:18.042Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Interact/T_Interaction_Translate.uasset	2024-08-02T07:20:18.140Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Interact/T_Interaction_Translate.uexp	2024-08-02T07:20:18.150Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/MeasureTool/T_Viewfinder_Hovered_Bottom.uasset	2024-08-02T07:20:18.026Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/MeasureTool/T_Viewfinder_Hovered_Bottom.uexp	2024-08-02T07:20:18.036Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/MeasureTool/T_Viewfinder_Hovered_TopLeft.uasset	2024-08-02T07:20:18.020Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/MeasureTool/T_Viewfinder_Hovered_TopLeft.uexp	2024-08-02T07:20:18.031Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/MeasureTool/T_Viewfinder_Hovered_TopRight.uasset	2024-08-02T07:20:18.015Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/MeasureTool/T_Viewfinder_Hovered_TopRight.uexp	2024-08-02T07:20:18.026Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/MeasureTool/T_Viewfinder_Idle.uasset	2024-08-02T07:20:18.010Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/MeasureTool/T_Viewfinder_Idle.uexp	2024-08-02T07:20:18.020Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Navigation/T_Navigation_Hovered_Bottom.uasset	2024-08-02T07:20:18.101Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Navigation/T_Navigation_Hovered_Bottom.uexp	2024-08-02T07:20:18.112Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Navigation/T_Navigation_Hovered_Top.uasset	2024-08-02T07:20:18.094Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Navigation/T_Navigation_Hovered_Top.uexp	2024-08-02T07:20:18.104Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Navigation/T_Navigation_Idle.uasset	2024-08-02T07:20:18.088Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Navigation/T_Navigation_Idle.uexp	2024-08-02T07:20:18.098Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Sequencer/T_Sequncer_Hovered.uasset	2024-08-02T07:20:17.883Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Sequencer/T_Sequncer_Hovered.uexp	2024-08-02T07:20:17.894Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Sequencer/T_Sequncer_Idle.uasset	2024-08-02T07:20:17.878Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/Sequencer/T_Sequncer_Idle.uexp	2024-08-02T07:20:17.889Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/SettingsButtons/SettingsButton.uasset	2024-08-02T07:20:18.085Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/SettingsButtons/SettingsButton.ubulk	2024-08-02T07:20:18.084Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/SettingsButtons/SettingsButton.uexp	2024-08-02T07:20:18.086Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Gaffer/TX_Production_Light_01a_ALB.uasset	2024-08-02T07:20:18.128Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Gaffer/TX_Production_Light_01a_ALB.ubulk	2024-08-02T07:20:18.126Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Gaffer/TX_Production_Light_01a_ALB.uexp	2024-08-02T07:20:18.131Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Gaffer/TX_Production_Light_01a_NRM.uasset	2024-08-02T07:20:18.124Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Gaffer/TX_Production_Light_01a_NRM.ubulk	2024-08-02T07:20:18.121Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Gaffer/TX_Production_Light_01a_NRM.uexp	2024-08-02T07:20:18.126Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Gaffer/TX_Production_Light_01a_RMA.uasset	2024-08-02T07:20:18.141Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Gaffer/TX_Production_Light_01a_RMA.ubulk	2024-08-02T07:20:18.140Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Gaffer/TX_Production_Light_01a_RMA.uexp	2024-08-02T07:20:18.142Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Gaffer/T_LightMask.uasset	2024-08-02T07:20:18.147Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Gaffer/T_LightMask.ubulk	2024-08-02T07:20:18.145Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Gaffer/T_LightMask.uexp	2024-08-02T07:20:18.148Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Handheld/T_ShoulderRig_02_BaseColor.uasset	2024-08-02T07:20:17.982Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Handheld/T_ShoulderRig_02_BaseColor.ubulk	2024-08-02T07:20:17.980Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Handheld/T_ShoulderRig_02_BaseColor.uexp	2024-08-02T07:20:17.983Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Handheld/T_ShoulderRig_02_Normal.uasset	2024-08-02T07:20:18.022Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Handheld/T_ShoulderRig_02_Normal.ubulk	2024-08-02T07:20:18.020Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Handheld/T_ShoulderRig_02_Normal.uexp	2024-08-02T07:20:18.023Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Handheld/T_ShoulderRig_02_RMAO.uasset	2024-08-02T07:20:17.962Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Handheld/T_ShoulderRig_02_RMAO.ubulk	2024-08-02T07:20:17.961Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Handheld/T_ShoulderRig_02_RMAO.uexp	2024-08-02T07:20:17.964Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Handheld/T_ShoulderRig_BaseColor.uasset	2024-08-02T07:20:18.153Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Handheld/T_ShoulderRig_BaseColor.ubulk	2024-08-02T07:20:18.152Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Handheld/T_ShoulderRig_BaseColor.uexp	2024-08-02T07:20:18.154Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Handheld/T_ShoulderRig_Normal.uasset	2024-08-02T07:20:18.159Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Handheld/T_ShoulderRig_Normal.ubulk	2024-08-02T07:20:18.157Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Handheld/T_ShoulderRig_Normal.uexp	2024-08-02T07:20:18.160Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Handheld/T_ShoulderRig_RMAO.uasset	2024-08-02T07:20:17.962Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Handheld/T_ShoulderRig_RMAO.ubulk	2024-08-02T07:20:17.960Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Handheld/T_ShoulderRig_RMAO.uexp	2024-08-02T07:20:17.964Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Tripod/T_Tripod_BaseColor.uasset	2024-08-02T07:20:17.880Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Tripod/T_Tripod_BaseColor.ubulk	2024-08-02T07:20:17.878Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Tripod/T_Tripod_BaseColor.uexp	2024-08-02T07:20:17.881Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Tripod/T_Tripod_Normal.uasset	2024-08-02T07:20:17.885Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Tripod/T_Tripod_Normal.ubulk	2024-08-02T07:20:17.884Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Tripod/T_Tripod_Normal.uexp	2024-08-02T07:20:17.886Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Tripod/T_Tripod_RMAO.uasset	2024-08-02T07:20:17.875Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Tripod/T_Tripod_RMAO.ubulk	2024-08-02T07:20:17.874Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Tools/Tripod/T_Tripod_RMAO.uexp	2024-08-02T07:20:17.876Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_AttachSelfToObject.uasset	2024-08-02T07:20:30.715Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_AttachSelfToObject.ubulk	2024-08-02T07:20:30.713Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_AttachSelfToObject.uexp	2024-08-02T07:20:30.717Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_AttachToSelf.uasset	2024-08-02T07:20:30.560Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_AttachToSelf.ubulk	2024-08-02T07:20:30.558Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_AttachToSelf.uexp	2024-08-02T07:20:30.568Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_Brightness.uasset	2024-08-02T07:20:30.695Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_Brightness.ubulk	2024-08-02T07:20:30.692Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_Brightness.uexp	2024-08-02T07:20:30.697Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_Delete.uasset	2024-08-02T07:20:30.560Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_Delete.ubulk	2024-08-02T07:20:30.558Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_Delete.uexp	2024-08-02T07:20:30.563Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_Duplicate.uasset	2024-08-02T07:20:30.716Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_Duplicate.ubulk	2024-08-02T07:20:30.715Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_Duplicate.uexp	2024-08-02T07:20:30.718Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_FocalLength.uasset	2024-08-02T07:20:30.698Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_FocalLength.ubulk	2024-08-02T07:20:30.696Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_FocalLength.uexp	2024-08-02T07:20:30.700Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_GafferSpread.uasset	2024-08-02T07:20:30.710Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_GafferSpread.ubulk	2024-08-02T07:20:30.709Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_GafferSpread.uexp	2024-08-02T07:20:30.713Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_ISO.uasset	2024-08-02T07:20:30.752Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_ISO.ubulk	2024-08-02T07:20:30.751Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_ISO.uexp	2024-08-02T07:20:30.755Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_JumpTo.uasset	2024-08-02T07:20:30.704Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_JumpTo.ubulk	2024-08-02T07:20:30.702Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_JumpTo.uexp	2024-08-02T07:20:30.706Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_Move.uasset	2024-08-02T07:20:30.706Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_Move.ubulk	2024-08-02T07:20:30.705Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_Move.uexp	2024-08-02T07:20:30.708Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_ObjectHistory.uasset	2024-08-02T07:20:30.709Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_ObjectHistory.ubulk	2024-08-02T07:20:30.707Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_ObjectHistory.uexp	2024-08-02T07:20:30.711Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_ShutterAngle.uasset	2024-08-02T07:20:30.702Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_ShutterAngle.ubulk	2024-08-02T07:20:30.700Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_ShutterAngle.uexp	2024-08-02T07:20:30.703Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_Snapshot.uasset	2024-08-02T07:20:30.699Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_Snapshot.ubulk	2024-08-02T07:20:30.698Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_Snapshot.uexp	2024-08-02T07:20:30.700Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_Temperature.uasset	2024-08-02T07:20:30.713Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_Temperature.ubulk	2024-08-02T07:20:30.710Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Context/T_Temperature.uexp	2024-08-02T07:20:30.715Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Gaffer/T_ColorTemperature.uasset	2024-08-02T07:20:18.104Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Gaffer/T_ColorTemperature.uexp	2024-08-02T07:20:18.110Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Gaffer/T_ColorTemperature_Context.uasset	2024-08-02T07:20:30.758Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Gaffer/T_ColorTemperature_Context.uexp	2024-08-02T07:20:30.767Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Gaffer/T_GafferAnimation_Atlas_2.uasset	2024-08-02T07:20:30.948Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Gaffer/T_GafferAnimation_Atlas_2.uexp	2024-08-02T07:20:30.967Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/BackButton.uasset	2024-08-02T07:20:30.694Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/BackButton.ubulk	2024-08-02T07:20:30.691Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/BackButton.uexp	2024-08-02T07:20:30.697Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/HANDHELDICON.uasset	2024-08-02T07:20:18.446Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/HANDHELDICON.ubulk	2024-08-02T07:20:18.443Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/HANDHELDICON.uexp	2024-08-02T07:20:18.449Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/HANDHELDICON_OVER.uasset	2024-08-02T07:20:18.541Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/HANDHELDICON_OVER.ubulk	2024-08-02T07:20:18.540Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/HANDHELDICON_OVER.uexp	2024-08-02T07:20:18.543Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_AddCameraMark.uasset	2024-08-02T07:20:30.589Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_AddCameraMark.ubulk	2024-08-02T07:20:30.587Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_AddCameraMark.uexp	2024-08-02T07:20:30.592Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_back.uasset	2024-08-02T07:20:18.498Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_back.ubulk	2024-08-02T07:20:18.491Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_back.uexp	2024-08-02T07:20:18.504Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_back_Hovered.uasset	2024-08-02T07:20:18.496Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_back_Hovered.ubulk	2024-08-02T07:20:18.490Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_back_Hovered.uexp	2024-08-02T07:20:18.502Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_back_Pressed.uasset	2024-08-02T07:20:18.454Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_back_Pressed.ubulk	2024-08-02T07:20:18.452Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_back_Pressed.uexp	2024-08-02T07:20:18.455Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Cameras.uasset	2024-08-02T07:20:17.786Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Cameras.uexp	2024-08-02T07:20:17.788Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Cameras_Mask.uasset	2024-08-02T07:20:17.784Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Cameras_Mask.uexp	2024-08-02T07:20:17.788Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_COLORPICKER.uasset	2024-08-02T07:20:18.124Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_COLORPICKER.ubulk	2024-08-02T07:20:18.122Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_COLORPICKER.uexp	2024-08-02T07:20:18.127Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_COLORPICKER_OVER.uasset	2024-08-02T07:20:18.121Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_COLORPICKER_OVER.ubulk	2024-08-02T07:20:18.120Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_COLORPICKER_OVER.uexp	2024-08-02T07:20:18.124Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_ComingSoon.uasset	2024-08-02T07:20:18.539Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_ComingSoon.uexp	2024-08-02T07:20:18.541Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Controller.uasset	2024-08-02T07:20:18.495Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Controller.ubulk	2024-08-02T07:20:18.490Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Controller.uexp	2024-08-02T07:20:18.502Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Controller_RiftS.uasset	2024-08-02T07:20:18.490Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Controller_RiftS.uexp	2024-08-02T07:20:18.497Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_CrossLine.uasset	2024-08-02T07:20:18.498Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_CrossLine.ubulk	2024-08-02T07:20:18.491Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_CrossLine.uexp	2024-08-02T07:20:18.503Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_DOLLYICON.uasset	2024-08-02T07:20:18.532Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_DOLLYICON.uexp	2024-08-02T07:20:18.540Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_DOLLYICON_OVER.uasset	2024-08-02T07:20:18.530Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_DOLLYICON_OVER.uexp	2024-08-02T07:20:18.538Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Flags.uasset	2024-08-02T07:20:17.791Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Flags.uexp	2024-08-02T07:20:17.793Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_FLAGSICON.uasset	2024-08-02T07:20:18.530Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_FLAGSICON.uexp	2024-08-02T07:20:18.532Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_FLAGSICON_OVER.uasset	2024-08-02T07:20:18.530Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_FLAGSICON_OVER.uexp	2024-08-02T07:20:18.532Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Flags_Mask.uasset	2024-08-02T07:20:17.789Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Flags_Mask.uexp	2024-08-02T07:20:17.793Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_GAFFERICON.uasset	2024-08-02T07:20:18.529Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_GAFFERICON.uexp	2024-08-02T07:20:18.532Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_GAFFERICON_OVER.uasset	2024-08-02T07:20:18.523Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_GAFFERICON_OVER.uexp	2024-08-02T07:20:18.525Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Gradient_Bottom.uasset	2024-08-02T07:20:18.490Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Gradient_Bottom.uexp	2024-08-02T07:20:18.497Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Gradient_Top.uasset	2024-08-02T07:20:18.492Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Gradient_Top.ubulk	2024-08-02T07:20:18.488Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Gradient_Top.uexp	2024-08-02T07:20:18.499Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_INTERACT.uasset	2024-08-02T07:20:18.521Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_INTERACT.uexp	2024-08-02T07:20:18.524Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_INTERACT_OVER.uasset	2024-08-02T07:20:18.516Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_INTERACT_OVER.uexp	2024-08-02T07:20:18.521Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_MARKER.uasset	2024-08-02T07:20:17.782Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_MARKER.uexp	2024-08-02T07:20:17.784Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_MARKERICON.uasset	2024-08-02T07:20:18.516Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_MARKERICON.uexp	2024-08-02T07:20:18.521Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_MARKERICON_OVER.uasset	2024-08-02T07:20:18.516Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_MARKERICON_OVER.uexp	2024-08-02T07:20:18.521Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_MARKER_Mask.uasset	2024-08-02T07:20:17.782Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_MARKER_Mask.uexp	2024-08-02T07:20:17.785Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_MARKER_Mask_Shape.uasset	2024-08-02T07:20:17.787Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_MARKER_Mask_Shape.uexp	2024-08-02T07:20:17.789Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_MEASURE.uasset	2024-08-02T07:20:18.517Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_MEASURE.uexp	2024-08-02T07:20:18.521Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_MEASURE_OVER.uasset	2024-08-02T07:20:18.446Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_MEASURE_OVER.uexp	2024-08-02T07:20:18.449Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_NAVIGATION.uasset	2024-08-02T07:20:18.516Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_NAVIGATION.uexp	2024-08-02T07:20:18.521Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_NAVIGATION_OVER.uasset	2024-08-02T07:20:18.514Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_NAVIGATION_OVER.uexp	2024-08-02T07:20:18.519Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Object.uasset	2024-08-02T07:20:18.500Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Object.ubulk	2024-08-02T07:20:18.492Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Object.uexp	2024-08-02T07:20:18.513Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_REDO_ICON.uasset	2024-08-02T07:20:18.511Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_REDO_ICON.uexp	2024-08-02T07:20:18.517Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_RoundGlowOver.uasset	2024-08-02T07:20:18.130Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_RoundGlowOver.uexp	2024-08-02T07:20:18.132Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Settings.uasset	2024-08-02T07:20:18.514Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Settings.ubulk	2024-08-02T07:20:18.504Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_Settings.uexp	2024-08-02T07:20:18.518Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_TRIPOD.uasset	2024-08-02T07:20:18.504Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_TRIPOD.uexp	2024-08-02T07:20:18.516Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_TRIPODICON_OVER.uasset	2024-08-02T07:20:18.503Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_TRIPODICON_OVER.uexp	2024-08-02T07:20:18.516Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_UNDO_ICON.uasset	2024-08-02T07:20:18.503Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_UNDO_ICON.uexp	2024-08-02T07:20:18.516Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_USER.uasset	2024-08-02T07:20:18.449Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_USER.uexp	2024-08-02T07:20:18.452Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_USER_Mask.uasset	2024-08-02T07:20:18.491Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_USER_Mask.uexp	2024-08-02T07:20:18.500Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_USER_Mask_Shape.uasset	2024-08-02T07:20:18.491Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_USER_Mask_Shape.uexp	2024-08-02T07:20:18.498Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_VIEWFINDER.uasset	2024-08-02T07:20:18.503Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_VIEWFINDER.uexp	2024-08-02T07:20:18.516Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_VIEWFINDER_OVER.uasset	2024-08-02T07:20:18.500Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Icons/T_VIEWFINDER_OVER.uexp	2024-08-02T07:20:18.511Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/MeasureTool/MeasurePanel.uasset	2024-08-02T07:20:17.993Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/MeasureTool/MeasurePanel.ubulk	2024-08-02T07:20:17.990Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/MeasureTool/MeasurePanel.uexp	2024-08-02T07:20:17.995Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Settings/T_Exit.uasset	2024-08-02T07:20:18.469Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Settings/T_Exit.uexp	2024-08-02T07:20:18.471Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Slate/T_Slate.uasset	2024-08-02T07:20:18.492Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Slate/T_Slate.uexp	2024-08-02T07:20:18.501Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Slate/T_SlateDash.uasset	2024-08-02T07:20:18.487Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Slate/T_SlateDash.uexp	2024-08-02T07:20:18.489Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Bulb.uasset	2024-08-02T07:20:30.937Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Bulb.ubulk	2024-08-02T07:20:30.936Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Bulb.uexp	2024-08-02T07:20:30.939Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Candle.uasset	2024-08-02T07:20:30.932Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Candle.ubulk	2024-08-02T07:20:30.931Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Candle.uexp	2024-08-02T07:20:30.934Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Cloud.uasset	2024-08-02T07:20:30.769Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Cloud.ubulk	2024-08-02T07:20:30.767Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Cloud.uexp	2024-08-02T07:20:30.771Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Flourescent.uasset	2024-08-02T07:20:30.759Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Flourescent.ubulk	2024-08-02T07:20:30.758Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Flourescent.uexp	2024-08-02T07:20:30.762Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Home.uasset	2024-08-02T07:20:30.761Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Home.ubulk	2024-08-02T07:20:30.759Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Home.uexp	2024-08-02T07:20:30.765Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Lightning.uasset	2024-08-02T07:20:30.936Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Lightning.ubulk	2024-08-02T07:20:30.934Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Lightning.uexp	2024-08-02T07:20:30.937Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Sun.uasset	2024-08-02T07:20:30.935Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Sun.ubulk	2024-08-02T07:20:30.932Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Temperature/Sun.uexp	2024-08-02T07:20:30.936Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Timeline/T_InOut.uasset	2024-08-02T07:20:18.484Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/UI/Timeline/T_InOut.uexp	2024-08-02T07:20:18.485Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/BP/EW/WidgetBP/ContextMenus/E_ContextButtons.uasset	2024-08-02T07:20:20.069Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/BP/EW/WidgetBP/ContextMenus/E_ContextButtons.uexp	2024-08-02T07:20:20.071Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/BP/EW/WidgetBP/ContextMenus/E_ContextLayouts.uasset	2024-08-02T07:20:20.069Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/BP/EW/WidgetBP/ContextMenus/E_ContextLayouts.uexp	2024-08-02T07:20:20.070Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/BP/EW/WidgetBP/ContextMenus/IVPUIContextMenu_General.uasset	2024-08-02T07:20:39.910Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/BP/EW/WidgetBP/ContextMenus/IVPUIContextMenu_General.uexp	2024-08-02T07:20:39.912Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/ContextMenu/Gaffer/MI_GafferFlipbook.uasset	2024-08-02T07:20:37.111Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/ContextMenu/Gaffer/MI_GafferFlipbook.uexp	2024-08-02T07:20:37.113Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/ContextMenu/Gaffer/M_GafferFlipbook.uasset	2024-08-02T07:20:36.086Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/ContextMenu/Gaffer/M_GafferFlipbook.uexp	2024-08-02T07:20:36.088Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/ContextMenu/MeasureTool/M_MeasurePanel.uasset	2024-08-02T07:20:30.999Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/ContextMenu/MeasureTool/M_MeasurePanel.uexp	2024-08-02T07:20:31.000Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/M/M_ProgressBar.uasset	2024-08-02T07:20:31.105Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/M/M_ProgressBar.uexp	2024-08-02T07:20:31.107Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/M/M_RoundBorders.uasset	2024-08-02T07:20:32.626Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/M/M_RoundBorders.uexp	2024-08-02T07:20:32.628Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MF/MF_linearGradientSmooting.uasset	2024-08-02T07:20:18.341Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MF/MF_linearGradientSmooting.uexp	2024-08-02T07:20:18.343Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MF/MF_PixelSizeToRadius.uasset	2024-08-02T07:20:31.265Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MF/MF_PixelSizeToRadius.uexp	2024-08-02T07:20:31.266Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MF/MF_PixelSizeToRadiusNoRatio.uasset	2024-08-02T07:20:31.263Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MF/MF_PixelSizeToRadiusNoRatio.uexp	2024-08-02T07:20:31.265Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MF/MF_RoundBorderAlpha.uasset	2024-08-02T07:20:31.260Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MF/MF_RoundBorderAlpha.uexp	2024-08-02T07:20:31.262Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MF/MF_UniformRadius.uasset	2024-08-02T07:20:31.255Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MF/MF_UniformRadius.uexp	2024-08-02T07:20:31.256Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Icons/Camera/MI_Camera.uasset	2024-08-02T07:20:32.043Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Icons/Camera/MI_Camera.uexp	2024-08-02T07:20:32.046Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Icons/Camera/M_Camera.uasset	2024-08-02T07:20:30.961Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Icons/Camera/M_Camera.uexp	2024-08-02T07:20:30.962Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Icons/Flag/MI_Flag.uasset	2024-08-02T07:20:32.046Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Icons/Flag/MI_Flag.uexp	2024-08-02T07:20:32.048Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Icons/Flag/M_Flag.uasset	2024-08-02T07:20:30.964Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Icons/Flag/M_Flag.uexp	2024-08-02T07:20:30.965Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Icons/Marker/MI_Marker.uasset	2024-08-02T07:20:32.038Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Icons/Marker/MI_Marker.uexp	2024-08-02T07:20:32.042Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Icons/Marker/M_Marker.uasset	2024-08-02T07:20:30.957Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Icons/Marker/M_Marker.uexp	2024-08-02T07:20:30.959Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Icons/User/MI_User.uasset	2024-08-02T07:20:32.156Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Icons/User/MI_User.uexp	2024-08-02T07:20:32.157Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Icons/User/M_User.uasset	2024-08-02T07:20:31.090Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Icons/User/M_User.uexp	2024-08-02T07:20:31.094Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/SubMenu/IncreaseDecrease/T_SubMenu_IncreaseDecrease_Idle.uasset	2024-08-02T07:20:18.080Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/SubMenu/IncreaseDecrease/T_SubMenu_IncreaseDecrease_Idle.uexp	2024-08-02T07:20:18.091Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/SubMenu/IncreaseDecrease/T_SubMenu_IncreaseDecrease_Left.uasset	2024-08-02T07:20:18.074Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/SubMenu/IncreaseDecrease/T_SubMenu_IncreaseDecrease_Left.uexp	2024-08-02T07:20:18.085Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/SubMenu/IncreaseDecrease/T_SubMenu_IncreaseDecrease_Right.uasset	2024-08-02T07:20:18.070Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Textures/Controller/SubMenu/IncreaseDecrease/T_SubMenu_IncreaseDecrease_Right.uexp	2024-08-02T07:20:18.080Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/ColorPicker/MI_UI_ColorSlider.uasset	2024-08-02T07:20:33.918Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/ColorPicker/MI_UI_ColorSlider.uexp	2024-08-02T07:20:33.920Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/ColorPicker/MI_UI_ColorSliderKnob.uasset	2024-08-02T07:20:33.915Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/ColorPicker/MI_UI_ColorSliderKnob.uexp	2024-08-02T07:20:33.917Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/ColorPicker/MI_UI_ColorSliderKnob_Hovered.uasset	2024-08-02T07:20:33.884Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/ColorPicker/MI_UI_ColorSliderKnob_Hovered.uexp	2024-08-02T07:20:33.885Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Context/MI_UI_MenuStatic_Context.uasset	2024-08-02T07:20:33.905Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Context/MI_UI_MenuStatic_Context.uexp	2024-08-02T07:20:33.906Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/MeasurementSystem/MI_UI_Action_Active_Left.uasset	2024-08-02T07:20:33.897Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/MeasurementSystem/MI_UI_Action_Active_Left.uexp	2024-08-02T07:20:33.899Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/MenuButton/MI_UI_MenuButton_Hovered.uasset	2024-08-02T07:20:34.150Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/MenuButton/MI_UI_MenuButton_Hovered.uexp	2024-08-02T07:20:34.152Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/MenuButton/MI_UI_MenuButton_Normal.uasset	2024-08-02T07:20:34.147Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/MenuButton/MI_UI_MenuButton_Normal.uexp	2024-08-02T07:20:34.149Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/MenuButton/MI_UI_MenuButton_Pressed.uasset	2024-08-02T07:20:34.145Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/MenuButton/MI_UI_MenuButton_Pressed.uexp	2024-08-02T07:20:34.146Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/MenuButton/MI_UI_UndoRedo_Hovered.uasset	2024-08-02T07:20:34.143Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/MenuButton/MI_UI_UndoRedo_Hovered.uexp	2024-08-02T07:20:34.144Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/MenuButton/MI_UI_UndoRedo_Normal.uasset	2024-08-02T07:20:33.879Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/MenuButton/MI_UI_UndoRedo_Normal.uexp	2024-08-02T07:20:33.881Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/MenuButton/MI_UI_UndoRedo_Pressed.uasset	2024-08-02T07:20:34.139Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/MenuButton/MI_UI_UndoRedo_Pressed.uexp	2024-08-02T07:20:34.141Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/ScrollBar/MI_UI_ScrollBar_Dragged.uasset	2024-08-02T07:20:33.891Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/ScrollBar/MI_UI_ScrollBar_Dragged.uexp	2024-08-02T07:20:33.892Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/ScrollBar/MI_UI_ScrollBar_Hovered.uasset	2024-08-02T07:20:33.903Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/ScrollBar/MI_UI_ScrollBar_Hovered.uexp	2024-08-02T07:20:33.904Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/ScrollBar/MI_UI_ScrollBar_Normal.uasset	2024-08-02T07:20:33.901Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/ScrollBar/MI_UI_ScrollBar_Normal.uexp	2024-08-02T07:20:33.902Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SecondaryButton/MI_UI_MenuSecondary.uasset	2024-08-02T07:20:33.947Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SecondaryButton/MI_UI_MenuSecondary.uexp	2024-08-02T07:20:33.949Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SecondaryButton/MI_UI_MenuSecondary_Hovered.uasset	2024-08-02T07:20:33.945Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SecondaryButton/MI_UI_MenuSecondary_Hovered.uexp	2024-08-02T07:20:33.946Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SecondaryButton/MI_UI_MenuSecondary_Pressed.uasset	2024-08-02T07:20:33.943Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SecondaryButton/MI_UI_MenuSecondary_Pressed.uexp	2024-08-02T07:20:33.944Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SettingsBG/MI_UI_Settings_BG.uasset	2024-08-02T07:20:33.929Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SettingsBG/MI_UI_Settings_BG.uexp	2024-08-02T07:20:33.931Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SettingsBG/MI_UI_Settings_BG_TopBottom.uasset	2024-08-02T07:20:33.927Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SettingsBG/MI_UI_Settings_BG_TopBottom.uexp	2024-08-02T07:20:33.929Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SettingsBG/MI_UI_Settings_Panel.uasset	2024-08-02T07:20:33.924Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SettingsBG/MI_UI_Settings_Panel.uexp	2024-08-02T07:20:33.926Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SettingsBG/MI_UI_Settings_Panel_Overlay.uasset	2024-08-02T07:20:33.882Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SettingsBG/MI_UI_Settings_Panel_Overlay.uexp	2024-08-02T07:20:33.883Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SettingsButton/MI_UI_Settings_Hovered.uasset	2024-08-02T07:20:33.940Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SettingsButton/MI_UI_Settings_Hovered.uexp	2024-08-02T07:20:33.942Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SettingsButton/MI_UI_Settings_Normal.uasset	2024-08-02T07:20:33.936Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SettingsButton/MI_UI_Settings_Normal.uexp	2024-08-02T07:20:33.938Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SettingsButton/MI_UI_Settings_Pressed.uasset	2024-08-02T07:20:33.934Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/SettingsButton/MI_UI_Settings_Pressed.uexp	2024-08-02T07:20:33.936Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Switches/MI_UI_Knob.uasset	2024-08-02T07:20:33.909Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Switches/MI_UI_Knob.uexp	2024-08-02T07:20:33.910Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Switches/MI_UI_SwitchButton_Hovered.uasset	2024-08-02T07:20:33.911Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Switches/MI_UI_SwitchButton_Hovered.uexp	2024-08-02T07:20:33.912Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Switches/MI_UI_SwitchButton_Normal.uasset	2024-08-02T07:20:33.913Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Switches/MI_UI_SwitchButton_Normal.uexp	2024-08-02T07:20:33.914Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Switches/MI_UI_Switch_B.uasset	2024-08-02T07:20:33.907Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Switches/MI_UI_Switch_B.uexp	2024-08-02T07:20:33.908Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Switches/MI_UI_Switch_BG_Squared.uasset	2024-08-02T07:20:34.152Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Switches/MI_UI_Switch_BG_Squared.uexp	2024-08-02T07:20:34.154Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/TabButton/MI_UI_TabButton_Hovered.uasset	2024-08-02T07:20:33.888Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/TabButton/MI_UI_TabButton_Hovered.uexp	2024-08-02T07:20:33.890Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/TabButton/MI_UI_TabButton_Normal.uasset	2024-08-02T07:20:33.885Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/TabButton/MI_UI_TabButton_Normal.uexp	2024-08-02T07:20:33.887Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/TabButton/MI_UI_TabButton_Pressed.uasset	2024-08-02T07:20:33.625Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/TabButton/MI_UI_TabButton_Pressed.uexp	2024-08-02T07:20:33.627Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Temperature/MI_GradientFade.uasset	2024-08-02T07:20:32.226Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Temperature/MI_GradientFade.uexp	2024-08-02T07:20:32.228Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Temperature/MI_UI_ExposureHighlight.uasset	2024-08-02T07:20:34.156Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Temperature/MI_UI_ExposureHighlight.uexp	2024-08-02T07:20:34.157Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Temperature/MI_UI_TemperatureHighlight.uasset	2024-08-02T07:20:34.159Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Temperature/MI_UI_TemperatureHighlight.uexp	2024-08-02T07:20:34.161Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Temperature/M_GradientFade.uasset	2024-08-02T07:20:31.112Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Temperature/M_GradientFade.uexp	2024-08-02T07:20:31.114Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Timeline/MI_ProgressBar_Timeline.uasset	2024-08-02T07:20:32.215Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Timeline/MI_ProgressBar_Timeline.uexp	2024-08-02T07:20:32.218Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Timeline/MI_UI_TimelineThumb_Hovered.uasset	2024-08-02T07:20:33.895Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Timeline/MI_UI_TimelineThumb_Hovered.uexp	2024-08-02T07:20:33.896Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Timeline/MI_UI_TimelineThumb_Normal.uasset	2024-08-02T07:20:33.892Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Timeline/MI_UI_TimelineThumb_Normal.uexp	2024-08-02T07:20:33.894Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Users/MI_UI_MenuStatic_Users.uasset	2024-08-02T07:20:33.899Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Users/MI_UI_MenuStatic_Users.uexp	2024-08-02T07:20:33.901Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/ActionButton/Affirmative/MI_UI_Action_Affirmative.uasset	2024-08-02T07:20:33.923Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/ActionButton/Affirmative/MI_UI_Action_Affirmative.uexp	2024-08-02T07:20:33.924Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/ActionButton/Negative/MI_UI_Action_Negative.uasset	2024-08-02T07:20:33.921Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/ActionButton/Negative/MI_UI_Action_Negative.uexp	2024-08-02T07:20:33.923Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Timeline/MainMenu/MI_Timeline.uasset	2024-08-02T07:20:32.218Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Timeline/MainMenu/MI_Timeline.uexp	2024-08-02T07:20:32.220Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Timeline/MainMenu/MI_UI_TimelineThumb.uasset	2024-08-02T07:20:33.932Z
+Engine/Plugins/Experimental/VirtualProductionUtilities/Content/2D/Materials/UI/Dynamic/MI/Timeline/MainMenu/MI_UI_TimelineThumb.uexp	2024-08-02T07:20:33.933Z
+MetaCastBachelor/Plugins/MetaCastBachelor.upluginmanifest	2024-08-02T07:20:45.654Z
+MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak	2024-08-02T07:20:48.379Z
diff --git a/Builds/Windows/MetaCastBachelor/Binaries/Win64/MetaCastBachelor.pdb b/Builds/Windows/MetaCastBachelor/Binaries/Win64/MetaCastBachelor.pdb
new file mode 100644
index 0000000000000000000000000000000000000000..4a70e0f88a9faec6840f4df121f53c3867303745
Binary files /dev/null and b/Builds/Windows/MetaCastBachelor/Binaries/Win64/MetaCastBachelor.pdb differ
diff --git a/Builds/Windows/MetaCastBachelor/Binaries/Win64/tbb.pdb b/Builds/Windows/MetaCastBachelor/Binaries/Win64/tbb.pdb
new file mode 100644
index 0000000000000000000000000000000000000000..4dc86e4f9f8ca1bb4fcb71ecddc6118d356718b2
Binary files /dev/null and b/Builds/Windows/MetaCastBachelor/Binaries/Win64/tbb.pdb differ
diff --git a/Builds/Windows/MetaCastBachelor/Binaries/Win64/tbbmalloc.pdb b/Builds/Windows/MetaCastBachelor/Binaries/Win64/tbbmalloc.pdb
new file mode 100644
index 0000000000000000000000000000000000000000..c9babe9a491b31224400e5fe7ac2354531b8f3a0
Binary files /dev/null and b/Builds/Windows/MetaCastBachelor/Binaries/Win64/tbbmalloc.pdb differ
diff --git a/Builds/Windows/MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak b/Builds/Windows/MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak
new file mode 100644
index 0000000000000000000000000000000000000000..14f04bd874d14bea06c7feb9a8fc95b6417bd2a9
Binary files /dev/null and b/Builds/Windows/MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak differ
diff --git a/Builds/Windows/MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.ucas b/Builds/Windows/MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.ucas
new file mode 100644
index 0000000000000000000000000000000000000000..6b87e804a9649ec305b68dbdf77b63dcac9a82f7
Binary files /dev/null and b/Builds/Windows/MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.ucas differ
diff --git a/Builds/Windows/MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc b/Builds/Windows/MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc
new file mode 100644
index 0000000000000000000000000000000000000000..a34bd75a873b3daaa614b6312cd434473524a983
Binary files /dev/null and b/Builds/Windows/MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc differ
diff --git a/Builds/Windows/MetaCastBachelor/Content/Paks/global.ucas b/Builds/Windows/MetaCastBachelor/Content/Paks/global.ucas
new file mode 100644
index 0000000000000000000000000000000000000000..96ad14cbc962f9fdc263216f5e2f721f45549ab7
Binary files /dev/null and b/Builds/Windows/MetaCastBachelor/Content/Paks/global.ucas differ
diff --git a/Builds/Windows/MetaCastBachelor/Content/Paks/global.utoc b/Builds/Windows/MetaCastBachelor/Content/Paks/global.utoc
new file mode 100644
index 0000000000000000000000000000000000000000..2dc48fbaac2d3cff2e8a9f8cf94cdaae71df53ae
Binary files /dev/null and b/Builds/Windows/MetaCastBachelor/Content/Paks/global.utoc differ
diff --git a/Builds/Windows/MetaCastBachelor/ParticipantLogs/Participant_44/Play_08-02-24_09-22-34/44_1722583358.log b/Builds/Windows/MetaCastBachelor/ParticipantLogs/Participant_44/Play_08-02-24_09-22-34/44_1722583358.log
new file mode 100644
index 0000000000000000000000000000000000000000..5577f1052ffe903a6837b685261fdde82bd00f36
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/ParticipantLogs/Participant_44/Play_08-02-24_09-22-34/44_1722583358.log
@@ -0,0 +1 @@
+Initializing session for participant ID: 44 at Timestamp: 1722583358
\ No newline at end of file
diff --git a/Builds/Windows/MetaCastBachelor/ParticipantLogs/Participant_44/Play_08-02-24_09-23-26/44_1722583413.log b/Builds/Windows/MetaCastBachelor/ParticipantLogs/Participant_44/Play_08-02-24_09-23-26/44_1722583413.log
new file mode 100644
index 0000000000000000000000000000000000000000..74aa598b46b719cf0d62e4be130bf2b5ca89f2fa
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/ParticipantLogs/Participant_44/Play_08-02-24_09-23-26/44_1722583413.log
@@ -0,0 +1 @@
+Initializing session for participant ID: 44 at Timestamp: 1722583413
\ No newline at end of file
diff --git a/Builds/Windows/MetaCastBachelor/ParticipantLogs/Participant_44/Play_08-02-24_09-27-23/44_1722583646.log b/Builds/Windows/MetaCastBachelor/ParticipantLogs/Participant_44/Play_08-02-24_09-27-23/44_1722583646.log
new file mode 100644
index 0000000000000000000000000000000000000000..a01b6021e533530652f73e1935475872ec1163ba
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/ParticipantLogs/Participant_44/Play_08-02-24_09-27-23/44_1722583646.log
@@ -0,0 +1 @@
+Initializing session for participant ID: 44 at Timestamp: 1722583646
\ No newline at end of file
diff --git a/Builds/Windows/MetaCastBachelor/ParticipantLogs/Participant_55/Play_08-02-24_09-32-23/55_1722583947.log b/Builds/Windows/MetaCastBachelor/ParticipantLogs/Participant_55/Play_08-02-24_09-32-23/55_1722583947.log
new file mode 100644
index 0000000000000000000000000000000000000000..1aad81af05a2ad6358a0c8058f455dd73038d75b
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/ParticipantLogs/Participant_55/Play_08-02-24_09-32-23/55_1722583947.log
@@ -0,0 +1 @@
+Initializing session for participant ID: 55 at Timestamp: 1722583947
\ No newline at end of file
diff --git a/Builds/Windows/MetaCastBachelor/ParticipantLogs/Participant_55/Play_08-02-24_09-47-05/55_1722584831.log b/Builds/Windows/MetaCastBachelor/ParticipantLogs/Participant_55/Play_08-02-24_09-47-05/55_1722584831.log
new file mode 100644
index 0000000000000000000000000000000000000000..14ad698e2cd5fa7fa0df74e2c8c1060e8b6bdc81
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/ParticipantLogs/Participant_55/Play_08-02-24_09-47-05/55_1722584831.log
@@ -0,0 +1 @@
+Initializing session for participant ID: 55 at Timestamp: 1722584831
\ No newline at end of file
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/CrashReportClient/UECC-Windows-0190EBB64C492C444367EFA005419F88/CrashReportClient.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/CrashReportClient/UECC-Windows-0190EBB64C492C444367EFA005419F88/CrashReportClient.ini
new file mode 100644
index 0000000000000000000000000000000000000000..e6a72c5d289419c4dc5becb5da5d931aa6f16d85
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/CrashReportClient/UECC-Windows-0190EBB64C492C444367EFA005419F88/CrashReportClient.ini
@@ -0,0 +1,7 @@
+[CrashReportClient]
+bHideLogFilesOption=false
+bIsAllowedToCloseWithoutSending=true
+CrashConfigPurgeDays=2
+Stall.RecordDump=false
+Ensure.RecordDump=true
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/CrashReportClient/UECC-Windows-241389CB4E4CE7020354FCB3086345BF/CrashReportClient.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/CrashReportClient/UECC-Windows-241389CB4E4CE7020354FCB3086345BF/CrashReportClient.ini
new file mode 100644
index 0000000000000000000000000000000000000000..e6a72c5d289419c4dc5becb5da5d931aa6f16d85
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/CrashReportClient/UECC-Windows-241389CB4E4CE7020354FCB3086345BF/CrashReportClient.ini
@@ -0,0 +1,7 @@
+[CrashReportClient]
+bHideLogFilesOption=false
+bIsAllowedToCloseWithoutSending=true
+CrashConfigPurgeDays=2
+Stall.RecordDump=false
+Ensure.RecordDump=true
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/CrashReportClient/UECC-Windows-3993C43D42833AFC784EC790C04EACFC/CrashReportClient.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/CrashReportClient/UECC-Windows-3993C43D42833AFC784EC790C04EACFC/CrashReportClient.ini
new file mode 100644
index 0000000000000000000000000000000000000000..e6a72c5d289419c4dc5becb5da5d931aa6f16d85
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/CrashReportClient/UECC-Windows-3993C43D42833AFC784EC790C04EACFC/CrashReportClient.ini
@@ -0,0 +1,7 @@
+[CrashReportClient]
+bHideLogFilesOption=false
+bIsAllowedToCloseWithoutSending=true
+CrashConfigPurgeDays=2
+Stall.RecordDump=false
+Ensure.RecordDump=true
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/CrashReportClient/UECC-Windows-A5ABCD5241124293EDA7ADBA3A9B1C47/CrashReportClient.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/CrashReportClient/UECC-Windows-A5ABCD5241124293EDA7ADBA3A9B1C47/CrashReportClient.ini
new file mode 100644
index 0000000000000000000000000000000000000000..e6a72c5d289419c4dc5becb5da5d931aa6f16d85
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/CrashReportClient/UECC-Windows-A5ABCD5241124293EDA7ADBA3A9B1C47/CrashReportClient.ini
@@ -0,0 +1,7 @@
+[CrashReportClient]
+bHideLogFilesOption=false
+bIsAllowedToCloseWithoutSending=true
+CrashConfigPurgeDays=2
+Stall.RecordDump=false
+Ensure.RecordDump=true
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/CrashReportClient/UECC-Windows-E3C9761E4BF7C760D57C51945791F4DF/CrashReportClient.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/CrashReportClient/UECC-Windows-E3C9761E4BF7C760D57C51945791F4DF/CrashReportClient.ini
new file mode 100644
index 0000000000000000000000000000000000000000..e6a72c5d289419c4dc5becb5da5d931aa6f16d85
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/CrashReportClient/UECC-Windows-E3C9761E4BF7C760D57C51945791F4DF/CrashReportClient.ini
@@ -0,0 +1,7 @@
+[CrashReportClient]
+bHideLogFilesOption=false
+bIsAllowedToCloseWithoutSending=true
+CrashConfigPurgeDays=2
+Stall.RecordDump=false
+Ensure.RecordDump=true
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Bridge.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Bridge.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Bridge.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/CameraCalibrationCore.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/CameraCalibrationCore.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/CameraCalibrationCore.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/ColorCorrectRegions.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/ColorCorrectRegions.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/ColorCorrectRegions.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Compat.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Compat.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Compat.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Composure.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Composure.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Composure.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/ConcertSyncCore.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/ConcertSyncCore.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/ConcertSyncCore.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/ConsoleVariables.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/ConsoleVariables.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/ConsoleVariables.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/ControlRig.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/ControlRig.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/ControlRig.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/DatasmithContent.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/DatasmithContent.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/DatasmithContent.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/DeviceProfiles.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/DeviceProfiles.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/DeviceProfiles.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/EditorScriptingUtilities.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/EditorScriptingUtilities.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/EditorScriptingUtilities.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Engine.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Engine.ini
new file mode 100644
index 0000000000000000000000000000000000000000..30badc9155361f0c75a7f53de2377d9614641b58
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Engine.ini
@@ -0,0 +1,64 @@
+[Core.System]
+Paths=../../../Engine/Content
+Paths=%GAMEDIR%Content
+Paths=../../../Engine/Plugins/2D/Paper2D/Content
+Paths=../../../Engine/Plugins/Animation/ACLPlugin/Content
+Paths=../../../Engine/Plugins/Animation/ControlRigSpline/Content
+Paths=../../../Engine/Plugins/Animation/ControlRig/Content
+Paths=../../../Engine/Plugins/Animation/IKRig/Content
+Paths=../../../Engine/Plugins/Bridge/Content
+Paths=../../../Engine/Plugins/Compositing/Composure/Content
+Paths=../../../Engine/Plugins/Compositing/OpenColorIO/Content
+Paths=../../../Engine/Plugins/Developer/AnimationSharing/Content
+Paths=../../../Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content
+Paths=../../../Engine/Plugins/Editor/BlueprintHeaderView/Content
+Paths=../../../Engine/Plugins/Editor/ConsoleVariablesEditor/Content
+Paths=../../../Engine/Plugins/Editor/GeometryMode/Content
+Paths=../../../Engine/Plugins/Editor/ObjectMixer/LightMixer/Content
+Paths=../../../Engine/Plugins/Editor/ObjectMixer/ObjectMixer/Content
+Paths=../../../Engine/Plugins/Editor/SpeedTreeImporter/Content
+Paths=../../../Engine/Plugins/Editor/UVEditor/Content
+Paths=../../../Engine/Plugins/Enterprise/DatasmithContent/Content
+Paths=../../../Engine/Plugins/Enterprise/GLTFExporter/Content
+Paths=../../../Engine/Plugins/Experimental/ChaosCaching/Content
+Paths=../../../Engine/Plugins/Experimental/ChaosClothEditor/Content
+Paths=../../../Engine/Plugins/Experimental/ChaosNiagara/Content
+Paths=../../../Engine/Plugins/Experimental/ChaosSolverPlugin/Content
+Paths=../../../Engine/Plugins/Experimental/ColorCorrectRegions/Content
+Paths=../../../Engine/Plugins/Experimental/Dataflow/Content
+Paths=../../../Engine/Plugins/Experimental/FullBodyIK/Content
+Paths=../../../Engine/Plugins/Experimental/GeometryCollectionPlugin/Content
+Paths=../../../Engine/Plugins/Experimental/PythonScriptPlugin/Content
+Paths=../../../Engine/Plugins/Experimental/ToolPresets/Content
+Paths=../../../Engine/Plugins/Experimental/VirtualProductionUtilities/Content
+Paths=../../../Engine/Plugins/Experimental/VirtualProduction/VPRoles/Content
+Paths=../../../Engine/Plugins/Experimental/VirtualProduction/VPSettings/Content
+Paths=../../../Engine/Plugins/FX/Niagara/Content
+Paths=../../../Engine/Plugins/Interchange/Runtime/Content
+Paths=../../../Engine/Plugins/Media/MediaCompositing/Content
+Paths=../../../Engine/Plugins/Media/MediaPlate/Content
+Paths=../../../Engine/Plugins/MovieScene/MovieRenderPipeline/Content
+Paths=../../../Engine/Plugins/MovieScene/SequencerScripting/Content
+Paths=../../../Engine/Plugins/Runtime/AudioSynesthesia/Content
+Paths=../../../Engine/Plugins/Runtime/AudioWidgets/Content
+Paths=../../../Engine/Plugins/Runtime/GeometryProcessing/Content
+Paths=../../../Engine/Plugins/Runtime/Metasound/Content
+Paths=../../../Engine/Plugins/Runtime/OpenCV/Content
+Paths=../../../Engine/Plugins/Runtime/OpenXREyeTracker/Content
+Paths=../../../Engine/Plugins/Runtime/OpenXRHandTracking/Content
+Paths=../../../Engine/Plugins/Runtime/OpenXR/Content
+Paths=../../../Engine/Plugins/Runtime/ResonanceAudio/Content
+Paths=../../../Engine/Plugins/Runtime/RigVM/Content
+Paths=../../../Engine/Plugins/Runtime/Synthesis/Content
+Paths=../../../Engine/Plugins/Runtime/WaveTable/Content
+Paths=../../../Engine/Plugins/Runtime/nDisplayModularFeatures/Content
+Paths=../../../Engine/Plugins/Runtime/nDisplay/Content
+Paths=../../../Engine/Plugins/TraceUtilities/Content
+Paths=../../../Engine/Plugins/VirtualProduction/CameraCalibrationCore/Content
+Paths=../../../Engine/Plugins/VirtualProduction/MultiUserTakes/Content
+Paths=../../../Engine/Plugins/VirtualProduction/Switchboard/Content
+Paths=../../../Engine/Plugins/VirtualProduction/Takes/Content
+Paths=../../../MetaCastBachelor/Plugins/UE4_GPUPointCloudRenderer/Content
+Paths=../../../MetaCastBachelor/Plugins/UEPlugin-Kdtree/Kdtree/Content
+Paths=../../../MetaCastBachelor/Plugins/rwth-vr-toolkit-with-meta-cast/Content
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/EnhancedInput.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/EnhancedInput.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/EnhancedInput.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/FullBodyIK.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/FullBodyIK.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/FullBodyIK.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/GLTFExporter.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/GLTFExporter.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/GLTFExporter.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Game.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Game.ini
new file mode 100644
index 0000000000000000000000000000000000000000..bc9e785640c450693ef46fe818f3a647ed49df16
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Game.ini
@@ -0,0 +1,43 @@
+[/Script/VPSettings.VPSettings]
+FocalLengthPresets=18.000000
+FocalLengthPresets=21.000000
+FocalLengthPresets=25.000000
+FocalLengthPresets=32.000000
+FocalLengthPresets=40.000000
+FocalLengthPresets=50.000000
+FocalLengthPresets=65.000000
+FocalLengthPresets=75.000000
+FocalLengthPresets=100.000000
+FocalLengthPresets=135.000000
+AperturePresets=1.000000
+AperturePresets=1.400000
+AperturePresets=2.000000
+AperturePresets=2.800000
+AperturePresets=4.000000
+AperturePresets=5.600000
+AperturePresets=8.000000
+AperturePresets=11.000000
+AperturePresets=16.000000
+AperturePresets=22.000000
+DefaultShutterSpeedPresets=1.000000
+DefaultShutterSpeedPresets=4.000000
+DefaultShutterSpeedPresets=8.000000
+DefaultShutterSpeedPresets=15.000000
+DefaultShutterSpeedPresets=30.000000
+DefaultShutterSpeedPresets=60.000000
+DefaultShutterSpeedPresets=125.000000
+DefaultShutterSpeedPresets=250.000000
+DefaultShutterSpeedPresets=500.000000
+DefaultShutterSpeedPresets=1000.000000
+DefaultISOPresets=50.000000
+DefaultISOPresets=100.000000
+DefaultISOPresets=200.000000
+DefaultISOPresets=400.000000
+DefaultISOPresets=800.000000
+DefaultISOPresets=1600.000000
+DefaultISOPresets=3200.000000
+DefaultISOPresets=6400.000000
+DirectorName=Default Director
+ShowName=Default Project
+Roles=(GameplayTags=)
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/GameUserSettings.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/GameUserSettings.ini
new file mode 100644
index 0000000000000000000000000000000000000000..879a23e003554a358bde14caebb026e67da27d44
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/GameUserSettings.ini
@@ -0,0 +1,42 @@
+[ScalabilityGroups]
+sg.ResolutionQuality=0
+sg.ViewDistanceQuality=3
+sg.AntiAliasingQuality=3
+sg.ShadowQuality=3
+sg.GlobalIlluminationQuality=3
+sg.ReflectionQuality=3
+sg.PostProcessQuality=3
+sg.TextureQuality=3
+sg.EffectsQuality=3
+sg.FoliageQuality=3
+sg.ShadingQuality=3
+
+[/Script/Engine.GameUserSettings]
+bUseVSync=False
+bUseDynamicResolution=False
+ResolutionSizeX=1920
+ResolutionSizeY=1080
+LastUserConfirmedResolutionSizeX=1920
+LastUserConfirmedResolutionSizeY=1080
+WindowPosX=-1
+WindowPosY=-1
+FullscreenMode=1
+LastConfirmedFullscreenMode=1
+PreferredFullscreenMode=1
+Version=5
+AudioQualityLevel=0
+LastConfirmedAudioQualityLevel=0
+FrameRateLimit=0.000000
+DesiredScreenWidth=1280
+bUseDesiredScreenHeight=False
+DesiredScreenHeight=720
+LastUserConfirmedDesiredScreenWidth=1280
+LastUserConfirmedDesiredScreenHeight=720
+LastRecommendedScreenWidth=-1.000000
+LastRecommendedScreenHeight=-1.000000
+LastCPUBenchmarkResult=-1.000000
+LastGPUBenchmarkResult=-1.000000
+LastGPUBenchmarkMultiplier=1.000000
+bUseHDRDisplayOutput=False
+HDRDisplayOutputNits=1000
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Hardware.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Hardware.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Hardware.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/IKRig.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/IKRig.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/IKRig.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Input.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Input.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Input.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/InstallBundle.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/InstallBundle.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/InstallBundle.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Interchange.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Interchange.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Interchange.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/LiveLink.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/LiveLink.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/LiveLink.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/MediaIOFramework.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/MediaIOFramework.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/MediaIOFramework.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Metasound.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Metasound.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Metasound.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/MovieRenderPipeline.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/MovieRenderPipeline.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/MovieRenderPipeline.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Niagara.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Niagara.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Niagara.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/OSC.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/OSC.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/OSC.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Paper2D.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Paper2D.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Paper2D.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/RWTHVRToolkit.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/RWTHVRToolkit.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/RWTHVRToolkit.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/RuntimeOptions.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/RuntimeOptions.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/RuntimeOptions.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Scalability.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Scalability.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Scalability.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/StructUtils.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/StructUtils.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/StructUtils.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Synthesis.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Synthesis.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/Synthesis.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/ToolPresets.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/ToolPresets.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/ToolPresets.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/TraceUtilities.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/TraceUtilities.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/TraceUtilities.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/VariantManagerContent.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/VariantManagerContent.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/VariantManagerContent.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/VirtualProductionUtilities.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/VirtualProductionUtilities.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/VirtualProductionUtilities.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/nDisplay.ini b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/nDisplay.ini
new file mode 100644
index 0000000000000000000000000000000000000000..8b137891791fe96927ad78e64b0aad7bded08bdc
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Config/Windows/nDisplay.ini
@@ -0,0 +1 @@
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Crashes/UECC-Windows-3993C43D42833AFC784EC790C04EACFC_0000/Breadcrumbs_RHIThread_0.txt b/Builds/Windows/MetaCastBachelor/Saved/Crashes/UECC-Windows-3993C43D42833AFC784EC790C04EACFC_0000/Breadcrumbs_RHIThread_0.txt
new file mode 100644
index 0000000000000000000000000000000000000000..dd14f9b395cdc5acf9f869671491cec56bbcf3ea
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Crashes/UECC-Windows-3993C43D42833AFC784EC790C04EACFC_0000/Breadcrumbs_RHIThread_0.txt
@@ -0,0 +1 @@
+Breadcrumbs 'RHIThread'
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Crashes/UECC-Windows-3993C43D42833AFC784EC790C04EACFC_0000/CrashContext.runtime-xml b/Builds/Windows/MetaCastBachelor/Saved/Crashes/UECC-Windows-3993C43D42833AFC784EC790C04EACFC_0000/CrashContext.runtime-xml
new file mode 100644
index 0000000000000000000000000000000000000000..2798b78166631883ca989dbea2987df226faefe6
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Crashes/UECC-Windows-3993C43D42833AFC784EC790C04EACFC_0000/CrashContext.runtime-xml
@@ -0,0 +1,141 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<FGenericCrashContext>
+<RuntimeProperties>
+<CrashVersion>3</CrashVersion>
+<ExecutionGuid>54CC91054AEBD373E05C508BDAD7B0CB</ExecutionGuid>
+<CrashGUID>UECC-Windows-3993C43D42833AFC784EC790C04EACFC_0000</CrashGUID>
+<IsEnsure>true</IsEnsure>
+<IsStall>false</IsStall>
+<IsAssert>false</IsAssert>
+<CrashType>Ensure</CrashType>
+<ErrorMessage>Ensure condition failed: ((Result) &gt;= 0)  [File:D:\build\++UE5\Sync\Engine\Plugins\Runtime\OpenXR\Source\OpenXRHMD\Private\OpenXRHMD.cpp] [Line: 3407] 
+OpenXR call failed with result XR_ERROR_RUNTIME_FAILURE
+Stack: 
+0x00007ff7f4f084ec MetaCastBachelor.exe!FOpenXRHMD::OnFinishRendering_RHIThread() []
+0x00007ff7f4f0cc6e MetaCastBachelor.exe!FOpenXRRenderBridge::Present() []
+0x00007ff7f0deb340 MetaCastBachelor.exe!FD3D12Viewport::PresentChecked() []
+0x00007ff7f0deae5c MetaCastBachelor.exe!FD3D12Viewport::Present() []
+0x00007ff7f0ded277 MetaCastBachelor.exe!FD3D12CommandContextBase::RHIEndDrawingViewport() []
+0x00007ff7f10238cb MetaCastBachelor.exe!FRHICommand&lt;FRHICommandEndDrawingViewport,FRHICommandEndDrawingViewportString2069&gt;::ExecuteAndDestruct() []
+0x00007ff7f102149d MetaCastBachelor.exe!FRHICommandListBase::Execute() []
+0x00007ff7f100e571 MetaCastBachelor.exe!operator==() []
+0x00007ff7ecd49443 MetaCastBachelor.exe!TGraphTask&lt;TFunctionGraphTaskImpl&lt;void __cdecl(void),0&gt; &gt;::ExecuteTask() []
+0x00007ff7eccd9c07 MetaCastBachelor.exe!FNamedTaskThread::ProcessTasksNamedThread() []
+0x00007ff7eccda1fe MetaCastBachelor.exe!FNamedTaskThread::ProcessTasksUntilQuit() []
+0x00007ff7f117789c MetaCastBachelor.exe!FRHIThread::Run() []
+0x00007ff7ed28b252 MetaCastBachelor.exe!FRunnableThreadWin::Run() []
+0x00007ff7ed27eca7 MetaCastBachelor.exe!FRunnableThreadWin::GuardedRun() []
+0x00007ffe05847374 KERNEL32.DLL!UnknownFunction []
+0x00007ffe06b3cc91 ntdll.dll!UnknownFunction []
+</ErrorMessage>
+<CrashReporterMessage></CrashReporterMessage>
+<AttendedStatus>Attended</AttendedStatus>
+<ProcessId>18964</ProcessId>
+<SecondsSinceStart>7</SecondsSinceStart>
+<IsInternalBuild>false</IsInternalBuild>
+<IsPerforceBuild>false</IsPerforceBuild>
+<IsWithDebugInfo>false</IsWithDebugInfo>
+<IsSourceDistribution>false</IsSourceDistribution>
+<GameName>UE-MetaCastBachelor</GameName>
+<ExecutableName>MetaCastBachelor</ExecutableName>
+<BuildConfiguration>Development</BuildConfiguration>
+<GameSessionID></GameSessionID>
+<PlatformName>Windows</PlatformName>
+<PlatformFullName>Windows</PlatformFullName>
+<PlatformNameIni>Windows</PlatformNameIni>
+<EngineMode>Game</EngineMode>
+<EngineModeEx>Unset</EngineModeEx>
+<DeploymentName></DeploymentName>
+<EngineVersion>5.3.2-29314046+++UE5+Release-5.3</EngineVersion>
+<EngineCompatibleVersion>5.3.2-29314046+++UE5+Release-5.3</EngineCompatibleVersion>
+<CommandLine> MetaCastBachelor</CommandLine>
+<LanguageLCID>0</LanguageLCID>
+<AppDefaultLocale>de-DE</AppDefaultLocale>
+<BuildVersion>++UE5+Release-5.3-CL-29314046</BuildVersion>
+<Symbols>**UE5*Release-5.3-CL-29314046-Win64-Development</Symbols>
+<IsUERelease>false</IsUERelease>
+<IsRequestingExit>false</IsRequestingExit>
+<UserName></UserName>
+<BaseDir>D:/UnrealProjects/MetaCastBachelor/Builds/Windows/MetaCastBachelor/Binaries/Win64/</BaseDir>
+<RootDir>D:/UnrealProjects/MetaCastBachelor/Builds/Windows/</RootDir>
+<MachineId>6CBED587469A168A7370319BBA147631</MachineId>
+<LoginId>6cbed587469a168a7370319bba147631</LoginId>
+<EpicAccountId>89ef2249c1234d4097f29f45a87772f1</EpicAccountId>
+<SourceContext></SourceContext>
+<UserDescription></UserDescription>
+<UserActivityHint></UserActivityHint>
+<CrashDumpMode>0</CrashDumpMode>
+<GameStateName></GameStateName>
+<Misc.NumberOfCores>10</Misc.NumberOfCores>
+<Misc.NumberOfCoresIncludingHyperthreads>20</Misc.NumberOfCoresIncludingHyperthreads>
+<Misc.Is64bitOperatingSystem>1</Misc.Is64bitOperatingSystem>
+<Misc.CPUVendor>GenuineIntel</Misc.CPUVendor>
+<Misc.CPUBrand>Intel(R) Core(TM) i9-10900X CPU @ 3.70GHz</Misc.CPUBrand>
+<Misc.PrimaryGPUBrand>NVIDIA GeForce RTX 3090</Misc.PrimaryGPUBrand>
+<Misc.OSVersionMajor>Windows 10 (22H2) [10.0.19045.4651]</Misc.OSVersionMajor>
+<Misc.OSVersionMinor></Misc.OSVersionMinor>
+<MemoryStats.TotalPhysical>34054676480</MemoryStats.TotalPhysical>
+<MemoryStats.TotalVirtual>86377906176</MemoryStats.TotalVirtual>
+<MemoryStats.PageSize>4096</MemoryStats.PageSize>
+<MemoryStats.TotalPhysicalGB>32</MemoryStats.TotalPhysicalGB>
+<MemoryStats.AvailablePhysical>8869527552</MemoryStats.AvailablePhysical>
+<MemoryStats.AvailableVirtual>15577104384</MemoryStats.AvailableVirtual>
+<MemoryStats.UsedPhysical>923021312</MemoryStats.UsedPhysical>
+<MemoryStats.PeakUsedPhysical>927744000</MemoryStats.PeakUsedPhysical>
+<MemoryStats.UsedVirtual>2390073344</MemoryStats.UsedVirtual>
+<MemoryStats.PeakUsedVirtual>2390073344</MemoryStats.PeakUsedVirtual>
+<MemoryStats.bIsOOM>0</MemoryStats.bIsOOM>
+<MemoryStats.OOMAllocationSize>0</MemoryStats.OOMAllocationSize>
+<MemoryStats.OOMAllocationAlignment>0</MemoryStats.OOMAllocationAlignment>
+<NumMinidumpFramesToIgnore>7</NumMinidumpFramesToIgnore>
+<CallStack></CallStack>
+<PCallStack>
+
+MetaCastBachelor  0x00007ff7ec010000 + 8ef84ec         
+MetaCastBachelor  0x00007ff7ec010000 + 8efcc6e         
+MetaCastBachelor  0x00007ff7ec010000 + 4ddb340         
+MetaCastBachelor  0x00007ff7ec010000 + 4ddae5c         
+MetaCastBachelor  0x00007ff7ec010000 + 4ddd277         
+MetaCastBachelor  0x00007ff7ec010000 + 50138cb         
+MetaCastBachelor  0x00007ff7ec010000 + 501149d         
+MetaCastBachelor  0x00007ff7ec010000 + 4ffe571         
+MetaCastBachelor  0x00007ff7ec010000 + d39443          
+MetaCastBachelor  0x00007ff7ec010000 + cc9c07          
+MetaCastBachelor  0x00007ff7ec010000 + cca1fe          
+MetaCastBachelor  0x00007ff7ec010000 + 516789c         
+MetaCastBachelor  0x00007ff7ec010000 + 127b252         
+MetaCastBachelor  0x00007ff7ec010000 + 126eca7         
+KERNEL32          0x00007ffe05830000 + 17374           
+</PCallStack>
+<PCallStackHash>644647661FA0C7E129EF038108090CFB1D31C285</PCallStackHash>
+</RuntimeProperties>
+<PlatformProperties>
+<PlatformIsRunningWindows>1</PlatformIsRunningWindows>
+<IsRunningOnBattery>false</IsRunningOnBattery>
+<PlatformCallbackResult>0</PlatformCallbackResult>
+<CrashTrigger>0</CrashTrigger>
+</PlatformProperties>
+<EngineData>
+<MatchingDPStatus>WindowsNo errors</MatchingDPStatus>
+<RHI.IntegratedGPU>false</RHI.IntegratedGPU>
+<RHI.DriverDenylisted>false</RHI.DriverDenylisted>
+<RHI.D3DDebug>false</RHI.D3DDebug>
+<RHI.Breadcrumbs>true</RHI.Breadcrumbs>
+<RHI.DRED>false</RHI.DRED>
+<RHI.DREDMarkersOnly>true</RHI.DREDMarkersOnly>
+<RHI.DREDContext>false</RHI.DREDContext>
+<RHI.Aftermath>true</RHI.Aftermath>
+<RHI.RHIName>D3D12</RHI.RHIName>
+<RHI.AdapterName>NVIDIA GeForce RTX 3090</RHI.AdapterName>
+<RHI.UserDriverVersion>546.09</RHI.UserDriverVersion>
+<RHI.InternalDriverVersion>31.0.15.4609</RHI.InternalDriverVersion>
+<RHI.DriverDate>11-2-2023</RHI.DriverDate>
+<RHI.FeatureLevel>SM6</RHI.FeatureLevel>
+<RHI.GPUVendor>NVIDIA</RHI.GPUVendor>
+<RHI.DeviceId>2204</RHI.DeviceId>
+<DeviceProfile.Name>Windows</DeviceProfile.Name>
+<Platform.AppHasFocus>true</Platform.AppHasFocus>
+</EngineData>
+<GameData>
+</GameData>
+</FGenericCrashContext>
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Crashes/UECC-Windows-3993C43D42833AFC784EC790C04EACFC_0000/CrashReportClient.ini b/Builds/Windows/MetaCastBachelor/Saved/Crashes/UECC-Windows-3993C43D42833AFC784EC790C04EACFC_0000/CrashReportClient.ini
new file mode 100644
index 0000000000000000000000000000000000000000..e6a72c5d289419c4dc5becb5da5d931aa6f16d85
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Crashes/UECC-Windows-3993C43D42833AFC784EC790C04EACFC_0000/CrashReportClient.ini
@@ -0,0 +1,7 @@
+[CrashReportClient]
+bHideLogFilesOption=false
+bIsAllowedToCloseWithoutSending=true
+CrashConfigPurgeDays=2
+Stall.RecordDump=false
+Ensure.RecordDump=true
+
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Crashes/UECC-Windows-3993C43D42833AFC784EC790C04EACFC_0000/MetaCastBachelor.log b/Builds/Windows/MetaCastBachelor/Saved/Crashes/UECC-Windows-3993C43D42833AFC784EC790C04EACFC_0000/MetaCastBachelor.log
new file mode 100644
index 0000000000000000000000000000000000000000..c1494e6da329733a0b08e2c0ef7ed2ef989c968f
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Crashes/UECC-Windows-3993C43D42833AFC784EC790C04EACFC_0000/MetaCastBachelor.log
@@ -0,0 +1,1425 @@
+Log file open, 08/02/24 09:32:19
+LogWindows: Failed to load 'aqProf.dll' (GetLastError=126)
+LogWindows: File 'aqProf.dll' does not exist
+LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64).
+LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126)
+LogWindows: File 'VtuneApi.dll' does not exist
+LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126)
+LogWindows: File 'VtuneApi32e.dll' does not exist
+LogWindows: Custom abort handler registered for crash reporting.
+LogCore: Display: UnrealTraceServer: Unable to launch the trace store with '"../../../Engine//Binaries/Win64/UnrealTraceServer.exe" fork' (00000002)
+LogTrace: Initializing trace...
+LogTrace: Finished trace initialization.
+LogCsvProfiler: Display: Metadata set : platform="Windows"
+LogCsvProfiler: Display: Metadata set : config="Development"
+LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.3-CL-29314046"
+LogCsvProfiler: Display: Metadata set : engineversion="5.3.2-29314046+++UE5+Release-5.3"
+LogCsvProfiler: Display: Metadata set : os="Windows 10 (22H2) [10.0.19045.4651] "
+LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|Intel(R) Core(TM) i9-10900X CPU @ 3.70GHz"
+LogCsvProfiler: Display: Metadata set : pgoenabled="0"
+LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0"
+LogCsvProfiler: Display: Metadata set : ltoenabled="0"
+LogCsvProfiler: Display: Metadata set : asan="0"
+LogCsvProfiler: Display: Metadata set : commandline="" MetaCastBachelor""
+LogCsvProfiler: Display: Metadata set : loginid="6cbed587469a168a7370319bba147631"
+LogCsvProfiler: Display: Metadata set : llm="0"
+LogPakFile: Initializing PakPlatformFile
+LogIoDispatcher: Display: Reading toc: ../../../MetaCastBachelor/Content/Paks/global.utoc
+LogIoDispatcher: Display: Toc signature hash: 0000000000000000000000000000000000000000
+LogIoDispatcher: Display: Mounting container '../../../MetaCastBachelor/Content/Paks/global.utoc' in location slot 0
+LogPakFile: Display: Initialized I/O dispatcher file backend. Mounted the global container: ../../../MetaCastBachelor/Content/Paks/global.utoc
+LogPakFile: Display: Found Pak file ../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak attempting to mount.
+LogPakFile: Display: Mounting pak file ../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak.
+LogIoDispatcher: Display: Reading toc: ../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc
+LogIoDispatcher: Display: Toc signature hash: 0000000000000000000000000000000000000000
+LogIoDispatcher: Display: Mounting container '../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc' in location slot 0
+LogPakFile: Display: Mounted IoStore container "../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc"
+LogPakFile: Display: Mounted Pak file '../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak', mount point: '../../../'
+LogStats: Stats thread started at 0.198177
+LogAssetRegistry: Premade AssetRegistry loaded from '../../../MetaCastBachelor/AssetRegistry.bin'
+LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +1:00, Platform Override: ''
+LogInit: Session CrashGUID >====================================================
+         Session CrashGUID >   UECC-Windows-3993C43D42833AFC784EC790C04EACFC
+         Session CrashGUID >====================================================
+LogStreaming: Warning: Failed to read file 'D:/UnrealProjects/MetaCastBachelor/Builds/Windows/Cloud/IoStoreOnDemand.ini' error.
+LogPluginManager: Mounting Engine plugin Paper2D
+LogPluginManager: Mounting Engine plugin AISupport
+LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor
+LogPluginManager: Mounting Engine plugin ACLPlugin
+LogPluginManager: Mounting Engine plugin AnimationData
+LogPluginManager: Mounting Engine plugin ControlRigSpline
+LogPluginManager: Mounting Engine plugin ControlRig
+LogPluginManager: Mounting Engine plugin IKRig
+LogPluginManager: Mounting Engine plugin LiveLink
+LogPluginManager: Mounting Engine plugin Bridge
+LogPluginManager: Mounting Engine plugin CameraShakePreviewer
+LogPluginManager: Mounting Engine plugin GameplayCameras
+LogPluginManager: Mounting Engine plugin Composure
+LogPluginManager: Mounting Engine plugin OpenColorIO
+LogPluginManager: Mounting Engine plugin OodleNetwork
+LogPluginManager: Mounting Engine plugin AnimationSharing
+LogPluginManager: Mounting Engine plugin MultiUserClient
+LogPluginManager: Mounting Engine plugin ConcertMain
+LogPluginManager: Mounting Engine plugin ConcertSyncClient
+LogPluginManager: Mounting Engine plugin ConcertSyncCore
+LogPluginManager: Mounting Engine plugin ConcertSharedSlate
+LogPluginManager: Mounting Engine plugin DumpGPUServices
+LogPluginManager: Mounting Engine plugin PixWinPlugin
+LogPluginManager: Mounting Engine plugin PluginUtils
+LogPluginManager: Mounting Engine plugin RenderDocPlugin
+LogPluginManager: Mounting Engine plugin UObjectPlugin
+LogPluginManager: Mounting Engine plugin AssetManagerEditor
+LogPluginManager: Mounting Engine plugin BlueprintHeaderView
+LogPluginManager: Mounting Engine plugin BlueprintMaterialTextureNodes
+LogPluginManager: Mounting Engine plugin ConsoleVariables
+LogPluginManager: Mounting Engine plugin EditorScriptingUtilities
+LogPluginManager: Mounting Engine plugin FacialAnimation
+LogPluginManager: Mounting Engine plugin GameplayTagsEditor
+LogPluginManager: Mounting Engine plugin GeometryMode
+LogPluginManager: Mounting Engine plugin LightMixer
+LogPluginManager: Mounting Engine plugin ObjectMixer
+LogPluginManager: Mounting Engine plugin SequencerAnimTools
+LogPluginManager: Mounting Engine plugin SpeedTreeImporter
+LogPluginManager: Mounting Engine plugin UVEditor
+LogPluginManager: Mounting Engine plugin EnhancedInput
+LogPluginManager: Found config from plugin[EnhancedInput] Input
+LogPluginManager: Mounting Engine plugin DatasmithContent
+LogPluginManager: Mounting Engine plugin GLTFExporter
+LogPluginManager: Mounting Engine plugin VariantManagerContent
+LogPluginManager: Mounting Engine plugin VariantManager
+LogPluginManager: Mounting Engine plugin AutomationUtils
+LogPluginManager: Mounting Engine plugin BackChannel
+LogPluginManager: Mounting Engine plugin ChaosCaching
+LogPluginManager: Mounting Engine plugin ChaosClothEditor
+LogPluginManager: Mounting Engine plugin ChaosCloth
+LogPluginManager: Mounting Engine plugin ChaosEditor
+LogPluginManager: Mounting Engine plugin ChaosNiagara
+LogPluginManager: Mounting Engine plugin ChaosSolverPlugin
+LogPluginManager: Mounting Engine plugin ChaosUserDataPT
+LogPluginManager: Mounting Engine plugin CharacterAI
+LogPluginManager: Mounting Engine plugin ColorCorrectRegions
+LogPluginManager: Mounting Engine plugin Dataflow
+LogPluginManager: Mounting Engine plugin Fracture
+LogPluginManager: Mounting Engine plugin FullBodyIK
+LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin
+LogPluginManager: Mounting Engine plugin LocalizableMessage
+LogPluginManager: Mounting Engine plugin OpenImageDenoise
+LogPluginManager: Mounting Engine plugin PlatformCrypto
+LogPluginManager: Mounting Engine plugin PythonScriptPlugin
+LogPluginManager: Mounting Engine plugin StructUtils
+LogPluginManager: Mounting Engine plugin ToolPresets
+LogPluginManager: Mounting Engine plugin VirtualProductionUtilities
+LogPluginManager: Mounting Engine plugin VPRoles
+LogPluginManager: Mounting Engine plugin VPSettings
+LogPluginManager: Mounting Engine plugin Niagara
+LogPluginManager: Mounting Engine plugin AlembicImporter
+LogPluginManager: Mounting Engine plugin InterchangeEditor
+LogPluginManager: Mounting Engine plugin Interchange
+LogPluginManager: Mounting Engine plugin AvfMedia
+LogPluginManager: Mounting Engine plugin ImgMedia
+LogPluginManager: Mounting Engine plugin MediaCompositing
+LogPluginManager: Mounting Engine plugin MediaIOFramework
+LogPluginManager: Mounting Engine plugin MediaPlate
+LogPluginManager: Mounting Engine plugin WebMMedia
+LogPluginManager: Mounting Engine plugin WmfMedia
+LogPluginManager: Mounting Engine plugin MeshPainting
+LogPluginManager: Mounting Engine plugin TcpMessaging
+LogPluginManager: Mounting Engine plugin UdpMessaging
+LogPluginManager: Mounting Engine plugin ActorSequence
+LogPluginManager: Mounting Engine plugin LevelSequenceEditor
+LogPluginManager: Mounting Engine plugin MovieRenderPipeline
+LogPluginManager: Mounting Engine plugin SequencerScripting
+LogPluginManager: Mounting Engine plugin TemplateSequence
+LogPluginManager: Mounting Engine plugin OnlineBase
+LogPluginManager: Mounting Engine plugin OnlineServices
+LogPluginManager: Mounting Engine plugin OnlineSubsystemNull
+LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils
+LogPluginManager: Mounting Engine plugin OnlineSubsystem
+LogPluginManager: Mounting Engine plugin LauncherChunkInstaller
+LogPluginManager: Mounting Engine plugin ActorLayerUtilities
+LogPluginManager: Mounting Engine plugin AndroidFileServer
+LogPluginManager: Mounting Engine plugin AndroidPermission
+LogPluginManager: Mounting Engine plugin AppleImageUtils
+LogPluginManager: Mounting Engine plugin ArchVisCharacter
+LogPluginManager: Mounting Engine plugin AssetTags
+LogPluginManager: Mounting Engine plugin AudioCapture
+LogPluginManager: Mounting Engine plugin AudioSynesthesia
+LogPluginManager: Mounting Engine plugin AudioWidgets
+LogPluginManager: Mounting Engine plugin CableComponent
+LogPluginManager: Mounting Engine plugin ChunkDownloader
+LogPluginManager: Mounting Engine plugin CustomMeshComponent
+LogPluginManager: Mounting Engine plugin SQLiteCore
+LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector
+LogPluginManager: Mounting Engine plugin GeometryCache
+LogPluginManager: Mounting Engine plugin GeometryProcessing
+LogPluginManager: Mounting Engine plugin GooglePAD
+LogPluginManager: Mounting Engine plugin HPMotionController
+LogPluginManager: Mounting Engine plugin InputDebugging
+LogPluginManager: Found config from plugin[InputDebugging] Input
+LogPluginManager: Mounting Engine plugin LiveLinkOverNDisplay
+LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary
+LogPluginManager: Mounting Engine plugin Metasound
+LogPluginManager: Mounting Engine plugin MobilePatchingUtils
+LogPluginManager: Mounting Engine plugin MsQuic
+LogPluginManager: Mounting Engine plugin OSC
+LogPluginManager: Mounting Engine plugin OpenCV
+LogPluginManager: Mounting Engine plugin OpenXREyeTracker
+LogPluginManager: Mounting Engine plugin OpenXRHandTracking
+LogPluginManager: Mounting Engine plugin OpenXR
+LogPluginManager: Mounting Engine plugin ProceduralMeshComponent
+LogPluginManager: Mounting Engine plugin PropertyAccessEditor
+LogPluginManager: Mounting Engine plugin ResonanceAudio
+LogPluginManager: Mounting Engine plugin RigVM
+LogPluginManager: Mounting Engine plugin SignificanceManager
+LogPluginManager: Mounting Engine plugin SoundFields
+LogPluginManager: Mounting Engine plugin Synthesis
+LogPluginManager: Mounting Engine plugin WaveTable
+LogPluginManager: Mounting Engine plugin WebMMoviePlayer
+LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector
+LogPluginManager: Mounting Engine plugin WindowsMoviePlayer
+LogPluginManager: Mounting Engine plugin XRBase
+LogPluginManager: Mounting Engine plugin nDisplayModularFeatures
+LogPluginManager: Mounting Engine plugin nDisplay
+LogPluginManager: Mounting Engine plugin InterchangeTests
+LogPluginManager: Mounting Engine plugin TraceUtilities
+LogPluginManager: Mounting Engine plugin CameraCalibrationCore
+LogPluginManager: Mounting Engine plugin MultiUserTakes
+LogPluginManager: Mounting Engine plugin RemoteControlInterception
+LogPluginManager: Mounting Engine plugin Switchboard
+LogPluginManager: Mounting Engine plugin Takes
+LogPluginManager: Mounting Project plugin GPUPointCloudRenderer
+LogPluginManager: Mounting Project plugin Kdtree
+LogPluginManager: Mounting Project plugin RWTHVRToolkit
+LogPluginManager: Mounting Project plugin UniversalLogging
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/2D/Paper2D/Content/' mounted to '/Paper2D/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ACLPlugin/Content/' mounted to '/ACLPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRigSpline/Content/' mounted to '/ControlRigSpline/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRig/Content/' mounted to '/ControlRig/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/IKRig/Content/' mounted to '/IKRig/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Bridge/Content/' mounted to '/Bridge/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/Composure/Content/' mounted to '/Composure/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/OpenColorIO/Content/' mounted to '/OpenColorIO/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/AnimationSharing/Content/' mounted to '/AnimationSharing/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/' mounted to '/ConcertSyncClient/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/BlueprintHeaderView/Content/' mounted to '/BlueprintHeaderView/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ConsoleVariablesEditor/Content/' mounted to '/ConsoleVariables/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/GeometryMode/Content/' mounted to '/GeometryMode/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/LightMixer/Content/' mounted to '/LightMixer/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/ObjectMixer/Content/' mounted to '/ObjectMixer/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/SpeedTreeImporter/Content/' mounted to '/SpeedTreeImporter/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/UVEditor/Content/' mounted to '/UVEditor/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/DatasmithContent/Content/' mounted to '/DatasmithContent/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/GLTFExporter/Content/' mounted to '/GLTFExporter/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosCaching/Content/' mounted to '/ChaosCaching/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosClothEditor/Content/' mounted to '/ChaosClothEditor/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosNiagara/Content/' mounted to '/ChaosNiagara/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosSolverPlugin/Content/' mounted to '/ChaosSolverPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ColorCorrectRegions/Content/' mounted to '/ColorCorrectRegions/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Dataflow/Content/' mounted to '/Dataflow/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/FullBodyIK/Content/' mounted to '/FullBodyIK/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/GeometryCollectionPlugin/Content/' mounted to '/GeometryCollectionPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/PythonScriptPlugin/Content/' mounted to '/PythonScriptPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ToolPresets/Content/' mounted to '/ToolPresets/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProductionUtilities/Content/' mounted to '/VirtualProductionUtilities/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPRoles/Content/' mounted to '/VPRoles/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPSettings/Content/' mounted to '/VPSettings/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/FX/Niagara/Content/' mounted to '/Niagara/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Interchange/Runtime/Content/' mounted to '/Interchange/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaCompositing/Content/' mounted to '/MediaCompositing/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaPlate/Content/' mounted to '/MediaPlate/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/MovieRenderPipeline/Content/' mounted to '/MovieRenderPipeline/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/SequencerScripting/Content/' mounted to '/SequencerScripting/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioSynesthesia/Content/' mounted to '/AudioSynesthesia/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioWidgets/Content/' mounted to '/AudioWidgets/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/GeometryProcessing/Content/' mounted to '/GeometryProcessing/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Metasound/Content/' mounted to '/Metasound/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenCV/Content/' mounted to '/OpenCV/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXREyeTracker/Content/' mounted to '/OpenXREyeTracker/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXRHandTracking/Content/' mounted to '/OpenXRHandTracking/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXR/Content/' mounted to '/OpenXR/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/ResonanceAudio/Content/' mounted to '/ResonanceAudio/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/RigVM/Content/' mounted to '/RigVM/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Synthesis/Content/' mounted to '/Synthesis/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/WaveTable/Content/' mounted to '/WaveTable/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplayModularFeatures/Content/' mounted to '/nDisplayModularFeatures/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplay/Content/' mounted to '/nDisplay/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/TraceUtilities/Content/' mounted to '/TraceUtilities/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/CameraCalibrationCore/Content/' mounted to '/CameraCalibrationCore/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/MultiUserTakes/Content/' mounted to '/MultiUserTakes/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Switchboard/Content/' mounted to '/Switchboard/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Takes/Content/' mounted to '/Takes/'
+LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UE4_GPUPointCloudRenderer/Content/' mounted to '/GPUPointCloudRenderer/'
+LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UEPlugin-Kdtree/Kdtree/Content/' mounted to '/Kdtree/'
+LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/rwth-vr-toolkit-with-meta-cast/Content/' mounted to '/RWTHVRToolkit/'
+LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126)
+LogWindows: File 'WinPixGpuCapturer.dll' does not exist
+PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX.
+LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine]
+RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings.
+LogInit: Using libcurl 8.4.0
+LogInit:  - built for Windows
+LogInit:  - supports SSL with OpenSSL/1.1.1t
+LogInit:  - supports HTTP deflate (compression) using libz 1.2.13
+LogInit:  - other features:
+LogInit:      CURL_VERSION_SSL
+LogInit:      CURL_VERSION_LIBZ
+LogInit:      CURL_VERSION_IPV6
+LogInit:      CURL_VERSION_ASYNCHDNS
+LogInit:      CURL_VERSION_LARGEFILE
+LogInit:  CurlRequestOptions (configurable via config and command line):
+LogInit:  - bVerifyPeer = true  - Libcurl will verify peer certificate
+LogInit:  - bUseHttpProxy = false  - Libcurl will NOT use HTTP proxy
+LogInit:  - bDontReuseConnections = false  - Libcurl will reuse connections
+LogInit:  - MaxHostConnections = 16  - Libcurl will limit the number of connections to a host
+LogInit:  - LocalHostAddr = Default
+LogInit:  - BufferSize = 65536
+LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467
+LogOnline: OSS: Created online subsystem instance for: NULL
+LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL]
+LogHMD: OpenXRHMDModule::InitInstance using DefaultLoader.
+LogHMD: OpenXR runtime supported extensions:
+LogHMD: 	XR_KHR_vulkan_enable
+LogHMD: 	XR_KHR_vulkan_enable2
+LogHMD: 	XR_KHR_D3D11_enable
+LogHMD: 	XR_KHR_D3D12_enable
+LogHMD: 	XR_KHR_opengl_enable
+LogHMD: 	XR_KHR_win32_convert_performance_counter_time
+LogHMD: 	XR_EXT_win32_appcontainer_compatible
+LogHMD: 	XR_KHR_binding_modification
+LogHMD: 	XR_KHR_composition_layer_depth
+LogHMD: 	XR_KHR_visibility_mask
+LogHMD: 	XR_EXT_active_action_set_priority
+LogHMD: 	XR_EXT_dpad_binding
+LogHMD: 	XR_EXT_frame_composition_report
+LogHMD: 	XR_EXT_hand_tracking
+LogHMD: 	XR_EXT_hand_joints_motion_range
+LogHMD: 	XR_EXT_hp_mixed_reality_controller
+LogHMD: 	XR_EXT_local_floor
+LogHMD: 	XR_EXT_palm_pose
+LogHMD: 	XR_FB_display_refresh_rate
+LogHMD: 	XR_HTC_vive_cosmos_controller_interaction
+LogHMD: 	XR_HTC_vive_focus3_controller_interaction
+LogHMD: 	XR_HTC_vive_wrist_tracker_interaction
+LogHMD: 	XR_MND_headless
+LogHMD: 	XR_VALVE_analog_threshold
+LogHMD: 	XR_HTCX_vive_tracker_interaction
+LogHMD: 	XR_EXT_debug_utils
+LogHMD: Optional extension XR_KHR_vulkan_swapchain_format_list is not available
+LogHMD: Optional extension XR_FB_foveation_vulkan is not available
+LogHMD: Optional extension XR_KHR_composition_layer_cylinder is not available
+LogHMD: Optional extension XR_KHR_composition_layer_equirect is not available
+LogHMD: Optional extension XR_VARJO_quad_views is not available
+LogHMD: Optional extension XR_EPIC_view_configuration_fov is not available
+LogHMD: Optional extension XR_FB_composition_layer_alpha_blend is not available
+LogHMD: Optional extension XR_FB_foveation is not available
+LogHMD: Optional extension XR_FB_swapchain_update_state is not available
+LogHMD: Optional extension XR_FB_foveation_configuration is not available
+LogHMD: Optional extension XR_OCULUS_audio_device_guid is not available
+LogHMD: Warning: Required extension XR_EXT_eye_gaze_interaction is not available
+LogHMD: Could not enable all required OpenXR extensions for OpenXREyeTracker on current system. This plugin will be loaded but ignored, but will be enabled on a target platform that supports the required extension.
+LogHMD: Initialized OpenXR on SteamVR/OpenXR runtime version 2.6.2
+LogInit: ExecutableName: MetaCastBachelor.exe
+LogInit: Build: ++UE5+Release-5.3-CL-29314046
+LogInit: Engine Version: 5.3.2-29314046+++UE5+Release-5.3
+LogInit: Compatible Engine Version: 5.3.0-27405482+++UE5+Release-5.3
+LogInit: Net CL: 27405482
+LogInit: OS: Windows 10 (22H2) [10.0.19045.4651] (), CPU: Intel(R) Core(TM) i9-10900X CPU @ 3.70GHz, GPU: NVIDIA GeForce RTX 3090
+LogInit: Compiled (64-bit): Nov  3 2023 16:20:53
+LogInit: Architecture: x64
+LogInit: Compiled with Visual C++: 19.36.32537.00
+LogInit: Build Configuration: Development
+LogInit: Branch Name: ++UE5+Release-5.3
+LogInit: Command Line: 
+LogInit: Base Directory: D:/UnrealProjects/MetaCastBachelor/Builds/Windows/MetaCastBachelor/Binaries/Win64/
+LogInit: Allocator: binned2
+LogInit: Installed Engine Build: 0
+LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no
+LogDevObjectVersion: Number of dev versions registered: 39
+LogDevObjectVersion:   Dev-Blueprints (B0D832E4-1F89-4F0D-ACCF-7EB736FD4AA2): 10
+LogDevObjectVersion:   Dev-Build (E1C64328-A22C-4D53-A36C-8E866417BD8C): 0
+LogDevObjectVersion:   Dev-Core (375EC13C-06E4-48FB-B500-84F0262A717E): 4
+LogDevObjectVersion:   Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40
+LogDevObjectVersion:   Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37
+LogDevObjectVersion:   Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3
+LogDevObjectVersion:   Dev-Networking (A4E4105C-59A1-49B5-A7C5-40C4547EDFEE): 0
+LogDevObjectVersion:   Dev-Online (39C831C9-5AE6-47DC-9A44-9C173E1C8E7C): 0
+LogDevObjectVersion:   Dev-Physics (78F01B33-EBEA-4F98-B9B4-84EACCB95AA2): 20
+LogDevObjectVersion:   Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0
+LogDevObjectVersion:   Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 47
+LogDevObjectVersion:   Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13
+LogDevObjectVersion:   Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3
+LogDevObjectVersion:   Dev-LoadTimes (C2A15278-BFE7-4AFE-6C17-90FF531DF755): 1
+LogDevObjectVersion:   Private-Geometry (6EACA3D4-40EC-4CC1-B786-8BED09428FC5): 3
+LogDevObjectVersion:   Dev-AnimPhys (29E575DD-E0A3-4627-9D10-D276232CDCEA): 17
+LogDevObjectVersion:   Dev-Anim (AF43A65D-7FD3-4947-9873-3E8ED9C1BB05): 15
+LogDevObjectVersion:   Dev-ReflectionCapture (6B266CEC-1EC7-4B8F-A30B-E4D90942FC07): 1
+LogDevObjectVersion:   Dev-Automation (0DF73D61-A23F-47EA-B727-89E90C41499A): 1
+LogDevObjectVersion:   FortniteMain (601D1886-AC64-4F84-AA16-D3DE0DEAC7D6): 111
+LogDevObjectVersion:   FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 2
+LogDevObjectVersion:   FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 10
+LogDevObjectVersion:   FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 11
+LogDevObjectVersion:   Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10
+LogDevObjectVersion:   Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1
+LogDevObjectVersion:   Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10
+LogDevObjectVersion:   Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41
+LogDevObjectVersion:   Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1
+LogDevObjectVersion:   Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1
+LogDevObjectVersion:   Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1
+LogDevObjectVersion:   UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 118
+LogDevObjectVersion:   UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 47
+LogDevObjectVersion:   UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8
+LogDevObjectVersion:   UE5-Dev-Cooker (26075A32-730F-4708-88E9-8C32F1599D05): 0
+LogDevObjectVersion:   Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2
+LogDevObjectVersion:   UE5-Dev-LWCRendering (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1
+LogDevObjectVersion:   Dev-RigVM (DC49959B-53C0-4DE7-9156-EA885E7C5D39): 2
+LogDevObjectVersion:   Dev-ControlRig (A7820CFB-20A7-4359-8C54-2C149623CF50): 27
+LogDevObjectVersion:   Dev-IKRig (F6DFBB78-BB50-A0E4-4018-B84D60CBAF23): 2
+LogInit: Presizing for max 2097152 objects, including 1 objects not considered by GC, pre-allocating 0 bytes for permanent pool.
+LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: true, Async Post Load: true
+LogStreaming: Display: AsyncLoading2 - Initialized
+LogInit: Object subsystem initialized
+LogConfig: Set CVar [[con.DebugEarlyDefault:1]]
+LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created
+LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created
+LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created
+LogConfig: Set CVar [[r.setres:1280x720]]
+LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created
+LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]]
+LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created
+LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created
+LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine]
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:None]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:None]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.Mobile.DisableVertexFog:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.Mobile.AllowDitheredLODTransition:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.Mobile.AllowSoftwareOcclusion:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.Mobile.VirtualTextures:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DiscardUnusedQuality:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.AllowOcclusionQueries:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.MinScreenRadiusForLights:0.030000]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.MinScreenRadiusForDepthPrepass:0.030000]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.MinScreenRadiusForCSMDepth:0.010000]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.PrecomputedVisibilityWarning:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.TextureStreaming:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[Compat.UseDXT5NormalMaps:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.VirtualTextures:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.VirtualTexturedLightmaps:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.VT.TileSize:128]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.VT.TileBorderSize:4]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.vt.FeedbackFactor:16]]
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.VT.EnableCompressZlib:1]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.VT.EnableCompressCrunch:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.ClearCoatNormal:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.ReflectionCaptureResolution:128]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.ReflectionEnvironmentLightmapMixBasedOnRoughness:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.ForwardShading:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.VertexFoggingForOpaque:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.AllowStaticLighting:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.NormalMapsForStaticLighting:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.DistanceFieldBuild.EightBit:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.GenerateLandscapeGIData:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.DistanceFieldBuild.Compress:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.TessellationAdaptivePixelsPerTriangle:48.000000]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.SeparateTranslucency:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.TranslucentSortPolicy:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[TranslucentSortAxis:(X=0.000000,Y=-1.000000,Z=0.000000)]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.CustomDepth:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.CustomDepthTemporalAAJitter:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.PostProcessing.PropagateAlpha:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.Bloom:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.AmbientOcclusion:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.AmbientOcclusionStaticFraction:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.Method:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.Bias:1.000000]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.EyeAdaptation.EditorOnly:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:1.0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:1.0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.MotionBlur:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.LensFlare:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.TemporalAA.Upsampling:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.SSGI.Enable:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.AntiAliasingMethod:3]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.LightUnits:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultBackBufferPixelFormat:4]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.Shadow.UnbuiltPreviewInGame:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.StencilForLODDither:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.EarlyZPass:3]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.EarlyZPassOnlyMaterialMasking:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.DBuffer:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.ClearSceneMethod:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.VelocityOutputPass:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Velocity.EnableVertexDeformation:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SelectiveBasePassOutputs:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[bDefaultParticleCutouts:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[fx.GPUSimulationTextureSizeX:1024]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[fx.GPUSimulationTextureSizeY:1024]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.AllowGlobalClipPlane:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.GBufferFormat:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.MorphTarget.Mode:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[vr.InstancedStereo:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.MobileHDR:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[vr.MobileMultiView:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.UseHWsRGBEncoding:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[vr.RoundRobinOcclusion:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[vr.ODSCapture:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.MeshStreaming:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.WireframeCullThreshold:5.000000]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.RayTracing:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.RayTracing.UseTextureLod:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SupportStationarySkylight:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SupportLowQualityLightmaps:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SupportPointLightWholeSceneShadows:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[r.SupportAtmosphericFog:1]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SupportSkyAtmosphere:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SupportSkyAtmosphereAffectsHeightFog:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SkinCache.DefaultBehavior:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SkinCache.SceneMemoryLimitInMB:128.000000]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.EnableStaticAndCSMShadowReceivers:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.EnableMovableLightCSMShaderCulling:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.AllowDistanceFieldShadows:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.AllowMovableDirectionalLights:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[r.MobileNumDynamicPointLights:4]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[r.MobileDynamicPointLightsUseStaticBranch:1]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[r.Mobile.EnableMovableSpotlights:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.EnableMovableSpotlightsShadow:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.GPUSkin.Support16BitBoneIndex:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.GPUSkin.Limit2BoneInfluences:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SupportDepthOnlyIndexBuffers:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SupportReversedIndexBuffers:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[r.LightPropagationVolume:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.AmbientOcclusion:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.GPUSkin.UnlimitedBoneInfluences:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.GPUSkin.UnlimitedBoneInfluencesThreshold:8]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.PlanarReflectionMode:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[bStreamSkeletalMeshLODs:(Default=False,PerPlatform=())]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[bDiscardSkeletalMeshOptionalLODs:(Default=False,PerPlatform=())]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[VisualizeCalibrationCustomMaterialPath:None]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.AntiAliasing:3]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.FloatPrecisionMode:2]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.OpenGL.ForceDXC:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.ReflectionMethod:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.MSAACount:4]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.ShadingPath:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine]
+[2024.08.02-07.32.20:321][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]]
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[gc.SizeOfPermanentObjectPool:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.AllowParallelGC:1]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.CreateGCClusters:1]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.UseDisregardForGCOnDedicatedServers:0]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.MultithreadedDestructionEnabled:1]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.PendingKillEnabled:1]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine]
+[2024.08.02-07.32.20:322][  0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created
+[2024.08.02-07.32.20:322][  0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created
+[2024.08.02-07.32.20:340][  0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.FXAA.Quality:4]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.TSR.ShadingRejection.TileOverscan:3]]
+[2024.08.02-07.32.20:340][  0]LogConfig: CVar [[r.TSR.Velocity.Extrapolation:1]] deferred - dummy variable created
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.LightFunctionQuality:1]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.ShadowQuality:5]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.VolumetricFog:1]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.CapsuleShadows:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DistanceFieldAO:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.AOQuality:2]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.SSR.Quality:3]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapStrength:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.MotionBlurQuality:4]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.LensFlareQuality:2]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.BloomQuality:5]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.FastBlurThreshold:100]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Upscale.Quality:3]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.LightShaftQuality:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Filter.SizeScale:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2         ; lower gathering resolution]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1        ; higher gathering accumulator quality]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1          ; Median3x3 postfilering method]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0       ; no bokeh simulation when gathering]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4                 ; medium number of samples when gathering]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1    ; additive foreground scattering]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2    ; additive background scattering]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1      ; bokeh simulation when scattering]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1         ; only a maximum of 10% of scattered bokeh]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1                ; cheap slight out of focus]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0    ; no bokeh simulation on slight out of focus]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1                ; more stable temporal accumulation]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Streaming.MipBias:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Streaming.Boost:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.MaxAnisotropy:8]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.RefractionQuality:2]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SceneColorFormat:4]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.DetailMode:2]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SSS.Scale:1]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SSS.SampleSet:2]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SSS.Quality:1]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SSS.HalfRes:0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SSGI.Quality:3]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.ParticleLightQuality:2]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[foliage.DensityScale:1.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[grass.DensityScale:1.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]]
+[2024.08.02-07.32.20:342][  0]LogRHI: Using Default RHI: D3D12
+[2024.08.02-07.32.20:342][  0]LogRHI: Using Highest Feature Level of D3D12: SM6
+[2024.08.02-07.32.20:342][  0]LogRHI: Loading RHI module D3D12RHI
+[2024.08.02-07.32.20:346][  0]LogD3D12RHI: Aftermath initialized
+[2024.08.02-07.32.20:346][  0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64).
+[2024.08.02-07.32.20:346][  0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system.
+[2024.08.02-07.32.20:736][  0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3090 (VendorId: 10de, DeviceId: 2204, SubSysId: 38801028, Revision: 00a1
+[2024.08.02-07.32.20:736][  0]LogD3D12RHI:   Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported
+[2024.08.02-07.32.20:736][  0]LogD3D12RHI:   Adapter has 24340MB of dedicated video memory, 0MB of dedicated system memory, and 16238MB of shared system memory, 2 output[s]
+[2024.08.02-07.32.20:737][  0]LogD3D12RHI:   Driver Version: 546.09 (internal:31.0.15.4609, unified:546.09)
+[2024.08.02-07.32.20:737][  0]LogD3D12RHI:      Driver Date: 11-2-2023
+[2024.08.02-07.32.20:751][  0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000
+[2024.08.02-07.32.20:751][  0]LogD3D12RHI:   Max supported Feature Level 12_1, shader model 6.2, binding tier 3, wave ops supported, atomic64 unsupported
+[2024.08.02-07.32.20:751][  0]LogD3D12RHI:   Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16238MB of shared system memory, 0 output[s]
+[2024.08.02-07.32.20:751][  0]LogD3D12RHI: DirectX Agility SDK runtime found.
+[2024.08.02-07.32.20:751][  0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0
+[2024.08.02-07.32.20:751][  0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used.
+[2024.08.02-07.32.20:751][  0]LogInit: Selected Device Profile: [Windows]
+[2024.08.02-07.32.20:751][  0]LogHAL: Display: Platform has ~ 32 GB [34054676480 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0)
+[2024.08.02-07.32.20:751][  0]LogDeviceProfileManager: Going up to parent DeviceProfile []
+[2024.08.02-07.32.20:751][  0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini]
+[2024.08.02-07.32.20:751][  0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]]
+[2024.08.02-07.32.20:751][  0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]]
+[2024.08.02-07.32.20:751][  0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]]
+[2024.08.02-07.32.20:751][  0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine]
+[2024.08.02-07.32.20:751][  0]LogInit: Computer: ITC22160
+[2024.08.02-07.32.20:751][  0]LogInit: User: mp455017
+[2024.08.02-07.32.20:751][  0]LogInit: CPU Page size=4096, Cores=10
+[2024.08.02-07.32.20:751][  0]LogInit: High frequency timer resolution =10.000000 MHz
+[2024.08.02-07.32.20:751][  0]LogMemory: Memory total: Physical=31.7GB (32GB approx)
+[2024.08.02-07.32.20:751][  0]LogMemory: Platform Memory Stats for Windows
+[2024.08.02-07.32.20:751][  0]LogMemory: Process Physical Memory: 180.58 MB used, 193.02 MB peak
+[2024.08.02-07.32.20:751][  0]LogMemory: Process Virtual Memory: 154.72 MB used, 154.72 MB peak
+[2024.08.02-07.32.20:751][  0]LogMemory: Physical Memory: 25411.31 MB used,  7065.76 MB free, 32477.07 MB total
+[2024.08.02-07.32.20:751][  0]LogMemory: Virtual Memory: 70183.50 MB used,  12192.89 MB free, 82376.39 MB total
+[2024.08.02-07.32.20:751][  0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0"
+[2024.08.02-07.32.20:761][  0]LogWindows: WindowsPlatformFeatures enabled
+[2024.08.02-07.32.20:761][  0]LogInit: Physics initialised using underlying interface: Chaos
+[2024.08.02-07.32.20:762][  0]LogInit: Using OS detected language (en-US).
+[2024.08.02-07.32.20:763][  0]LogInit: Using OS detected locale (de-DE).
+[2024.08.02-07.32.20:763][  0]LogTextLocalizationManager: No specific localization for 'en-US' exists, so 'en' will be used for the language.
+[2024.08.02-07.32.20:763][  0]LogTextLocalizationManager: No localization for 'de-DE' exists, so 'en' will be used for the locale.
+[2024.08.02-07.32.20:835][  0]LogWindowsTextInputMethodSystem: Available input methods:
+[2024.08.02-07.32.20:835][  0]LogWindowsTextInputMethodSystem:   - English (United States) - (Keyboard).
+[2024.08.02-07.32.20:835][  0]LogWindowsTextInputMethodSystem:   - German (Germany) - (Keyboard).
+[2024.08.02-07.32.20:835][  0]LogWindowsTextInputMethodSystem:   - German (Germany) - Touch Input Correction (TSF IME).
+[2024.08.02-07.32.20:836][  0]LogWindowsTextInputMethodSystem: Activated input method: German (Germany) - (Keyboard).
+[2024.08.02-07.32.20:866][  0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0
+[2024.08.02-07.32.20:866][  0]LogSlate: Slate User Registered.  User Index 0, Is Virtual User: 0
+[2024.08.02-07.32.20:904][  0]LogRHI: Using Default RHI: D3D12
+[2024.08.02-07.32.20:904][  0]LogRHI: Using Highest Feature Level of D3D12: SM6
+[2024.08.02-07.32.20:904][  0]LogRHI: Loading RHI module D3D12RHI
+[2024.08.02-07.32.20:904][  0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system.
+[2024.08.02-07.32.20:904][  0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used.
+[2024.08.02-07.32.20:904][  0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6
+[2024.08.02-07.32.20:906][  0]LogWindows: Attached monitors:
+[2024.08.02-07.32.20:906][  0]LogWindows:     resolution: 1920x1080, work area: (1920, 0) -> (3840, 1040), device: '\\.\DISPLAY2'
+[2024.08.02-07.32.20:906][  0]LogWindows:     resolution: 1920x1080, work area: (0, 0) -> (1920, 1040), device: '\\.\DISPLAY1' [PRIMARY]
+[2024.08.02-07.32.20:906][  0]LogWindows: Found 2 attached monitors.
+[2024.08.02-07.32.20:906][  0]LogWindows: Gathering driver information using Windows Setup API
+[2024.08.02-07.32.20:906][  0]LogRHI: RHI Adapter Info:
+[2024.08.02-07.32.20:906][  0]LogRHI:             Name: NVIDIA GeForce RTX 3090
+[2024.08.02-07.32.20:906][  0]LogRHI:   Driver Version: 546.09 (internal:31.0.15.4609, unified:546.09)
+[2024.08.02-07.32.20:906][  0]LogRHI:      Driver Date: 11-2-2023
+[2024.08.02-07.32.20:906][  0]LogD3D12RHI:     GPU DeviceId: 0x2204 (for the marketing name, search the web for "GPU Device Id")
+[2024.08.02-07.32.20:906][  0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off
+[2024.08.02-07.32.20:921][  0]LogD3D12RHI: [Aftermath] Aftermath crash dumping enabled
+[2024.08.02-07.32.20:921][  0]LogD3D12RHI: [DRED] Dred breadcrumb context enabled
+[2024.08.02-07.32.20:922][  0]LogD3D12RHI: [DRED] Using lightweight DRED.
+[2024.08.02-07.32.20:922][  0]LogD3D12RHI: Emitting draw events for PIX profiling.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: [Aftermath] Aftermath enabled and primed
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: [Aftermath] Aftermath resource tracking enabled
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device1 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device2 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device3 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device4 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device5 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device6 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device7 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device8 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device9 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device10 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device11 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device12 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: Bindless resources are supported
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: Stencil ref from pixel shader is not supported
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32).
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: Mesh shader tier 1.0 is supported
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: AtomicInt64OnTypedResource is supported
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: AtomicInt64OnGroupShared is supported
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported
+[2024.08.02-07.32.21:237][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (3D)
+[2024.08.02-07.32.21:238][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Copy)
+[2024.08.02-07.32.21:240][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Compute)
+[2024.08.02-07.32.21:274][  0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0
+[2024.08.02-07.32.21:274][  0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0
+[2024.08.02-07.32.21:275][  0]LogRHI: Texture pool is 14850 MB (70% of 21214 MB)
+[2024.08.02-07.32.21:275][  0]LogD3D12RHI: Async texture creation enabled
+[2024.08.02-07.32.21:275][  0]LogD3D12RHI: RHI has support for 64 bit atomics
+[2024.08.02-07.32.21:318][  0]LogVRS: Current RHI supports Variable Rate Shading
+[2024.08.02-07.32.21:336][  0]LogRendererCore: Ray tracing is disabled. Reason: disabled through project setting (r.RayTracing=0).
+[2024.08.02-07.32.21:337][  0]LogShaderLibrary: Display: Using IoDispatcher for shader code library Global. Total 4019 unique shaders.
+[2024.08.02-07.32.21:337][  0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library Global
+[2024.08.02-07.32.21:337][  0]LogShaderLibrary: Display: Logical shader library 'Global' has been created as a monolithic library
+[2024.08.02-07.32.21:337][  0]LogShaderLibrary: Display: Tried to open shader library 'Global_SC', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:337][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRigSpline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:337][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosClothEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:338][  0]LogShaderLibrary: Display: Tried to open shader library 'BlueprintHeaderView', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:338][  0]LogShaderLibrary: Display: Tried to open shader library 'Paper2D', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:338][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosNiagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:338][  0]LogShaderLibrary: Display: Tried to open shader library 'MovieRenderPipeline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:338][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:338][  0]LogShaderLibrary: Display: Tried to open shader library 'ConsoleVariables', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:339][  0]LogShaderLibrary: Display: Tried to open shader library 'IKRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:339][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosSolverPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:339][  0]LogShaderLibrary: Display: Tried to open shader library 'ObjectMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:339][  0]LogShaderLibrary: Display: Tried to open shader library 'AnimationSharing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:339][  0]LogShaderLibrary: Display: Tried to open shader library 'ToolPresets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:340][  0]LogShaderLibrary: Display: Tried to open shader library 'Composure', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:340][  0]LogShaderLibrary: Display: Tried to open shader library 'Bridge', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:340][  0]LogShaderLibrary: Display: Tried to open shader library 'ConcertSyncClient', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:340][  0]LogShaderLibrary: Display: Tried to open shader library 'ColorCorrectRegions', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:340][  0]LogShaderLibrary: Display: Tried to open shader library 'SpeedTreeImporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryMode', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'ACLPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'SequencerScripting', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'MultiUserTakes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'LightMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioSynesthesia', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXRHandTracking', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'Takes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'Switchboard', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioWidgets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXR', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryProcessing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'GLTFExporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'TraceUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'Kdtree', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'CameraCalibrationCore', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplayModularFeatures', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'GPUPointCloudRenderer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplay', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenColorIO', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'Synthesis', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'WaveTable', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'ResonanceAudio', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'RigVM', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosCaching', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'RWTHVRToolkit', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaCompositing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'Metasound', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'VirtualProductionUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaPlate', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryCollectionPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'Dataflow', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'PythonScriptPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'FullBodyIK', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'Niagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:343][  0]LogShaderLibrary: Display: Tried to open shader library 'UVEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:343][  0]LogShaderLibrary: Display: Tried to open shader library 'VPRoles', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:343][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenCV', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:343][  0]LogShaderLibrary: Display: Tried to open shader library 'Interchange', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:343][  0]LogShaderLibrary: Display: Tried to open shader library 'DatasmithContent', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:343][  0]LogShaderLibrary: Display: Tried to open shader library 'VPSettings', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:343][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXREyeTracker', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:343][  0]LogTemp: Display: Clearing the OS Cache
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: --- StereoAspects begin ---
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: Platform=PCD3D_SM6 (49)
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bInstancedStereo = 1
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bMobilePlatform = 0
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bMobilePostprocessing = 0
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bMobileMultiView = 1
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bMultiViewportCapable = 1
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bInstancedStereoNative = 1
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: ---
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bMobileMultiViewCoreSupport = 0
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bMobileMultiViewNative = 0
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bMobileMultiViewFallback = 0
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: ---
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bInstancedMultiViewportEnabled = 1
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bInstancedStereoEnabled = 1
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bMobileMultiViewEnabled = 0
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: --- StereoAspects end ---
+[2024.08.02-07.32.21:366][  0]LogInit: XR: Instanced Stereo Rendering is Enabled
+[2024.08.02-07.32.21:366][  0]LogInit: XR: MultiViewport is Enabled
+[2024.08.02-07.32.21:366][  0]LogInit: XR: Mobile Multiview is Disabled
+[2024.08.02-07.32.21:371][  0]LogSlate: Using FreeType 2.10.0
+[2024.08.02-07.32.21:371][  0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1
+[2024.08.02-07.32.21:498][  0]LogShaderLibrary: Display: Tried to open shader library 'Paper2D', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:498][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/2D/Paper2D/Content/' mounted to '/Paper2D/'
+[2024.08.02-07.32.21:498][  0]LogShaderLibrary: Display: Tried to open shader library 'ACLPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:498][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ACLPlugin/Content/' mounted to '/ACLPlugin/'
+[2024.08.02-07.32.21:498][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRigSpline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRigSpline/Content/' mounted to '/ControlRigSpline/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRig/Content/' mounted to '/ControlRig/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'IKRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/IKRig/Content/' mounted to '/IKRig/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'Bridge', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Bridge/Content/' mounted to '/Bridge/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'Composure', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/Composure/Content/' mounted to '/Composure/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenColorIO', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/OpenColorIO/Content/' mounted to '/OpenColorIO/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'AnimationSharing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/AnimationSharing/Content/' mounted to '/AnimationSharing/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'ConcertSyncClient', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/' mounted to '/ConcertSyncClient/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'BlueprintHeaderView', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/BlueprintHeaderView/Content/' mounted to '/BlueprintHeaderView/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'ConsoleVariables', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ConsoleVariablesEditor/Content/' mounted to '/ConsoleVariables/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryMode', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/GeometryMode/Content/' mounted to '/GeometryMode/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'LightMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/LightMixer/Content/' mounted to '/LightMixer/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'ObjectMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/ObjectMixer/Content/' mounted to '/ObjectMixer/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'SpeedTreeImporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/SpeedTreeImporter/Content/' mounted to '/SpeedTreeImporter/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'UVEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/UVEditor/Content/' mounted to '/UVEditor/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'DatasmithContent', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/DatasmithContent/Content/' mounted to '/DatasmithContent/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'GLTFExporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/GLTFExporter/Content/' mounted to '/GLTFExporter/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosCaching', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosCaching/Content/' mounted to '/ChaosCaching/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosClothEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosClothEditor/Content/' mounted to '/ChaosClothEditor/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosNiagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosNiagara/Content/' mounted to '/ChaosNiagara/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosSolverPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosSolverPlugin/Content/' mounted to '/ChaosSolverPlugin/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'ColorCorrectRegions', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ColorCorrectRegions/Content/' mounted to '/ColorCorrectRegions/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'Dataflow', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Dataflow/Content/' mounted to '/Dataflow/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'FullBodyIK', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/FullBodyIK/Content/' mounted to '/FullBodyIK/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryCollectionPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/GeometryCollectionPlugin/Content/' mounted to '/GeometryCollectionPlugin/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'PythonScriptPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/PythonScriptPlugin/Content/' mounted to '/PythonScriptPlugin/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'ToolPresets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ToolPresets/Content/' mounted to '/ToolPresets/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'VirtualProductionUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProductionUtilities/Content/' mounted to '/VirtualProductionUtilities/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'VPRoles', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPRoles/Content/' mounted to '/VPRoles/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'VPSettings', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPSettings/Content/' mounted to '/VPSettings/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'Niagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/FX/Niagara/Content/' mounted to '/Niagara/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'Interchange', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Interchange/Runtime/Content/' mounted to '/Interchange/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaCompositing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaCompositing/Content/' mounted to '/MediaCompositing/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaPlate', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaPlate/Content/' mounted to '/MediaPlate/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'MovieRenderPipeline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/MovieRenderPipeline/Content/' mounted to '/MovieRenderPipeline/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'SequencerScripting', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/SequencerScripting/Content/' mounted to '/SequencerScripting/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioSynesthesia', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioSynesthesia/Content/' mounted to '/AudioSynesthesia/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioWidgets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioWidgets/Content/' mounted to '/AudioWidgets/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryProcessing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/GeometryProcessing/Content/' mounted to '/GeometryProcessing/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'Metasound', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Metasound/Content/' mounted to '/Metasound/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenCV', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenCV/Content/' mounted to '/OpenCV/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXREyeTracker', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXREyeTracker/Content/' mounted to '/OpenXREyeTracker/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXRHandTracking', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXRHandTracking/Content/' mounted to '/OpenXRHandTracking/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXR', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXR/Content/' mounted to '/OpenXR/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'ResonanceAudio', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/ResonanceAudio/Content/' mounted to '/ResonanceAudio/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'RigVM', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/RigVM/Content/' mounted to '/RigVM/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'Synthesis', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Synthesis/Content/' mounted to '/Synthesis/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'WaveTable', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/WaveTable/Content/' mounted to '/WaveTable/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplayModularFeatures', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplayModularFeatures/Content/' mounted to '/nDisplayModularFeatures/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplay', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplay/Content/' mounted to '/nDisplay/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'TraceUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/TraceUtilities/Content/' mounted to '/TraceUtilities/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'CameraCalibrationCore', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/CameraCalibrationCore/Content/' mounted to '/CameraCalibrationCore/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'MultiUserTakes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/MultiUserTakes/Content/' mounted to '/MultiUserTakes/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'Switchboard', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Switchboard/Content/' mounted to '/Switchboard/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'Takes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Takes/Content/' mounted to '/Takes/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'GPUPointCloudRenderer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UE4_GPUPointCloudRenderer/Content/' mounted to '/GPUPointCloudRenderer/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'Kdtree', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UEPlugin-Kdtree/Kdtree/Content/' mounted to '/Kdtree/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'RWTHVRToolkit', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/rwth-vr-toolkit-with-meta-cast/Content/' mounted to '/RWTHVRToolkit/'
+[2024.08.02-07.32.21:502][  0]LogShaderLibrary: Display: Using IoDispatcher for shader code library MetaCastBachelor. Total 2223 unique shaders.
+[2024.08.02-07.32.21:502][  0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library MetaCastBachelor
+[2024.08.02-07.32.21:502][  0]LogShaderLibrary: Display: Logical shader library 'MetaCastBachelor' has been created as a monolithic library
+[2024.08.02-07.32.21:502][  0]LogRHI: Could not open FPipelineCacheFile: ../../../MetaCastBachelor/Content/PipelineCaches/Windows/MetaCastBachelor_PCD3D_SM6.stable.upipelinecache
+[2024.08.02-07.32.21:502][  0]LogRHI: Could not open FPipelineCacheFile: ../../../MetaCastBachelor/Content/PipelineCaches/Windows/MetaCastBachelor_PCD3D_SM6.stable.upipelinecache
+[2024.08.02-07.32.21:502][  0]LogShaderLibrary: Display: Tried to open again shader library 'MetaCastBachelor', but could not find new components for it (existing components: 1).
+[2024.08.02-07.32.21:503][  0]LogRHI: Could not open FPipelineCacheFile: ../../../MetaCastBachelor/Content/PipelineCaches/Windows/MetaCastBachelor_PCD3D_SM6.stable.upipelinecache
+[2024.08.02-07.32.21:503][  0]LogInit: Using OS detected language (en-US).
+[2024.08.02-07.32.21:503][  0]LogInit: Using OS detected locale (de-DE).
+[2024.08.02-07.32.21:503][  0]LogTextLocalizationManager: No localization for 'en-US' exists, so 'en' will be used for the language.
+[2024.08.02-07.32.21:503][  0]LogTextLocalizationManager: No localization for 'de-DE' exists, so 'en' will be used for the locale.
+[2024.08.02-07.32.21:504][  0]LogAssetRegistry: FAssetRegistry took 0.0003 seconds to start up
+[2024.08.02-07.32.21:675][  0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages
+[2024.08.02-07.32.21:678][  0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found.
+[2024.08.02-07.32.21:678][  0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found.
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: Available device profiles:
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF1180][000001C97B19AAC0 66] GlobalDefaults, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0E80][000001C97ADB0010 66] Windows, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0D00][000001C97ADB9250 66] WindowsEditor, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0A00][000001C97C04DB70 66] WindowsServer, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0700][000001C97C04B6E0 66] WindowsClient, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0580][000001C97C049250 66] IOS, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0400][000001C97C046DC0 66] iPadAir2, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0280][000001C97C044930 66] IPadPro, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0100][000001C97C0424A0 66] iPadAir3, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF6280][000001C97C040010 66] iPadAir4, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF6100][000001C97C05DB70 66] iPadAir5, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5F80][000001C97C05B6E0 66] iPadMini4, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5E00][000001C97C059250 66] iPadMini5, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5C80][000001C97C056DC0 66] iPadMini6, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5B00][000001C97C054930 66] iPhone6S, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5980][000001C97C0524A0 66] iPhone7, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5800][000001C97C050010 66] iPodTouch7, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5680][000001C97C06DB70 66] iPhone6SPlus, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5500][000001C97C06B6E0 66] iPhone7Plus, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5380][000001C97C069250 66] iPhoneSE, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5200][000001C97C066DC0 66] iPhone8, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5080][000001C97C064930 66] iPhone8Plus, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4F00][000001C97C0624A0 66] iPhoneX, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0B80][000001C97C060010 66] iPhoneXS, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0880][000001C97C07DB70 66] iPhoneXSMax, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4D80][000001C97C07B6E0 66] iPhoneXR, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4C00][000001C97C079250 66] iPhone11, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4A80][000001C97C076DC0 66] iPhone11Pro, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4900][000001C97C074930 66] iPhone11ProMax, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4780][000001C97C0724A0 66] iPhoneSE2, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4600][000001C97C070010 66] iPhone12Mini, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4480][000001C97C08DB70 66] iPhone12, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4300][000001C97C08B6E0 66] iPhone12Pro, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4180][000001C97C089250 66] iPhone12ProMax, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4000][000001C97C086DC0 66] iPhone13Mini, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF3E80][000001C97C084930 66] iPhone13, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF3D00][000001C97C0824A0 66] iPhone13Pro, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF3B80][000001C97C080010 66] iPhone13ProMax, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF3A00][000001C97C09DB70 66] iPhoneSE3, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF3880][000001C97C09B6E0 66] iPhone14, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF3700][000001C97C099250 66] iPhone14Plus, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF3580][000001C97C096DC0 66] iPhone14Pro, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF3400][000001C97C094930 66] iPhone14ProMax, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF3280][000001C97C0924A0 66] iPhone15, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF9400][000001C97C090010 66] iPhone15Plus, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF9280][000001C97C0ADB70 66] iPhone15Pro, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF9100][000001C97C0AB6E0 66] iPhone15ProMax, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8F80][000001C97C0A9250 66] iPadPro105, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8E00][000001C97C0A6DC0 66] iPadPro129, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8C80][000001C97C0A4930 66] iPadPro97, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8B00][000001C97C0A24A0 66] iPadPro2_129, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8980][000001C97C0A0010 66] iPad5, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8800][000001C97C0BDB70 66] iPad6, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8680][000001C97C0BB6E0 66] iPad7, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8500][000001C97C0B9250 66] iPad8, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8380][000001C97C0B6DC0 66] iPad9, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8200][000001C97C0B4930 66] iPad10, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8080][000001C97C0B24A0 66] iPadPro11, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7F00][000001C97C0B0010 66] iPadPro2_11, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7D80][000001C97C0CDB70 66] iPadPro3_11, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7C00][000001C97C0CB6E0 66] iPadPro4_11, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7A80][000001C97C0C9250 66] iPadPro3_129, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7900][000001C97C0C6DC0 66] iPadPro4_129, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7780][000001C97C0C4930 66] iPadPro5_129, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7600][000001C97C0C24A0 66] iPadPro6_129, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7480][000001C97C0C0010 66] AppleTV, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7300][000001C97C0DDB70 66] AppleTV4K, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7180][000001C97C0DB6E0 66] AppleTV2_4K, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7000][000001C97C0D9250 66] TVOS, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF6E80][000001C97C0D6DC0 66] Mac, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF6D00][000001C97C0D4930 66] MacEditor, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF6B80][000001C97C0D24A0 66] MacClient, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF6A00][000001C97C0D0010 66] MacServer, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF6880][000001C97C0EDB70 66] Linux, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF6700][000001C97C0EB6E0 66] LinuxEditor, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF6580][000001C97C0E9250 66] LinuxArm64Editor, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF6400][000001C97C0E6DC0 66] LinuxArm64, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFC580][000001C97C0E4930 66] LinuxClient, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFC400][000001C97C0E24A0 66] LinuxArm64Client, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFC280][000001C97C0E0010 66] LinuxServer, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFC100][000001C97C0FDB70 66] LinuxArm64Server, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFBF80][000001C97C0FB6E0 66] Android, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFBE00][000001C97C0F9250 66] Android_Preview_OpenGL, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFBC80][000001C97C0F6DC0 66] Android_Preview_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFBB00][000001C97C0F4930 66] Android_Low, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFB980][000001C97C0F24A0 66] Android_Mid, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFB800][000001C97C0F0010 66] Android_High, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFB680][000001C97C10DB70 66] Android_Default, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFB500][000001C97C10B6E0 66] Android_Adreno4xx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFB380][000001C97C109250 66] Android_Adreno5xx_Low, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFB200][000001C97C106DC0 66] Android_Adreno5xx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFB080][000001C97C104930 66] Android_Adreno6xx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFAF00][000001C97C1024A0 66] Android_Adreno6xx_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFAD80][000001C97C100010 66] Android_Adreno7xx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFAC00][000001C97C11DB70 66] Android_Adreno7xx_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFAA80][000001C97C11B6E0 66] Android_Mali_T6xx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFA900][000001C97C119250 66] Android_Mali_T7xx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFA780][000001C97C116DC0 66] Android_Mali_T8xx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFA600][000001C97C114930 66] Android_Mali_G71, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFA480][000001C97C1124A0 66] Android_Mali_G72, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFA300][000001C97C110010 66] Android_Mali_G72_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFA180][000001C97C14DB70 66] Android_Mali_G76, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFA000][000001C97C14B6E0 66] Android_Mali_G76_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF9E80][000001C97C149250 66] Android_Mali_G77, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF9D00][000001C97C146DC0 66] Android_Mali_G77_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF9B80][000001C97C144930 66] Android_Mali_G78, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF9A00][000001C97C1424A0 66] Android_Mali_G78_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF9880][000001C97C140010 66] Android_Mali_G710, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF9700][000001C97C15DB70 66] Android_Mali_G710_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF9580][000001C97C15B6E0 66] Android_Mali_G7xx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFF700][000001C97C159250 66] Android_Mali_G7xx_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFF580][000001C97C156DC0 66] Android_Xclipse_920, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFF400][000001C97C154930 66] Android_Xclipse_920_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFF280][000001C97C1524A0 66] Android_Vulkan_SM5, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFF100][000001C97C150010 66] Android_PowerVR_G6xxx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFEF80][000001C97C16DB70 66] Android_PowerVR_GT7xxx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFEE00][000001C97C16B6E0 66] Android_PowerVR_GE8xxx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFEC80][000001C97C169250 66] Android_PowerVR_GM9xxx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFEB00][000001C97C166DC0 66] Android_PowerVR_GM9xxx_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFE980][000001C97C164930 66] Android_TegraK1, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFE800][000001C97C1624A0 66] Android_Unknown_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFE680][000001C97C160010 66] Oculus_Quest, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFE500][000001C97C17DB70 66] Oculus_Quest2, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFE380][000001C97C17B6E0 66] Meta_Quest_Pro, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFE200][000001C97C179250 66] Meta_Quest_3, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFE080][000001C97C176DC0 66] HoloLens, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFDF00][000001C97C174930 66] MagicLeap_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: Active device profile: [000001C97BFF0E80][000001C97ADB0010 66] Windows
+[2024.08.02-07.32.21:681][  0]LogCsvProfiler: Display: Metadata set : deviceprofile="Windows"
+[2024.08.02-07.32.22:034][  0]LogTextureEncodingSettings: Display: Texture Encode Speed: Final (cook).
+[2024.08.02-07.32.22:035][  0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal
+[2024.08.02-07.32.22:035][  0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled
+[2024.08.02-07.32.22:094][  0]LogPackageLocalizationCache: Processed 62 localized package path(s) for 1 prioritized culture(s) in 0.000171 seconds
+[2024.08.02-07.32.22:156][  0]LogStaticMesh: [SM_LightCardPlane] Mesh is marked for CPU read.
+[2024.08.02-07.32.22:158][  0]LogStaticMesh: [plane_hd_1x1] Mesh is marked for CPU read.
+[2024.08.02-07.32.22:169][  0]LogConfig: Warning: FConfigCacheIni::LoadFile failed loading file as it was 0 size.  Filename was:  ../../../MetaCastBachelor/Config/Demo.ini
+[2024.08.02-07.32.22:176][  0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
+[2024.08.02-07.32.22:176][  0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
+[2024.08.02-07.32.22:247][  0]LogMoviePlayer: Initializing movie player
+[2024.08.02-07.32.22:250][  0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 4F0ECDA0472BF84A4BC5B1B950CAFBB0 | Instance: 031E5A4C43A47167CF05F5863FB9DA37 (ITC22160-18964).
+[2024.08.02-07.32.22:286][  0]LogAudio: Display: Registering Engine Module Parameter Interfaces...
+[2024.08.02-07.32.22:287][  0]LogMetasoundEngine: MetaSound Engine Initialized
+[2024.08.02-07.32.22:291][  0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance
+[2024.08.02-07.32.22:291][  0]LogSlateStyle: Warning: Missing Resource from 'CoreStyle' Style: 'Unable to find Brush 'Sequencer.Timeline.VanillaScrubHandleDown'.'
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterModule: Instantiating subsystem managers...
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registering factory for rendering device type: dc_dev_mono
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registered factory for rendering device type: dc_dev_mono
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registering factory for rendering device type: quad_buffer_stereo
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registered factory for rendering device type: quad_buffer_stereo
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registering factory for rendering device type: dc_dev_side_by_side
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registered factory for rendering device type: dc_dev_side_by_side
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registering factory for rendering device type: dc_dev_top_bottom
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registered factory for rendering device type: dc_dev_top_bottom
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registering factory for synchronization policy: none
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registered factory for synchronization policy: none
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registering factory for synchronization policy: ethernet
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registered factory for synchronization policy: ethernet
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registering factory for synchronization policy: ethernet_barrier
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registered factory for synchronization policy: ethernet_barrier
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registering factory for synchronization policy: nvidia
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registered factory for synchronization policy: nvidia
+[2024.08.02-07.32.22:292][  0]LogDisplayClusterModule: DisplayCluster module has been started
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjectionVIOSO: VIOSO API(1,6,19,90) was initialized from file '../../../Engine/Plugins/Runtime/nDisplay/ThirdParty/VIOSO/DLL/ViosoWarpBlend64.dll'.
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Projection module has been instantiated
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Projection module startup
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Registering <camera> projection policy factory...
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registering factory for projection type: camera
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registered factory for projection type: camera
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Registering <domeprojection> projection policy factory...
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registering factory for projection type: domeprojection
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registered factory for projection type: domeprojection
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Registering <easyblend> projection policy factory...
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registering factory for projection type: easyblend
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registered factory for projection type: easyblend
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Registering <link> projection policy factory...
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registering factory for projection type: link
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registered factory for projection type: link
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Registering <manual> projection policy factory...
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registering factory for projection type: manual
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registered factory for projection type: manual
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Registering <mpcdi> projection policy factory...
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registering factory for projection type: mpcdi
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registered factory for projection type: mpcdi
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Registering <mesh> projection policy factory...
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registering factory for projection type: mesh
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registered factory for projection type: mesh
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Registering <simple> projection policy factory...
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registering factory for projection type: simple
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registered factory for projection type: simple
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Registering <vioso> projection policy factory...
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registering factory for projection type: vioso
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registered factory for projection type: vioso
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Projection module has started
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRemoteControlInterceptor: DisplayClusterRemoteControlInterceptor has been registered
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterMedia: Starting module 'DisplayClusterMedia'...
+[2024.08.02-07.32.22:297][  0]GPUPointCloudRenderer: //////////////////////////////////////////// 
+
+[2024.08.02-07.32.22:297][  0]GPUPointCloudRenderer: // Initializing GPU Point Cloud Renderer... 
+
+[2024.08.02-07.32.22:297][  0]GPUPointCloudRenderer: //////////////////////////////////////////// 
+
+[2024.08.02-07.32.22:308][  0]LogUObjectArray: 25084 objects as part of root set at end of initial load.
+[2024.08.02-07.32.22:308][  0]LogUObjectArray: 4 objects are not in the root set, but can never be destroyed because they are in the DisregardForGC set.
+[2024.08.02-07.32.22:308][  0]LogUObjectAllocator: 5582112 out of 0 bytes used by permanent object pool.
+[2024.08.02-07.32.22:308][  0]LogUObjectArray: CloseDisregardForGC: 25084/25084 objects in disregard for GC pool
+[2024.08.02-07.32.22:321][  0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 24348 public script object entries (639.99 KB)
+[2024.08.02-07.32.22:321][  0]LogStreaming: Display: AsyncLoading2 - Thread Started: true, IsInitialLoad: false
+[2024.08.02-07.32.22:322][  0]LogEngine: Initializing Engine...
+[2024.08.02-07.32.22:351][  0]LogHMD: HMD configured for shader platform PCD3D_SM6, bIsMobileMultiViewEnabled=0, bProjectionLayerAlphaEnabled=0
+[2024.08.02-07.32.22:943][  0]LogStats: UGameplayTagsManager::InitializeManager -  0.000 s
+[2024.08.02-07.32.22:950][  0]LogInit: Initializing FReadOnlyCVARCache
+[2024.08.02-07.32.22:950][  0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use.
+[2024.08.02-07.32.22:950][  0]LogInit: Texture streaming: Enabled
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: Initializing Audio Device Manager...
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: Loading Default Audio Settings Objects...
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load).
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: AudioInfo: 'BINKA' Registered
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: AudioInfo: 'PCM' Registered
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: AudioInfo: 'ADPCM' Registered
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: AudioInfo: 'OGG' Registered
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: AudioInfo: 'OPUS' Registered
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: Audio Device Manager Initialized
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: Creating Audio Device:                 Id: 1, Scope: Shared, Realtime: True
+[2024.08.02-07.32.22:951][  0]LogAudioMixer: Display: Audio Mixer Platform Settings:
+[2024.08.02-07.32.22:951][  0]LogAudioMixer: Display: 	Sample Rate:						  48000
+[2024.08.02-07.32.22:951][  0]LogAudioMixer: Display: 	Callback Buffer Frame Size Requested: 1024
+[2024.08.02-07.32.22:951][  0]LogAudioMixer: Display: 	Callback Buffer Frame Size To Use:	  1024
+[2024.08.02-07.32.22:951][  0]LogAudioMixer: Display: 	Number of buffers to queue:			  1
+[2024.08.02-07.32.22:951][  0]LogAudioMixer: Display: 	Max Channels (voices):				  32
+[2024.08.02-07.32.22:951][  0]LogAudioMixer: Display: 	Number of Async Source Workers:		  4
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: AudioDevice MaxSources: 32
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: Audio Spatialization Plugin: None (built-in).
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: Audio Reverb Plugin: None (built-in).
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: Audio Occlusion Plugin: None (built-in).
+[2024.08.02-07.32.22:966][  0]LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded.
+[2024.08.02-07.32.22:967][  0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2'
+[2024.08.02-07.32.23:050][  0]LogAudioMixer: Display: Using Audio Hardware Device Lautsprecher (3- Realtek USB2.0 Audio)
+[2024.08.02-07.32.23:051][  0]LogAudioMixer: Display: Initializing Sound Submixes...
+[2024.08.02-07.32.23:052][  0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault'
+[2024.08.02-07.32.23:052][  0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault'
+[2024.08.02-07.32.23:053][  0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1
+[2024.08.02-07.32.23:053][  0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1
+[2024.08.02-07.32.23:054][  0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1
+[2024.08.02-07.32.23:054][  0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1
+[2024.08.02-07.32.23:054][  0]LogInit: FAudioDevice initialized with ID 1.
+[2024.08.02-07.32.23:054][  0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1
+[2024.08.02-07.32.23:054][  0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1"
+[2024.08.02-07.32.23:055][  0]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created!
+[2024.08.02-07.32.23:055][  0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
+[2024.08.02-07.32.23:057][  0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'.
+[2024.08.02-07.32.23:058][  0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
+[2024.08.02-07.32.23:058][  0]LogInit: Display: Game Engine Initialized.
+[2024.08.02-07.32.23:059][  0]LogWindows: Attached monitors:
+[2024.08.02-07.32.23:060][  0]LogWindows:     resolution: 1920x1080, work area: (1920, 0) -> (3840, 1040), device: '\\.\DISPLAY2'
+[2024.08.02-07.32.23:060][  0]LogWindows:     resolution: 1920x1080, work area: (0, 0) -> (1920, 1040), device: '\\.\DISPLAY1' [PRIMARY]
+[2024.08.02-07.32.23:060][  0]LogWindows: Found 2 attached monitors.
+[2024.08.02-07.32.23:060][  0]LogWindows: Gathering driver information using Windows Setup API
+[2024.08.02-07.32.23:060][  0]LogInit: Display: Starting Game.
+[2024.08.02-07.32.23:060][  0]LogNet: Browse: /Game/Maps/Login?Name=Player
+[2024.08.02-07.32.23:060][  0]LogLoad: LoadMap: /Game/Maps/Login?Name=Player
+[2024.08.02-07.32.23:060][  0]LogWorld: BeginTearingDown for /Temp/Untitled_0
+[2024.08.02-07.32.23:060][  0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true
+[2024.08.02-07.32.23:060][  0]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.32.23:065][  0]LogRHI: Display: Encountered a new compute PSO: 108100765
+[2024.08.02-07.32.23:068][  0]LogRHI: Display: Encountered a new compute PSO: 3044213281
+[2024.08.02-07.32.23:069][  0]LogRHI: Display: Encountered a new compute PSO: 3441300143
+[2024.08.02-07.32.23:077][  0]LogStreaming: Display: 0.001 ms for processing 44 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 0 (163->163) packages and 0 (167->167) public exports.
+[2024.08.02-07.32.23:077][  0]LogAudio: Display: Audio Device unregistered from world 'None'.
+[2024.08.02-07.32.23:080][  0]LogUObjectHash: Compacting FUObjectHashTables data took   0.83ms
+[2024.08.02-07.32.23:112][  0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Login'.
+[2024.08.02-07.32.23:112][  0]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created!
+[2024.08.02-07.32.23:112][  0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
+[2024.08.02-07.32.23:114][  0]LogAIModule: Creating AISystem for world Login
+[2024.08.02-07.32.23:133][  0]LogRHI: Display: Encountered a new compute PSO: 1624740199
+[2024.08.02-07.32.23:133][  0]LogRHI: Display: Encountered a new compute PSO: 3081443093
+[2024.08.02-07.32.23:134][  0]LogRHI: Display: Encountered a new compute PSO: 434897211
+[2024.08.02-07.32.23:150][  0]LogLoad: Game class is 'VRGameMode_C'
+[2024.08.02-07.32.23:151][  0]LogWorld: Bringing World /Game/Maps/Login.Login up for play (max tick rate 0) at 2024.08.02-09.32.23
+[2024.08.02-07.32.23:152][  0]LogWorld: Bringing up level for play took: 0.001575
+[2024.08.02-07.32.23:152][  0]LogGameMode: FindPlayerStart: PATHS NOT DEFINED or NO PLAYERSTART with positive rating
+[2024.08.02-07.32.23:157][  0]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1
+[2024.08.02-07.32.23:157][  0]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.32.23:160][  0]LogSlate: Took 0.000505 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoRegular.ufont' (155K)
+[2024.08.02-07.32.23:161][  0]vr.PixelDensity = "1"
+[2024.08.02-07.32.23:161][  0]LogLoad: Took 0.101720 seconds to LoadMap(/Game/Maps/Login)
+[2024.08.02-07.32.23:162][  0]LogSlate: Took 0.000406 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoBold.ufont' (160K)
+[2024.08.02-07.32.23:162][  0]LogViewport: Scene viewport resized to 1920x1080, mode WindowedFullscreen.
+[2024.08.02-07.32.23:166][  0]LogHMD: Warning: Requesting 10 bit swapchain, but not supported: fall back to 8bpc
+[2024.08.02-07.32.23:227][  0]LogSlate: Took 0.000421 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K)
+[2024.08.02-07.32.23:227][  0]LogRHI: Display: ShaderPipelineCache: Paused Batching. 1
+[2024.08.02-07.32.23:228][  0]LogPakFile: AllPaks IndexSizes: DirectoryHashSize=193072, PathHashSize=16, EntriesSize=32752, TotalSize=225840
+[2024.08.02-07.32.23:228][  0]LogRHI: Display: ShaderPipelineCache: Resumed Batching. 0
+[2024.08.02-07.32.23:228][  0]LogRHI: Display: ShaderPipelineCache: Batching Resumed.
+[2024.08.02-07.32.23:229][  0]LogRenderer: Warning: Resizing VR buffer to 2656 by 1300
+[2024.08.02-07.32.23:234][  0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init()
+[2024.08.02-07.32.23:234][  0]LogLoad: (Engine Initialization) Total time: 3.64 seconds
+[2024.08.02-07.32.23:240][  0]LogSlate: Took 0.000436 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K)
+[2024.08.02-07.32.23:273][  0]LogRHI: Display: Encountered a new compute PSO: 4084646486
+[2024.08.02-07.32.23:273][  0]LogRHI: Display: Encountered a new compute PSO: 812371551
+[2024.08.02-07.32.23:273][  0]LogRHI: Display: Encountered a new graphics PSO: 2996660223
+[2024.08.02-07.32.23:273][  0]LogRHI: Display: Encountered a new graphics PSO: 438169823
+[2024.08.02-07.32.23:274][  0]LogRHI: Display: Encountered a new compute PSO: 3071658855
+[2024.08.02-07.32.23:274][  0]LogRHI: Display: Encountered a new compute PSO: 1983791817
+[2024.08.02-07.32.23:274][  0]LogRHI: Display: Encountered a new compute PSO: 3707458169
+[2024.08.02-07.32.23:274][  0]LogRHI: Display: Encountered a new compute PSO: 1980351999
+[2024.08.02-07.32.23:274][  0]LogRHI: Display: Encountered a new compute PSO: 3265167958
+[2024.08.02-07.32.23:274][  0]LogRHI: Display: Encountered a new graphics PSO: 568850401
+[2024.08.02-07.32.23:274][  0]LogRHI: Display: Encountered a new graphics PSO: 1857403627
+[2024.08.02-07.32.23:274][  0]LogRHI: Display: Encountered a new graphics PSO: 2789720086
+[2024.08.02-07.32.23:275][  0]LogRHI: Display: Encountered a new graphics PSO: 1680577637
+[2024.08.02-07.32.23:276][  0]LogRHI: Display: Encountered a new graphics PSO: 2141321626
+[2024.08.02-07.32.23:294][  0]LogRHI: Display: Encountered a new graphics PSO: 3396054539
+[2024.08.02-07.32.23:412][  0]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.32.23:415][  0]LogContentStreaming: Texture pool size now 1000 MB
+[2024.08.02-07.32.23:445][  2]LogRHI: Display: Encountered a new compute PSO: 36000004
+[2024.08.02-07.32.23:445][  2]LogRHI: Display: Encountered a new compute PSO: 3916353388
+[2024.08.02-07.32.23:446][  2]LogRHI: Display: Encountered a new graphics PSO: 2989811062
+[2024.08.02-07.32.23:446][  2]LogRHI: Display: Encountered a new graphics PSO: 392357091
+[2024.08.02-07.32.23:446][  2]LogRHI: Display: Encountered a new compute PSO: 3415796330
+[2024.08.02-07.32.23:446][  2]LogRHI: Display: Encountered a new compute PSO: 1496384869
+[2024.08.02-07.32.23:446][  2]LogRHI: Display: Encountered a new compute PSO: 2137981577
+[2024.08.02-07.32.23:446][  2]LogRHI: Display: Encountered a new compute PSO: 1213868836
+[2024.08.02-07.32.23:446][  2]LogRHI: Display: Encountered a new compute PSO: 1481873912
+[2024.08.02-07.32.23:446][  2]LogRHI: Display: Encountered a new compute PSO: 2377609249
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new graphics PSO: 2274179198
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 3810519787
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 3156736644
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 2045927908
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 2607838988
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 309180451
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 3137437172
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 3360497970
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 1838702928
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 2399646039
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 831929746
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 676159369
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 3560210858
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 2077624189
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 3509667929
+[2024.08.02-07.32.23:448][  2]LogRHI: Display: Encountered a new graphics PSO: 1044072120
+[2024.08.02-07.32.23:448][  2]LogRHI: Display: Encountered a new compute PSO: 724033258
+[2024.08.02-07.32.23:448][  2]LogRHI: Display: Encountered a new graphics PSO: 3377188663
+[2024.08.02-07.32.23:448][  2]LogRHI: Display: Encountered a new graphics PSO: 3670865199
+[2024.08.02-07.32.23:448][  2]LogRHI: Display: Encountered a new compute PSO: 4090296402
+[2024.08.02-07.32.23:448][  2]LogRHI: Display: Encountered a new graphics PSO: 4210484662
+[2024.08.02-07.32.23:449][  2]LogRHI: Display: Encountered a new graphics PSO: 977987442
+[2024.08.02-07.32.23:449][  2]LogRHI: Display: Encountered a new compute PSO: 710140861
+[2024.08.02-07.32.23:450][  2]LogRHI: Display: Encountered a new graphics PSO: 1487777183
+[2024.08.02-07.32.23:450][  2]LogRHI: Display: Encountered a new compute PSO: 3886170959
+[2024.08.02-07.32.23:451][  2]LogRHI: Display: Encountered a new graphics PSO: 3898165938
+[2024.08.02-07.32.23:452][  2]LogRHI: Display: Encountered a new graphics PSO: 2376581795
+[2024.08.02-07.32.23:452][  2]LogRHI: Display: Encountered a new graphics PSO: 3776468594
+[2024.08.02-07.32.23:452][  2]LogRHI: Display: Encountered a new graphics PSO: 3126438517
+[2024.08.02-07.32.23:455][  2]LogRHI: Display: Encountered a new compute PSO: 349008682
+[2024.08.02-07.32.23:756][  2]LogD3D12RHI: Cannot end block when stack is empty
+[2024.08.02-07.32.23:757][  2]LogRHI: Display: Encountered a new graphics PSO: 1601640264
+[2024.08.02-07.32.23:757][  2]LogRHI: Display: Encountered a new graphics PSO: 2881236056
+[2024.08.02-07.32.23:779][  3]LogHMD: SetSpectatorScreenMode(7).
+[2024.08.02-07.32.23:790][  4]LogRHI: Display: Encountered a new graphics PSO: 1324910427
+[2024.08.02-07.32.23:790][  4]LogRHI: Display: Encountered a new graphics PSO: 1796231892
+[2024.08.02-07.32.24:345][ 54]LogRHI: Display: Encountered a new graphics PSO: 1475094606
+[2024.08.02-07.32.24:345][ 54]LogRHI: Display: Encountered a new graphics PSO: 3836121350
+[2024.08.02-07.32.24:955][109]LogRHI: Display: Encountered a new graphics PSO: 3889033541
+[2024.08.02-07.32.24:956][109]LogRHI: Display: Encountered a new graphics PSO: 3309177214
+[2024.08.02-07.32.27:470][336]LogBlueprintUserMessages: [LoginManager_C_1] 55
+[2024.08.02-07.32.27:473][336]LogTemp: Initialized Participant ID: 55
+[2024.08.02-07.32.27:491][338]LogProfilingDebugging: Allocated a 1024 x 1024 texture for HMD canvas layer
+[2024.08.02-07.32.27:491][338]LogRHI: Display: Encountered a new graphics PSO: 1502675884
+[2024.08.02-07.32.27:504][339]LogRHI: Display: Encountered a new graphics PSO: 4069790606
+[2024.08.02-07.32.27:721][340]LogStats: FPlatformStackWalk::StackWalkAndDump -  0.200 s
+[2024.08.02-07.32.27:721][340]LogOutputDevice: Error: === Handled ensure: ===
+[2024.08.02-07.32.27:721][340]LogOutputDevice: Error: 
+[2024.08.02-07.32.27:721][340]LogOutputDevice: Error: Ensure condition failed: ((Result) >= 0)  [File:D:\build\++UE5\Sync\Engine\Plugins\Runtime\OpenXR\Source\OpenXRHMD\Private\OpenXRHMD.cpp] [Line: 3407] 
+[2024.08.02-07.32.27:721][340]LogOutputDevice: Error: OpenXR call failed with result XR_ERROR_RUNTIME_FAILURE
+[2024.08.02-07.32.27:721][340]LogOutputDevice: Error: Stack: 
+[2024.08.02-07.32.27:721][340]LogOutputDevice: Error: [Callstack] 0x00007ff7f4f084ec MetaCastBachelor.exe!FOpenXRHMD::OnFinishRendering_RHIThread() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7f4f0cc6e MetaCastBachelor.exe!FOpenXRRenderBridge::Present() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7f0deb340 MetaCastBachelor.exe!FD3D12Viewport::PresentChecked() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7f0deae5c MetaCastBachelor.exe!FD3D12Viewport::Present() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7f0ded277 MetaCastBachelor.exe!FD3D12CommandContextBase::RHIEndDrawingViewport() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7f10238cb MetaCastBachelor.exe!FRHICommand<FRHICommandEndDrawingViewport,FRHICommandEndDrawingViewportString2069>::ExecuteAndDestruct() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7f102149d MetaCastBachelor.exe!FRHICommandListBase::Execute() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7f100e571 MetaCastBachelor.exe!operator==() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7ecd49443 MetaCastBachelor.exe!TGraphTask<TFunctionGraphTaskImpl<void __cdecl(void),0> >::ExecuteTask() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7eccd9c07 MetaCastBachelor.exe!FNamedTaskThread::ProcessTasksNamedThread() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7eccda1fe MetaCastBachelor.exe!FNamedTaskThread::ProcessTasksUntilQuit() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7f117789c MetaCastBachelor.exe!FRHIThread::Run() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7ed28b252 MetaCastBachelor.exe!FRunnableThreadWin::Run() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7ed27eca7 MetaCastBachelor.exe!FRunnableThreadWin::GuardedRun() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ffe05847374 KERNEL32.DLL!UnknownFunction []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ffe06b3cc91 ntdll.dll!UnknownFunction []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: 
+[2024.08.02-07.32.27:730][340]LogStats:                SubmitErrorReport -  0.000 s
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Crashes/UECC-Windows-3993C43D42833AFC784EC790C04EACFC_0000/UEMinidump.dmp b/Builds/Windows/MetaCastBachelor/Saved/Crashes/UECC-Windows-3993C43D42833AFC784EC790C04EACFC_0000/UEMinidump.dmp
new file mode 100644
index 0000000000000000000000000000000000000000..7d49dc68894d0cbc0c42118cb5b649ee6a598156
Binary files /dev/null and b/Builds/Windows/MetaCastBachelor/Saved/Crashes/UECC-Windows-3993C43D42833AFC784EC790C04EACFC_0000/UEMinidump.dmp differ
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Logs/MetaCastBachelor-backup-2024.08.02-07.23.17.log b/Builds/Windows/MetaCastBachelor/Saved/Logs/MetaCastBachelor-backup-2024.08.02-07.23.17.log
new file mode 100644
index 0000000000000000000000000000000000000000..8b9cca0f320dd7008ac3a4c955f2d3054300cf65
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Logs/MetaCastBachelor-backup-2024.08.02-07.23.17.log
@@ -0,0 +1,1837 @@
+Log file open, 08/02/24 09:22:32
+LogWindows: Failed to load 'aqProf.dll' (GetLastError=126)
+LogWindows: File 'aqProf.dll' does not exist
+LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64).
+LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126)
+LogWindows: File 'VtuneApi.dll' does not exist
+LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126)
+LogWindows: File 'VtuneApi32e.dll' does not exist
+LogWindows: Custom abort handler registered for crash reporting.
+LogCore: Display: UnrealTraceServer: Unable to launch the trace store with '"../../../Engine//Binaries/Win64/UnrealTraceServer.exe" fork' (00000002)
+LogTrace: Initializing trace...
+LogTrace: Finished trace initialization.
+LogCsvProfiler: Display: Metadata set : platform="Windows"
+LogCsvProfiler: Display: Metadata set : config="Development"
+LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.3-CL-29314046"
+LogCsvProfiler: Display: Metadata set : engineversion="5.3.2-29314046+++UE5+Release-5.3"
+LogCsvProfiler: Display: Metadata set : os="Windows 10 (22H2) [10.0.19045.4651] "
+LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|Intel(R) Core(TM) i9-10900X CPU @ 3.70GHz"
+LogCsvProfiler: Display: Metadata set : pgoenabled="0"
+LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0"
+LogCsvProfiler: Display: Metadata set : ltoenabled="0"
+LogCsvProfiler: Display: Metadata set : asan="0"
+LogCsvProfiler: Display: Metadata set : commandline="" MetaCastBachelor""
+LogCsvProfiler: Display: Metadata set : loginid="6cbed587469a168a7370319bba147631"
+LogCsvProfiler: Display: Metadata set : llm="0"
+LogPakFile: Initializing PakPlatformFile
+LogIoDispatcher: Display: Reading toc: ../../../MetaCastBachelor/Content/Paks/global.utoc
+LogIoDispatcher: Display: Toc signature hash: 0000000000000000000000000000000000000000
+LogIoDispatcher: Display: Mounting container '../../../MetaCastBachelor/Content/Paks/global.utoc' in location slot 0
+LogPakFile: Display: Initialized I/O dispatcher file backend. Mounted the global container: ../../../MetaCastBachelor/Content/Paks/global.utoc
+LogPakFile: Display: Found Pak file ../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak attempting to mount.
+LogPakFile: Display: Mounting pak file ../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak.
+LogIoDispatcher: Display: Reading toc: ../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc
+LogIoDispatcher: Display: Toc signature hash: 0000000000000000000000000000000000000000
+LogIoDispatcher: Display: Mounting container '../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc' in location slot 0
+LogPakFile: Display: Mounted IoStore container "../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc"
+LogPakFile: Display: Mounted Pak file '../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak', mount point: '../../../'
+LogStats: Stats thread started at 0.176419
+LogAssetRegistry: Premade AssetRegistry loaded from '../../../MetaCastBachelor/AssetRegistry.bin'
+LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +1:00, Platform Override: ''
+LogInit: Session CrashGUID >====================================================
+         Session CrashGUID >   UECC-Windows-A5ABCD5241124293EDA7ADBA3A9B1C47
+         Session CrashGUID >====================================================
+LogStreaming: Warning: Failed to read file 'D:/UnrealProjects/MetaCastBachelor/Builds/Windows/Cloud/IoStoreOnDemand.ini' error.
+LogPluginManager: Mounting Engine plugin Paper2D
+LogPluginManager: Mounting Engine plugin AISupport
+LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor
+LogPluginManager: Mounting Engine plugin ACLPlugin
+LogPluginManager: Mounting Engine plugin AnimationData
+LogPluginManager: Mounting Engine plugin ControlRigSpline
+LogPluginManager: Mounting Engine plugin ControlRig
+LogPluginManager: Mounting Engine plugin IKRig
+LogPluginManager: Mounting Engine plugin LiveLink
+LogPluginManager: Mounting Engine plugin Bridge
+LogPluginManager: Mounting Engine plugin CameraShakePreviewer
+LogPluginManager: Mounting Engine plugin GameplayCameras
+LogPluginManager: Mounting Engine plugin Composure
+LogPluginManager: Mounting Engine plugin OpenColorIO
+LogPluginManager: Mounting Engine plugin OodleNetwork
+LogPluginManager: Mounting Engine plugin AnimationSharing
+LogPluginManager: Mounting Engine plugin MultiUserClient
+LogPluginManager: Mounting Engine plugin ConcertMain
+LogPluginManager: Mounting Engine plugin ConcertSyncClient
+LogPluginManager: Mounting Engine plugin ConcertSyncCore
+LogPluginManager: Mounting Engine plugin ConcertSharedSlate
+LogPluginManager: Mounting Engine plugin DumpGPUServices
+LogPluginManager: Mounting Engine plugin PixWinPlugin
+LogPluginManager: Mounting Engine plugin PluginUtils
+LogPluginManager: Mounting Engine plugin RenderDocPlugin
+LogPluginManager: Mounting Engine plugin UObjectPlugin
+LogPluginManager: Mounting Engine plugin AssetManagerEditor
+LogPluginManager: Mounting Engine plugin BlueprintHeaderView
+LogPluginManager: Mounting Engine plugin BlueprintMaterialTextureNodes
+LogPluginManager: Mounting Engine plugin ConsoleVariables
+LogPluginManager: Mounting Engine plugin EditorScriptingUtilities
+LogPluginManager: Mounting Engine plugin FacialAnimation
+LogPluginManager: Mounting Engine plugin GameplayTagsEditor
+LogPluginManager: Mounting Engine plugin GeometryMode
+LogPluginManager: Mounting Engine plugin LightMixer
+LogPluginManager: Mounting Engine plugin ObjectMixer
+LogPluginManager: Mounting Engine plugin SequencerAnimTools
+LogPluginManager: Mounting Engine plugin SpeedTreeImporter
+LogPluginManager: Mounting Engine plugin UVEditor
+LogPluginManager: Mounting Engine plugin EnhancedInput
+LogPluginManager: Found config from plugin[EnhancedInput] Input
+LogPluginManager: Mounting Engine plugin DatasmithContent
+LogPluginManager: Mounting Engine plugin GLTFExporter
+LogPluginManager: Mounting Engine plugin VariantManagerContent
+LogPluginManager: Mounting Engine plugin VariantManager
+LogPluginManager: Mounting Engine plugin AutomationUtils
+LogPluginManager: Mounting Engine plugin BackChannel
+LogPluginManager: Mounting Engine plugin ChaosCaching
+LogPluginManager: Mounting Engine plugin ChaosClothEditor
+LogPluginManager: Mounting Engine plugin ChaosCloth
+LogPluginManager: Mounting Engine plugin ChaosEditor
+LogPluginManager: Mounting Engine plugin ChaosNiagara
+LogPluginManager: Mounting Engine plugin ChaosSolverPlugin
+LogPluginManager: Mounting Engine plugin ChaosUserDataPT
+LogPluginManager: Mounting Engine plugin CharacterAI
+LogPluginManager: Mounting Engine plugin ColorCorrectRegions
+LogPluginManager: Mounting Engine plugin Dataflow
+LogPluginManager: Mounting Engine plugin Fracture
+LogPluginManager: Mounting Engine plugin FullBodyIK
+LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin
+LogPluginManager: Mounting Engine plugin LocalizableMessage
+LogPluginManager: Mounting Engine plugin OpenImageDenoise
+LogPluginManager: Mounting Engine plugin PlatformCrypto
+LogPluginManager: Mounting Engine plugin PythonScriptPlugin
+LogPluginManager: Mounting Engine plugin StructUtils
+LogPluginManager: Mounting Engine plugin ToolPresets
+LogPluginManager: Mounting Engine plugin VirtualProductionUtilities
+LogPluginManager: Mounting Engine plugin VPRoles
+LogPluginManager: Mounting Engine plugin VPSettings
+LogPluginManager: Mounting Engine plugin Niagara
+LogPluginManager: Mounting Engine plugin AlembicImporter
+LogPluginManager: Mounting Engine plugin InterchangeEditor
+LogPluginManager: Mounting Engine plugin Interchange
+LogPluginManager: Mounting Engine plugin AvfMedia
+LogPluginManager: Mounting Engine plugin ImgMedia
+LogPluginManager: Mounting Engine plugin MediaCompositing
+LogPluginManager: Mounting Engine plugin MediaIOFramework
+LogPluginManager: Mounting Engine plugin MediaPlate
+LogPluginManager: Mounting Engine plugin WebMMedia
+LogPluginManager: Mounting Engine plugin WmfMedia
+LogPluginManager: Mounting Engine plugin MeshPainting
+LogPluginManager: Mounting Engine plugin TcpMessaging
+LogPluginManager: Mounting Engine plugin UdpMessaging
+LogPluginManager: Mounting Engine plugin ActorSequence
+LogPluginManager: Mounting Engine plugin LevelSequenceEditor
+LogPluginManager: Mounting Engine plugin MovieRenderPipeline
+LogPluginManager: Mounting Engine plugin SequencerScripting
+LogPluginManager: Mounting Engine plugin TemplateSequence
+LogPluginManager: Mounting Engine plugin OnlineBase
+LogPluginManager: Mounting Engine plugin OnlineServices
+LogPluginManager: Mounting Engine plugin OnlineSubsystemNull
+LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils
+LogPluginManager: Mounting Engine plugin OnlineSubsystem
+LogPluginManager: Mounting Engine plugin LauncherChunkInstaller
+LogPluginManager: Mounting Engine plugin ActorLayerUtilities
+LogPluginManager: Mounting Engine plugin AndroidFileServer
+LogPluginManager: Mounting Engine plugin AndroidPermission
+LogPluginManager: Mounting Engine plugin AppleImageUtils
+LogPluginManager: Mounting Engine plugin ArchVisCharacter
+LogPluginManager: Mounting Engine plugin AssetTags
+LogPluginManager: Mounting Engine plugin AudioCapture
+LogPluginManager: Mounting Engine plugin AudioSynesthesia
+LogPluginManager: Mounting Engine plugin AudioWidgets
+LogPluginManager: Mounting Engine plugin CableComponent
+LogPluginManager: Mounting Engine plugin ChunkDownloader
+LogPluginManager: Mounting Engine plugin CustomMeshComponent
+LogPluginManager: Mounting Engine plugin SQLiteCore
+LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector
+LogPluginManager: Mounting Engine plugin GeometryCache
+LogPluginManager: Mounting Engine plugin GeometryProcessing
+LogPluginManager: Mounting Engine plugin GooglePAD
+LogPluginManager: Mounting Engine plugin HPMotionController
+LogPluginManager: Mounting Engine plugin InputDebugging
+LogPluginManager: Found config from plugin[InputDebugging] Input
+LogPluginManager: Mounting Engine plugin LiveLinkOverNDisplay
+LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary
+LogPluginManager: Mounting Engine plugin Metasound
+LogPluginManager: Mounting Engine plugin MobilePatchingUtils
+LogPluginManager: Mounting Engine plugin MsQuic
+LogPluginManager: Mounting Engine plugin OSC
+LogPluginManager: Mounting Engine plugin OpenCV
+LogPluginManager: Mounting Engine plugin OpenXREyeTracker
+LogPluginManager: Mounting Engine plugin OpenXRHandTracking
+LogPluginManager: Mounting Engine plugin OpenXR
+LogPluginManager: Mounting Engine plugin ProceduralMeshComponent
+LogPluginManager: Mounting Engine plugin PropertyAccessEditor
+LogPluginManager: Mounting Engine plugin ResonanceAudio
+LogPluginManager: Mounting Engine plugin RigVM
+LogPluginManager: Mounting Engine plugin SignificanceManager
+LogPluginManager: Mounting Engine plugin SoundFields
+LogPluginManager: Mounting Engine plugin Synthesis
+LogPluginManager: Mounting Engine plugin WaveTable
+LogPluginManager: Mounting Engine plugin WebMMoviePlayer
+LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector
+LogPluginManager: Mounting Engine plugin WindowsMoviePlayer
+LogPluginManager: Mounting Engine plugin XRBase
+LogPluginManager: Mounting Engine plugin nDisplayModularFeatures
+LogPluginManager: Mounting Engine plugin nDisplay
+LogPluginManager: Mounting Engine plugin InterchangeTests
+LogPluginManager: Mounting Engine plugin TraceUtilities
+LogPluginManager: Mounting Engine plugin CameraCalibrationCore
+LogPluginManager: Mounting Engine plugin MultiUserTakes
+LogPluginManager: Mounting Engine plugin RemoteControlInterception
+LogPluginManager: Mounting Engine plugin Switchboard
+LogPluginManager: Mounting Engine plugin Takes
+LogPluginManager: Mounting Project plugin GPUPointCloudRenderer
+LogPluginManager: Mounting Project plugin Kdtree
+LogPluginManager: Mounting Project plugin RWTHVRToolkit
+LogPluginManager: Mounting Project plugin UniversalLogging
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/2D/Paper2D/Content/' mounted to '/Paper2D/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ACLPlugin/Content/' mounted to '/ACLPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRigSpline/Content/' mounted to '/ControlRigSpline/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRig/Content/' mounted to '/ControlRig/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/IKRig/Content/' mounted to '/IKRig/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Bridge/Content/' mounted to '/Bridge/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/Composure/Content/' mounted to '/Composure/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/OpenColorIO/Content/' mounted to '/OpenColorIO/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/AnimationSharing/Content/' mounted to '/AnimationSharing/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/' mounted to '/ConcertSyncClient/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/BlueprintHeaderView/Content/' mounted to '/BlueprintHeaderView/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ConsoleVariablesEditor/Content/' mounted to '/ConsoleVariables/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/GeometryMode/Content/' mounted to '/GeometryMode/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/LightMixer/Content/' mounted to '/LightMixer/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/ObjectMixer/Content/' mounted to '/ObjectMixer/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/SpeedTreeImporter/Content/' mounted to '/SpeedTreeImporter/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/UVEditor/Content/' mounted to '/UVEditor/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/DatasmithContent/Content/' mounted to '/DatasmithContent/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/GLTFExporter/Content/' mounted to '/GLTFExporter/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosCaching/Content/' mounted to '/ChaosCaching/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosClothEditor/Content/' mounted to '/ChaosClothEditor/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosNiagara/Content/' mounted to '/ChaosNiagara/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosSolverPlugin/Content/' mounted to '/ChaosSolverPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ColorCorrectRegions/Content/' mounted to '/ColorCorrectRegions/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Dataflow/Content/' mounted to '/Dataflow/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/FullBodyIK/Content/' mounted to '/FullBodyIK/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/GeometryCollectionPlugin/Content/' mounted to '/GeometryCollectionPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/PythonScriptPlugin/Content/' mounted to '/PythonScriptPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ToolPresets/Content/' mounted to '/ToolPresets/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProductionUtilities/Content/' mounted to '/VirtualProductionUtilities/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPRoles/Content/' mounted to '/VPRoles/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPSettings/Content/' mounted to '/VPSettings/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/FX/Niagara/Content/' mounted to '/Niagara/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Interchange/Runtime/Content/' mounted to '/Interchange/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaCompositing/Content/' mounted to '/MediaCompositing/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaPlate/Content/' mounted to '/MediaPlate/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/MovieRenderPipeline/Content/' mounted to '/MovieRenderPipeline/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/SequencerScripting/Content/' mounted to '/SequencerScripting/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioSynesthesia/Content/' mounted to '/AudioSynesthesia/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioWidgets/Content/' mounted to '/AudioWidgets/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/GeometryProcessing/Content/' mounted to '/GeometryProcessing/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Metasound/Content/' mounted to '/Metasound/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenCV/Content/' mounted to '/OpenCV/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXREyeTracker/Content/' mounted to '/OpenXREyeTracker/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXRHandTracking/Content/' mounted to '/OpenXRHandTracking/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXR/Content/' mounted to '/OpenXR/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/ResonanceAudio/Content/' mounted to '/ResonanceAudio/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/RigVM/Content/' mounted to '/RigVM/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Synthesis/Content/' mounted to '/Synthesis/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/WaveTable/Content/' mounted to '/WaveTable/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplayModularFeatures/Content/' mounted to '/nDisplayModularFeatures/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplay/Content/' mounted to '/nDisplay/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/TraceUtilities/Content/' mounted to '/TraceUtilities/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/CameraCalibrationCore/Content/' mounted to '/CameraCalibrationCore/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/MultiUserTakes/Content/' mounted to '/MultiUserTakes/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Switchboard/Content/' mounted to '/Switchboard/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Takes/Content/' mounted to '/Takes/'
+LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UE4_GPUPointCloudRenderer/Content/' mounted to '/GPUPointCloudRenderer/'
+LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UEPlugin-Kdtree/Kdtree/Content/' mounted to '/Kdtree/'
+LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/rwth-vr-toolkit-with-meta-cast/Content/' mounted to '/RWTHVRToolkit/'
+LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126)
+LogWindows: File 'WinPixGpuCapturer.dll' does not exist
+PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX.
+LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine]
+RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings.
+LogInit: Using libcurl 8.4.0
+LogInit:  - built for Windows
+LogInit:  - supports SSL with OpenSSL/1.1.1t
+LogInit:  - supports HTTP deflate (compression) using libz 1.2.13
+LogInit:  - other features:
+LogInit:      CURL_VERSION_SSL
+LogInit:      CURL_VERSION_LIBZ
+LogInit:      CURL_VERSION_IPV6
+LogInit:      CURL_VERSION_ASYNCHDNS
+LogInit:      CURL_VERSION_LARGEFILE
+LogInit:  CurlRequestOptions (configurable via config and command line):
+LogInit:  - bVerifyPeer = true  - Libcurl will verify peer certificate
+LogInit:  - bUseHttpProxy = false  - Libcurl will NOT use HTTP proxy
+LogInit:  - bDontReuseConnections = false  - Libcurl will reuse connections
+LogInit:  - MaxHostConnections = 16  - Libcurl will limit the number of connections to a host
+LogInit:  - LocalHostAddr = Default
+LogInit:  - BufferSize = 65536
+LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467
+LogOnline: OSS: Created online subsystem instance for: NULL
+LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL]
+LogHMD: OpenXRHMDModule::InitInstance using DefaultLoader.
+LogHMD: OpenXR runtime supported extensions:
+LogHMD: 	XR_KHR_vulkan_enable
+LogHMD: 	XR_KHR_vulkan_enable2
+LogHMD: 	XR_KHR_D3D11_enable
+LogHMD: 	XR_KHR_D3D12_enable
+LogHMD: 	XR_KHR_opengl_enable
+LogHMD: 	XR_KHR_win32_convert_performance_counter_time
+LogHMD: 	XR_EXT_win32_appcontainer_compatible
+LogHMD: 	XR_KHR_binding_modification
+LogHMD: 	XR_KHR_composition_layer_depth
+LogHMD: 	XR_KHR_visibility_mask
+LogHMD: 	XR_EXT_active_action_set_priority
+LogHMD: 	XR_EXT_dpad_binding
+LogHMD: 	XR_EXT_frame_composition_report
+LogHMD: 	XR_EXT_hand_tracking
+LogHMD: 	XR_EXT_hand_joints_motion_range
+LogHMD: 	XR_EXT_hp_mixed_reality_controller
+LogHMD: 	XR_EXT_local_floor
+LogHMD: 	XR_EXT_palm_pose
+LogHMD: 	XR_FB_display_refresh_rate
+LogHMD: 	XR_HTC_vive_cosmos_controller_interaction
+LogHMD: 	XR_HTC_vive_focus3_controller_interaction
+LogHMD: 	XR_HTC_vive_wrist_tracker_interaction
+LogHMD: 	XR_MND_headless
+LogHMD: 	XR_VALVE_analog_threshold
+LogHMD: 	XR_HTCX_vive_tracker_interaction
+LogHMD: 	XR_EXT_debug_utils
+LogHMD: Optional extension XR_KHR_vulkan_swapchain_format_list is not available
+LogHMD: Optional extension XR_FB_foveation_vulkan is not available
+LogHMD: Optional extension XR_KHR_composition_layer_cylinder is not available
+LogHMD: Optional extension XR_KHR_composition_layer_equirect is not available
+LogHMD: Optional extension XR_VARJO_quad_views is not available
+LogHMD: Optional extension XR_EPIC_view_configuration_fov is not available
+LogHMD: Optional extension XR_FB_composition_layer_alpha_blend is not available
+LogHMD: Optional extension XR_FB_foveation is not available
+LogHMD: Optional extension XR_FB_swapchain_update_state is not available
+LogHMD: Optional extension XR_FB_foveation_configuration is not available
+LogHMD: Optional extension XR_OCULUS_audio_device_guid is not available
+LogHMD: Warning: Required extension XR_EXT_eye_gaze_interaction is not available
+LogHMD: Could not enable all required OpenXR extensions for OpenXREyeTracker on current system. This plugin will be loaded but ignored, but will be enabled on a target platform that supports the required extension.
+LogHMD: Initialized OpenXR on SteamVR/OpenXR runtime version 2.6.2
+LogInit: ExecutableName: MetaCastBachelor.exe
+LogInit: Build: ++UE5+Release-5.3-CL-29314046
+LogInit: Engine Version: 5.3.2-29314046+++UE5+Release-5.3
+LogInit: Compatible Engine Version: 5.3.0-27405482+++UE5+Release-5.3
+LogInit: Net CL: 27405482
+LogInit: OS: Windows 10 (22H2) [10.0.19045.4651] (), CPU: Intel(R) Core(TM) i9-10900X CPU @ 3.70GHz, GPU: NVIDIA GeForce RTX 3090
+LogInit: Compiled (64-bit): Nov  3 2023 16:20:53
+LogInit: Architecture: x64
+LogInit: Compiled with Visual C++: 19.36.32537.00
+LogInit: Build Configuration: Development
+LogInit: Branch Name: ++UE5+Release-5.3
+LogInit: Command Line: 
+LogInit: Base Directory: D:/UnrealProjects/MetaCastBachelor/Builds/Windows/MetaCastBachelor/Binaries/Win64/
+LogInit: Allocator: binned2
+LogInit: Installed Engine Build: 0
+LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no
+LogDevObjectVersion: Number of dev versions registered: 39
+LogDevObjectVersion:   Dev-Blueprints (B0D832E4-1F89-4F0D-ACCF-7EB736FD4AA2): 10
+LogDevObjectVersion:   Dev-Build (E1C64328-A22C-4D53-A36C-8E866417BD8C): 0
+LogDevObjectVersion:   Dev-Core (375EC13C-06E4-48FB-B500-84F0262A717E): 4
+LogDevObjectVersion:   Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40
+LogDevObjectVersion:   Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37
+LogDevObjectVersion:   Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3
+LogDevObjectVersion:   Dev-Networking (A4E4105C-59A1-49B5-A7C5-40C4547EDFEE): 0
+LogDevObjectVersion:   Dev-Online (39C831C9-5AE6-47DC-9A44-9C173E1C8E7C): 0
+LogDevObjectVersion:   Dev-Physics (78F01B33-EBEA-4F98-B9B4-84EACCB95AA2): 20
+LogDevObjectVersion:   Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0
+LogDevObjectVersion:   Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 47
+LogDevObjectVersion:   Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13
+LogDevObjectVersion:   Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3
+LogDevObjectVersion:   Dev-LoadTimes (C2A15278-BFE7-4AFE-6C17-90FF531DF755): 1
+LogDevObjectVersion:   Private-Geometry (6EACA3D4-40EC-4CC1-B786-8BED09428FC5): 3
+LogDevObjectVersion:   Dev-AnimPhys (29E575DD-E0A3-4627-9D10-D276232CDCEA): 17
+LogDevObjectVersion:   Dev-Anim (AF43A65D-7FD3-4947-9873-3E8ED9C1BB05): 15
+LogDevObjectVersion:   Dev-ReflectionCapture (6B266CEC-1EC7-4B8F-A30B-E4D90942FC07): 1
+LogDevObjectVersion:   Dev-Automation (0DF73D61-A23F-47EA-B727-89E90C41499A): 1
+LogDevObjectVersion:   FortniteMain (601D1886-AC64-4F84-AA16-D3DE0DEAC7D6): 111
+LogDevObjectVersion:   FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 2
+LogDevObjectVersion:   FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 10
+LogDevObjectVersion:   FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 11
+LogDevObjectVersion:   Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10
+LogDevObjectVersion:   Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1
+LogDevObjectVersion:   Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10
+LogDevObjectVersion:   Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41
+LogDevObjectVersion:   Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1
+LogDevObjectVersion:   Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1
+LogDevObjectVersion:   Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1
+LogDevObjectVersion:   UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 118
+LogDevObjectVersion:   UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 47
+LogDevObjectVersion:   UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8
+LogDevObjectVersion:   UE5-Dev-Cooker (26075A32-730F-4708-88E9-8C32F1599D05): 0
+LogDevObjectVersion:   Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2
+LogDevObjectVersion:   UE5-Dev-LWCRendering (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1
+LogDevObjectVersion:   Dev-RigVM (DC49959B-53C0-4DE7-9156-EA885E7C5D39): 2
+LogDevObjectVersion:   Dev-ControlRig (A7820CFB-20A7-4359-8C54-2C149623CF50): 27
+LogDevObjectVersion:   Dev-IKRig (F6DFBB78-BB50-A0E4-4018-B84D60CBAF23): 2
+LogInit: Presizing for max 2097152 objects, including 1 objects not considered by GC, pre-allocating 0 bytes for permanent pool.
+LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: true, Async Post Load: true
+LogStreaming: Display: AsyncLoading2 - Initialized
+LogInit: Object subsystem initialized
+LogConfig: Set CVar [[con.DebugEarlyDefault:1]]
+LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created
+LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created
+LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created
+LogConfig: Set CVar [[r.setres:1280x720]]
+LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created
+LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]]
+LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created
+LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created
+[2024.08.02-07.22.32:420][  0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]]
+[2024.08.02-07.22.32:420][  0]LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created
+[2024.08.02-07.22.32:420][  0]LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created
+[2024.08.02-07.22.32:420][  0]LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created
+[2024.08.02-07.22.32:420][  0]LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created
+[2024.08.02-07.22.32:420][  0]LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created
+[2024.08.02-07.22.32:420][  0]LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created
+[2024.08.02-07.22.32:420][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine]
+[2024.08.02-07.22.32:420][  0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:None]] deferred - dummy variable created
+[2024.08.02-07.22.32:420][  0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:None]] deferred - dummy variable created
+[2024.08.02-07.22.32:420][  0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]]
+[2024.08.02-07.22.32:420][  0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created
+[2024.08.02-07.22.32:420][  0]LogConfig: Set CVar [[r.Mobile.DisableVertexFog:1]]
+[2024.08.02-07.22.32:420][  0]LogConfig: Set CVar [[r.Mobile.AllowDitheredLODTransition:0]]
+[2024.08.02-07.22.32:420][  0]LogConfig: CVar [[r.Mobile.AllowSoftwareOcclusion:0]] deferred - dummy variable created
+[2024.08.02-07.22.32:420][  0]LogConfig: Set CVar [[r.Mobile.VirtualTextures:0]]
+[2024.08.02-07.22.32:420][  0]LogConfig: Set CVar [[r.DiscardUnusedQuality:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.AllowOcclusionQueries:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.MinScreenRadiusForLights:0.030000]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.MinScreenRadiusForDepthPrepass:0.030000]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.MinScreenRadiusForCSMDepth:0.010000]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.PrecomputedVisibilityWarning:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.TextureStreaming:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[Compat.UseDXT5NormalMaps:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.VirtualTextures:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.VirtualTexturedLightmaps:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.VT.TileSize:128]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.VT.TileBorderSize:4]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.vt.FeedbackFactor:16]]
+[2024.08.02-07.22.32:421][  0]LogConfig: CVar [[r.VT.EnableCompressZlib:1]] deferred - dummy variable created
+[2024.08.02-07.22.32:421][  0]LogConfig: CVar [[r.VT.EnableCompressCrunch:0]] deferred - dummy variable created
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.ClearCoatNormal:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.ReflectionCaptureResolution:128]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.ReflectionEnvironmentLightmapMixBasedOnRoughness:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.ForwardShading:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.VertexFoggingForOpaque:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.AllowStaticLighting:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.NormalMapsForStaticLighting:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: CVar [[r.DistanceFieldBuild.EightBit:0]] deferred - dummy variable created
+[2024.08.02-07.22.32:421][  0]LogConfig: CVar [[r.GenerateLandscapeGIData:0]] deferred - dummy variable created
+[2024.08.02-07.22.32:421][  0]LogConfig: CVar [[r.DistanceFieldBuild.Compress:0]] deferred - dummy variable created
+[2024.08.02-07.22.32:421][  0]LogConfig: CVar [[r.TessellationAdaptivePixelsPerTriangle:48.000000]] deferred - dummy variable created
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.SeparateTranslucency:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.TranslucentSortPolicy:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: CVar [[TranslucentSortAxis:(X=0.000000,Y=-1.000000,Z=0.000000)]] deferred - dummy variable created
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.CustomDepth:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.CustomDepthTemporalAAJitter:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.PostProcessing.PropagateAlpha:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.DefaultFeature.Bloom:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.DefaultFeature.AmbientOcclusion:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.DefaultFeature.AmbientOcclusionStaticFraction:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.Method:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.Bias:1.000000]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: CVar [[r.EyeAdaptation.EditorOnly:0]] deferred - dummy variable created
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:1.0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:1.0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.DefaultFeature.MotionBlur:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.DefaultFeature.LensFlare:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.TemporalAA.Upsampling:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: CVar [[r.SSGI.Enable:0]] deferred - dummy variable created
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.AntiAliasingMethod:3]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.DefaultFeature.LightUnits:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.DefaultBackBufferPixelFormat:4]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.Shadow.UnbuiltPreviewInGame:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.StencilForLODDither:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.EarlyZPass:3]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.EarlyZPassOnlyMaterialMasking:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.DBuffer:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.ClearSceneMethod:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.VelocityOutputPass:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.Velocity.EnableVertexDeformation:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.SelectiveBasePassOutputs:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: CVar [[bDefaultParticleCutouts:0]] deferred - dummy variable created
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[fx.GPUSimulationTextureSizeX:1024]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[fx.GPUSimulationTextureSizeY:1024]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.AllowGlobalClipPlane:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.GBufferFormat:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.MorphTarget.Mode:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[vr.InstancedStereo:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.MobileHDR:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[vr.MobileMultiView:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.Mobile.UseHWsRGBEncoding:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[vr.RoundRobinOcclusion:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: CVar [[vr.ODSCapture:0]] deferred - dummy variable created
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.MeshStreaming:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.WireframeCullThreshold:5.000000]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.RayTracing:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.RayTracing.UseTextureLod:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.SupportStationarySkylight:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.SupportLowQualityLightmaps:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.SupportPointLightWholeSceneShadows:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: CVar [[r.SupportAtmosphericFog:1]] deferred - dummy variable created
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.SupportSkyAtmosphere:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.SupportSkyAtmosphereAffectsHeightFog:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.SkinCache.DefaultBehavior:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.SkinCache.SceneMemoryLimitInMB:128.000000]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.Mobile.EnableStaticAndCSMShadowReceivers:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.Mobile.EnableMovableLightCSMShaderCulling:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.Mobile.AllowDistanceFieldShadows:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.Mobile.AllowMovableDirectionalLights:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: CVar [[r.MobileNumDynamicPointLights:4]] deferred - dummy variable created
+[2024.08.02-07.22.32:421][  0]LogConfig: CVar [[r.MobileDynamicPointLightsUseStaticBranch:1]] deferred - dummy variable created
+[2024.08.02-07.22.32:421][  0]LogConfig: CVar [[r.Mobile.EnableMovableSpotlights:0]] deferred - dummy variable created
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.Mobile.EnableMovableSpotlightsShadow:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.GPUSkin.Support16BitBoneIndex:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.GPUSkin.Limit2BoneInfluences:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.SupportDepthOnlyIndexBuffers:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.SupportReversedIndexBuffers:1]]
+[2024.08.02-07.22.32:421][  0]LogConfig: CVar [[r.LightPropagationVolume:0]] deferred - dummy variable created
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.Mobile.AmbientOcclusion:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.GPUSkin.UnlimitedBoneInfluences:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.GPUSkin.UnlimitedBoneInfluencesThreshold:8]]
+[2024.08.02-07.22.32:421][  0]LogConfig: Set CVar [[r.Mobile.PlanarReflectionMode:0]]
+[2024.08.02-07.22.32:421][  0]LogConfig: CVar [[bStreamSkeletalMeshLODs:(Default=False,PerPlatform=())]] deferred - dummy variable created
+[2024.08.02-07.22.32:421][  0]LogConfig: CVar [[bDiscardSkeletalMeshOptionalLODs:(Default=False,PerPlatform=())]] deferred - dummy variable created
+[2024.08.02-07.22.32:422][  0]LogConfig: CVar [[VisualizeCalibrationCustomMaterialPath:None]] deferred - dummy variable created
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[r.Mobile.AntiAliasing:3]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[r.Mobile.FloatPrecisionMode:2]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[r.OpenGL.ForceDXC:0]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[r.ReflectionMethod:1]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[r.MSAACount:4]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[r.Mobile.ShadingPath:1]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine]
+[2024.08.02-07.22.32:422][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]]
+[2024.08.02-07.22.32:422][  0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]]
+[2024.08.02-07.22.32:422][  0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created
+[2024.08.02-07.22.32:422][  0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created
+[2024.08.02-07.22.32:422][  0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created
+[2024.08.02-07.22.32:422][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[gc.SizeOfPermanentObjectPool:0]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[gc.AllowParallelGC:1]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[gc.CreateGCClusters:1]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[gc.UseDisregardForGCOnDedicatedServers:0]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[gc.MultithreadedDestructionEnabled:1]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Set CVar [[gc.PendingKillEnabled:1]]
+[2024.08.02-07.22.32:422][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine]
+[2024.08.02-07.22.32:422][  0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created
+[2024.08.02-07.22.32:422][  0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created
+[2024.08.02-07.22.32:435][  0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability]
+[2024.08.02-07.22.32:435][  0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]]
+[2024.08.02-07.22.32:435][  0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]]
+[2024.08.02-07.22.32:435][  0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability]
+[2024.08.02-07.22.32:435][  0]LogConfig: Set CVar [[r.FXAA.Quality:4]]
+[2024.08.02-07.22.32:435][  0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]]
+[2024.08.02-07.22.32:435][  0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]]
+[2024.08.02-07.22.32:435][  0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]]
+[2024.08.02-07.22.32:435][  0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]]
+[2024.08.02-07.22.32:435][  0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]]
+[2024.08.02-07.22.32:435][  0]LogConfig: Set CVar [[r.TSR.ShadingRejection.TileOverscan:3]]
+[2024.08.02-07.22.32:435][  0]LogConfig: CVar [[r.TSR.Velocity.Extrapolation:1]] deferred - dummy variable created
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.LightFunctionQuality:1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.ShadowQuality:5]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.VolumetricFog:1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.CapsuleShadows:1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.DistanceFieldAO:1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.AOQuality:2]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.SSR.Quality:3]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapStrength:0]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.MotionBlurQuality:4]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.LensFlareQuality:2]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.BloomQuality:5]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.FastBlurThreshold:100]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Upscale.Quality:3]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.LightShaftQuality:1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Filter.SizeScale:1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2         ; lower gathering resolution]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1        ; higher gathering accumulator quality]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1          ; Median3x3 postfilering method]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0       ; no bokeh simulation when gathering]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4                 ; medium number of samples when gathering]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1    ; additive foreground scattering]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2    ; additive background scattering]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1      ; bokeh simulation when scattering]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1         ; only a maximum of 10% of scattered bokeh]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1                ; cheap slight out of focus]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0    ; no bokeh simulation on slight out of focus]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1                ; more stable temporal accumulation]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Streaming.MipBias:0]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Streaming.Boost:1]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.MaxAnisotropy:8]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
+[2024.08.02-07.22.32:436][  0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability]
+[2024.08.02-07.22.32:436][  0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.RefractionQuality:2]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.SceneColorFormat:4]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.DetailMode:2]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.SSS.Scale:1]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.SSS.SampleSet:2]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.SSS.Quality:1]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.SSS.HalfRes:0]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.SSGI.Quality:3]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.ParticleLightQuality:2]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[foliage.DensityScale:1.0]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[grass.DensityScale:1.0]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]]
+[2024.08.02-07.22.32:437][  0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]]
+[2024.08.02-07.22.32:437][  0]LogRHI: Using Default RHI: D3D12
+[2024.08.02-07.22.32:437][  0]LogRHI: Using Highest Feature Level of D3D12: SM6
+[2024.08.02-07.22.32:437][  0]LogRHI: Loading RHI module D3D12RHI
+[2024.08.02-07.22.32:440][  0]LogD3D12RHI: Aftermath initialized
+[2024.08.02-07.22.32:440][  0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64).
+[2024.08.02-07.22.32:440][  0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system.
+[2024.08.02-07.22.32:790][  0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3090 (VendorId: 10de, DeviceId: 2204, SubSysId: 38801028, Revision: 00a1
+[2024.08.02-07.22.32:790][  0]LogD3D12RHI:   Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported
+[2024.08.02-07.22.32:790][  0]LogD3D12RHI:   Adapter has 24340MB of dedicated video memory, 0MB of dedicated system memory, and 16238MB of shared system memory, 2 output[s]
+[2024.08.02-07.22.32:791][  0]LogD3D12RHI:   Driver Version: 546.09 (internal:31.0.15.4609, unified:546.09)
+[2024.08.02-07.22.32:791][  0]LogD3D12RHI:      Driver Date: 11-2-2023
+[2024.08.02-07.22.32:803][  0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000
+[2024.08.02-07.22.32:803][  0]LogD3D12RHI:   Max supported Feature Level 12_1, shader model 6.2, binding tier 3, wave ops supported, atomic64 unsupported
+[2024.08.02-07.22.32:803][  0]LogD3D12RHI:   Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16238MB of shared system memory, 0 output[s]
+[2024.08.02-07.22.32:803][  0]LogD3D12RHI: DirectX Agility SDK runtime found.
+[2024.08.02-07.22.32:803][  0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0
+[2024.08.02-07.22.32:803][  0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used.
+[2024.08.02-07.22.32:803][  0]LogInit: Selected Device Profile: [Windows]
+[2024.08.02-07.22.32:803][  0]LogHAL: Display: Platform has ~ 32 GB [34054676480 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0)
+[2024.08.02-07.22.32:803][  0]LogDeviceProfileManager: Going up to parent DeviceProfile []
+[2024.08.02-07.22.32:803][  0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini]
+[2024.08.02-07.22.32:803][  0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]]
+[2024.08.02-07.22.32:803][  0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]]
+[2024.08.02-07.22.32:803][  0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]]
+[2024.08.02-07.22.32:803][  0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine]
+[2024.08.02-07.22.32:803][  0]LogInit: Computer: ITC22160
+[2024.08.02-07.22.32:803][  0]LogInit: User: mp455017
+[2024.08.02-07.22.32:803][  0]LogInit: CPU Page size=4096, Cores=10
+[2024.08.02-07.22.32:803][  0]LogInit: High frequency timer resolution =10.000000 MHz
+[2024.08.02-07.22.32:803][  0]LogMemory: Memory total: Physical=31.7GB (32GB approx)
+[2024.08.02-07.22.32:803][  0]LogMemory: Platform Memory Stats for Windows
+[2024.08.02-07.22.32:803][  0]LogMemory: Process Physical Memory: 180.91 MB used, 192.55 MB peak
+[2024.08.02-07.22.32:803][  0]LogMemory: Process Virtual Memory: 157.63 MB used, 157.63 MB peak
+[2024.08.02-07.22.32:803][  0]LogMemory: Physical Memory: 23912.05 MB used,  8565.02 MB free, 32477.07 MB total
+[2024.08.02-07.22.32:804][  0]LogMemory: Virtual Memory: 63314.73 MB used,  13039.45 MB free, 76354.17 MB total
+[2024.08.02-07.22.32:804][  0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0"
+[2024.08.02-07.22.32:821][  0]LogWindows: WindowsPlatformFeatures enabled
+[2024.08.02-07.22.32:821][  0]LogInit: Physics initialised using underlying interface: Chaos
+[2024.08.02-07.22.32:821][  0]LogInit: Using OS detected language (en-US).
+[2024.08.02-07.22.32:821][  0]LogInit: Using OS detected locale (de-DE).
+[2024.08.02-07.22.32:822][  0]LogTextLocalizationManager: No specific localization for 'en-US' exists, so 'en' will be used for the language.
+[2024.08.02-07.22.32:822][  0]LogTextLocalizationManager: No localization for 'de-DE' exists, so 'en' will be used for the locale.
+[2024.08.02-07.22.32:881][  0]LogWindowsTextInputMethodSystem: Available input methods:
+[2024.08.02-07.22.32:881][  0]LogWindowsTextInputMethodSystem:   - English (United States) - (Keyboard).
+[2024.08.02-07.22.32:881][  0]LogWindowsTextInputMethodSystem:   - German (Germany) - (Keyboard).
+[2024.08.02-07.22.32:882][  0]LogWindowsTextInputMethodSystem:   - German (Germany) - Touch Input Correction (TSF IME).
+[2024.08.02-07.22.32:882][  0]LogWindowsTextInputMethodSystem: Activated input method: German (Germany) - (Keyboard).
+[2024.08.02-07.22.32:907][  0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0
+[2024.08.02-07.22.32:907][  0]LogSlate: Slate User Registered.  User Index 0, Is Virtual User: 0
+[2024.08.02-07.22.32:942][  0]LogRHI: Using Default RHI: D3D12
+[2024.08.02-07.22.32:942][  0]LogRHI: Using Highest Feature Level of D3D12: SM6
+[2024.08.02-07.22.32:942][  0]LogRHI: Loading RHI module D3D12RHI
+[2024.08.02-07.22.32:942][  0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system.
+[2024.08.02-07.22.32:942][  0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used.
+[2024.08.02-07.22.32:942][  0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6
+[2024.08.02-07.22.32:943][  0]LogWindows: Attached monitors:
+[2024.08.02-07.22.32:944][  0]LogWindows:     resolution: 1920x1080, work area: (1920, 0) -> (3840, 1040), device: '\\.\DISPLAY2'
+[2024.08.02-07.22.32:944][  0]LogWindows:     resolution: 1920x1080, work area: (0, 0) -> (1920, 1040), device: '\\.\DISPLAY1' [PRIMARY]
+[2024.08.02-07.22.32:944][  0]LogWindows: Found 2 attached monitors.
+[2024.08.02-07.22.32:944][  0]LogWindows: Gathering driver information using Windows Setup API
+[2024.08.02-07.22.32:944][  0]LogRHI: RHI Adapter Info:
+[2024.08.02-07.22.32:944][  0]LogRHI:             Name: NVIDIA GeForce RTX 3090
+[2024.08.02-07.22.32:944][  0]LogRHI:   Driver Version: 546.09 (internal:31.0.15.4609, unified:546.09)
+[2024.08.02-07.22.32:944][  0]LogRHI:      Driver Date: 11-2-2023
+[2024.08.02-07.22.32:944][  0]LogD3D12RHI:     GPU DeviceId: 0x2204 (for the marketing name, search the web for "GPU Device Id")
+[2024.08.02-07.22.32:944][  0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off
+[2024.08.02-07.22.32:957][  0]LogD3D12RHI: [Aftermath] Aftermath crash dumping enabled
+[2024.08.02-07.22.32:957][  0]LogD3D12RHI: [DRED] Dred breadcrumb context enabled
+[2024.08.02-07.22.32:957][  0]LogD3D12RHI: [DRED] Using lightweight DRED.
+[2024.08.02-07.22.32:957][  0]LogD3D12RHI: Emitting draw events for PIX profiling.
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: [Aftermath] Aftermath enabled and primed
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: [Aftermath] Aftermath resource tracking enabled
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: ID3D12Device1 is supported.
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: ID3D12Device2 is supported.
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: ID3D12Device3 is supported.
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: ID3D12Device4 is supported.
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: ID3D12Device5 is supported.
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: ID3D12Device6 is supported.
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: ID3D12Device7 is supported.
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: ID3D12Device8 is supported.
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: ID3D12Device9 is supported.
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: ID3D12Device10 is supported.
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: ID3D12Device11 is supported.
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: ID3D12Device12 is supported.
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: Bindless resources are supported
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: Stencil ref from pixel shader is not supported
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32).
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported.
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: Mesh shader tier 1.0 is supported
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: AtomicInt64OnTypedResource is supported
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: AtomicInt64OnGroupShared is supported
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported
+[2024.08.02-07.22.33:158][  0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported
+[2024.08.02-07.22.33:227][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (3D)
+[2024.08.02-07.22.33:228][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Copy)
+[2024.08.02-07.22.33:229][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Compute)
+[2024.08.02-07.22.33:258][  0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0
+[2024.08.02-07.22.33:258][  0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0
+[2024.08.02-07.22.33:259][  0]LogRHI: Texture pool is 14850 MB (70% of 21214 MB)
+[2024.08.02-07.22.33:259][  0]LogD3D12RHI: Async texture creation enabled
+[2024.08.02-07.22.33:259][  0]LogD3D12RHI: RHI has support for 64 bit atomics
+[2024.08.02-07.22.33:298][  0]LogVRS: Current RHI supports Variable Rate Shading
+[2024.08.02-07.22.33:311][  0]LogRendererCore: Ray tracing is disabled. Reason: disabled through project setting (r.RayTracing=0).
+[2024.08.02-07.22.33:313][  0]LogShaderLibrary: Display: Using IoDispatcher for shader code library Global. Total 4019 unique shaders.
+[2024.08.02-07.22.33:313][  0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library Global
+[2024.08.02-07.22.33:313][  0]LogShaderLibrary: Display: Logical shader library 'Global' has been created as a monolithic library
+[2024.08.02-07.22.33:313][  0]LogShaderLibrary: Display: Tried to open shader library 'Global_SC', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:313][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRigSpline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:313][  0]LogShaderLibrary: Display: Tried to open shader library 'IKRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:313][  0]LogShaderLibrary: Display: Tried to open shader library 'Paper2D', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:313][  0]LogShaderLibrary: Display: Tried to open shader library 'UVEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:313][  0]LogShaderLibrary: Display: Tried to open shader library 'AnimationSharing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:313][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:313][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryMode', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:314][  0]LogShaderLibrary: Display: Tried to open shader library 'BlueprintHeaderView', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:314][  0]LogShaderLibrary: Display: Tried to open shader library 'ConsoleVariables', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:314][  0]LogShaderLibrary: Display: Tried to open shader library 'Dataflow', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:314][  0]LogShaderLibrary: Display: Tried to open shader library 'Bridge', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:314][  0]LogShaderLibrary: Display: Tried to open shader library 'ACLPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:314][  0]LogShaderLibrary: Display: Tried to open shader library 'DatasmithContent', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:314][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioSynesthesia', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:315][  0]LogShaderLibrary: Display: Tried to open shader library 'LightMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:315][  0]LogShaderLibrary: Display: Tried to open shader library 'ObjectMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:315][  0]LogShaderLibrary: Display: Tried to open shader library 'Niagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:315][  0]LogShaderLibrary: Display: Tried to open shader library 'GLTFExporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:315][  0]LogShaderLibrary: Display: Tried to open shader library 'Composure', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:315][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosClothEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:315][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryProcessing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:315][  0]LogShaderLibrary: Display: Tried to open shader library 'ToolPresets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'VPRoles', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'FullBodyIK', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenCV', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXRHandTracking', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioWidgets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplayModularFeatures', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'ConcertSyncClient', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosSolverPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'Synthesis', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'SpeedTreeImporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'WaveTable', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosCaching', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'TraceUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplay', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'MultiUserTakes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'Takes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'ColorCorrectRegions', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'Kdtree', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'Switchboard', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXR', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'RWTHVRToolkit', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:316][  0]LogShaderLibrary: Display: Tried to open shader library 'Metasound', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:317][  0]LogShaderLibrary: Display: Tried to open shader library 'CameraCalibrationCore', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:317][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosNiagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:317][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenColorIO', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:317][  0]LogShaderLibrary: Display: Tried to open shader library 'Interchange', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:317][  0]LogShaderLibrary: Display: Tried to open shader library 'ResonanceAudio', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:317][  0]LogShaderLibrary: Display: Tried to open shader library 'GPUPointCloudRenderer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:317][  0]LogShaderLibrary: Display: Tried to open shader library 'RigVM', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:317][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaCompositing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:317][  0]LogShaderLibrary: Display: Tried to open shader library 'VirtualProductionUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:317][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaPlate', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:317][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXREyeTracker', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:317][  0]LogShaderLibrary: Display: Tried to open shader library 'VPSettings', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:318][  0]LogShaderLibrary: Display: Tried to open shader library 'MovieRenderPipeline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:318][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryCollectionPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:318][  0]LogShaderLibrary: Display: Tried to open shader library 'SequencerScripting', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:318][  0]LogShaderLibrary: Display: Tried to open shader library 'PythonScriptPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:318][  0]LogTemp: Display: Clearing the OS Cache
+[2024.08.02-07.22.33:334][  0]LogInit: FStereoShaderAspects: --- StereoAspects begin ---
+[2024.08.02-07.22.33:334][  0]LogInit: FStereoShaderAspects: Platform=PCD3D_SM6 (49)
+[2024.08.02-07.22.33:334][  0]LogInit: FStereoShaderAspects: bInstancedStereo = 1
+[2024.08.02-07.22.33:334][  0]LogInit: FStereoShaderAspects: bMobilePlatform = 0
+[2024.08.02-07.22.33:334][  0]LogInit: FStereoShaderAspects: bMobilePostprocessing = 0
+[2024.08.02-07.22.33:334][  0]LogInit: FStereoShaderAspects: bMobileMultiView = 1
+[2024.08.02-07.22.33:334][  0]LogInit: FStereoShaderAspects: bMultiViewportCapable = 1
+[2024.08.02-07.22.33:334][  0]LogInit: FStereoShaderAspects: bInstancedStereoNative = 1
+[2024.08.02-07.22.33:334][  0]LogInit: FStereoShaderAspects: ---
+[2024.08.02-07.22.33:334][  0]LogInit: FStereoShaderAspects: bMobileMultiViewCoreSupport = 0
+[2024.08.02-07.22.33:334][  0]LogInit: FStereoShaderAspects: bMobileMultiViewNative = 0
+[2024.08.02-07.22.33:335][  0]LogInit: FStereoShaderAspects: bMobileMultiViewFallback = 0
+[2024.08.02-07.22.33:335][  0]LogInit: FStereoShaderAspects: ---
+[2024.08.02-07.22.33:335][  0]LogInit: FStereoShaderAspects: bInstancedMultiViewportEnabled = 1
+[2024.08.02-07.22.33:335][  0]LogInit: FStereoShaderAspects: bInstancedStereoEnabled = 1
+[2024.08.02-07.22.33:335][  0]LogInit: FStereoShaderAspects: bMobileMultiViewEnabled = 0
+[2024.08.02-07.22.33:335][  0]LogInit: FStereoShaderAspects: --- StereoAspects end ---
+[2024.08.02-07.22.33:340][  0]LogInit: XR: Instanced Stereo Rendering is Enabled
+[2024.08.02-07.22.33:340][  0]LogInit: XR: MultiViewport is Enabled
+[2024.08.02-07.22.33:340][  0]LogInit: XR: Mobile Multiview is Disabled
+[2024.08.02-07.22.33:345][  0]LogSlate: Using FreeType 2.10.0
+[2024.08.02-07.22.33:346][  0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1
+[2024.08.02-07.22.33:445][  0]LogShaderLibrary: Display: Tried to open shader library 'Paper2D', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:445][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/2D/Paper2D/Content/' mounted to '/Paper2D/'
+[2024.08.02-07.22.33:445][  0]LogShaderLibrary: Display: Tried to open shader library 'ACLPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:445][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ACLPlugin/Content/' mounted to '/ACLPlugin/'
+[2024.08.02-07.22.33:445][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRigSpline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:445][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRigSpline/Content/' mounted to '/ControlRigSpline/'
+[2024.08.02-07.22.33:445][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:445][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRig/Content/' mounted to '/ControlRig/'
+[2024.08.02-07.22.33:445][  0]LogShaderLibrary: Display: Tried to open shader library 'IKRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:445][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/IKRig/Content/' mounted to '/IKRig/'
+[2024.08.02-07.22.33:445][  0]LogShaderLibrary: Display: Tried to open shader library 'Bridge', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:445][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Bridge/Content/' mounted to '/Bridge/'
+[2024.08.02-07.22.33:445][  0]LogShaderLibrary: Display: Tried to open shader library 'Composure', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:445][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/Composure/Content/' mounted to '/Composure/'
+[2024.08.02-07.22.33:445][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenColorIO', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:445][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/OpenColorIO/Content/' mounted to '/OpenColorIO/'
+[2024.08.02-07.22.33:445][  0]LogShaderLibrary: Display: Tried to open shader library 'AnimationSharing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:445][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/AnimationSharing/Content/' mounted to '/AnimationSharing/'
+[2024.08.02-07.22.33:445][  0]LogShaderLibrary: Display: Tried to open shader library 'ConcertSyncClient', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:445][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/' mounted to '/ConcertSyncClient/'
+[2024.08.02-07.22.33:445][  0]LogShaderLibrary: Display: Tried to open shader library 'BlueprintHeaderView', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:445][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/BlueprintHeaderView/Content/' mounted to '/BlueprintHeaderView/'
+[2024.08.02-07.22.33:445][  0]LogShaderLibrary: Display: Tried to open shader library 'ConsoleVariables', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:445][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ConsoleVariablesEditor/Content/' mounted to '/ConsoleVariables/'
+[2024.08.02-07.22.33:445][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryMode', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:445][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/GeometryMode/Content/' mounted to '/GeometryMode/'
+[2024.08.02-07.22.33:445][  0]LogShaderLibrary: Display: Tried to open shader library 'LightMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:445][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/LightMixer/Content/' mounted to '/LightMixer/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'ObjectMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/ObjectMixer/Content/' mounted to '/ObjectMixer/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'SpeedTreeImporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/SpeedTreeImporter/Content/' mounted to '/SpeedTreeImporter/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'UVEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/UVEditor/Content/' mounted to '/UVEditor/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'DatasmithContent', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/DatasmithContent/Content/' mounted to '/DatasmithContent/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'GLTFExporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/GLTFExporter/Content/' mounted to '/GLTFExporter/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosCaching', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosCaching/Content/' mounted to '/ChaosCaching/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosClothEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosClothEditor/Content/' mounted to '/ChaosClothEditor/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosNiagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosNiagara/Content/' mounted to '/ChaosNiagara/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosSolverPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosSolverPlugin/Content/' mounted to '/ChaosSolverPlugin/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'ColorCorrectRegions', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ColorCorrectRegions/Content/' mounted to '/ColorCorrectRegions/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'Dataflow', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Dataflow/Content/' mounted to '/Dataflow/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'FullBodyIK', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/FullBodyIK/Content/' mounted to '/FullBodyIK/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryCollectionPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/GeometryCollectionPlugin/Content/' mounted to '/GeometryCollectionPlugin/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'PythonScriptPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/PythonScriptPlugin/Content/' mounted to '/PythonScriptPlugin/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'ToolPresets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ToolPresets/Content/' mounted to '/ToolPresets/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'VirtualProductionUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProductionUtilities/Content/' mounted to '/VirtualProductionUtilities/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'VPRoles', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPRoles/Content/' mounted to '/VPRoles/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'VPSettings', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPSettings/Content/' mounted to '/VPSettings/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'Niagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/FX/Niagara/Content/' mounted to '/Niagara/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'Interchange', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Interchange/Runtime/Content/' mounted to '/Interchange/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaCompositing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaCompositing/Content/' mounted to '/MediaCompositing/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaPlate', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaPlate/Content/' mounted to '/MediaPlate/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'MovieRenderPipeline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/MovieRenderPipeline/Content/' mounted to '/MovieRenderPipeline/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'SequencerScripting', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/SequencerScripting/Content/' mounted to '/SequencerScripting/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioSynesthesia', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioSynesthesia/Content/' mounted to '/AudioSynesthesia/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioWidgets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioWidgets/Content/' mounted to '/AudioWidgets/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryProcessing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/GeometryProcessing/Content/' mounted to '/GeometryProcessing/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'Metasound', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Metasound/Content/' mounted to '/Metasound/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenCV', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenCV/Content/' mounted to '/OpenCV/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXREyeTracker', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXREyeTracker/Content/' mounted to '/OpenXREyeTracker/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXRHandTracking', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXRHandTracking/Content/' mounted to '/OpenXRHandTracking/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXR', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXR/Content/' mounted to '/OpenXR/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'ResonanceAudio', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/ResonanceAudio/Content/' mounted to '/ResonanceAudio/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'RigVM', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/RigVM/Content/' mounted to '/RigVM/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'Synthesis', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Synthesis/Content/' mounted to '/Synthesis/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'WaveTable', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/WaveTable/Content/' mounted to '/WaveTable/'
+[2024.08.02-07.22.33:446][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplayModularFeatures', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:446][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplayModularFeatures/Content/' mounted to '/nDisplayModularFeatures/'
+[2024.08.02-07.22.33:447][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplay', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:447][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplay/Content/' mounted to '/nDisplay/'
+[2024.08.02-07.22.33:447][  0]LogShaderLibrary: Display: Tried to open shader library 'TraceUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:447][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/TraceUtilities/Content/' mounted to '/TraceUtilities/'
+[2024.08.02-07.22.33:447][  0]LogShaderLibrary: Display: Tried to open shader library 'CameraCalibrationCore', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:447][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/CameraCalibrationCore/Content/' mounted to '/CameraCalibrationCore/'
+[2024.08.02-07.22.33:447][  0]LogShaderLibrary: Display: Tried to open shader library 'MultiUserTakes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:447][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/MultiUserTakes/Content/' mounted to '/MultiUserTakes/'
+[2024.08.02-07.22.33:447][  0]LogShaderLibrary: Display: Tried to open shader library 'Switchboard', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:447][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Switchboard/Content/' mounted to '/Switchboard/'
+[2024.08.02-07.22.33:447][  0]LogShaderLibrary: Display: Tried to open shader library 'Takes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:447][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Takes/Content/' mounted to '/Takes/'
+[2024.08.02-07.22.33:447][  0]LogShaderLibrary: Display: Tried to open shader library 'GPUPointCloudRenderer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:447][  0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UE4_GPUPointCloudRenderer/Content/' mounted to '/GPUPointCloudRenderer/'
+[2024.08.02-07.22.33:447][  0]LogShaderLibrary: Display: Tried to open shader library 'Kdtree', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:447][  0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UEPlugin-Kdtree/Kdtree/Content/' mounted to '/Kdtree/'
+[2024.08.02-07.22.33:447][  0]LogShaderLibrary: Display: Tried to open shader library 'RWTHVRToolkit', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.22.33:447][  0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/rwth-vr-toolkit-with-meta-cast/Content/' mounted to '/RWTHVRToolkit/'
+[2024.08.02-07.22.33:447][  0]LogShaderLibrary: Display: Using IoDispatcher for shader code library MetaCastBachelor. Total 2223 unique shaders.
+[2024.08.02-07.22.33:447][  0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library MetaCastBachelor
+[2024.08.02-07.22.33:447][  0]LogShaderLibrary: Display: Logical shader library 'MetaCastBachelor' has been created as a monolithic library
+[2024.08.02-07.22.33:448][  0]LogRHI: Could not open FPipelineCacheFile: ../../../MetaCastBachelor/Content/PipelineCaches/Windows/MetaCastBachelor_PCD3D_SM6.stable.upipelinecache
+[2024.08.02-07.22.33:448][  0]LogRHI: Could not open FPipelineCacheFile: ../../../MetaCastBachelor/Content/PipelineCaches/Windows/MetaCastBachelor_PCD3D_SM6.stable.upipelinecache
+[2024.08.02-07.22.33:448][  0]LogShaderLibrary: Display: Tried to open again shader library 'MetaCastBachelor', but could not find new components for it (existing components: 1).
+[2024.08.02-07.22.33:448][  0]LogRHI: Could not open FPipelineCacheFile: ../../../MetaCastBachelor/Content/PipelineCaches/Windows/MetaCastBachelor_PCD3D_SM6.stable.upipelinecache
+[2024.08.02-07.22.33:448][  0]LogInit: Using OS detected language (en-US).
+[2024.08.02-07.22.33:448][  0]LogInit: Using OS detected locale (de-DE).
+[2024.08.02-07.22.33:448][  0]LogTextLocalizationManager: No localization for 'en-US' exists, so 'en' will be used for the language.
+[2024.08.02-07.22.33:448][  0]LogTextLocalizationManager: No localization for 'de-DE' exists, so 'en' will be used for the locale.
+[2024.08.02-07.22.33:449][  0]LogAssetRegistry: FAssetRegistry took 0.0003 seconds to start up
+[2024.08.02-07.22.33:607][  0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages
+[2024.08.02-07.22.33:610][  0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found.
+[2024.08.02-07.22.33:610][  0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found.
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: Available device profiles:
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110419E80][000001F10F77AAC0 66] GlobalDefaults, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110419B80][000001F1093D0010 66] Windows, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110419A00][000001F1093D9250 66] WindowsEditor, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110419700][000001F11062DB70 66] WindowsServer, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041F700][000001F11062B6E0 66] WindowsClient, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041F580][000001F110629250 66] IOS, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041F400][000001F110626DC0 66] iPadAir2, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041F280][000001F110624930 66] IPadPro, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041F100][000001F1106224A0 66] iPadAir3, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041EF80][000001F110620010 66] iPadAir4, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041EE00][000001F11063DB70 66] iPadAir5, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041EC80][000001F11063B6E0 66] iPadMini4, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041EB00][000001F110639250 66] iPadMini5, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041E980][000001F110636DC0 66] iPadMini6, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041E800][000001F110634930 66] iPhone6S, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041E680][000001F1106324A0 66] iPhone7, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041E500][000001F110630010 66] iPodTouch7, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041E380][000001F11064DB70 66] iPhone6SPlus, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041E200][000001F11064B6E0 66] iPhone7Plus, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041E080][000001F110649250 66] iPhoneSE, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041DF00][000001F110646DC0 66] iPhone8, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041DD80][000001F110644930 66] iPhone8Plus, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041DC00][000001F1106424A0 66] iPhoneX, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110419880][000001F110640010 66] iPhoneXS, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110419580][000001F11065DB70 66] iPhoneXSMax, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041DA80][000001F11065B6E0 66] iPhoneXR, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041D900][000001F110659250 66] iPhone11, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041D780][000001F110656DC0 66] iPhone11Pro, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041D600][000001F110654930 66] iPhone11ProMax, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041D480][000001F1106524A0 66] iPhoneSE2, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041D300][000001F110650010 66] iPhone12Mini, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041D180][000001F11066DB70 66] iPhone12, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041D000][000001F11066B6E0 66] iPhone12Pro, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041CE80][000001F110669250 66] iPhone12ProMax, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041CD00][000001F110666DC0 66] iPhone13Mini, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041CB80][000001F110664930 66] iPhone13, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041CA00][000001F1106624A0 66] iPhone13Pro, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041C880][000001F110660010 66] iPhone13ProMax, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041C700][000001F11067DB70 66] iPhoneSE3, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041FE80][000001F11067B6E0 66] iPhone14, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041FD00][000001F110679250 66] iPhone14Plus, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041FB80][000001F110676DC0 66] iPhone14Pro, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041FA00][000001F110674930 66] iPhone14ProMax, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F11041F880][000001F1106724A0 66] iPhone15, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110683100][000001F110670010 66] iPhone15Plus, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110682F80][000001F11069DB70 66] iPhone15Pro, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110682E00][000001F11069B6E0 66] iPhone15ProMax, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110682C80][000001F110699250 66] iPadPro105, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110682B00][000001F110696DC0 66] iPadPro129, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110682980][000001F110694930 66] iPadPro97, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110682800][000001F1106924A0 66] iPadPro2_129, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110682680][000001F110690010 66] iPad5, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110682500][000001F1106ADB70 66] iPad6, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110682380][000001F1106AB6E0 66] iPad7, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110682200][000001F1106A9250 66] iPad8, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110682080][000001F1106A6DC0 66] iPad9, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110681F00][000001F1106A4930 66] iPad10, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110681D80][000001F1106A24A0 66] iPadPro11, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110681C00][000001F1106A0010 66] iPadPro2_11, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110681A80][000001F1106BDB70 66] iPadPro3_11, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110681900][000001F1106BB6E0 66] iPadPro4_11, 
+[2024.08.02-07.22.33:612][  0]LogDeviceProfileManager: 	[000001F110681780][000001F1106B9250 66] iPadPro3_129, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110681600][000001F1106B6DC0 66] iPadPro4_129, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110681480][000001F1106B4930 66] iPadPro5_129, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110681300][000001F1106B24A0 66] iPadPro6_129, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110681180][000001F1106B0010 66] AppleTV, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110681000][000001F1106CDB70 66] AppleTV4K, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110680E80][000001F1106CB6E0 66] AppleTV2_4K, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110680D00][000001F1106C9250 66] TVOS, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110680B80][000001F1106C6DC0 66] Mac, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110680A00][000001F1106C4930 66] MacEditor, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110680880][000001F1106C24A0 66] MacClient, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110680700][000001F1106C0010 66] MacServer, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110680580][000001F1106DDB70 66] Linux, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110680400][000001F1106DB6E0 66] LinuxEditor, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110680280][000001F1106D9250 66] LinuxArm64Editor, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110680100][000001F1106D6DC0 66] LinuxArm64, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110686280][000001F1106D4930 66] LinuxClient, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110686100][000001F1106D24A0 66] LinuxArm64Client, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110685F80][000001F1106D0010 66] LinuxServer, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110685E00][000001F1106EDB70 66] LinuxArm64Server, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110685C80][000001F1106EB6E0 66] Android, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110685B00][000001F1106E9250 66] Android_Preview_OpenGL, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110685980][000001F1106E6DC0 66] Android_Preview_Vulkan, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110685800][000001F1106E4930 66] Android_Low, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110685680][000001F1106E24A0 66] Android_Mid, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110685500][000001F1106E0010 66] Android_High, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110685380][000001F1106FDB70 66] Android_Default, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110685200][000001F1106FB6E0 66] Android_Adreno4xx, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110685080][000001F1106F9250 66] Android_Adreno5xx_Low, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110684F00][000001F1106F6DC0 66] Android_Adreno5xx, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110684D80][000001F1106F4930 66] Android_Adreno6xx, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110684C00][000001F1106F24A0 66] Android_Adreno6xx_Vulkan, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110684A80][000001F1106F0010 66] Android_Adreno7xx, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110684900][000001F11070DB70 66] Android_Adreno7xx_Vulkan, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110684780][000001F11070B6E0 66] Android_Mali_T6xx, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110684600][000001F110709250 66] Android_Mali_T7xx, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110684480][000001F110706DC0 66] Android_Mali_T8xx, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110684300][000001F110704930 66] Android_Mali_G71, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110684180][000001F1107024A0 66] Android_Mali_G72, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110684000][000001F110700010 66] Android_Mali_G72_Vulkan, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110683E80][000001F11071DB70 66] Android_Mali_G76, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110683D00][000001F11071B6E0 66] Android_Mali_G76_Vulkan, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110683B80][000001F110719250 66] Android_Mali_G77, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110683A00][000001F110716DC0 66] Android_Mali_G77_Vulkan, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110683880][000001F110714930 66] Android_Mali_G78, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110683700][000001F1107124A0 66] Android_Mali_G78_Vulkan, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110683580][000001F110710010 66] Android_Mali_G710, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110683400][000001F11072DB70 66] Android_Mali_G710_Vulkan, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110683280][000001F11072B6E0 66] Android_Mali_G7xx, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110689400][000001F110729250 66] Android_Mali_G7xx_Vulkan, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110689280][000001F110726DC0 66] Android_Xclipse_920, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110689100][000001F110724930 66] Android_Xclipse_920_Vulkan, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110688F80][000001F1107224A0 66] Android_Vulkan_SM5, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110688E00][000001F110720010 66] Android_PowerVR_G6xxx, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110688C80][000001F11075DB70 66] Android_PowerVR_GT7xxx, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110688B00][000001F11075B6E0 66] Android_PowerVR_GE8xxx, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110688980][000001F110759250 66] Android_PowerVR_GM9xxx, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110688800][000001F110756DC0 66] Android_PowerVR_GM9xxx_Vulkan, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110688680][000001F110754930 66] Android_TegraK1, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110688500][000001F1107524A0 66] Android_Unknown_Vulkan, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110688380][000001F110750010 66] Oculus_Quest, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110688200][000001F11076DB70 66] Oculus_Quest2, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110688080][000001F11076B6E0 66] Meta_Quest_Pro, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110687F00][000001F110769250 66] Meta_Quest_3, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110687D80][000001F110766DC0 66] HoloLens, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: 	[000001F110687C00][000001F110764930 66] MagicLeap_Vulkan, 
+[2024.08.02-07.22.33:613][  0]LogDeviceProfileManager: Active device profile: [000001F110419B80][000001F1093D0010 66] Windows
+[2024.08.02-07.22.33:613][  0]LogCsvProfiler: Display: Metadata set : deviceprofile="Windows"
+[2024.08.02-07.22.33:896][  0]LogTextureEncodingSettings: Display: Texture Encode Speed: Final (cook).
+[2024.08.02-07.22.33:896][  0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal
+[2024.08.02-07.22.33:900][  0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled
+[2024.08.02-07.22.33:977][  0]LogPackageLocalizationCache: Processed 62 localized package path(s) for 1 prioritized culture(s) in 0.000219 seconds
+[2024.08.02-07.22.34:027][  0]LogStaticMesh: [SM_LightCardPlane] Mesh is marked for CPU read.
+[2024.08.02-07.22.34:029][  0]LogStaticMesh: [plane_hd_1x1] Mesh is marked for CPU read.
+[2024.08.02-07.22.34:038][  0]LogConfig: Warning: FConfigCacheIni::LoadFile failed loading file as it was 0 size.  Filename was:  ../../../MetaCastBachelor/Config/Demo.ini
+[2024.08.02-07.22.34:044][  0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
+[2024.08.02-07.22.34:044][  0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
+[2024.08.02-07.22.34:102][  0]LogMoviePlayer: Initializing movie player
+[2024.08.02-07.22.34:106][  0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 82D6F65A4ECFC57B9BF1EDB1573DD8B0 | Instance: 1B63E9E645D741BDEC984490A4CDD7A6 (ITC22160-74320).
+[2024.08.02-07.22.34:136][  0]LogAudio: Display: Registering Engine Module Parameter Interfaces...
+[2024.08.02-07.22.34:137][  0]LogMetasoundEngine: MetaSound Engine Initialized
+[2024.08.02-07.22.34:141][  0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance
+[2024.08.02-07.22.34:141][  0]LogSlateStyle: Warning: Missing Resource from 'CoreStyle' Style: 'Unable to find Brush 'Sequencer.Timeline.VanillaScrubHandleDown'.'
+[2024.08.02-07.22.34:141][  0]LogDisplayClusterModule: Instantiating subsystem managers...
+[2024.08.02-07.22.34:141][  0]LogDisplayClusterRender: Registering factory for rendering device type: dc_dev_mono
+[2024.08.02-07.22.34:141][  0]LogDisplayClusterRender: Registered factory for rendering device type: dc_dev_mono
+[2024.08.02-07.22.34:141][  0]LogDisplayClusterRender: Registering factory for rendering device type: quad_buffer_stereo
+[2024.08.02-07.22.34:141][  0]LogDisplayClusterRender: Registered factory for rendering device type: quad_buffer_stereo
+[2024.08.02-07.22.34:141][  0]LogDisplayClusterRender: Registering factory for rendering device type: dc_dev_side_by_side
+[2024.08.02-07.22.34:141][  0]LogDisplayClusterRender: Registered factory for rendering device type: dc_dev_side_by_side
+[2024.08.02-07.22.34:141][  0]LogDisplayClusterRender: Registering factory for rendering device type: dc_dev_top_bottom
+[2024.08.02-07.22.34:141][  0]LogDisplayClusterRender: Registered factory for rendering device type: dc_dev_top_bottom
+[2024.08.02-07.22.34:141][  0]LogDisplayClusterRender: Registering factory for synchronization policy: none
+[2024.08.02-07.22.34:141][  0]LogDisplayClusterRender: Registered factory for synchronization policy: none
+[2024.08.02-07.22.34:141][  0]LogDisplayClusterRender: Registering factory for synchronization policy: ethernet
+[2024.08.02-07.22.34:142][  0]LogDisplayClusterRender: Registered factory for synchronization policy: ethernet
+[2024.08.02-07.22.34:142][  0]LogDisplayClusterRender: Registering factory for synchronization policy: ethernet_barrier
+[2024.08.02-07.22.34:142][  0]LogDisplayClusterRender: Registered factory for synchronization policy: ethernet_barrier
+[2024.08.02-07.22.34:142][  0]LogDisplayClusterRender: Registering factory for synchronization policy: nvidia
+[2024.08.02-07.22.34:142][  0]LogDisplayClusterRender: Registered factory for synchronization policy: nvidia
+[2024.08.02-07.22.34:142][  0]LogDisplayClusterModule: DisplayCluster module has been started
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterProjectionVIOSO: VIOSO API(1,6,19,90) was initialized from file '../../../Engine/Plugins/Runtime/nDisplay/ThirdParty/VIOSO/DLL/ViosoWarpBlend64.dll'.
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterProjection: Projection module has been instantiated
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterProjection: Projection module startup
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterProjection: Registering <camera> projection policy factory...
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterRender: Registering factory for projection type: camera
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterRender: Registered factory for projection type: camera
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterProjection: Registering <domeprojection> projection policy factory...
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterRender: Registering factory for projection type: domeprojection
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterRender: Registered factory for projection type: domeprojection
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterProjection: Registering <easyblend> projection policy factory...
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterRender: Registering factory for projection type: easyblend
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterRender: Registered factory for projection type: easyblend
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterProjection: Registering <link> projection policy factory...
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterRender: Registering factory for projection type: link
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterRender: Registered factory for projection type: link
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterProjection: Registering <manual> projection policy factory...
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterRender: Registering factory for projection type: manual
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterRender: Registered factory for projection type: manual
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterProjection: Registering <mpcdi> projection policy factory...
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterRender: Registering factory for projection type: mpcdi
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterRender: Registered factory for projection type: mpcdi
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterProjection: Registering <mesh> projection policy factory...
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterRender: Registering factory for projection type: mesh
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterRender: Registered factory for projection type: mesh
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterProjection: Registering <simple> projection policy factory...
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterRender: Registering factory for projection type: simple
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterRender: Registered factory for projection type: simple
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterProjection: Registering <vioso> projection policy factory...
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterRender: Registering factory for projection type: vioso
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterRender: Registered factory for projection type: vioso
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterProjection: Projection module has started
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterRemoteControlInterceptor: DisplayClusterRemoteControlInterceptor has been registered
+[2024.08.02-07.22.34:146][  0]LogDisplayClusterMedia: Starting module 'DisplayClusterMedia'...
+[2024.08.02-07.22.34:146][  0]GPUPointCloudRenderer: //////////////////////////////////////////// 
+
+[2024.08.02-07.22.34:146][  0]GPUPointCloudRenderer: // Initializing GPU Point Cloud Renderer... 
+
+[2024.08.02-07.22.34:146][  0]GPUPointCloudRenderer: //////////////////////////////////////////// 
+
+[2024.08.02-07.22.34:155][  0]LogUObjectArray: 25084 objects as part of root set at end of initial load.
+[2024.08.02-07.22.34:155][  0]LogUObjectArray: 4 objects are not in the root set, but can never be destroyed because they are in the DisregardForGC set.
+[2024.08.02-07.22.34:155][  0]LogUObjectAllocator: 5582112 out of 0 bytes used by permanent object pool.
+[2024.08.02-07.22.34:155][  0]LogUObjectArray: CloseDisregardForGC: 25084/25084 objects in disregard for GC pool
+[2024.08.02-07.22.34:172][  0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 24348 public script object entries (639.99 KB)
+[2024.08.02-07.22.34:172][  0]LogStreaming: Display: AsyncLoading2 - Thread Started: true, IsInitialLoad: false
+[2024.08.02-07.22.34:173][  0]LogEngine: Initializing Engine...
+[2024.08.02-07.22.34:198][  0]LogHMD: HMD configured for shader platform PCD3D_SM6, bIsMobileMultiViewEnabled=0, bProjectionLayerAlphaEnabled=0
+[2024.08.02-07.22.34:762][  0]LogStats: UGameplayTagsManager::InitializeManager -  0.000 s
+[2024.08.02-07.22.34:769][  0]LogInit: Initializing FReadOnlyCVARCache
+[2024.08.02-07.22.34:769][  0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use.
+[2024.08.02-07.22.34:769][  0]LogInit: Texture streaming: Enabled
+[2024.08.02-07.22.34:769][  0]LogAudio: Display: Initializing Audio Device Manager...
+[2024.08.02-07.22.34:770][  0]LogAudio: Display: Loading Default Audio Settings Objects...
+[2024.08.02-07.22.34:770][  0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load).
+[2024.08.02-07.22.34:770][  0]LogAudio: Display: AudioInfo: 'BINKA' Registered
+[2024.08.02-07.22.34:770][  0]LogAudio: Display: AudioInfo: 'PCM' Registered
+[2024.08.02-07.22.34:770][  0]LogAudio: Display: AudioInfo: 'ADPCM' Registered
+[2024.08.02-07.22.34:770][  0]LogAudio: Display: AudioInfo: 'OGG' Registered
+[2024.08.02-07.22.34:770][  0]LogAudio: Display: AudioInfo: 'OPUS' Registered
+[2024.08.02-07.22.34:770][  0]LogAudio: Display: Audio Device Manager Initialized
+[2024.08.02-07.22.34:770][  0]LogAudio: Display: Creating Audio Device:                 Id: 1, Scope: Shared, Realtime: True
+[2024.08.02-07.22.34:770][  0]LogAudioMixer: Display: Audio Mixer Platform Settings:
+[2024.08.02-07.22.34:770][  0]LogAudioMixer: Display: 	Sample Rate:						  48000
+[2024.08.02-07.22.34:770][  0]LogAudioMixer: Display: 	Callback Buffer Frame Size Requested: 1024
+[2024.08.02-07.22.34:770][  0]LogAudioMixer: Display: 	Callback Buffer Frame Size To Use:	  1024
+[2024.08.02-07.22.34:770][  0]LogAudioMixer: Display: 	Number of buffers to queue:			  1
+[2024.08.02-07.22.34:770][  0]LogAudioMixer: Display: 	Max Channels (voices):				  32
+[2024.08.02-07.22.34:770][  0]LogAudioMixer: Display: 	Number of Async Source Workers:		  4
+[2024.08.02-07.22.34:770][  0]LogAudio: Display: AudioDevice MaxSources: 32
+[2024.08.02-07.22.34:770][  0]LogAudio: Display: Audio Spatialization Plugin: None (built-in).
+[2024.08.02-07.22.34:770][  0]LogAudio: Display: Audio Reverb Plugin: None (built-in).
+[2024.08.02-07.22.34:770][  0]LogAudio: Display: Audio Occlusion Plugin: None (built-in).
+[2024.08.02-07.22.34:786][  0]LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded.
+[2024.08.02-07.22.34:786][  0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2'
+[2024.08.02-07.22.34:864][  0]LogAudioMixer: Display: Using Audio Hardware Device Lautsprecher (3- Realtek USB2.0 Audio)
+[2024.08.02-07.22.34:865][  0]LogAudioMixer: Display: Initializing Sound Submixes...
+[2024.08.02-07.22.34:865][  0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault'
+[2024.08.02-07.22.34:865][  0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault'
+[2024.08.02-07.22.34:868][  0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1
+[2024.08.02-07.22.34:868][  0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1
+[2024.08.02-07.22.34:868][  0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1
+[2024.08.02-07.22.34:868][  0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1
+[2024.08.02-07.22.34:868][  0]LogInit: FAudioDevice initialized with ID 1.
+[2024.08.02-07.22.34:869][  0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1
+[2024.08.02-07.22.34:869][  0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1"
+[2024.08.02-07.22.34:879][  0]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created!
+[2024.08.02-07.22.34:880][  0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
+[2024.08.02-07.22.34:883][  0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'.
+[2024.08.02-07.22.34:884][  0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
+[2024.08.02-07.22.34:884][  0]LogInit: Display: Game Engine Initialized.
+[2024.08.02-07.22.34:886][  0]LogWindows: Attached monitors:
+[2024.08.02-07.22.34:886][  0]LogWindows:     resolution: 1920x1080, work area: (1920, 0) -> (3840, 1040), device: '\\.\DISPLAY2'
+[2024.08.02-07.22.34:886][  0]LogWindows:     resolution: 1920x1080, work area: (0, 0) -> (1920, 1040), device: '\\.\DISPLAY1' [PRIMARY]
+[2024.08.02-07.22.34:886][  0]LogWindows: Found 2 attached monitors.
+[2024.08.02-07.22.34:886][  0]LogWindows: Gathering driver information using Windows Setup API
+[2024.08.02-07.22.34:886][  0]LogInit: Display: Starting Game.
+[2024.08.02-07.22.34:886][  0]LogNet: Browse: /Game/Maps/Login?Name=Player
+[2024.08.02-07.22.34:886][  0]LogLoad: LoadMap: /Game/Maps/Login?Name=Player
+[2024.08.02-07.22.34:886][  0]LogWorld: BeginTearingDown for /Temp/Untitled_0
+[2024.08.02-07.22.34:887][  0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true
+[2024.08.02-07.22.34:887][  0]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.22.34:890][  0]LogRHI: Display: Encountered a new compute PSO: 108100765
+[2024.08.02-07.22.34:893][  0]LogRHI: Display: Encountered a new compute PSO: 3044213281
+[2024.08.02-07.22.34:894][  0]LogRHI: Display: Encountered a new compute PSO: 3441300143
+[2024.08.02-07.22.34:903][  0]LogStreaming: Display: 0.001 ms for processing 44 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 0 (163->163) packages and 0 (167->167) public exports.
+[2024.08.02-07.22.34:903][  0]LogAudio: Display: Audio Device unregistered from world 'None'.
+[2024.08.02-07.22.34:906][  0]LogUObjectHash: Compacting FUObjectHashTables data took   0.63ms
+[2024.08.02-07.22.34:951][  0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Login'.
+[2024.08.02-07.22.34:951][  0]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created!
+[2024.08.02-07.22.34:951][  0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
+[2024.08.02-07.22.34:953][  0]LogAIModule: Creating AISystem for world Login
+[2024.08.02-07.22.34:972][  0]LogRHI: Display: Encountered a new compute PSO: 1624740199
+[2024.08.02-07.22.34:972][  0]LogRHI: Display: Encountered a new compute PSO: 3081443093
+[2024.08.02-07.22.34:973][  0]LogRHI: Display: Encountered a new compute PSO: 434897211
+[2024.08.02-07.22.34:975][  0]LogLoad: Game class is 'VRGameMode_C'
+[2024.08.02-07.22.34:978][  0]LogWorld: Bringing World /Game/Maps/Login.Login up for play (max tick rate 0) at 2024.08.02-09.22.34
+[2024.08.02-07.22.34:978][  0]LogWorld: Bringing up level for play took: 0.002759
+[2024.08.02-07.22.34:979][  0]LogGameMode: FindPlayerStart: PATHS NOT DEFINED or NO PLAYERSTART with positive rating
+[2024.08.02-07.22.34:985][  0]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1
+[2024.08.02-07.22.34:985][  0]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.22.34:990][  0]LogSlate: Took 0.000499 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoRegular.ufont' (155K)
+[2024.08.02-07.22.34:991][  0]vr.PixelDensity = "1"
+[2024.08.02-07.22.34:991][  0]LogLoad: Took 0.104575 seconds to LoadMap(/Game/Maps/Login)
+[2024.08.02-07.22.34:992][  0]LogSlate: Took 0.000442 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoBold.ufont' (160K)
+[2024.08.02-07.22.34:992][  0]LogViewport: Scene viewport resized to 1920x1080, mode WindowedFullscreen.
+[2024.08.02-07.22.34:995][  0]LogHMD: Warning: Requesting 10 bit swapchain, but not supported: fall back to 8bpc
+[2024.08.02-07.22.35:044][  0]LogSlate: Took 0.000381 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K)
+[2024.08.02-07.22.35:045][  0]LogRHI: Display: ShaderPipelineCache: Paused Batching. 1
+[2024.08.02-07.22.35:045][  0]LogPakFile: AllPaks IndexSizes: DirectoryHashSize=193072, PathHashSize=16, EntriesSize=32752, TotalSize=225840
+[2024.08.02-07.22.35:045][  0]LogRHI: Display: ShaderPipelineCache: Resumed Batching. 0
+[2024.08.02-07.22.35:045][  0]LogRHI: Display: ShaderPipelineCache: Batching Resumed.
+[2024.08.02-07.22.35:046][  0]LogRenderer: Warning: Resizing VR buffer to 2656 by 1300
+[2024.08.02-07.22.35:051][  0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init()
+[2024.08.02-07.22.35:051][  0]LogLoad: (Engine Initialization) Total time: 3.20 seconds
+[2024.08.02-07.22.35:057][  0]LogSlate: Took 0.000426 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K)
+[2024.08.02-07.22.35:087][  0]LogRHI: Display: Encountered a new compute PSO: 4084646486
+[2024.08.02-07.22.35:087][  0]LogRHI: Display: Encountered a new compute PSO: 812371551
+[2024.08.02-07.22.35:087][  0]LogRHI: Display: Encountered a new graphics PSO: 2996660223
+[2024.08.02-07.22.35:087][  0]LogRHI: Display: Encountered a new graphics PSO: 438169823
+[2024.08.02-07.22.35:088][  0]LogRHI: Display: Encountered a new compute PSO: 3707458169
+[2024.08.02-07.22.35:088][  0]LogRHI: Display: Encountered a new compute PSO: 1983791817
+[2024.08.02-07.22.35:088][  0]LogRHI: Display: Encountered a new compute PSO: 3071658855
+[2024.08.02-07.22.35:088][  0]LogRHI: Display: Encountered a new compute PSO: 1980351999
+[2024.08.02-07.22.35:088][  0]LogRHI: Display: Encountered a new compute PSO: 3265167958
+[2024.08.02-07.22.35:088][  0]LogRHI: Display: Encountered a new graphics PSO: 568850401
+[2024.08.02-07.22.35:088][  0]LogRHI: Display: Encountered a new graphics PSO: 1857403627
+[2024.08.02-07.22.35:088][  0]LogRHI: Display: Encountered a new graphics PSO: 1680577637
+[2024.08.02-07.22.35:088][  0]LogRHI: Display: Encountered a new graphics PSO: 2789720086
+[2024.08.02-07.22.35:090][  0]LogRHI: Display: Encountered a new graphics PSO: 2141321626
+[2024.08.02-07.22.35:107][  0]LogRHI: Display: Encountered a new graphics PSO: 3396054539
+[2024.08.02-07.22.35:276][  0]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.22.35:279][  0]LogContentStreaming: Texture pool size now 1000 MB
+[2024.08.02-07.22.35:309][  2]LogRHI: Display: Encountered a new compute PSO: 36000004
+[2024.08.02-07.22.35:309][  2]LogRHI: Display: Encountered a new compute PSO: 1496384869
+[2024.08.02-07.22.35:309][  2]LogRHI: Display: Encountered a new compute PSO: 1213868836
+[2024.08.02-07.22.35:309][  2]LogRHI: Display: Encountered a new compute PSO: 3156736644
+[2024.08.02-07.22.35:309][  2]LogRHI: Display: Encountered a new compute PSO: 3916353388
+[2024.08.02-07.22.35:309][  2]LogRHI: Display: Encountered a new compute PSO: 2377609249
+[2024.08.02-07.22.35:309][  2]LogRHI: Display: Encountered a new compute PSO: 1481873912
+[2024.08.02-07.22.35:309][  2]LogRHI: Display: Encountered a new compute PSO: 3415796330
+[2024.08.02-07.22.35:309][  2]LogRHI: Display: Encountered a new compute PSO: 2137981577
+[2024.08.02-07.22.35:309][  2]LogRHI: Display: Encountered a new compute PSO: 2607838988
+[2024.08.02-07.22.35:310][  2]LogRHI: Display: Encountered a new graphics PSO: 2274179198
+[2024.08.02-07.22.35:310][  2]LogRHI: Display: Encountered a new compute PSO: 2045927908
+[2024.08.02-07.22.35:310][  2]LogRHI: Display: Encountered a new compute PSO: 3810519787
+[2024.08.02-07.22.35:310][  2]LogRHI: Display: Encountered a new compute PSO: 1838702928
+[2024.08.02-07.22.35:310][  2]LogRHI: Display: Encountered a new compute PSO: 309180451
+[2024.08.02-07.22.35:310][  2]LogRHI: Display: Encountered a new compute PSO: 3137437172
+[2024.08.02-07.22.35:310][  2]LogRHI: Display: Encountered a new compute PSO: 831929746
+[2024.08.02-07.22.35:310][  2]LogRHI: Display: Encountered a new compute PSO: 3360497970
+[2024.08.02-07.22.35:311][  2]LogRHI: Display: Encountered a new compute PSO: 3560210858
+[2024.08.02-07.22.35:311][  2]LogRHI: Display: Encountered a new compute PSO: 2399646039
+[2024.08.02-07.22.35:311][  2]LogRHI: Display: Encountered a new compute PSO: 676159369
+[2024.08.02-07.22.35:311][  2]LogRHI: Display: Encountered a new compute PSO: 3509667929
+[2024.08.02-07.22.35:311][  2]LogRHI: Display: Encountered a new compute PSO: 2077624189
+[2024.08.02-07.22.35:311][  2]LogRHI: Display: Encountered a new graphics PSO: 1044072120
+[2024.08.02-07.22.35:311][  2]LogRHI: Display: Encountered a new graphics PSO: 3670865199
+[2024.08.02-07.22.35:311][  2]LogRHI: Display: Encountered a new graphics PSO: 3377188663
+[2024.08.02-07.22.35:311][  2]LogRHI: Display: Encountered a new compute PSO: 724033258
+[2024.08.02-07.22.35:312][  2]LogRHI: Display: Encountered a new graphics PSO: 4210484662
+[2024.08.02-07.22.35:312][  2]LogRHI: Display: Encountered a new compute PSO: 4090296402
+[2024.08.02-07.22.35:313][  2]LogRHI: Display: Encountered a new compute PSO: 710140861
+[2024.08.02-07.22.35:313][  2]LogRHI: Display: Encountered a new graphics PSO: 1487777183
+[2024.08.02-07.22.35:313][  2]LogRHI: Display: Encountered a new graphics PSO: 977987442
+[2024.08.02-07.22.35:313][  2]LogRHI: Display: Encountered a new compute PSO: 3886170959
+[2024.08.02-07.22.35:315][  2]LogRHI: Display: Encountered a new graphics PSO: 3898165938
+[2024.08.02-07.22.35:315][  2]LogRHI: Display: Encountered a new graphics PSO: 2989811062
+[2024.08.02-07.22.35:315][  2]LogRHI: Display: Encountered a new graphics PSO: 2376581795
+[2024.08.02-07.22.35:316][  2]LogRHI: Display: Encountered a new graphics PSO: 3776468594
+[2024.08.02-07.22.35:316][  2]LogRHI: Display: Encountered a new graphics PSO: 3126438517
+[2024.08.02-07.22.35:317][  2]LogRHI: Display: Encountered a new graphics PSO: 392357091
+[2024.08.02-07.22.35:320][  2]LogRHI: Display: Encountered a new compute PSO: 349008682
+[2024.08.02-07.22.35:591][  2]LogD3D12RHI: Cannot end block when stack is empty
+[2024.08.02-07.22.35:593][  2]LogHMD: SetSpectatorScreenMode(7).
+[2024.08.02-07.22.35:604][  3]LogRHI: Display: Encountered a new graphics PSO: 1324910427
+[2024.08.02-07.22.35:604][  3]LogRHI: Display: Encountered a new graphics PSO: 1796231892
+[2024.08.02-07.22.38:429][255]LogBlueprintUserMessages: [LoginManager_C_1] 44
+[2024.08.02-07.22.38:433][255]LogTemp: Initialized Participant ID: 44
+[2024.08.02-07.22.38:450][256]LogProfilingDebugging: Allocated a 1024 x 1024 texture for HMD canvas layer
+[2024.08.02-07.22.38:450][256]LogRHI: Display: Encountered a new graphics PSO: 1502675884
+[2024.08.02-07.22.38:463][258]LogRHI: Display: Encountered a new graphics PSO: 4069790606
+[2024.08.02-07.22.38:626][268]LogHMD: SetSpectatorScreenMode(7).
+[2024.08.02-07.22.38:626][268]LogBlueprintUserMessages: [LoginManager_C_1] Initialized!
+[2024.08.02-07.22.41:227][502]LogBlueprintUserMessages: [LoginManager_C_1] Starting Condition: Brush
+[2024.08.02-07.22.46:226][952]LogBlueprintUserMessages: [LoginManager_C_1] LOADING CONDITION!
+[2024.08.02-07.22.46:226][952]LogTemp: Loading level: /Game/Maps/BaselineMap.BaselineMap
+[2024.08.02-07.22.46:229][953]LogNet: Browse: /Game/Maps/BaselineMap.BaselineMap
+[2024.08.02-07.22.46:229][953]LogLoad: LoadMap: /Game/Maps/BaselineMap.BaselineMap
+[2024.08.02-07.22.46:229][953]LogWorld: BeginTearingDown for /Game/Maps/Login
+[2024.08.02-07.22.46:230][953]LogWorld: UWorld::CleanupWorld for Login, bSessionEnded=true, bCleanupResources=true
+[2024.08.02-07.22.46:230][953]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.22.46:247][953]LogHMD: Error: Unexpected error on xrBeginFrame. Error code was XR_ERROR_CALL_ORDER_INVALID.
+[2024.08.02-07.22.46:285][953]LogStreaming: Display: 0.020 ms for processing 532 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 63 (265->202) packages and 221 (437->216) public exports.
+[2024.08.02-07.22.46:285][953]LogAudio: Display: Audio Device unregistered from world 'None'.
+[2024.08.02-07.22.46:287][953]LogSlate: Slate User Unregistered.  User Index 8
+[2024.08.02-07.22.46:287][953]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.22.46:288][953]LogUObjectHash: Compacting FUObjectHashTables data took   0.58ms
+[2024.08.02-07.22.46:292][953]LogStreaming: Display: FlushAsyncLoading(103): 1 QueuedPackages, 0 AsyncPackages
+[2024.08.02-07.22.46:321][953]LogPackageName: Warning: TryConvertFilenameToLongPackageName was passed an ObjectPath (/Game/Maps/BaselineMap.BaselineMap) rather than a PackageName or FilePath; it will be converted to the PackageName. Accepting ObjectPaths is deprecated behavior and will be removed in a future release; TryConvertFilenameToLongPackageName will fail on ObjectPaths.
+[2024.08.02-07.22.46:337][953]LogAudio: Display: Audio Device (ID: 1) registered with world 'BaselineMap'.
+[2024.08.02-07.22.46:340][953]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created!
+[2024.08.02-07.22.46:340][953]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
+[2024.08.02-07.22.46:342][953]LogAIModule: Creating AISystem for world BaselineMap
+[2024.08.02-07.22.46:342][953]LogLoad: Game class is 'VRGameMode_C'
+[2024.08.02-07.22.46:343][953]LogWorld: Bringing World /Game/Maps/BaselineMap.BaselineMap up for play (max tick rate 0) at 2024.08.02-09.22.46
+[2024.08.02-07.22.46:343][953]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1
+[2024.08.02-07.22.46:343][953]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.22.46:343][953]LogWorld: Bringing up level for play took: 0.001035
+[2024.08.02-07.22.46:344][953]LogGameMode: FindPlayerStart: PATHS NOT DEFINED or NO PLAYERSTART with positive rating
+[2024.08.02-07.22.46:345][953]LogTemp: Point Cloud Folder: ../../../MetaCastBachelor/Content/Data/data
+[2024.08.02-07.22.46:345][953]LogTemp: Flag Folder: ../../../MetaCastBachelor/Content/Data/flags
+[2024.08.02-07.22.46:347][953]LogTemp: Total Point Cloud Files: 24
+[2024.08.02-07.22.46:347][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/ball_hemisphere
+[2024.08.02-07.22.46:347][953]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/ball_hemisphere_flags
+[2024.08.02-07.22.46:347][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/disk
+[2024.08.02-07.22.46:347][953]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/disk_flags
+[2024.08.02-07.22.46:347][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/fiveellipsolds
+[2024.08.02-07.22.46:347][953]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/fiveellipsolds_flags_1
+[2024.08.02-07.22.46:347][953]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/fiveellipsolds_flags_2
+[2024.08.02-07.22.46:347][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube1
+[2024.08.02-07.22.46:347][953]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube1_flags_1
+[2024.08.02-07.22.46:347][953]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube1_flags_2
+[2024.08.02-07.22.46:347][953]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube1_flags_3
+[2024.08.02-07.22.46:347][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube2
+[2024.08.02-07.22.46:347][953]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube2_flags
+[2024.08.02-07.22.46:347][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube3
+[2024.08.02-07.22.46:347][953]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube3_flags
+[2024.08.02-07.22.46:347][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/galaxy
+[2024.08.02-07.22.46:347][953]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/galaxy
+[2024.08.02-07.22.46:347][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/multiEllipsolds
+[2024.08.02-07.22.46:347][953]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/multiEllipsolds
+[2024.08.02-07.22.46:347][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/nbody1
+[2024.08.02-07.22.46:347][953]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/nbody1_flags
+[2024.08.02-07.22.46:347][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/nbody2
+[2024.08.02-07.22.46:347][953]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/nbody2_flags
+[2024.08.02-07.22.46:347][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/snap_animation
+[2024.08.02-07.22.46:347][953]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/snap_animation_flags
+[2024.08.02-07.22.46:347][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/stringf
+[2024.08.02-07.22.46:348][953]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/stringf
+[2024.08.02-07.22.46:348][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/stringf1
+[2024.08.02-07.22.46:348][953]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/stringf1
+[2024.08.02-07.22.46:348][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/strings
+[2024.08.02-07.22.46:348][953]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/strings
+[2024.08.02-07.22.46:348][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/three_rings
+[2024.08.02-07.22.46:348][953]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/three_rings_flags
+[2024.08.02-07.22.46:348][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_cylinder
+[2024.08.02-07.22.46:348][953]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_cylinder_flags
+[2024.08.02-07.22.46:348][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_cylinder_2
+[2024.08.02-07.22.46:348][953]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/training_cylinder_2
+[2024.08.02-07.22.46:348][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_pyramid
+[2024.08.02-07.22.46:348][953]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_pyramid_flags
+[2024.08.02-07.22.46:348][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_pyramid_2
+[2024.08.02-07.22.46:348][953]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/training_pyramid_2
+[2024.08.02-07.22.46:348][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_sphere
+[2024.08.02-07.22.46:348][953]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_sphere_flags
+[2024.08.02-07.22.46:348][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_sphere_2
+[2024.08.02-07.22.46:348][953]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/training_sphere_2
+[2024.08.02-07.22.46:348][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_torus
+[2024.08.02-07.22.46:348][953]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_torus_flags
+[2024.08.02-07.22.46:348][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/uniform_Lines
+[2024.08.02-07.22.46:348][953]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/uniform_Lines_flags
+[2024.08.02-07.22.46:348][953]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/ununiform_Lines
+[2024.08.02-07.22.46:348][953]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/ununiform_Lines_flags
+[2024.08.02-07.22.46:348][953]LogTemp: Point Cloud Files with No Matching Flags:
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/galaxy
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/multiEllipsolds
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/stringf
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/stringf1
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/strings
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_cylinder_2
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_pyramid_2
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_sphere_2
+[2024.08.02-07.22.46:348][953]LogTemp: Valid Point Cloud Files with Matching Flags:
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/ball_hemisphere
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/disk
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/fiveellipsolds
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube1
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube2
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube3
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/nbody1
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/nbody2
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/snap_animation
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/three_rings
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_cylinder
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_pyramid
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_sphere
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_torus
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/uniform_Lines
+[2024.08.02-07.22.46:348][953]LogTemp: ../../../MetaCastBachelor/Content/Data/data/ununiform_Lines
+[2024.08.02-07.22.46:366][953]LogTemp: Warning: Loaded 146578 points and flags
+[2024.08.02-07.22.46:369][953]LogTemp: Warning: Minimum: X=0.000 Y=0.000 Z=0.000 ; Maximum: X=100.000 Y=100.000 Z=100.000
+[2024.08.02-07.22.46:437][953]LogTemp: Initializing DensityField!
+[2024.08.02-07.22.46:571][953]LogTemp: Starting density calculation.
+[2024.08.02-07.22.46:578][953]LogTemp: Cleared previous densities.
+[2024.08.02-07.22.47:539][953]LogTemp: Maximum density found: 1038.848022
+[2024.08.02-07.22.47:540][953]LogTemp: Minimum density found: 0.000000
+[2024.08.02-07.22.47:540][953]LogTemp: Average density found: 59.375005
+[2024.08.02-07.22.47:540][953]LogTemp: Density calculation completed in 0.968365 seconds.
+[2024.08.02-07.22.47:540][953]LogTemp: Starting gradient calculation.
+[2024.08.02-07.22.47:558][953]LogTemp: Gradient calculation completed.
+[2024.08.02-07.22.47:600][953]LogLoad: Took 1.371222 seconds to LoadMap(/Game/Maps/BaselineMap.BaselineMap)
+[2024.08.02-07.22.47:613][953]LogRHI: Display: Encountered a new graphics PSO: 1980780655
+[2024.08.02-07.22.47:614][953]LogRHI: Display: Encountered a new graphics PSO: 3450231069
+[2024.08.02-07.22.47:614][953]LogUObjectGlobals: Warning: Gamethread hitch waiting for resource cleanup on a UObject (PointCloudMeshComponent /Game/Maps/BaselineMap.BaselineMap:PersistentLevel.BP_PointCloud_C_1.GPUPointCloudRenderer.PointCloud Mesh) overwrite took  12.87ms. Fix the higher level code so that this does not happen.
+[2024.08.02-07.22.47:725][955]LogRHI: Display: Encountered a new graphics PSO: 3237469686
+[2024.08.02-07.22.51:804][318]LogRHI: Display: Encountered a new graphics PSO: 4228879312
+[2024.08.02-07.22.51:804][318]LogRHI: Display: Encountered a new graphics PSO: 3537280853
+[2024.08.02-07.22.51:804][318]LogRHI: Display: Encountered a new graphics PSO: 682676707
+[2024.08.02-07.22.51:858][323]LogRHI: Display: Encountered a new graphics PSO: 909860731
+[2024.08.02-07.23.16:351][523]LogWindowsDesktop: Alt-F4 pressed!
+[2024.08.02-07.23.16:351][523]LogSlate: Request Window 'MetaCastBachelor (64-bit Development PCD3D_SM6) ' being destroyed
+[2024.08.02-07.23.16:365][523]LogSlate: Window 'MetaCastBachelor (64-bit Development PCD3D_SM6) ' being destroyed
+[2024.08.02-07.23.16:365][523]LogWindowsTextInputMethodSystem: Activated input method: German (Germany) - (Keyboard).
+[2024.08.02-07.23.16:376][523]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
+[2024.08.02-07.23.16:376][523]LogEngine: All Windows Closed
+[2024.08.02-07.23.16:376][523]LogWindows: FPlatformMisc::RequestExit(0, UGameEngine::Tick.ViewportClosed)
+[2024.08.02-07.23.16:376][523]LogWindows: FPlatformMisc::RequestExitWithStatus(0, 0, UGameEngine::Tick.ViewportClosed)
+[2024.08.02-07.23.16:376][523]LogCore: Engine exit requested (reason: Win RequestExit)
+[2024.08.02-07.23.16:378][524]LogCore: Engine exit requested (reason: EngineExit() was called; note: exit was already requested)
+[2024.08.02-07.23.16:378][524]LogInit: Display: PreExit Game.
+[2024.08.02-07.23.16:379][524]LogWorld: BeginTearingDown for /Game/Maps/BaselineMap
+[2024.08.02-07.23.16:380][524]LogWorld: UWorld::CleanupWorld for BaselineMap, bSessionEnded=true, bCleanupResources=true
+[2024.08.02-07.23.16:380][524]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.23.16:811][524]LogAudio: Display: Beginning Audio Device Manager Shutdown (Module: AudioMixerXAudio2)...
+[2024.08.02-07.23.16:811][524]LogAudio: Display: Destroying 1 Remaining Audio Device(s)...
+[2024.08.02-07.23.16:811][524]LogAudio: Display: Audio Device unregistered from world 'BaselineMap'.
+[2024.08.02-07.23.16:811][524]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 1
+[2024.08.02-07.23.16:833][524]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1
+[2024.08.02-07.23.16:834][524]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1
+[2024.08.02-07.23.16:843][524]LogAudio: Display: Audio Device Manager Shutdown
+[2024.08.02-07.23.16:846][524]LogExit: Preparing to exit.
+[2024.08.02-07.23.16:846][524]LogMoviePlayer: Shutting down movie player
+[2024.08.02-07.23.16:851][524]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
+[2024.08.02-07.23.16:860][524]LogDemo: Cleaned up 0 splitscreen connections, owner deletion: enabled
+[2024.08.02-07.23.16:860][524]LogExit: Game engine shut down
+[2024.08.02-07.23.16:918][524]LogExit: Object subsystem successfully closed.
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module AutomationController (496)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module AutomationWorker (494)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module Voice (492)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module AIModule (490)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module GameplayDebugger (489)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module NavigationSystem (487)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module OpenXRInput (484)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module WmfMediaFactory (482)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module WebMMediaFactory (480)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module WebMMedia (478)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module OpenExrWrapper (476)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module ImgMediaFactory (474)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module AvfMediaFactory (472)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module FractureEngine (470)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module CharacterAI (468)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module SessionServices (466)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module MovieSceneTracks (464)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module MovieScene (462)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module StreamingPauseRendering (460)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module BinkAudioDecoder (458)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module AudioMixerXAudio2 (456)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module AudioMixer (455)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module AudioMixerCore (454)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module TypedElementRuntime (450)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module TypedElementFramework (448)
+[2024.08.02-07.23.16:937][524]LogModuleManager: Shutting down and abandoning module ProfilerService (446)
+[2024.08.02-07.23.16:988][524]LogModuleManager: Shutting down and abandoning module ProfileVisualizer (444)
+[2024.08.02-07.23.16:988][524]LogModuleManager: Shutting down and abandoning module RWTHVRToolkit (442)
+[2024.08.02-07.23.16:988][524]LogModuleManager: Shutting down and abandoning module RWTHVRCluster (440)
+[2024.08.02-07.23.16:988][524]LogModuleManager: Shutting down and abandoning module GPUPointCloudRendererEditor (438)
+[2024.08.02-07.23.16:988][524]LogModuleManager: Shutting down and abandoning module TakeMovieScene (436)
+[2024.08.02-07.23.16:988][524]LogModuleManager: Shutting down and abandoning module RemoteControlInterception (434)
+[2024.08.02-07.23.16:988][524]LogModuleManager: Shutting down and abandoning module CameraCalibrationCoreMovieScene (432)
+[2024.08.02-07.23.16:988][524]LogModuleManager: Shutting down and abandoning module TraceUtilities (430)
+[2024.08.02-07.23.16:988][524]LogModuleManager: Shutting down and abandoning module DisplayClusterReplication (428)
+[2024.08.02-07.23.16:988][524]LogModuleManager: Shutting down and abandoning module SharedMemoryMedia (426)
+[2024.08.02-07.23.16:988][524]LogSharedMemoryMedia: Shutting down module SharedMemoryMedia'...
+[2024.08.02-07.23.16:988][524]LogModuleManager: Shutting down and abandoning module DisplayClusterMedia (424)
+[2024.08.02-07.23.16:988][524]LogDisplayClusterMedia: Shutting down module 'DisplayClusterMedia'...
+[2024.08.02-07.23.16:988][524]LogModuleManager: Shutting down and abandoning module DisplayClusterRemoteControlInterceptor (422)
+[2024.08.02-07.23.16:988][524]LogDisplayClusterRemoteControlInterceptor: DisplayClusterRemoteControlInterceptor has been unregistered
+[2024.08.02-07.23.16:988][524]LogModuleManager: Shutting down and abandoning module DisplayClusterStageMonitoring (420)
+[2024.08.02-07.23.16:988][524]LogModuleManager: Shutting down and abandoning module DisplayClusterScenePreview (418)
+[2024.08.02-07.23.16:988][524]LogModuleManager: Shutting down and abandoning module DisplayClusterMessageInterception (416)
+[2024.08.02-07.23.16:988][524]LogModuleManager: Shutting down and abandoning module DisplayClusterProjection (414)
+[2024.08.02-07.23.16:988][524]LogDisplayClusterProjection: Projection module shutdown
+[2024.08.02-07.23.16:988][524]LogDisplayClusterProjection: Un-registering <camera> projection factory...
+[2024.08.02-07.23.16:988][524]LogDisplayClusterRender: Unregistering factory for projection policy: camera
+[2024.08.02-07.23.16:988][524]LogDisplayClusterRender: Unregistered factory for projection policy: camera
+[2024.08.02-07.23.16:988][524]LogDisplayClusterProjection: Un-registering <domeprojection> projection factory...
+[2024.08.02-07.23.16:988][524]LogDisplayClusterRender: Unregistering factory for projection policy: domeprojection
+[2024.08.02-07.23.16:988][524]LogDisplayClusterRender: Unregistered factory for projection policy: domeprojection
+[2024.08.02-07.23.16:988][524]LogDisplayClusterProjection: Un-registering <easyblend> projection factory...
+[2024.08.02-07.23.16:988][524]LogDisplayClusterRender: Unregistering factory for projection policy: easyblend
+[2024.08.02-07.23.16:988][524]LogDisplayClusterRender: Unregistered factory for projection policy: easyblend
+[2024.08.02-07.23.16:988][524]LogDisplayClusterProjection: Un-registering <link> projection factory...
+[2024.08.02-07.23.16:988][524]LogDisplayClusterRender: Unregistering factory for projection policy: link
+[2024.08.02-07.23.16:988][524]LogDisplayClusterRender: Unregistered factory for projection policy: link
+[2024.08.02-07.23.16:988][524]LogDisplayClusterProjection: Un-registering <manual> projection factory...
+[2024.08.02-07.23.16:988][524]LogDisplayClusterRender: Unregistering factory for projection policy: manual
+[2024.08.02-07.23.16:989][524]LogDisplayClusterRender: Unregistered factory for projection policy: manual
+[2024.08.02-07.23.16:989][524]LogDisplayClusterProjection: Un-registering <mpcdi> projection factory...
+[2024.08.02-07.23.16:989][524]LogDisplayClusterRender: Unregistering factory for projection policy: mpcdi
+[2024.08.02-07.23.16:989][524]LogDisplayClusterRender: Unregistered factory for projection policy: mpcdi
+[2024.08.02-07.23.16:989][524]LogDisplayClusterProjection: Un-registering <mesh> projection factory...
+[2024.08.02-07.23.16:989][524]LogDisplayClusterRender: Unregistering factory for projection policy: mesh
+[2024.08.02-07.23.16:989][524]LogDisplayClusterRender: Unregistered factory for projection policy: mesh
+[2024.08.02-07.23.16:989][524]LogDisplayClusterProjection: Un-registering <simple> projection factory...
+[2024.08.02-07.23.16:989][524]LogDisplayClusterRender: Unregistering factory for projection policy: simple
+[2024.08.02-07.23.16:989][524]LogDisplayClusterRender: Unregistered factory for projection policy: simple
+[2024.08.02-07.23.16:989][524]LogDisplayClusterProjection: Un-registering <vioso> projection factory...
+[2024.08.02-07.23.16:989][524]LogDisplayClusterRender: Unregistering factory for projection policy: vioso
+[2024.08.02-07.23.16:989][524]LogDisplayClusterRender: Unregistered factory for projection policy: vioso
+[2024.08.02-07.23.16:989][524]LogDisplayClusterProjection: Projection module has been destroyed
+[2024.08.02-07.23.16:989][524]LogDisplayClusterProjectionVIOSO: VIOSO API released.
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module DisplayCluster (412)
+[2024.08.02-07.23.16:989][524]LogDisplayClusterModule: Cleaning up internals...
+[2024.08.02-07.23.16:989][524]LogDisplayClusterCluster: Releasing cluster manager...
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module DisplayClusterLightCardExtender (410)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module XRBase (408)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module ResonanceAudio (406)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module OSC (404)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module MobilePatchingUtils (402)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module LiveLinkOverNDisplay (400)
+[2024.08.02-07.23.16:989][524]LogNDisplayLiveLinkSubjectReplicator: Unregistering sync object.
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module InputDebugging (398)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module GooglePAD (396)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module DynamicMesh (394)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module GeometryAlgorithms (392)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module GeometryCacheTracks (390)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module GeometryCache (388)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module AudioWidgets (386)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module AdvancedWidgets (385)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module AudioCapture (382)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module AudioCaptureWasapi (381)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module AssetTags (378)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module ArchVisCharacter (376)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module AppleImageUtils (374)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module AndroidPermission (372)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module ActorLayerUtilities (370)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module TemplateSequence (366)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module SequencerScripting (364)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module UEOpenExrRTTI (362)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineRenderPasses (360)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineSettings (358)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineCore (356)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module MediaPlate (354)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module MediaCompositing (352)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module ImgMedia (350)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module InterchangeCommonParser (348)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module InterchangeDispatcher (346)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module InterchangeExport (344)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module InterchangeMessages (342)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module GLTFCore (340)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module VPSettings (338)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module VPRoles (336)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module StructUtilsEngine (334)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module OpenImageDenoise (332)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module LocalizableMessageBlueprint (330)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module LocalizableMessage (328)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module GeometryCollectionNodes (326)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module GeometryCollectionTracks (324)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module DataflowNodes (322)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module DataflowEnginePlugin (320)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module ChaosUserDataPT (318)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module ChaosNiagara (316)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module BackChannel (314)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module AutomationUtils (312)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module ConsoleVariablesEditorRuntime (310)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module UObjectPlugin (308)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module DumpGPUServices (306)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module MultiUserClientLibrary (304)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module OodleNetworkHandlerComponent (302)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module Composure (300)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module LiveLinkMovieScene (298)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module LiveLinkComponents (296)
+[2024.08.02-07.23.16:989][524]LogModuleManager: Shutting down and abandoning module LiveLink (294)
+[2024.08.02-07.23.17:159][524]LogModuleManager: Shutting down and abandoning module ControlRigSpline (292)
+[2024.08.02-07.23.17:159][524]LogModuleManager: Shutting down and abandoning module MetaCastBachelor (290)
+[2024.08.02-07.23.17:159][524]LogModuleManager: Shutting down and abandoning module UniversalLogging (288)
+[2024.08.02-07.23.17:159][524]LogModuleManager: Shutting down and abandoning module Synthesis (286)
+[2024.08.02-07.23.17:159][524]LogModuleManager: Shutting down and abandoning module SoundFields (284)
+[2024.08.02-07.23.17:159][524]LogModuleManager: Shutting down and abandoning module SignificanceManager (282)
+[2024.08.02-07.23.17:159][524]LogModuleManager: Shutting down and abandoning module RigVM (280)
+[2024.08.02-07.23.17:159][524]LogModuleManager: Shutting down and abandoning module ProceduralMeshComponent (278)
+[2024.08.02-07.23.17:159][524]LogModuleManager: Shutting down and abandoning module MsQuicRuntime (276)
+[2024.08.02-07.23.17:159][524]LogModuleManager: Shutting down and abandoning module MetasoundEngineTest (274)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module MetasoundEngine (272)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module WaveTable (271)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module AudioCodecEngine (269)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module MetasoundStandardNodes (266)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module MetasoundFrontend (264)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module MetasoundGenerator (262)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module MetasoundGraphCore (260)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module LocationServicesBPLibrary (258)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module SQLiteCore (256)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module CustomMeshComponent (254)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module CableComponent (252)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module AudioSynesthesia (250)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module AudioAnalyzer (249)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module AudioSynesthesiaCore (246)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module ActorSequence (244)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module UdpMessaging (242)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module TcpMessaging (240)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module ImgMediaEngine (238)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module InterchangePipelines (236)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module InterchangeImport (234)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module InterchangeFactoryNodes (232)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module InterchangeNodes (230)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module NiagaraAnimNotifies (228)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module Niagara (226)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module SignalProcessing (225)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module NiagaraCore (222)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module StructUtils (220)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module PBIK (218)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module FullBodyIK (216)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module ChaosCaching (214)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module EnhancedInput (212)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module FacialAnimation (210)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module AnimationSharing (208)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module GameplayCameras (206)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module IKRig (204)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module ControlRig (202)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module Constraints (201)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module LevelSequence (199)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module Paper2D (196)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module Kdtree (194)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module WindowsMoviePlayer (192)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module WebMMoviePlayer (190)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module AndroidFileServer (188)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module NetworkReplayStreaming (186)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module PacketHandler (184)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module ClothingSystemRuntimeNv (182)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module MediaAssets (180)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module Overlay (178)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module FunctionalTesting (176)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module MessageLog (174)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module UMG (172)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module SlateReflector (170)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module Slate (168)
+[2024.08.02-07.23.17:160][524]LogModuleManager: Shutting down and abandoning module SlateCore (166)
+[2024.08.02-07.23.17:161][524]LogModuleManager: Shutting down and abandoning module MRMesh (164)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module Messaging (162)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module HeadMountedDisplay (160)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module LiveCoding (158)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module Networking (156)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module Core (154)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module ImageWriteQueue (152)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module GPUPointCloudRenderer (150)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module TelemetryUtils (147)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module ImageWrapper (144)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module InputCore (142)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module Settings (140)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module ChaosSolverEngine (138)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module FieldSystemEngine (137)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module Chaos (134)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module GeometryCore (133)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module WindowsPlatformFeatures (130)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module GameplayMediaEncoder (129)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module AVEncoder (128)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module D3D12RHI (124)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module CameraCalibrationCore (122)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module DisplayClusterLightCardEditorShaders (120)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module DisplayClusterConfiguration (118)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module DisplayClusterShaders (116)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module WindowsDeviceProfileSelector (114)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module OpenXRAR (112)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module AugmentedReality (111)
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module OpenXRHandTracking (108)
+[2024.08.02-07.23.17:162][524]LogSlate: Slate User Destroyed.  User Index 0, Is Virtual User: 0
+[2024.08.02-07.23.17:162][524]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.23.17:162][524]LogModuleManager: Shutting down and abandoning module OpenXRHMD (107)
+[2024.08.02-07.23.17:164][524]LogModuleManager: Shutting down and abandoning module OpenXREyeTracker (104)
+[2024.08.02-07.23.17:164][524]LogModuleManager: Shutting down and abandoning module OpenCVHelper (102)
+[2024.08.02-07.23.17:164][524]LogModuleManager: Shutting down and abandoning module HPMotionController (100)
+[2024.08.02-07.23.17:164][524]LogModuleManager: Shutting down and abandoning module ExampleDeviceProfileSelector (98)
+[2024.08.02-07.23.17:164][524]LogModuleManager: Shutting down and abandoning module ChunkDownloader (96)
+[2024.08.02-07.23.17:164][524]LogModuleManager: Shutting down and abandoning module LauncherChunkInstaller (94)
+[2024.08.02-07.23.17:164][524]LogModuleManager: Shutting down and abandoning module OnlineSubsystem (92)
+[2024.08.02-07.23.17:165][524]LogModuleManager: Shutting down and abandoning module HTTP (87)
+[2024.08.02-07.23.17:179][524]LogModuleManager: Shutting down and abandoning module SSL (86)
+[2024.08.02-07.23.17:180][524]LogModuleManager: Shutting down and abandoning module OnlineSubsystemUtils (82)
+[2024.08.02-07.23.17:180][524]LogModuleManager: Shutting down and abandoning module OnlineServicesCommonEngineUtils (80)
+[2024.08.02-07.23.17:180][524]LogModuleManager: Shutting down and abandoning module OnlineServicesCommon (78)
+[2024.08.02-07.23.17:180][524]LogModuleManager: Shutting down and abandoning module OnlineServicesInterface (76)
+[2024.08.02-07.23.17:180][524]LogModuleManager: Shutting down and abandoning module WmfMedia (74)
+[2024.08.02-07.23.17:180][524]LogModuleManager: Shutting down and abandoning module Media (73)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module GPUTextureTransfer (70)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module MediaIOCore (68)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module ExrReaderGpu (66)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module NiagaraVertexFactories (64)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module NiagaraShader (62)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module VPUtilities (60)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module ColorCorrectRegions (58)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module ChaosCloth (56)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module VariantManagerContent (54)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module GLTFExporter (52)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module DatasmithContent (50)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module RenderDocPlugin (48)
+[2024.08.02-07.23.17:181][524]RenderDocPlugin: plugin has been unloaded.
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module PixWinPlugin (46)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module OpenColorIO (44)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module ACLPlugin (42)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module AISupportModule (40)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module PythonScriptPluginPreload (38)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module PlatformCryptoOpenSSL (36)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module PlatformCryptoTypes (34)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module PlatformCrypto (32)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module IoStoreOnDemand (30)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module RenderCore (28)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module Landscape (26)
+[2024.08.02-07.23.17:181][524]LogModuleManager: Shutting down and abandoning module SlateRHIRenderer (24)
+[2024.08.02-07.23.17:182][524]LogModuleManager: Shutting down and abandoning module AnimGraphRuntime (22)
+[2024.08.02-07.23.17:182][524]LogModuleManager: Shutting down and abandoning module Renderer (20)
+[2024.08.02-07.23.17:182][524]LogModuleManager: Shutting down and abandoning module Engine (18)
+[2024.08.02-07.23.17:182][524]LogModuleManager: Shutting down and abandoning module CoreUObject (16)
+[2024.08.02-07.23.17:182][524]LogModuleManager: Shutting down and abandoning module SandboxFile (14)
+[2024.08.02-07.23.17:182][524]LogModuleManager: Shutting down and abandoning module PakFile (12)
+[2024.08.02-07.23.17:182][524]LogPakFile: Destroying PakPlatformFile
+[2024.08.02-07.23.17:183][524]LogModuleManager: Shutting down and abandoning module RSA (11)
+[2024.08.02-07.23.17:183][524]LogModuleManager: Shutting down and abandoning module NetworkFile (8)
+[2024.08.02-07.23.17:183][524]LogModuleManager: Shutting down and abandoning module StreamingFile (6)
+[2024.08.02-07.23.17:183][524]LogModuleManager: Shutting down and abandoning module CookOnTheFly (4)
+[2024.08.02-07.23.17:183][524]LogModuleManager: Shutting down and abandoning module StorageServerClient (2)
+[2024.08.02-07.23.17:238][524]LogD3D12RHI: ~FD3D12DynamicRHI
+[2024.08.02-07.23.17:260][524]LogExit: Exiting.
+[2024.08.02-07.23.17:305][524]Log file closed, 08/02/24 09:23:17
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Logs/MetaCastBachelor-backup-2024.08.02-07.27.16.log b/Builds/Windows/MetaCastBachelor/Saved/Logs/MetaCastBachelor-backup-2024.08.02-07.27.16.log
new file mode 100644
index 0000000000000000000000000000000000000000..1d2d9bc6f56af4381757af46970b530c3d65abd3
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Logs/MetaCastBachelor-backup-2024.08.02-07.27.16.log
@@ -0,0 +1,1851 @@
+Log file open, 08/02/24 09:23:18
+LogWindows: Failed to load 'aqProf.dll' (GetLastError=126)
+LogWindows: File 'aqProf.dll' does not exist
+LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64).
+LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126)
+LogWindows: File 'VtuneApi.dll' does not exist
+LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126)
+LogWindows: File 'VtuneApi32e.dll' does not exist
+LogWindows: Custom abort handler registered for crash reporting.
+LogCore: Display: UnrealTraceServer: Unable to launch the trace store with '"../../../Engine//Binaries/Win64/UnrealTraceServer.exe" fork' (00000002)
+LogTrace: Initializing trace...
+LogTrace: Finished trace initialization.
+LogCsvProfiler: Display: Metadata set : platform="Windows"
+LogCsvProfiler: Display: Metadata set : config="Development"
+LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.3-CL-29314046"
+LogCsvProfiler: Display: Metadata set : engineversion="5.3.2-29314046+++UE5+Release-5.3"
+LogCsvProfiler: Display: Metadata set : os="Windows 10 (22H2) [10.0.19045.4651] "
+LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|Intel(R) Core(TM) i9-10900X CPU @ 3.70GHz"
+LogCsvProfiler: Display: Metadata set : pgoenabled="0"
+LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0"
+LogCsvProfiler: Display: Metadata set : ltoenabled="0"
+LogCsvProfiler: Display: Metadata set : asan="0"
+LogCsvProfiler: Display: Metadata set : commandline="" MetaCastBachelor""
+LogCsvProfiler: Display: Metadata set : loginid="6cbed587469a168a7370319bba147631"
+LogCsvProfiler: Display: Metadata set : llm="0"
+LogPakFile: Initializing PakPlatformFile
+LogIoDispatcher: Display: Reading toc: ../../../MetaCastBachelor/Content/Paks/global.utoc
+LogIoDispatcher: Display: Toc signature hash: 0000000000000000000000000000000000000000
+LogIoDispatcher: Display: Mounting container '../../../MetaCastBachelor/Content/Paks/global.utoc' in location slot 0
+LogPakFile: Display: Initialized I/O dispatcher file backend. Mounted the global container: ../../../MetaCastBachelor/Content/Paks/global.utoc
+LogPakFile: Display: Found Pak file ../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak attempting to mount.
+LogPakFile: Display: Mounting pak file ../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak.
+LogIoDispatcher: Display: Reading toc: ../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc
+LogIoDispatcher: Display: Toc signature hash: 0000000000000000000000000000000000000000
+LogIoDispatcher: Display: Mounting container '../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc' in location slot 0
+LogPakFile: Display: Mounted IoStore container "../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc"
+LogPakFile: Display: Mounted Pak file '../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak', mount point: '../../../'
+LogStats: Stats thread started at 0.159721
+LogAssetRegistry: Premade AssetRegistry loaded from '../../../MetaCastBachelor/AssetRegistry.bin'
+LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +1:00, Platform Override: ''
+LogInit: Session CrashGUID >====================================================
+         Session CrashGUID >   UECC-Windows-0190EBB64C492C444367EFA005419F88
+         Session CrashGUID >====================================================
+LogStreaming: Warning: Failed to read file 'D:/UnrealProjects/MetaCastBachelor/Builds/Windows/Cloud/IoStoreOnDemand.ini' error.
+LogPluginManager: Mounting Engine plugin Paper2D
+LogPluginManager: Mounting Engine plugin AISupport
+LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor
+LogPluginManager: Mounting Engine plugin ACLPlugin
+LogPluginManager: Mounting Engine plugin AnimationData
+LogPluginManager: Mounting Engine plugin ControlRigSpline
+LogPluginManager: Mounting Engine plugin ControlRig
+LogPluginManager: Mounting Engine plugin IKRig
+LogPluginManager: Mounting Engine plugin LiveLink
+LogPluginManager: Mounting Engine plugin Bridge
+LogPluginManager: Mounting Engine plugin CameraShakePreviewer
+LogPluginManager: Mounting Engine plugin GameplayCameras
+LogPluginManager: Mounting Engine plugin Composure
+LogPluginManager: Mounting Engine plugin OpenColorIO
+LogPluginManager: Mounting Engine plugin OodleNetwork
+LogPluginManager: Mounting Engine plugin AnimationSharing
+LogPluginManager: Mounting Engine plugin MultiUserClient
+LogPluginManager: Mounting Engine plugin ConcertMain
+LogPluginManager: Mounting Engine plugin ConcertSyncClient
+LogPluginManager: Mounting Engine plugin ConcertSyncCore
+LogPluginManager: Mounting Engine plugin ConcertSharedSlate
+LogPluginManager: Mounting Engine plugin DumpGPUServices
+LogPluginManager: Mounting Engine plugin PixWinPlugin
+LogPluginManager: Mounting Engine plugin PluginUtils
+LogPluginManager: Mounting Engine plugin RenderDocPlugin
+LogPluginManager: Mounting Engine plugin UObjectPlugin
+LogPluginManager: Mounting Engine plugin AssetManagerEditor
+LogPluginManager: Mounting Engine plugin BlueprintHeaderView
+LogPluginManager: Mounting Engine plugin BlueprintMaterialTextureNodes
+LogPluginManager: Mounting Engine plugin ConsoleVariables
+LogPluginManager: Mounting Engine plugin EditorScriptingUtilities
+LogPluginManager: Mounting Engine plugin FacialAnimation
+LogPluginManager: Mounting Engine plugin GameplayTagsEditor
+LogPluginManager: Mounting Engine plugin GeometryMode
+LogPluginManager: Mounting Engine plugin LightMixer
+LogPluginManager: Mounting Engine plugin ObjectMixer
+LogPluginManager: Mounting Engine plugin SequencerAnimTools
+LogPluginManager: Mounting Engine plugin SpeedTreeImporter
+LogPluginManager: Mounting Engine plugin UVEditor
+LogPluginManager: Mounting Engine plugin EnhancedInput
+LogPluginManager: Found config from plugin[EnhancedInput] Input
+LogPluginManager: Mounting Engine plugin DatasmithContent
+LogPluginManager: Mounting Engine plugin GLTFExporter
+LogPluginManager: Mounting Engine plugin VariantManagerContent
+LogPluginManager: Mounting Engine plugin VariantManager
+LogPluginManager: Mounting Engine plugin AutomationUtils
+LogPluginManager: Mounting Engine plugin BackChannel
+LogPluginManager: Mounting Engine plugin ChaosCaching
+LogPluginManager: Mounting Engine plugin ChaosClothEditor
+LogPluginManager: Mounting Engine plugin ChaosCloth
+LogPluginManager: Mounting Engine plugin ChaosEditor
+LogPluginManager: Mounting Engine plugin ChaosNiagara
+LogPluginManager: Mounting Engine plugin ChaosSolverPlugin
+LogPluginManager: Mounting Engine plugin ChaosUserDataPT
+LogPluginManager: Mounting Engine plugin CharacterAI
+LogPluginManager: Mounting Engine plugin ColorCorrectRegions
+LogPluginManager: Mounting Engine plugin Dataflow
+LogPluginManager: Mounting Engine plugin Fracture
+LogPluginManager: Mounting Engine plugin FullBodyIK
+LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin
+LogPluginManager: Mounting Engine plugin LocalizableMessage
+LogPluginManager: Mounting Engine plugin OpenImageDenoise
+LogPluginManager: Mounting Engine plugin PlatformCrypto
+LogPluginManager: Mounting Engine plugin PythonScriptPlugin
+LogPluginManager: Mounting Engine plugin StructUtils
+LogPluginManager: Mounting Engine plugin ToolPresets
+LogPluginManager: Mounting Engine plugin VirtualProductionUtilities
+LogPluginManager: Mounting Engine plugin VPRoles
+LogPluginManager: Mounting Engine plugin VPSettings
+LogPluginManager: Mounting Engine plugin Niagara
+LogPluginManager: Mounting Engine plugin AlembicImporter
+LogPluginManager: Mounting Engine plugin InterchangeEditor
+LogPluginManager: Mounting Engine plugin Interchange
+LogPluginManager: Mounting Engine plugin AvfMedia
+LogPluginManager: Mounting Engine plugin ImgMedia
+LogPluginManager: Mounting Engine plugin MediaCompositing
+LogPluginManager: Mounting Engine plugin MediaIOFramework
+LogPluginManager: Mounting Engine plugin MediaPlate
+LogPluginManager: Mounting Engine plugin WebMMedia
+LogPluginManager: Mounting Engine plugin WmfMedia
+LogPluginManager: Mounting Engine plugin MeshPainting
+LogPluginManager: Mounting Engine plugin TcpMessaging
+LogPluginManager: Mounting Engine plugin UdpMessaging
+LogPluginManager: Mounting Engine plugin ActorSequence
+LogPluginManager: Mounting Engine plugin LevelSequenceEditor
+LogPluginManager: Mounting Engine plugin MovieRenderPipeline
+LogPluginManager: Mounting Engine plugin SequencerScripting
+LogPluginManager: Mounting Engine plugin TemplateSequence
+LogPluginManager: Mounting Engine plugin OnlineBase
+LogPluginManager: Mounting Engine plugin OnlineServices
+LogPluginManager: Mounting Engine plugin OnlineSubsystemNull
+LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils
+LogPluginManager: Mounting Engine plugin OnlineSubsystem
+LogPluginManager: Mounting Engine plugin LauncherChunkInstaller
+LogPluginManager: Mounting Engine plugin ActorLayerUtilities
+LogPluginManager: Mounting Engine plugin AndroidFileServer
+LogPluginManager: Mounting Engine plugin AndroidPermission
+LogPluginManager: Mounting Engine plugin AppleImageUtils
+LogPluginManager: Mounting Engine plugin ArchVisCharacter
+LogPluginManager: Mounting Engine plugin AssetTags
+LogPluginManager: Mounting Engine plugin AudioCapture
+LogPluginManager: Mounting Engine plugin AudioSynesthesia
+LogPluginManager: Mounting Engine plugin AudioWidgets
+LogPluginManager: Mounting Engine plugin CableComponent
+LogPluginManager: Mounting Engine plugin ChunkDownloader
+LogPluginManager: Mounting Engine plugin CustomMeshComponent
+LogPluginManager: Mounting Engine plugin SQLiteCore
+LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector
+LogPluginManager: Mounting Engine plugin GeometryCache
+LogPluginManager: Mounting Engine plugin GeometryProcessing
+LogPluginManager: Mounting Engine plugin GooglePAD
+LogPluginManager: Mounting Engine plugin HPMotionController
+LogPluginManager: Mounting Engine plugin InputDebugging
+LogPluginManager: Found config from plugin[InputDebugging] Input
+LogPluginManager: Mounting Engine plugin LiveLinkOverNDisplay
+LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary
+LogPluginManager: Mounting Engine plugin Metasound
+LogPluginManager: Mounting Engine plugin MobilePatchingUtils
+LogPluginManager: Mounting Engine plugin MsQuic
+LogPluginManager: Mounting Engine plugin OSC
+LogPluginManager: Mounting Engine plugin OpenCV
+LogPluginManager: Mounting Engine plugin OpenXREyeTracker
+LogPluginManager: Mounting Engine plugin OpenXRHandTracking
+LogPluginManager: Mounting Engine plugin OpenXR
+LogPluginManager: Mounting Engine plugin ProceduralMeshComponent
+LogPluginManager: Mounting Engine plugin PropertyAccessEditor
+LogPluginManager: Mounting Engine plugin ResonanceAudio
+LogPluginManager: Mounting Engine plugin RigVM
+LogPluginManager: Mounting Engine plugin SignificanceManager
+LogPluginManager: Mounting Engine plugin SoundFields
+LogPluginManager: Mounting Engine plugin Synthesis
+LogPluginManager: Mounting Engine plugin WaveTable
+LogPluginManager: Mounting Engine plugin WebMMoviePlayer
+LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector
+LogPluginManager: Mounting Engine plugin WindowsMoviePlayer
+LogPluginManager: Mounting Engine plugin XRBase
+LogPluginManager: Mounting Engine plugin nDisplayModularFeatures
+LogPluginManager: Mounting Engine plugin nDisplay
+LogPluginManager: Mounting Engine plugin InterchangeTests
+LogPluginManager: Mounting Engine plugin TraceUtilities
+LogPluginManager: Mounting Engine plugin CameraCalibrationCore
+LogPluginManager: Mounting Engine plugin MultiUserTakes
+LogPluginManager: Mounting Engine plugin RemoteControlInterception
+LogPluginManager: Mounting Engine plugin Switchboard
+LogPluginManager: Mounting Engine plugin Takes
+LogPluginManager: Mounting Project plugin GPUPointCloudRenderer
+LogPluginManager: Mounting Project plugin Kdtree
+LogPluginManager: Mounting Project plugin RWTHVRToolkit
+LogPluginManager: Mounting Project plugin UniversalLogging
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/2D/Paper2D/Content/' mounted to '/Paper2D/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ACLPlugin/Content/' mounted to '/ACLPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRigSpline/Content/' mounted to '/ControlRigSpline/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRig/Content/' mounted to '/ControlRig/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/IKRig/Content/' mounted to '/IKRig/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Bridge/Content/' mounted to '/Bridge/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/Composure/Content/' mounted to '/Composure/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/OpenColorIO/Content/' mounted to '/OpenColorIO/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/AnimationSharing/Content/' mounted to '/AnimationSharing/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/' mounted to '/ConcertSyncClient/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/BlueprintHeaderView/Content/' mounted to '/BlueprintHeaderView/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ConsoleVariablesEditor/Content/' mounted to '/ConsoleVariables/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/GeometryMode/Content/' mounted to '/GeometryMode/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/LightMixer/Content/' mounted to '/LightMixer/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/ObjectMixer/Content/' mounted to '/ObjectMixer/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/SpeedTreeImporter/Content/' mounted to '/SpeedTreeImporter/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/UVEditor/Content/' mounted to '/UVEditor/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/DatasmithContent/Content/' mounted to '/DatasmithContent/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/GLTFExporter/Content/' mounted to '/GLTFExporter/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosCaching/Content/' mounted to '/ChaosCaching/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosClothEditor/Content/' mounted to '/ChaosClothEditor/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosNiagara/Content/' mounted to '/ChaosNiagara/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosSolverPlugin/Content/' mounted to '/ChaosSolverPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ColorCorrectRegions/Content/' mounted to '/ColorCorrectRegions/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Dataflow/Content/' mounted to '/Dataflow/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/FullBodyIK/Content/' mounted to '/FullBodyIK/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/GeometryCollectionPlugin/Content/' mounted to '/GeometryCollectionPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/PythonScriptPlugin/Content/' mounted to '/PythonScriptPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ToolPresets/Content/' mounted to '/ToolPresets/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProductionUtilities/Content/' mounted to '/VirtualProductionUtilities/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPRoles/Content/' mounted to '/VPRoles/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPSettings/Content/' mounted to '/VPSettings/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/FX/Niagara/Content/' mounted to '/Niagara/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Interchange/Runtime/Content/' mounted to '/Interchange/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaCompositing/Content/' mounted to '/MediaCompositing/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaPlate/Content/' mounted to '/MediaPlate/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/MovieRenderPipeline/Content/' mounted to '/MovieRenderPipeline/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/SequencerScripting/Content/' mounted to '/SequencerScripting/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioSynesthesia/Content/' mounted to '/AudioSynesthesia/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioWidgets/Content/' mounted to '/AudioWidgets/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/GeometryProcessing/Content/' mounted to '/GeometryProcessing/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Metasound/Content/' mounted to '/Metasound/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenCV/Content/' mounted to '/OpenCV/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXREyeTracker/Content/' mounted to '/OpenXREyeTracker/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXRHandTracking/Content/' mounted to '/OpenXRHandTracking/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXR/Content/' mounted to '/OpenXR/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/ResonanceAudio/Content/' mounted to '/ResonanceAudio/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/RigVM/Content/' mounted to '/RigVM/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Synthesis/Content/' mounted to '/Synthesis/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/WaveTable/Content/' mounted to '/WaveTable/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplayModularFeatures/Content/' mounted to '/nDisplayModularFeatures/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplay/Content/' mounted to '/nDisplay/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/TraceUtilities/Content/' mounted to '/TraceUtilities/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/CameraCalibrationCore/Content/' mounted to '/CameraCalibrationCore/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/MultiUserTakes/Content/' mounted to '/MultiUserTakes/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Switchboard/Content/' mounted to '/Switchboard/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Takes/Content/' mounted to '/Takes/'
+LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UE4_GPUPointCloudRenderer/Content/' mounted to '/GPUPointCloudRenderer/'
+LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UEPlugin-Kdtree/Kdtree/Content/' mounted to '/Kdtree/'
+LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/rwth-vr-toolkit-with-meta-cast/Content/' mounted to '/RWTHVRToolkit/'
+LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126)
+LogWindows: File 'WinPixGpuCapturer.dll' does not exist
+PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX.
+LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine]
+RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings.
+LogInit: Using libcurl 8.4.0
+LogInit:  - built for Windows
+LogInit:  - supports SSL with OpenSSL/1.1.1t
+LogInit:  - supports HTTP deflate (compression) using libz 1.2.13
+LogInit:  - other features:
+LogInit:      CURL_VERSION_SSL
+LogInit:      CURL_VERSION_LIBZ
+LogInit:      CURL_VERSION_IPV6
+LogInit:      CURL_VERSION_ASYNCHDNS
+LogInit:      CURL_VERSION_LARGEFILE
+LogInit:  CurlRequestOptions (configurable via config and command line):
+LogInit:  - bVerifyPeer = true  - Libcurl will verify peer certificate
+LogInit:  - bUseHttpProxy = false  - Libcurl will NOT use HTTP proxy
+LogInit:  - bDontReuseConnections = false  - Libcurl will reuse connections
+LogInit:  - MaxHostConnections = 16  - Libcurl will limit the number of connections to a host
+LogInit:  - LocalHostAddr = Default
+LogInit:  - BufferSize = 65536
+LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467
+LogOnline: OSS: Created online subsystem instance for: NULL
+LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL]
+LogHMD: OpenXRHMDModule::InitInstance using DefaultLoader.
+LogHMD: OpenXR runtime supported extensions:
+LogHMD: 	XR_KHR_vulkan_enable
+LogHMD: 	XR_KHR_vulkan_enable2
+LogHMD: 	XR_KHR_D3D11_enable
+LogHMD: 	XR_KHR_D3D12_enable
+LogHMD: 	XR_KHR_opengl_enable
+LogHMD: 	XR_KHR_win32_convert_performance_counter_time
+LogHMD: 	XR_EXT_win32_appcontainer_compatible
+LogHMD: 	XR_KHR_binding_modification
+LogHMD: 	XR_KHR_composition_layer_depth
+LogHMD: 	XR_KHR_visibility_mask
+LogHMD: 	XR_EXT_active_action_set_priority
+LogHMD: 	XR_EXT_dpad_binding
+LogHMD: 	XR_EXT_frame_composition_report
+LogHMD: 	XR_EXT_hand_tracking
+LogHMD: 	XR_EXT_hand_joints_motion_range
+LogHMD: 	XR_EXT_hp_mixed_reality_controller
+LogHMD: 	XR_EXT_local_floor
+LogHMD: 	XR_EXT_palm_pose
+LogHMD: 	XR_FB_display_refresh_rate
+LogHMD: 	XR_HTC_vive_cosmos_controller_interaction
+LogHMD: 	XR_HTC_vive_focus3_controller_interaction
+LogHMD: 	XR_HTC_vive_wrist_tracker_interaction
+LogHMD: 	XR_MND_headless
+LogHMD: 	XR_VALVE_analog_threshold
+LogHMD: 	XR_HTCX_vive_tracker_interaction
+LogHMD: 	XR_EXT_debug_utils
+LogHMD: Optional extension XR_KHR_vulkan_swapchain_format_list is not available
+LogHMD: Optional extension XR_FB_foveation_vulkan is not available
+LogHMD: Optional extension XR_KHR_composition_layer_cylinder is not available
+LogHMD: Optional extension XR_KHR_composition_layer_equirect is not available
+LogHMD: Optional extension XR_VARJO_quad_views is not available
+LogHMD: Optional extension XR_EPIC_view_configuration_fov is not available
+LogHMD: Optional extension XR_FB_composition_layer_alpha_blend is not available
+LogHMD: Optional extension XR_FB_foveation is not available
+LogHMD: Optional extension XR_FB_swapchain_update_state is not available
+LogHMD: Optional extension XR_FB_foveation_configuration is not available
+LogHMD: Optional extension XR_OCULUS_audio_device_guid is not available
+LogHMD: Warning: Required extension XR_EXT_eye_gaze_interaction is not available
+LogHMD: Could not enable all required OpenXR extensions for OpenXREyeTracker on current system. This plugin will be loaded but ignored, but will be enabled on a target platform that supports the required extension.
+LogHMD: Initialized OpenXR on SteamVR/OpenXR runtime version 2.6.2
+LogInit: ExecutableName: MetaCastBachelor.exe
+LogInit: Build: ++UE5+Release-5.3-CL-29314046
+LogInit: Engine Version: 5.3.2-29314046+++UE5+Release-5.3
+LogInit: Compatible Engine Version: 5.3.0-27405482+++UE5+Release-5.3
+LogInit: Net CL: 27405482
+LogInit: OS: Windows 10 (22H2) [10.0.19045.4651] (), CPU: Intel(R) Core(TM) i9-10900X CPU @ 3.70GHz, GPU: NVIDIA GeForce RTX 3090
+LogInit: Compiled (64-bit): Nov  3 2023 16:20:53
+LogInit: Architecture: x64
+LogInit: Compiled with Visual C++: 19.36.32537.00
+LogInit: Build Configuration: Development
+LogInit: Branch Name: ++UE5+Release-5.3
+LogInit: Command Line: 
+LogInit: Base Directory: D:/UnrealProjects/MetaCastBachelor/Builds/Windows/MetaCastBachelor/Binaries/Win64/
+LogInit: Allocator: binned2
+LogInit: Installed Engine Build: 0
+LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no
+LogDevObjectVersion: Number of dev versions registered: 39
+LogDevObjectVersion:   Dev-Blueprints (B0D832E4-1F89-4F0D-ACCF-7EB736FD4AA2): 10
+LogDevObjectVersion:   Dev-Build (E1C64328-A22C-4D53-A36C-8E866417BD8C): 0
+LogDevObjectVersion:   Dev-Core (375EC13C-06E4-48FB-B500-84F0262A717E): 4
+LogDevObjectVersion:   Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40
+LogDevObjectVersion:   Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37
+LogDevObjectVersion:   Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3
+LogDevObjectVersion:   Dev-Networking (A4E4105C-59A1-49B5-A7C5-40C4547EDFEE): 0
+LogDevObjectVersion:   Dev-Online (39C831C9-5AE6-47DC-9A44-9C173E1C8E7C): 0
+LogDevObjectVersion:   Dev-Physics (78F01B33-EBEA-4F98-B9B4-84EACCB95AA2): 20
+LogDevObjectVersion:   Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0
+LogDevObjectVersion:   Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 47
+LogDevObjectVersion:   Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13
+LogDevObjectVersion:   Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3
+LogDevObjectVersion:   Dev-LoadTimes (C2A15278-BFE7-4AFE-6C17-90FF531DF755): 1
+LogDevObjectVersion:   Private-Geometry (6EACA3D4-40EC-4CC1-B786-8BED09428FC5): 3
+LogDevObjectVersion:   Dev-AnimPhys (29E575DD-E0A3-4627-9D10-D276232CDCEA): 17
+LogDevObjectVersion:   Dev-Anim (AF43A65D-7FD3-4947-9873-3E8ED9C1BB05): 15
+LogDevObjectVersion:   Dev-ReflectionCapture (6B266CEC-1EC7-4B8F-A30B-E4D90942FC07): 1
+LogDevObjectVersion:   Dev-Automation (0DF73D61-A23F-47EA-B727-89E90C41499A): 1
+LogDevObjectVersion:   FortniteMain (601D1886-AC64-4F84-AA16-D3DE0DEAC7D6): 111
+LogDevObjectVersion:   FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 2
+LogDevObjectVersion:   FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 10
+LogDevObjectVersion:   FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 11
+LogDevObjectVersion:   Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10
+LogDevObjectVersion:   Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1
+LogDevObjectVersion:   Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10
+LogDevObjectVersion:   Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41
+LogDevObjectVersion:   Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1
+LogDevObjectVersion:   Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1
+LogDevObjectVersion:   Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1
+LogDevObjectVersion:   UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 118
+LogDevObjectVersion:   UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 47
+LogDevObjectVersion:   UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8
+LogDevObjectVersion:   UE5-Dev-Cooker (26075A32-730F-4708-88E9-8C32F1599D05): 0
+LogDevObjectVersion:   Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2
+LogDevObjectVersion:   UE5-Dev-LWCRendering (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1
+LogDevObjectVersion:   Dev-RigVM (DC49959B-53C0-4DE7-9156-EA885E7C5D39): 2
+LogDevObjectVersion:   Dev-ControlRig (A7820CFB-20A7-4359-8C54-2C149623CF50): 27
+LogDevObjectVersion:   Dev-IKRig (F6DFBB78-BB50-A0E4-4018-B84D60CBAF23): 2
+LogInit: Presizing for max 2097152 objects, including 1 objects not considered by GC, pre-allocating 0 bytes for permanent pool.
+LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: true, Async Post Load: true
+LogStreaming: Display: AsyncLoading2 - Initialized
+LogInit: Object subsystem initialized
+LogConfig: Set CVar [[con.DebugEarlyDefault:1]]
+LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created
+LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created
+LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created
+LogConfig: Set CVar [[r.setres:1280x720]]
+LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created
+LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]]
+LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created
+[2024.08.02-07.23.19:263][  0]LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine]
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:None]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:None]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.Mobile.DisableVertexFog:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.Mobile.AllowDitheredLODTransition:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[r.Mobile.AllowSoftwareOcclusion:0]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.Mobile.VirtualTextures:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.DiscardUnusedQuality:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.AllowOcclusionQueries:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.MinScreenRadiusForLights:0.030000]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.MinScreenRadiusForDepthPrepass:0.030000]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.MinScreenRadiusForCSMDepth:0.010000]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.PrecomputedVisibilityWarning:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.TextureStreaming:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[Compat.UseDXT5NormalMaps:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.VirtualTextures:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.VirtualTexturedLightmaps:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.VT.TileSize:128]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.VT.TileBorderSize:4]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.vt.FeedbackFactor:16]]
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[r.VT.EnableCompressZlib:1]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[r.VT.EnableCompressCrunch:0]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.ClearCoatNormal:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.ReflectionCaptureResolution:128]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.ReflectionEnvironmentLightmapMixBasedOnRoughness:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.ForwardShading:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.VertexFoggingForOpaque:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.AllowStaticLighting:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.NormalMapsForStaticLighting:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[r.DistanceFieldBuild.EightBit:0]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[r.GenerateLandscapeGIData:0]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[r.DistanceFieldBuild.Compress:0]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[r.TessellationAdaptivePixelsPerTriangle:48.000000]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.SeparateTranslucency:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.TranslucentSortPolicy:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[TranslucentSortAxis:(X=0.000000,Y=-1.000000,Z=0.000000)]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.CustomDepth:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.CustomDepthTemporalAAJitter:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.PostProcessing.PropagateAlpha:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.DefaultFeature.Bloom:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.DefaultFeature.AmbientOcclusion:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.DefaultFeature.AmbientOcclusionStaticFraction:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.Method:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.Bias:1.000000]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[r.EyeAdaptation.EditorOnly:0]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:1.0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:1.0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.DefaultFeature.MotionBlur:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.DefaultFeature.LensFlare:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.TemporalAA.Upsampling:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[r.SSGI.Enable:0]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.AntiAliasingMethod:3]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.DefaultFeature.LightUnits:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.DefaultBackBufferPixelFormat:4]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.Shadow.UnbuiltPreviewInGame:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.StencilForLODDither:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.EarlyZPass:3]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.EarlyZPassOnlyMaterialMasking:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.DBuffer:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.ClearSceneMethod:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.VelocityOutputPass:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.Velocity.EnableVertexDeformation:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.SelectiveBasePassOutputs:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[bDefaultParticleCutouts:0]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[fx.GPUSimulationTextureSizeX:1024]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[fx.GPUSimulationTextureSizeY:1024]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.AllowGlobalClipPlane:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.GBufferFormat:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.MorphTarget.Mode:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[vr.InstancedStereo:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.MobileHDR:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[vr.MobileMultiView:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.Mobile.UseHWsRGBEncoding:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[vr.RoundRobinOcclusion:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: CVar [[vr.ODSCapture:0]] deferred - dummy variable created
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.MeshStreaming:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.WireframeCullThreshold:5.000000]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.RayTracing:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.RayTracing.UseTextureLod:0]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.SupportStationarySkylight:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.SupportLowQualityLightmaps:1]]
+[2024.08.02-07.23.19:264][  0]LogConfig: Set CVar [[r.SupportPointLightWholeSceneShadows:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: CVar [[r.SupportAtmosphericFog:1]] deferred - dummy variable created
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.SupportSkyAtmosphere:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.SupportSkyAtmosphereAffectsHeightFog:0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.SkinCache.DefaultBehavior:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.SkinCache.SceneMemoryLimitInMB:128.000000]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.Mobile.EnableStaticAndCSMShadowReceivers:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.Mobile.EnableMovableLightCSMShaderCulling:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.Mobile.AllowDistanceFieldShadows:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.Mobile.AllowMovableDirectionalLights:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: CVar [[r.MobileNumDynamicPointLights:4]] deferred - dummy variable created
+[2024.08.02-07.23.19:265][  0]LogConfig: CVar [[r.MobileDynamicPointLightsUseStaticBranch:1]] deferred - dummy variable created
+[2024.08.02-07.23.19:265][  0]LogConfig: CVar [[r.Mobile.EnableMovableSpotlights:0]] deferred - dummy variable created
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.Mobile.EnableMovableSpotlightsShadow:0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.GPUSkin.Support16BitBoneIndex:0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.GPUSkin.Limit2BoneInfluences:0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.SupportDepthOnlyIndexBuffers:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.SupportReversedIndexBuffers:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: CVar [[r.LightPropagationVolume:0]] deferred - dummy variable created
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.Mobile.AmbientOcclusion:0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.GPUSkin.UnlimitedBoneInfluences:0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.GPUSkin.UnlimitedBoneInfluencesThreshold:8]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.Mobile.PlanarReflectionMode:0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: CVar [[bStreamSkeletalMeshLODs:(Default=False,PerPlatform=())]] deferred - dummy variable created
+[2024.08.02-07.23.19:265][  0]LogConfig: CVar [[bDiscardSkeletalMeshOptionalLODs:(Default=False,PerPlatform=())]] deferred - dummy variable created
+[2024.08.02-07.23.19:265][  0]LogConfig: CVar [[VisualizeCalibrationCustomMaterialPath:None]] deferred - dummy variable created
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.Mobile.AntiAliasing:3]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.Mobile.FloatPrecisionMode:2]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.OpenGL.ForceDXC:0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.ReflectionMethod:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.MSAACount:4]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.Mobile.ShadingPath:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine]
+[2024.08.02-07.23.19:265][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]]
+[2024.08.02-07.23.19:265][  0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created
+[2024.08.02-07.23.19:265][  0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created
+[2024.08.02-07.23.19:265][  0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created
+[2024.08.02-07.23.19:265][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[gc.SizeOfPermanentObjectPool:0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[gc.AllowParallelGC:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[gc.CreateGCClusters:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[gc.UseDisregardForGCOnDedicatedServers:0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[gc.MultithreadedDestructionEnabled:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Set CVar [[gc.PendingKillEnabled:1]]
+[2024.08.02-07.23.19:265][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine]
+[2024.08.02-07.23.19:265][  0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created
+[2024.08.02-07.23.19:265][  0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created
+[2024.08.02-07.23.19:279][  0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability]
+[2024.08.02-07.23.19:279][  0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]]
+[2024.08.02-07.23.19:279][  0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.FXAA.Quality:4]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.TSR.ShadingRejection.TileOverscan:3]]
+[2024.08.02-07.23.19:280][  0]LogConfig: CVar [[r.TSR.Velocity.Extrapolation:1]] deferred - dummy variable created
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.LightFunctionQuality:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.ShadowQuality:5]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.VolumetricFog:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.CapsuleShadows:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.DistanceFieldAO:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.AOQuality:2]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.SSR.Quality:3]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapStrength:0]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.MotionBlurQuality:4]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.LensFlareQuality:2]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.BloomQuality:5]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.FastBlurThreshold:100]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Upscale.Quality:3]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.LightShaftQuality:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Filter.SizeScale:1]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2         ; lower gathering resolution]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1        ; higher gathering accumulator quality]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1          ; Median3x3 postfilering method]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0       ; no bokeh simulation when gathering]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4                 ; medium number of samples when gathering]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1    ; additive foreground scattering]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2    ; additive background scattering]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1      ; bokeh simulation when scattering]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1         ; only a maximum of 10% of scattered bokeh]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1                ; cheap slight out of focus]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0    ; no bokeh simulation on slight out of focus]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1                ; more stable temporal accumulation]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Streaming.MipBias:0]]
+[2024.08.02-07.23.19:280][  0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.Streaming.Boost:1]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.MaxAnisotropy:8]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.RefractionQuality:2]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.SceneColorFormat:4]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.DetailMode:2]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.SSS.Scale:1]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.SSS.SampleSet:2]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.SSS.Quality:1]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.SSS.HalfRes:0]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.SSGI.Quality:3]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.ParticleLightQuality:2]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[foliage.DensityScale:1.0]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[grass.DensityScale:1.0]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]]
+[2024.08.02-07.23.19:281][  0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]]
+[2024.08.02-07.23.19:281][  0]LogRHI: Using Default RHI: D3D12
+[2024.08.02-07.23.19:281][  0]LogRHI: Using Highest Feature Level of D3D12: SM6
+[2024.08.02-07.23.19:281][  0]LogRHI: Loading RHI module D3D12RHI
+[2024.08.02-07.23.19:283][  0]LogD3D12RHI: Aftermath initialized
+[2024.08.02-07.23.19:283][  0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64).
+[2024.08.02-07.23.19:283][  0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system.
+[2024.08.02-07.23.19:581][  0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3090 (VendorId: 10de, DeviceId: 2204, SubSysId: 38801028, Revision: 00a1
+[2024.08.02-07.23.19:581][  0]LogD3D12RHI:   Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported
+[2024.08.02-07.23.19:581][  0]LogD3D12RHI:   Adapter has 24340MB of dedicated video memory, 0MB of dedicated system memory, and 16238MB of shared system memory, 2 output[s]
+[2024.08.02-07.23.19:582][  0]LogD3D12RHI:   Driver Version: 546.09 (internal:31.0.15.4609, unified:546.09)
+[2024.08.02-07.23.19:582][  0]LogD3D12RHI:      Driver Date: 11-2-2023
+[2024.08.02-07.23.19:594][  0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000
+[2024.08.02-07.23.19:595][  0]LogD3D12RHI:   Max supported Feature Level 12_1, shader model 6.2, binding tier 3, wave ops supported, atomic64 unsupported
+[2024.08.02-07.23.19:595][  0]LogD3D12RHI:   Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16238MB of shared system memory, 0 output[s]
+[2024.08.02-07.23.19:595][  0]LogD3D12RHI: DirectX Agility SDK runtime found.
+[2024.08.02-07.23.19:595][  0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0
+[2024.08.02-07.23.19:595][  0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used.
+[2024.08.02-07.23.19:595][  0]LogInit: Selected Device Profile: [Windows]
+[2024.08.02-07.23.19:595][  0]LogHAL: Display: Platform has ~ 32 GB [34054676480 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0)
+[2024.08.02-07.23.19:595][  0]LogDeviceProfileManager: Going up to parent DeviceProfile []
+[2024.08.02-07.23.19:595][  0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini]
+[2024.08.02-07.23.19:595][  0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]]
+[2024.08.02-07.23.19:595][  0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]]
+[2024.08.02-07.23.19:595][  0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]]
+[2024.08.02-07.23.19:595][  0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine]
+[2024.08.02-07.23.19:595][  0]LogInit: Computer: ITC22160
+[2024.08.02-07.23.19:595][  0]LogInit: User: mp455017
+[2024.08.02-07.23.19:595][  0]LogInit: CPU Page size=4096, Cores=10
+[2024.08.02-07.23.19:595][  0]LogInit: High frequency timer resolution =10.000000 MHz
+[2024.08.02-07.23.19:595][  0]LogMemory: Memory total: Physical=31.7GB (32GB approx)
+[2024.08.02-07.23.19:595][  0]LogMemory: Platform Memory Stats for Windows
+[2024.08.02-07.23.19:595][  0]LogMemory: Process Physical Memory: 181.15 MB used, 192.82 MB peak
+[2024.08.02-07.23.19:595][  0]LogMemory: Process Virtual Memory: 157.34 MB used, 157.34 MB peak
+[2024.08.02-07.23.19:595][  0]LogMemory: Physical Memory: 23054.32 MB used,  9422.75 MB free, 32477.07 MB total
+[2024.08.02-07.23.19:595][  0]LogMemory: Virtual Memory: 58323.24 MB used,  14710.91 MB free, 73034.14 MB total
+[2024.08.02-07.23.19:595][  0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0"
+[2024.08.02-07.23.19:603][  0]LogWindows: WindowsPlatformFeatures enabled
+[2024.08.02-07.23.19:603][  0]LogInit: Physics initialised using underlying interface: Chaos
+[2024.08.02-07.23.19:603][  0]LogInit: Using OS detected language (en-US).
+[2024.08.02-07.23.19:603][  0]LogInit: Using OS detected locale (de-DE).
+[2024.08.02-07.23.19:603][  0]LogTextLocalizationManager: No specific localization for 'en-US' exists, so 'en' will be used for the language.
+[2024.08.02-07.23.19:603][  0]LogTextLocalizationManager: No localization for 'de-DE' exists, so 'en' will be used for the locale.
+[2024.08.02-07.23.19:656][  0]LogWindowsTextInputMethodSystem: Available input methods:
+[2024.08.02-07.23.19:656][  0]LogWindowsTextInputMethodSystem:   - English (United States) - (Keyboard).
+[2024.08.02-07.23.19:656][  0]LogWindowsTextInputMethodSystem:   - German (Germany) - (Keyboard).
+[2024.08.02-07.23.19:656][  0]LogWindowsTextInputMethodSystem:   - German (Germany) - Touch Input Correction (TSF IME).
+[2024.08.02-07.23.19:656][  0]LogWindowsTextInputMethodSystem: Activated input method: German (Germany) - (Keyboard).
+[2024.08.02-07.23.19:681][  0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0
+[2024.08.02-07.23.19:681][  0]LogSlate: Slate User Registered.  User Index 0, Is Virtual User: 0
+[2024.08.02-07.23.19:709][  0]LogRHI: Using Default RHI: D3D12
+[2024.08.02-07.23.19:709][  0]LogRHI: Using Highest Feature Level of D3D12: SM6
+[2024.08.02-07.23.19:709][  0]LogRHI: Loading RHI module D3D12RHI
+[2024.08.02-07.23.19:709][  0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system.
+[2024.08.02-07.23.19:709][  0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used.
+[2024.08.02-07.23.19:709][  0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6
+[2024.08.02-07.23.19:711][  0]LogWindows: Attached monitors:
+[2024.08.02-07.23.19:711][  0]LogWindows:     resolution: 1920x1080, work area: (1920, 0) -> (3840, 1040), device: '\\.\DISPLAY2'
+[2024.08.02-07.23.19:711][  0]LogWindows:     resolution: 1920x1080, work area: (0, 0) -> (1920, 1040), device: '\\.\DISPLAY1' [PRIMARY]
+[2024.08.02-07.23.19:711][  0]LogWindows: Found 2 attached monitors.
+[2024.08.02-07.23.19:711][  0]LogWindows: Gathering driver information using Windows Setup API
+[2024.08.02-07.23.19:712][  0]LogRHI: RHI Adapter Info:
+[2024.08.02-07.23.19:712][  0]LogRHI:             Name: NVIDIA GeForce RTX 3090
+[2024.08.02-07.23.19:712][  0]LogRHI:   Driver Version: 546.09 (internal:31.0.15.4609, unified:546.09)
+[2024.08.02-07.23.19:712][  0]LogRHI:      Driver Date: 11-2-2023
+[2024.08.02-07.23.19:712][  0]LogD3D12RHI:     GPU DeviceId: 0x2204 (for the marketing name, search the web for "GPU Device Id")
+[2024.08.02-07.23.19:712][  0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off
+[2024.08.02-07.23.19:724][  0]LogD3D12RHI: [Aftermath] Aftermath crash dumping enabled
+[2024.08.02-07.23.19:724][  0]LogD3D12RHI: [DRED] Dred breadcrumb context enabled
+[2024.08.02-07.23.19:724][  0]LogD3D12RHI: [DRED] Using lightweight DRED.
+[2024.08.02-07.23.19:724][  0]LogD3D12RHI: Emitting draw events for PIX profiling.
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: [Aftermath] Aftermath enabled and primed
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: [Aftermath] Aftermath resource tracking enabled
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: ID3D12Device1 is supported.
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: ID3D12Device2 is supported.
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: ID3D12Device3 is supported.
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: ID3D12Device4 is supported.
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: ID3D12Device5 is supported.
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: ID3D12Device6 is supported.
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: ID3D12Device7 is supported.
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: ID3D12Device8 is supported.
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: ID3D12Device9 is supported.
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: ID3D12Device10 is supported.
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: ID3D12Device11 is supported.
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: ID3D12Device12 is supported.
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: Bindless resources are supported
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: Stencil ref from pixel shader is not supported
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32).
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported.
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: Mesh shader tier 1.0 is supported
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: AtomicInt64OnTypedResource is supported
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: AtomicInt64OnGroupShared is supported
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported
+[2024.08.02-07.23.19:916][  0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported
+[2024.08.02-07.23.19:975][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (3D)
+[2024.08.02-07.23.19:976][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Copy)
+[2024.08.02-07.23.19:976][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Compute)
+[2024.08.02-07.23.20:002][  0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0
+[2024.08.02-07.23.20:003][  0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0
+[2024.08.02-07.23.20:003][  0]LogRHI: Texture pool is 14850 MB (70% of 21214 MB)
+[2024.08.02-07.23.20:003][  0]LogD3D12RHI: Async texture creation enabled
+[2024.08.02-07.23.20:003][  0]LogD3D12RHI: RHI has support for 64 bit atomics
+[2024.08.02-07.23.20:037][  0]LogVRS: Current RHI supports Variable Rate Shading
+[2024.08.02-07.23.20:048][  0]LogRendererCore: Ray tracing is disabled. Reason: disabled through project setting (r.RayTracing=0).
+[2024.08.02-07.23.20:049][  0]LogShaderLibrary: Display: Using IoDispatcher for shader code library Global. Total 4019 unique shaders.
+[2024.08.02-07.23.20:049][  0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library Global
+[2024.08.02-07.23.20:049][  0]LogShaderLibrary: Display: Logical shader library 'Global' has been created as a monolithic library
+[2024.08.02-07.23.20:049][  0]LogShaderLibrary: Display: Tried to open shader library 'Global_SC', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:049][  0]LogShaderLibrary: Display: Tried to open shader library 'Paper2D', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryMode', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosSolverPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'ACLPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'Composure', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosClothEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRigSpline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'AnimationSharing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'BlueprintHeaderView', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'IKRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'Bridge', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'LightMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryCollectionPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'ColorCorrectRegions', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenCV', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenColorIO', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaCompositing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'ConcertSyncClient', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaPlate', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryProcessing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'UVEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'Niagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXREyeTracker', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosNiagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'ObjectMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'ResonanceAudio', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'MultiUserTakes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplayModularFeatures', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXRHandTracking', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'Dataflow', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'TraceUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'VPRoles', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:050][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplay', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXR', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'FullBodyIK', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'SpeedTreeImporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'Synthesis', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'CameraCalibrationCore', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'WaveTable', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'GLTFExporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioSynesthesia', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'MovieRenderPipeline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioWidgets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'RigVM', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'SequencerScripting', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'Kdtree', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'ConsoleVariables', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'ToolPresets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'RWTHVRToolkit', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'Takes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'Switchboard', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'GPUPointCloudRenderer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'DatasmithContent', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'Metasound', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'VirtualProductionUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'Interchange', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'PythonScriptPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'VPSettings', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosCaching', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:051][  0]LogTemp: Display: Clearing the OS Cache
+[2024.08.02-07.23.20:059][  0]LogInit: FStereoShaderAspects: --- StereoAspects begin ---
+[2024.08.02-07.23.20:059][  0]LogInit: FStereoShaderAspects: Platform=PCD3D_SM6 (49)
+[2024.08.02-07.23.20:059][  0]LogInit: FStereoShaderAspects: bInstancedStereo = 1
+[2024.08.02-07.23.20:059][  0]LogInit: FStereoShaderAspects: bMobilePlatform = 0
+[2024.08.02-07.23.20:059][  0]LogInit: FStereoShaderAspects: bMobilePostprocessing = 0
+[2024.08.02-07.23.20:059][  0]LogInit: FStereoShaderAspects: bMobileMultiView = 1
+[2024.08.02-07.23.20:059][  0]LogInit: FStereoShaderAspects: bMultiViewportCapable = 1
+[2024.08.02-07.23.20:059][  0]LogInit: FStereoShaderAspects: bInstancedStereoNative = 1
+[2024.08.02-07.23.20:059][  0]LogInit: FStereoShaderAspects: ---
+[2024.08.02-07.23.20:059][  0]LogInit: FStereoShaderAspects: bMobileMultiViewCoreSupport = 0
+[2024.08.02-07.23.20:059][  0]LogInit: FStereoShaderAspects: bMobileMultiViewNative = 0
+[2024.08.02-07.23.20:059][  0]LogInit: FStereoShaderAspects: bMobileMultiViewFallback = 0
+[2024.08.02-07.23.20:059][  0]LogInit: FStereoShaderAspects: ---
+[2024.08.02-07.23.20:059][  0]LogInit: FStereoShaderAspects: bInstancedMultiViewportEnabled = 1
+[2024.08.02-07.23.20:059][  0]LogInit: FStereoShaderAspects: bInstancedStereoEnabled = 1
+[2024.08.02-07.23.20:059][  0]LogInit: FStereoShaderAspects: bMobileMultiViewEnabled = 0
+[2024.08.02-07.23.20:059][  0]LogInit: FStereoShaderAspects: --- StereoAspects end ---
+[2024.08.02-07.23.20:063][  0]LogInit: XR: Instanced Stereo Rendering is Enabled
+[2024.08.02-07.23.20:064][  0]LogInit: XR: MultiViewport is Enabled
+[2024.08.02-07.23.20:064][  0]LogInit: XR: Mobile Multiview is Disabled
+[2024.08.02-07.23.20:065][  0]LogSlate: Using FreeType 2.10.0
+[2024.08.02-07.23.20:066][  0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1
+[2024.08.02-07.23.20:149][  0]LogShaderLibrary: Display: Tried to open shader library 'Paper2D', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:149][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/2D/Paper2D/Content/' mounted to '/Paper2D/'
+[2024.08.02-07.23.20:149][  0]LogShaderLibrary: Display: Tried to open shader library 'ACLPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:149][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ACLPlugin/Content/' mounted to '/ACLPlugin/'
+[2024.08.02-07.23.20:149][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRigSpline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:149][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRigSpline/Content/' mounted to '/ControlRigSpline/'
+[2024.08.02-07.23.20:149][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:149][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRig/Content/' mounted to '/ControlRig/'
+[2024.08.02-07.23.20:149][  0]LogShaderLibrary: Display: Tried to open shader library 'IKRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:149][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/IKRig/Content/' mounted to '/IKRig/'
+[2024.08.02-07.23.20:149][  0]LogShaderLibrary: Display: Tried to open shader library 'Bridge', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:149][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Bridge/Content/' mounted to '/Bridge/'
+[2024.08.02-07.23.20:149][  0]LogShaderLibrary: Display: Tried to open shader library 'Composure', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:149][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/Composure/Content/' mounted to '/Composure/'
+[2024.08.02-07.23.20:149][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenColorIO', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/OpenColorIO/Content/' mounted to '/OpenColorIO/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'AnimationSharing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/AnimationSharing/Content/' mounted to '/AnimationSharing/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'ConcertSyncClient', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/' mounted to '/ConcertSyncClient/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'BlueprintHeaderView', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/BlueprintHeaderView/Content/' mounted to '/BlueprintHeaderView/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'ConsoleVariables', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ConsoleVariablesEditor/Content/' mounted to '/ConsoleVariables/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryMode', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/GeometryMode/Content/' mounted to '/GeometryMode/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'LightMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/LightMixer/Content/' mounted to '/LightMixer/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'ObjectMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/ObjectMixer/Content/' mounted to '/ObjectMixer/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'SpeedTreeImporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/SpeedTreeImporter/Content/' mounted to '/SpeedTreeImporter/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'UVEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/UVEditor/Content/' mounted to '/UVEditor/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'DatasmithContent', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/DatasmithContent/Content/' mounted to '/DatasmithContent/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'GLTFExporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/GLTFExporter/Content/' mounted to '/GLTFExporter/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosCaching', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosCaching/Content/' mounted to '/ChaosCaching/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosClothEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosClothEditor/Content/' mounted to '/ChaosClothEditor/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosNiagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosNiagara/Content/' mounted to '/ChaosNiagara/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosSolverPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosSolverPlugin/Content/' mounted to '/ChaosSolverPlugin/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'ColorCorrectRegions', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ColorCorrectRegions/Content/' mounted to '/ColorCorrectRegions/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'Dataflow', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Dataflow/Content/' mounted to '/Dataflow/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'FullBodyIK', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/FullBodyIK/Content/' mounted to '/FullBodyIK/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryCollectionPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/GeometryCollectionPlugin/Content/' mounted to '/GeometryCollectionPlugin/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'PythonScriptPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/PythonScriptPlugin/Content/' mounted to '/PythonScriptPlugin/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'ToolPresets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ToolPresets/Content/' mounted to '/ToolPresets/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'VirtualProductionUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProductionUtilities/Content/' mounted to '/VirtualProductionUtilities/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'VPRoles', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPRoles/Content/' mounted to '/VPRoles/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'VPSettings', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPSettings/Content/' mounted to '/VPSettings/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'Niagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/FX/Niagara/Content/' mounted to '/Niagara/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'Interchange', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Interchange/Runtime/Content/' mounted to '/Interchange/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaCompositing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaCompositing/Content/' mounted to '/MediaCompositing/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaPlate', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaPlate/Content/' mounted to '/MediaPlate/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'MovieRenderPipeline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/MovieRenderPipeline/Content/' mounted to '/MovieRenderPipeline/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'SequencerScripting', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:150][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/SequencerScripting/Content/' mounted to '/SequencerScripting/'
+[2024.08.02-07.23.20:150][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioSynesthesia', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioSynesthesia/Content/' mounted to '/AudioSynesthesia/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioWidgets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioWidgets/Content/' mounted to '/AudioWidgets/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryProcessing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/GeometryProcessing/Content/' mounted to '/GeometryProcessing/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'Metasound', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Metasound/Content/' mounted to '/Metasound/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenCV', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenCV/Content/' mounted to '/OpenCV/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXREyeTracker', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXREyeTracker/Content/' mounted to '/OpenXREyeTracker/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXRHandTracking', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXRHandTracking/Content/' mounted to '/OpenXRHandTracking/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXR', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXR/Content/' mounted to '/OpenXR/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'ResonanceAudio', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/ResonanceAudio/Content/' mounted to '/ResonanceAudio/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'RigVM', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/RigVM/Content/' mounted to '/RigVM/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'Synthesis', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Synthesis/Content/' mounted to '/Synthesis/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'WaveTable', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/WaveTable/Content/' mounted to '/WaveTable/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplayModularFeatures', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplayModularFeatures/Content/' mounted to '/nDisplayModularFeatures/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplay', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplay/Content/' mounted to '/nDisplay/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'TraceUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/TraceUtilities/Content/' mounted to '/TraceUtilities/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'CameraCalibrationCore', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/CameraCalibrationCore/Content/' mounted to '/CameraCalibrationCore/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'MultiUserTakes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/MultiUserTakes/Content/' mounted to '/MultiUserTakes/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'Switchboard', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Switchboard/Content/' mounted to '/Switchboard/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'Takes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Takes/Content/' mounted to '/Takes/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'GPUPointCloudRenderer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UE4_GPUPointCloudRenderer/Content/' mounted to '/GPUPointCloudRenderer/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'Kdtree', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UEPlugin-Kdtree/Kdtree/Content/' mounted to '/Kdtree/'
+[2024.08.02-07.23.20:151][  0]LogShaderLibrary: Display: Tried to open shader library 'RWTHVRToolkit', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.23.20:151][  0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/rwth-vr-toolkit-with-meta-cast/Content/' mounted to '/RWTHVRToolkit/'
+[2024.08.02-07.23.20:152][  0]LogShaderLibrary: Display: Using IoDispatcher for shader code library MetaCastBachelor. Total 2223 unique shaders.
+[2024.08.02-07.23.20:152][  0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library MetaCastBachelor
+[2024.08.02-07.23.20:152][  0]LogShaderLibrary: Display: Logical shader library 'MetaCastBachelor' has been created as a monolithic library
+[2024.08.02-07.23.20:152][  0]LogRHI: Could not open FPipelineCacheFile: ../../../MetaCastBachelor/Content/PipelineCaches/Windows/MetaCastBachelor_PCD3D_SM6.stable.upipelinecache
+[2024.08.02-07.23.20:152][  0]LogRHI: Could not open FPipelineCacheFile: ../../../MetaCastBachelor/Content/PipelineCaches/Windows/MetaCastBachelor_PCD3D_SM6.stable.upipelinecache
+[2024.08.02-07.23.20:152][  0]LogShaderLibrary: Display: Tried to open again shader library 'MetaCastBachelor', but could not find new components for it (existing components: 1).
+[2024.08.02-07.23.20:153][  0]LogRHI: Could not open FPipelineCacheFile: ../../../MetaCastBachelor/Content/PipelineCaches/Windows/MetaCastBachelor_PCD3D_SM6.stable.upipelinecache
+[2024.08.02-07.23.20:153][  0]LogInit: Using OS detected language (en-US).
+[2024.08.02-07.23.20:153][  0]LogInit: Using OS detected locale (de-DE).
+[2024.08.02-07.23.20:153][  0]LogTextLocalizationManager: No localization for 'en-US' exists, so 'en' will be used for the language.
+[2024.08.02-07.23.20:153][  0]LogTextLocalizationManager: No localization for 'de-DE' exists, so 'en' will be used for the locale.
+[2024.08.02-07.23.20:153][  0]LogAssetRegistry: FAssetRegistry took 0.0002 seconds to start up
+[2024.08.02-07.23.20:319][  0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages
+[2024.08.02-07.23.20:322][  0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found.
+[2024.08.02-07.23.20:322][  0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found.
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: Available device profiles:
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D671180][000002734C81AAC0 66] GlobalDefaults, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D670E80][000002734C480010 66] Windows, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D670D00][000002734C489250 66] WindowsEditor, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D670A00][000002734D6DDB70 66] WindowsServer, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D670700][000002734D6DB6E0 66] WindowsClient, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D670580][000002734D6D9250 66] IOS, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D670400][000002734D6D6DC0 66] iPadAir2, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D670280][000002734D6D4930 66] IPadPro, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D670100][000002734D6D24A0 66] iPadAir3, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D676280][000002734D6D0010 66] iPadAir4, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D676100][000002734D6EDB70 66] iPadAir5, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D675F80][000002734D6EB6E0 66] iPadMini4, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D675E00][000002734D6E9250 66] iPadMini5, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D675C80][000002734D6E6DC0 66] iPadMini6, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D675B00][000002734D6E4930 66] iPhone6S, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D675980][000002734D6E24A0 66] iPhone7, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D675800][000002734D6E0010 66] iPodTouch7, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D675680][000002734D6FDB70 66] iPhone6SPlus, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D675500][000002734D6FB6E0 66] iPhone7Plus, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D675380][000002734D6F9250 66] iPhoneSE, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D675200][000002734D6F6DC0 66] iPhone8, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D675080][000002734D6F4930 66] iPhone8Plus, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D674F00][000002734D6F24A0 66] iPhoneX, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D670B80][000002734D6F0010 66] iPhoneXS, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D670880][000002734D70DB70 66] iPhoneXSMax, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D674D80][000002734D70B6E0 66] iPhoneXR, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D674C00][000002734D709250 66] iPhone11, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D674A80][000002734D706DC0 66] iPhone11Pro, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D674900][000002734D704930 66] iPhone11ProMax, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D674780][000002734D7024A0 66] iPhoneSE2, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D674600][000002734D700010 66] iPhone12Mini, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D674480][000002734D71DB70 66] iPhone12, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D674300][000002734D71B6E0 66] iPhone12Pro, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D674180][000002734D719250 66] iPhone12ProMax, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D674000][000002734D716DC0 66] iPhone13Mini, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D673E80][000002734D714930 66] iPhone13, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D673D00][000002734D7124A0 66] iPhone13Pro, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D673B80][000002734D710010 66] iPhone13ProMax, 
+[2024.08.02-07.23.20:323][  0]LogDeviceProfileManager: 	[000002734D673A00][000002734D72DB70 66] iPhoneSE3, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D673880][000002734D72B6E0 66] iPhone14, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D673700][000002734D729250 66] iPhone14Plus, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D673580][000002734D726DC0 66] iPhone14Pro, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D673400][000002734D724930 66] iPhone14ProMax, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D673280][000002734D7224A0 66] iPhone15, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D679400][000002734D720010 66] iPhone15Plus, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D679280][000002734D73DB70 66] iPhone15Pro, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D679100][000002734D73B6E0 66] iPhone15ProMax, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D678F80][000002734D739250 66] iPadPro105, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D678E00][000002734D736DC0 66] iPadPro129, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D678C80][000002734D734930 66] iPadPro97, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D678B00][000002734D7324A0 66] iPadPro2_129, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D678980][000002734D730010 66] iPad5, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D678800][000002734D74DB70 66] iPad6, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D678680][000002734D74B6E0 66] iPad7, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D678500][000002734D749250 66] iPad8, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D678380][000002734D746DC0 66] iPad9, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D678200][000002734D744930 66] iPad10, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D678080][000002734D7424A0 66] iPadPro11, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D677F00][000002734D740010 66] iPadPro2_11, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D677D80][000002734D75DB70 66] iPadPro3_11, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D677C00][000002734D75B6E0 66] iPadPro4_11, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D677A80][000002734D759250 66] iPadPro3_129, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D677900][000002734D756DC0 66] iPadPro4_129, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D677780][000002734D754930 66] iPadPro5_129, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D677600][000002734D7524A0 66] iPadPro6_129, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D677480][000002734D750010 66] AppleTV, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D677300][000002734D76DB70 66] AppleTV4K, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D677180][000002734D76B6E0 66] AppleTV2_4K, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D677000][000002734D769250 66] TVOS, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D676E80][000002734D766DC0 66] Mac, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D676D00][000002734D764930 66] MacEditor, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D676B80][000002734D7624A0 66] MacClient, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D676A00][000002734D760010 66] MacServer, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D676880][000002734D77DB70 66] Linux, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D676700][000002734D77B6E0 66] LinuxEditor, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D676580][000002734D779250 66] LinuxArm64Editor, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D676400][000002734D776DC0 66] LinuxArm64, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67C580][000002734D774930 66] LinuxClient, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67C400][000002734D7724A0 66] LinuxArm64Client, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67C280][000002734D770010 66] LinuxServer, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67C100][000002734D78DB70 66] LinuxArm64Server, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67BF80][000002734D78B6E0 66] Android, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67BE00][000002734D789250 66] Android_Preview_OpenGL, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67BC80][000002734D786DC0 66] Android_Preview_Vulkan, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67BB00][000002734D784930 66] Android_Low, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67B980][000002734D7824A0 66] Android_Mid, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67B800][000002734D780010 66] Android_High, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67B680][000002734D79DB70 66] Android_Default, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67B500][000002734D79B6E0 66] Android_Adreno4xx, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67B380][000002734D799250 66] Android_Adreno5xx_Low, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67B200][000002734D796DC0 66] Android_Adreno5xx, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67B080][000002734D794930 66] Android_Adreno6xx, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67AF00][000002734D7924A0 66] Android_Adreno6xx_Vulkan, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67AD80][000002734D790010 66] Android_Adreno7xx, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67AC00][000002734D7ADB70 66] Android_Adreno7xx_Vulkan, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67AA80][000002734D7AB6E0 66] Android_Mali_T6xx, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67A900][000002734D7A9250 66] Android_Mali_T7xx, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67A780][000002734D7A6DC0 66] Android_Mali_T8xx, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67A600][000002734D7A4930 66] Android_Mali_G71, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67A480][000002734D7A24A0 66] Android_Mali_G72, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67A300][000002734D7A0010 66] Android_Mali_G72_Vulkan, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67A180][000002734D7DDB70 66] Android_Mali_G76, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67A000][000002734D7DB6E0 66] Android_Mali_G76_Vulkan, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D679E80][000002734D7D9250 66] Android_Mali_G77, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D679D00][000002734D7D6DC0 66] Android_Mali_G77_Vulkan, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D679B80][000002734D7D4930 66] Android_Mali_G78, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D679A00][000002734D7D24A0 66] Android_Mali_G78_Vulkan, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D679880][000002734D7D0010 66] Android_Mali_G710, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D679700][000002734D7EDB70 66] Android_Mali_G710_Vulkan, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D679580][000002734D7EB6E0 66] Android_Mali_G7xx, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67F700][000002734D7E9250 66] Android_Mali_G7xx_Vulkan, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67F580][000002734D7E6DC0 66] Android_Xclipse_920, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67F400][000002734D7E4930 66] Android_Xclipse_920_Vulkan, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67F280][000002734D7E24A0 66] Android_Vulkan_SM5, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67F100][000002734D7E0010 66] Android_PowerVR_G6xxx, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67EF80][000002734D7FDB70 66] Android_PowerVR_GT7xxx, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67EE00][000002734D7FB6E0 66] Android_PowerVR_GE8xxx, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67EC80][000002734D7F9250 66] Android_PowerVR_GM9xxx, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67EB00][000002734D7F6DC0 66] Android_PowerVR_GM9xxx_Vulkan, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67E980][000002734D7F4930 66] Android_TegraK1, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67E800][000002734D7F24A0 66] Android_Unknown_Vulkan, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67E680][000002734D7F0010 66] Oculus_Quest, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67E500][000002734D80DB70 66] Oculus_Quest2, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67E380][000002734D80B6E0 66] Meta_Quest_Pro, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67E200][000002734D809250 66] Meta_Quest_3, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67E080][000002734D806DC0 66] HoloLens, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: 	[000002734D67DF00][000002734D804930 66] MagicLeap_Vulkan, 
+[2024.08.02-07.23.20:324][  0]LogDeviceProfileManager: Active device profile: [000002734D670E80][000002734C480010 66] Windows
+[2024.08.02-07.23.20:324][  0]LogCsvProfiler: Display: Metadata set : deviceprofile="Windows"
+[2024.08.02-07.23.20:614][  0]LogTextureEncodingSettings: Display: Texture Encode Speed: Final (cook).
+[2024.08.02-07.23.20:614][  0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal
+[2024.08.02-07.23.20:618][  0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled
+[2024.08.02-07.23.20:692][  0]LogPackageLocalizationCache: Processed 62 localized package path(s) for 1 prioritized culture(s) in 0.000137 seconds
+[2024.08.02-07.23.20:736][  0]LogStaticMesh: [SM_LightCardPlane] Mesh is marked for CPU read.
+[2024.08.02-07.23.20:738][  0]LogStaticMesh: [plane_hd_1x1] Mesh is marked for CPU read.
+[2024.08.02-07.23.20:746][  0]LogConfig: Warning: FConfigCacheIni::LoadFile failed loading file as it was 0 size.  Filename was:  ../../../MetaCastBachelor/Config/Demo.ini
+[2024.08.02-07.23.20:752][  0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
+[2024.08.02-07.23.20:752][  0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
+[2024.08.02-07.23.20:810][  0]LogMoviePlayer: Initializing movie player
+[2024.08.02-07.23.20:812][  0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 42B7A1494DD12F53F7A4259F09412B82 | Instance: 27850A4B41349E03655C4FA2B03E4CD6 (ITC22160-37212).
+[2024.08.02-07.23.20:837][  0]LogAudio: Display: Registering Engine Module Parameter Interfaces...
+[2024.08.02-07.23.20:838][  0]LogMetasoundEngine: MetaSound Engine Initialized
+[2024.08.02-07.23.20:842][  0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance
+[2024.08.02-07.23.20:842][  0]LogSlateStyle: Warning: Missing Resource from 'CoreStyle' Style: 'Unable to find Brush 'Sequencer.Timeline.VanillaScrubHandleDown'.'
+[2024.08.02-07.23.20:842][  0]LogDisplayClusterModule: Instantiating subsystem managers...
+[2024.08.02-07.23.20:842][  0]LogDisplayClusterRender: Registering factory for rendering device type: dc_dev_mono
+[2024.08.02-07.23.20:842][  0]LogDisplayClusterRender: Registered factory for rendering device type: dc_dev_mono
+[2024.08.02-07.23.20:842][  0]LogDisplayClusterRender: Registering factory for rendering device type: quad_buffer_stereo
+[2024.08.02-07.23.20:842][  0]LogDisplayClusterRender: Registered factory for rendering device type: quad_buffer_stereo
+[2024.08.02-07.23.20:842][  0]LogDisplayClusterRender: Registering factory for rendering device type: dc_dev_side_by_side
+[2024.08.02-07.23.20:842][  0]LogDisplayClusterRender: Registered factory for rendering device type: dc_dev_side_by_side
+[2024.08.02-07.23.20:842][  0]LogDisplayClusterRender: Registering factory for rendering device type: dc_dev_top_bottom
+[2024.08.02-07.23.20:842][  0]LogDisplayClusterRender: Registered factory for rendering device type: dc_dev_top_bottom
+[2024.08.02-07.23.20:842][  0]LogDisplayClusterRender: Registering factory for synchronization policy: none
+[2024.08.02-07.23.20:842][  0]LogDisplayClusterRender: Registered factory for synchronization policy: none
+[2024.08.02-07.23.20:842][  0]LogDisplayClusterRender: Registering factory for synchronization policy: ethernet
+[2024.08.02-07.23.20:842][  0]LogDisplayClusterRender: Registered factory for synchronization policy: ethernet
+[2024.08.02-07.23.20:842][  0]LogDisplayClusterRender: Registering factory for synchronization policy: ethernet_barrier
+[2024.08.02-07.23.20:842][  0]LogDisplayClusterRender: Registered factory for synchronization policy: ethernet_barrier
+[2024.08.02-07.23.20:842][  0]LogDisplayClusterRender: Registering factory for synchronization policy: nvidia
+[2024.08.02-07.23.20:842][  0]LogDisplayClusterRender: Registered factory for synchronization policy: nvidia
+[2024.08.02-07.23.20:842][  0]LogDisplayClusterModule: DisplayCluster module has been started
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterProjectionVIOSO: VIOSO API(1,6,19,90) was initialized from file '../../../Engine/Plugins/Runtime/nDisplay/ThirdParty/VIOSO/DLL/ViosoWarpBlend64.dll'.
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterProjection: Projection module has been instantiated
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterProjection: Projection module startup
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterProjection: Registering <camera> projection policy factory...
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterRender: Registering factory for projection type: camera
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterRender: Registered factory for projection type: camera
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterProjection: Registering <domeprojection> projection policy factory...
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterRender: Registering factory for projection type: domeprojection
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterRender: Registered factory for projection type: domeprojection
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterProjection: Registering <easyblend> projection policy factory...
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterRender: Registering factory for projection type: easyblend
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterRender: Registered factory for projection type: easyblend
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterProjection: Registering <link> projection policy factory...
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterRender: Registering factory for projection type: link
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterRender: Registered factory for projection type: link
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterProjection: Registering <manual> projection policy factory...
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterRender: Registering factory for projection type: manual
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterRender: Registered factory for projection type: manual
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterProjection: Registering <mpcdi> projection policy factory...
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterRender: Registering factory for projection type: mpcdi
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterRender: Registered factory for projection type: mpcdi
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterProjection: Registering <mesh> projection policy factory...
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterRender: Registering factory for projection type: mesh
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterRender: Registered factory for projection type: mesh
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterProjection: Registering <simple> projection policy factory...
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterRender: Registering factory for projection type: simple
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterRender: Registered factory for projection type: simple
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterProjection: Registering <vioso> projection policy factory...
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterRender: Registering factory for projection type: vioso
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterRender: Registered factory for projection type: vioso
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterProjection: Projection module has started
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterRemoteControlInterceptor: DisplayClusterRemoteControlInterceptor has been registered
+[2024.08.02-07.23.20:845][  0]LogDisplayClusterMedia: Starting module 'DisplayClusterMedia'...
+[2024.08.02-07.23.20:845][  0]GPUPointCloudRenderer: //////////////////////////////////////////// 
+
+[2024.08.02-07.23.20:845][  0]GPUPointCloudRenderer: // Initializing GPU Point Cloud Renderer... 
+
+[2024.08.02-07.23.20:845][  0]GPUPointCloudRenderer: //////////////////////////////////////////// 
+
+[2024.08.02-07.23.20:854][  0]LogUObjectArray: 25084 objects as part of root set at end of initial load.
+[2024.08.02-07.23.20:854][  0]LogUObjectArray: 4 objects are not in the root set, but can never be destroyed because they are in the DisregardForGC set.
+[2024.08.02-07.23.20:854][  0]LogUObjectAllocator: 5582112 out of 0 bytes used by permanent object pool.
+[2024.08.02-07.23.20:854][  0]LogUObjectArray: CloseDisregardForGC: 25084/25084 objects in disregard for GC pool
+[2024.08.02-07.23.20:866][  0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 24348 public script object entries (639.99 KB)
+[2024.08.02-07.23.20:866][  0]LogStreaming: Display: AsyncLoading2 - Thread Started: true, IsInitialLoad: false
+[2024.08.02-07.23.20:867][  0]LogEngine: Initializing Engine...
+[2024.08.02-07.23.20:889][  0]LogHMD: HMD configured for shader platform PCD3D_SM6, bIsMobileMultiViewEnabled=0, bProjectionLayerAlphaEnabled=0
+[2024.08.02-07.23.26:465][  0]LogStats: UGameplayTagsManager::InitializeManager -  0.000 s
+[2024.08.02-07.23.26:472][  0]LogInit: Initializing FReadOnlyCVARCache
+[2024.08.02-07.23.26:472][  0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use.
+[2024.08.02-07.23.26:472][  0]LogInit: Texture streaming: Enabled
+[2024.08.02-07.23.26:472][  0]LogAudio: Display: Initializing Audio Device Manager...
+[2024.08.02-07.23.26:473][  0]LogAudio: Display: Loading Default Audio Settings Objects...
+[2024.08.02-07.23.26:473][  0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load).
+[2024.08.02-07.23.26:473][  0]LogAudio: Display: AudioInfo: 'BINKA' Registered
+[2024.08.02-07.23.26:473][  0]LogAudio: Display: AudioInfo: 'PCM' Registered
+[2024.08.02-07.23.26:473][  0]LogAudio: Display: AudioInfo: 'ADPCM' Registered
+[2024.08.02-07.23.26:473][  0]LogAudio: Display: AudioInfo: 'OGG' Registered
+[2024.08.02-07.23.26:473][  0]LogAudio: Display: AudioInfo: 'OPUS' Registered
+[2024.08.02-07.23.26:473][  0]LogAudio: Display: Audio Device Manager Initialized
+[2024.08.02-07.23.26:473][  0]LogAudio: Display: Creating Audio Device:                 Id: 1, Scope: Shared, Realtime: True
+[2024.08.02-07.23.26:473][  0]LogAudioMixer: Display: Audio Mixer Platform Settings:
+[2024.08.02-07.23.26:473][  0]LogAudioMixer: Display: 	Sample Rate:						  48000
+[2024.08.02-07.23.26:473][  0]LogAudioMixer: Display: 	Callback Buffer Frame Size Requested: 1024
+[2024.08.02-07.23.26:473][  0]LogAudioMixer: Display: 	Callback Buffer Frame Size To Use:	  1024
+[2024.08.02-07.23.26:473][  0]LogAudioMixer: Display: 	Number of buffers to queue:			  1
+[2024.08.02-07.23.26:473][  0]LogAudioMixer: Display: 	Max Channels (voices):				  32
+[2024.08.02-07.23.26:473][  0]LogAudioMixer: Display: 	Number of Async Source Workers:		  4
+[2024.08.02-07.23.26:473][  0]LogAudio: Display: AudioDevice MaxSources: 32
+[2024.08.02-07.23.26:473][  0]LogAudio: Display: Audio Spatialization Plugin: None (built-in).
+[2024.08.02-07.23.26:473][  0]LogAudio: Display: Audio Reverb Plugin: None (built-in).
+[2024.08.02-07.23.26:473][  0]LogAudio: Display: Audio Occlusion Plugin: None (built-in).
+[2024.08.02-07.23.26:487][  0]LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded.
+[2024.08.02-07.23.26:488][  0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2'
+[2024.08.02-07.23.26:567][  0]LogAudioMixer: Display: Using Audio Hardware Device Lautsprecher (3- Realtek USB2.0 Audio)
+[2024.08.02-07.23.26:568][  0]LogAudioMixer: Display: Initializing Sound Submixes...
+[2024.08.02-07.23.26:569][  0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault'
+[2024.08.02-07.23.26:569][  0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault'
+[2024.08.02-07.23.26:570][  0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1
+[2024.08.02-07.23.26:570][  0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1
+[2024.08.02-07.23.26:571][  0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1
+[2024.08.02-07.23.26:571][  0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1
+[2024.08.02-07.23.26:571][  0]LogInit: FAudioDevice initialized with ID 1.
+[2024.08.02-07.23.26:571][  0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1
+[2024.08.02-07.23.26:571][  0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1"
+[2024.08.02-07.23.26:572][  0]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created!
+[2024.08.02-07.23.26:573][  0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
+[2024.08.02-07.23.26:574][  0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'.
+[2024.08.02-07.23.26:575][  0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
+[2024.08.02-07.23.26:575][  0]LogInit: Display: Game Engine Initialized.
+[2024.08.02-07.23.26:576][  0]LogWindows: Attached monitors:
+[2024.08.02-07.23.26:576][  0]LogWindows:     resolution: 1920x1080, work area: (1920, 0) -> (3840, 1040), device: '\\.\DISPLAY2'
+[2024.08.02-07.23.26:576][  0]LogWindows:     resolution: 1920x1080, work area: (0, 0) -> (1920, 1040), device: '\\.\DISPLAY1' [PRIMARY]
+[2024.08.02-07.23.26:576][  0]LogWindows: Found 2 attached monitors.
+[2024.08.02-07.23.26:576][  0]LogWindows: Gathering driver information using Windows Setup API
+[2024.08.02-07.23.26:577][  0]LogInit: Display: Starting Game.
+[2024.08.02-07.23.26:577][  0]LogNet: Browse: /Game/Maps/Login?Name=Player
+[2024.08.02-07.23.26:577][  0]LogLoad: LoadMap: /Game/Maps/Login?Name=Player
+[2024.08.02-07.23.26:577][  0]LogWorld: BeginTearingDown for /Temp/Untitled_0
+[2024.08.02-07.23.26:577][  0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true
+[2024.08.02-07.23.26:577][  0]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.23.26:582][  0]LogRHI: Display: Encountered a new compute PSO: 108100765
+[2024.08.02-07.23.26:584][  0]LogRHI: Display: Encountered a new compute PSO: 3044213281
+[2024.08.02-07.23.26:585][  0]LogRHI: Display: Encountered a new compute PSO: 3441300143
+[2024.08.02-07.23.26:594][  0]LogAudio: Display: Audio Device unregistered from world 'None'.
+[2024.08.02-07.23.26:594][  0]LogStreaming: Display: 0.001 ms for processing 44 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 0 (163->163) packages and 0 (167->167) public exports.
+[2024.08.02-07.23.26:596][  0]LogUObjectHash: Compacting FUObjectHashTables data took   0.81ms
+[2024.08.02-07.23.26:628][  0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Login'.
+[2024.08.02-07.23.26:628][  0]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created!
+[2024.08.02-07.23.26:628][  0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
+[2024.08.02-07.23.26:630][  0]LogAIModule: Creating AISystem for world Login
+[2024.08.02-07.23.26:649][  0]LogLoad: Game class is 'VRGameMode_C'
+[2024.08.02-07.23.26:650][  0]LogWorld: Bringing World /Game/Maps/Login.Login up for play (max tick rate 0) at 2024.08.02-09.23.26
+[2024.08.02-07.23.26:650][  0]LogRHI: Display: Encountered a new compute PSO: 1624740199
+[2024.08.02-07.23.26:650][  0]LogRHI: Display: Encountered a new compute PSO: 3081443093
+[2024.08.02-07.23.26:650][  0]LogWorld: Bringing up level for play took: 0.001454
+[2024.08.02-07.23.26:651][  0]LogRHI: Display: Encountered a new compute PSO: 434897211
+[2024.08.02-07.23.26:651][  0]LogGameMode: FindPlayerStart: PATHS NOT DEFINED or NO PLAYERSTART with positive rating
+[2024.08.02-07.23.26:655][  0]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1
+[2024.08.02-07.23.26:655][  0]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.23.26:659][  0]LogSlate: Took 0.000594 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoRegular.ufont' (155K)
+[2024.08.02-07.23.26:660][  0]vr.PixelDensity = "1"
+[2024.08.02-07.23.26:660][  0]LogLoad: Took 0.083371 seconds to LoadMap(/Game/Maps/Login)
+[2024.08.02-07.23.26:661][  0]LogSlate: Took 0.000418 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoBold.ufont' (160K)
+[2024.08.02-07.23.26:661][  0]LogViewport: Scene viewport resized to 1920x1080, mode WindowedFullscreen.
+[2024.08.02-07.23.26:666][  0]LogHMD: Warning: Requesting 10 bit swapchain, but not supported: fall back to 8bpc
+[2024.08.02-07.23.26:720][  0]LogSlate: Took 0.000426 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K)
+[2024.08.02-07.23.26:720][  0]LogRHI: Display: ShaderPipelineCache: Paused Batching. 1
+[2024.08.02-07.23.26:720][  0]LogPakFile: AllPaks IndexSizes: DirectoryHashSize=193072, PathHashSize=16, EntriesSize=32752, TotalSize=225840
+[2024.08.02-07.23.26:720][  0]LogRHI: Display: ShaderPipelineCache: Resumed Batching. 0
+[2024.08.02-07.23.26:720][  0]LogRHI: Display: ShaderPipelineCache: Batching Resumed.
+[2024.08.02-07.23.26:721][  0]LogRenderer: Warning: Resizing VR buffer to 2656 by 1300
+[2024.08.02-07.23.26:726][  0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init()
+[2024.08.02-07.23.26:726][  0]LogLoad: (Engine Initialization) Total time: 8.05 seconds
+[2024.08.02-07.23.26:731][  0]LogSlate: Took 0.000444 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K)
+[2024.08.02-07.23.26:763][  0]LogRHI: Display: Encountered a new compute PSO: 4084646486
+[2024.08.02-07.23.26:763][  0]LogRHI: Display: Encountered a new compute PSO: 812371551
+[2024.08.02-07.23.26:763][  0]LogRHI: Display: Encountered a new graphics PSO: 438169823
+[2024.08.02-07.23.26:763][  0]LogRHI: Display: Encountered a new graphics PSO: 2996660223
+[2024.08.02-07.23.26:763][  0]LogRHI: Display: Encountered a new compute PSO: 3707458169
+[2024.08.02-07.23.26:763][  0]LogRHI: Display: Encountered a new compute PSO: 1983791817
+[2024.08.02-07.23.26:764][  0]LogRHI: Display: Encountered a new compute PSO: 3071658855
+[2024.08.02-07.23.26:764][  0]LogRHI: Display: Encountered a new compute PSO: 1980351999
+[2024.08.02-07.23.26:764][  0]LogRHI: Display: Encountered a new graphics PSO: 568850401
+[2024.08.02-07.23.26:764][  0]LogRHI: Display: Encountered a new compute PSO: 3265167958
+[2024.08.02-07.23.26:764][  0]LogRHI: Display: Encountered a new graphics PSO: 1857403627
+[2024.08.02-07.23.26:764][  0]LogRHI: Display: Encountered a new graphics PSO: 2789720086
+[2024.08.02-07.23.26:764][  0]LogRHI: Display: Encountered a new graphics PSO: 1680577637
+[2024.08.02-07.23.26:765][  0]LogRHI: Display: Encountered a new graphics PSO: 2141321626
+[2024.08.02-07.23.26:782][  0]LogRHI: Display: Encountered a new graphics PSO: 3396054539
+[2024.08.02-07.23.26:890][  0]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.23.26:893][  0]LogContentStreaming: Texture pool size now 1000 MB
+[2024.08.02-07.23.26:921][  2]LogRHI: Display: Encountered a new compute PSO: 3916353388
+[2024.08.02-07.23.26:921][  2]LogRHI: Display: Encountered a new compute PSO: 36000004
+[2024.08.02-07.23.26:921][  2]LogRHI: Display: Encountered a new compute PSO: 2137981577
+[2024.08.02-07.23.26:921][  2]LogRHI: Display: Encountered a new compute PSO: 2377609249
+[2024.08.02-07.23.26:921][  2]LogRHI: Display: Encountered a new compute PSO: 3156736644
+[2024.08.02-07.23.26:921][  2]LogRHI: Display: Encountered a new compute PSO: 3415796330
+[2024.08.02-07.23.26:921][  2]LogRHI: Display: Encountered a new compute PSO: 2607838988
+[2024.08.02-07.23.26:922][  2]LogRHI: Display: Encountered a new compute PSO: 1496384869
+[2024.08.02-07.23.26:922][  2]LogRHI: Display: Encountered a new compute PSO: 1213868836
+[2024.08.02-07.23.26:922][  2]LogRHI: Display: Encountered a new graphics PSO: 2274179198
+[2024.08.02-07.23.26:922][  2]LogRHI: Display: Encountered a new compute PSO: 3810519787
+[2024.08.02-07.23.26:922][  2]LogRHI: Display: Encountered a new compute PSO: 1481873912
+[2024.08.02-07.23.26:922][  2]LogRHI: Display: Encountered a new compute PSO: 3560210858
+[2024.08.02-07.23.26:922][  2]LogRHI: Display: Encountered a new compute PSO: 2045927908
+[2024.08.02-07.23.26:923][  2]LogRHI: Display: Encountered a new compute PSO: 1838702928
+[2024.08.02-07.23.26:923][  2]LogRHI: Display: Encountered a new compute PSO: 309180451
+[2024.08.02-07.23.26:923][  2]LogRHI: Display: Encountered a new compute PSO: 3137437172
+[2024.08.02-07.23.26:923][  2]LogRHI: Display: Encountered a new compute PSO: 3360497970
+[2024.08.02-07.23.26:923][  2]LogRHI: Display: Encountered a new compute PSO: 2399646039
+[2024.08.02-07.23.26:923][  2]LogRHI: Display: Encountered a new compute PSO: 3509667929
+[2024.08.02-07.23.26:923][  2]LogRHI: Display: Encountered a new compute PSO: 831929746
+[2024.08.02-07.23.26:923][  2]LogRHI: Display: Encountered a new compute PSO: 676159369
+[2024.08.02-07.23.26:923][  2]LogRHI: Display: Encountered a new compute PSO: 2077624189
+[2024.08.02-07.23.26:923][  2]LogRHI: Display: Encountered a new compute PSO: 724033258
+[2024.08.02-07.23.26:923][  2]LogRHI: Display: Encountered a new graphics PSO: 1044072120
+[2024.08.02-07.23.26:923][  2]LogRHI: Display: Encountered a new graphics PSO: 3670865199
+[2024.08.02-07.23.26:923][  2]LogRHI: Display: Encountered a new graphics PSO: 3377188663
+[2024.08.02-07.23.26:924][  2]LogRHI: Display: Encountered a new compute PSO: 4090296402
+[2024.08.02-07.23.26:924][  2]LogRHI: Display: Encountered a new graphics PSO: 4210484662
+[2024.08.02-07.23.26:924][  2]LogRHI: Display: Encountered a new graphics PSO: 977987442
+[2024.08.02-07.23.26:925][  2]LogRHI: Display: Encountered a new compute PSO: 710140861
+[2024.08.02-07.23.26:925][  2]LogRHI: Display: Encountered a new graphics PSO: 1487777183
+[2024.08.02-07.23.26:926][  2]LogRHI: Display: Encountered a new compute PSO: 3886170959
+[2024.08.02-07.23.26:927][  2]LogRHI: Display: Encountered a new graphics PSO: 3898165938
+[2024.08.02-07.23.26:927][  2]LogRHI: Display: Encountered a new graphics PSO: 2376581795
+[2024.08.02-07.23.26:927][  2]LogRHI: Display: Encountered a new graphics PSO: 3776468594
+[2024.08.02-07.23.26:927][  2]LogRHI: Display: Encountered a new graphics PSO: 3126438517
+[2024.08.02-07.23.26:929][  2]LogRHI: Display: Encountered a new graphics PSO: 2989811062
+[2024.08.02-07.23.26:929][  2]LogRHI: Display: Encountered a new graphics PSO: 392357091
+[2024.08.02-07.23.26:932][  2]LogRHI: Display: Encountered a new compute PSO: 349008682
+[2024.08.02-07.23.27:204][  2]LogD3D12RHI: Cannot end block when stack is empty
+[2024.08.02-07.23.27:205][  2]LogRHI: Display: Encountered a new graphics PSO: 1601640264
+[2024.08.02-07.23.27:205][  2]LogRHI: Display: Encountered a new graphics PSO: 2881236056
+[2024.08.02-07.23.27:227][  3]LogHMD: SetSpectatorScreenMode(7).
+[2024.08.02-07.23.27:239][  4]LogRHI: Display: Encountered a new graphics PSO: 1324910427
+[2024.08.02-07.23.27:239][  4]LogRHI: Display: Encountered a new graphics PSO: 1796231892
+[2024.08.02-07.23.27:249][  5]LogRHI: Display: Encountered a new graphics PSO: 3889033541
+[2024.08.02-07.23.27:249][  5]LogRHI: Display: Encountered a new graphics PSO: 3309177214
+[2024.08.02-07.23.27:270][  6]LogRHI: Display: Encountered a new graphics PSO: 1475094606
+[2024.08.02-07.23.27:270][  6]LogRHI: Display: Encountered a new graphics PSO: 3836121350
+[2024.08.02-07.23.33:517][564]LogBlueprintUserMessages: [LoginManager_C_1] 44
+[2024.08.02-07.23.33:520][564]LogTemp: Initialized Participant ID: 44
+[2024.08.02-07.23.33:539][566]LogProfilingDebugging: Allocated a 1024 x 1024 texture for HMD canvas layer
+[2024.08.02-07.23.33:539][566]LogRHI: Display: Encountered a new graphics PSO: 1502675884
+[2024.08.02-07.23.33:553][567]LogRHI: Display: Encountered a new graphics PSO: 4069790606
+[2024.08.02-07.23.33:716][577]LogHMD: SetSpectatorScreenMode(7).
+[2024.08.02-07.23.33:716][577]LogBlueprintUserMessages: [LoginManager_C_1] Initialized!
+[2024.08.02-07.23.35:360][725]LogBlueprintUserMessages: [LoginManager_C_1] Starting Condition: MagicWand
+[2024.08.02-07.23.38:339][993]LogRHI: Display: Encountered a new graphics PSO: 2384109491
+[2024.08.02-07.23.38:339][993]LogRHI: Display: Encountered a new graphics PSO: 2900977544
+[2024.08.02-07.23.40:349][174]LogBlueprintUserMessages: [LoginManager_C_1] LOADING CONDITION!
+[2024.08.02-07.23.40:349][174]LogTemp: Loading level: /Game/Maps/MagicWandMap.MagicWandMap
+[2024.08.02-07.23.40:352][175]LogNet: Browse: /Game/Maps/MagicWandMap.MagicWandMap
+[2024.08.02-07.23.40:352][175]LogLoad: LoadMap: /Game/Maps/MagicWandMap.MagicWandMap
+[2024.08.02-07.23.40:352][175]LogWorld: BeginTearingDown for /Game/Maps/Login
+[2024.08.02-07.23.40:354][175]LogWorld: UWorld::CleanupWorld for Login, bSessionEnded=true, bCleanupResources=true
+[2024.08.02-07.23.40:354][175]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.23.40:371][175]LogHMD: Error: Unexpected error on xrBeginFrame. Error code was XR_ERROR_CALL_ORDER_INVALID.
+[2024.08.02-07.23.40:415][175]LogStreaming: Display: 0.021 ms for processing 532 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 63 (265->202) packages and 221 (437->216) public exports.
+[2024.08.02-07.23.40:415][175]LogAudio: Display: Audio Device unregistered from world 'None'.
+[2024.08.02-07.23.40:417][175]LogSlate: Slate User Unregistered.  User Index 8
+[2024.08.02-07.23.40:417][175]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.23.40:418][175]LogUObjectHash: Compacting FUObjectHashTables data took   0.63ms
+[2024.08.02-07.23.40:422][175]LogStreaming: Display: FlushAsyncLoading(103): 1 QueuedPackages, 0 AsyncPackages
+[2024.08.02-07.23.40:451][175]LogPackageName: Warning: TryConvertFilenameToLongPackageName was passed an ObjectPath (/Game/Maps/MagicWandMap.MagicWandMap) rather than a PackageName or FilePath; it will be converted to the PackageName. Accepting ObjectPaths is deprecated behavior and will be removed in a future release; TryConvertFilenameToLongPackageName will fail on ObjectPaths.
+[2024.08.02-07.23.40:478][175]LogAudio: Display: Audio Device (ID: 1) registered with world 'MagicWandMap'.
+[2024.08.02-07.23.40:478][175]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created!
+[2024.08.02-07.23.40:478][175]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
+[2024.08.02-07.23.40:479][175]LogAIModule: Creating AISystem for world MagicWandMap
+[2024.08.02-07.23.40:480][175]LogLoad: Game class is 'VRGameMode_C'
+[2024.08.02-07.23.40:482][175]LogWorld: Bringing World /Game/Maps/MagicWandMap.MagicWandMap up for play (max tick rate 0) at 2024.08.02-09.23.40
+[2024.08.02-07.23.40:482][175]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1
+[2024.08.02-07.23.40:482][175]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.23.40:482][175]LogWorld: Bringing up level for play took: 0.001129
+[2024.08.02-07.23.40:482][175]LogGameMode: FindPlayerStart: PATHS NOT DEFINED or NO PLAYERSTART with positive rating
+[2024.08.02-07.23.40:483][175]LogTemp: Point Cloud Folder: ../../../MetaCastBachelor/Content/Data/data
+[2024.08.02-07.23.40:483][175]LogTemp: Flag Folder: ../../../MetaCastBachelor/Content/Data/flags
+[2024.08.02-07.23.40:490][175]LogTemp: Total Point Cloud Files: 24
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/ball_hemisphere
+[2024.08.02-07.23.40:490][175]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/ball_hemisphere_flags
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/disk
+[2024.08.02-07.23.40:490][175]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/disk_flags
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/fiveellipsolds
+[2024.08.02-07.23.40:490][175]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/fiveellipsolds_flags_1
+[2024.08.02-07.23.40:490][175]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/fiveellipsolds_flags_2
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube1
+[2024.08.02-07.23.40:490][175]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube1_flags_1
+[2024.08.02-07.23.40:490][175]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube1_flags_2
+[2024.08.02-07.23.40:490][175]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube1_flags_3
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube2
+[2024.08.02-07.23.40:490][175]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube2_flags
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube3
+[2024.08.02-07.23.40:490][175]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube3_flags
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/galaxy
+[2024.08.02-07.23.40:490][175]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/galaxy
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/multiEllipsolds
+[2024.08.02-07.23.40:490][175]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/multiEllipsolds
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/nbody1
+[2024.08.02-07.23.40:490][175]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/nbody1_flags
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/nbody2
+[2024.08.02-07.23.40:490][175]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/nbody2_flags
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/snap_animation
+[2024.08.02-07.23.40:490][175]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/snap_animation_flags
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/stringf
+[2024.08.02-07.23.40:490][175]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/stringf
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/stringf1
+[2024.08.02-07.23.40:490][175]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/stringf1
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/strings
+[2024.08.02-07.23.40:490][175]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/strings
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/three_rings
+[2024.08.02-07.23.40:490][175]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/three_rings_flags
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_cylinder
+[2024.08.02-07.23.40:490][175]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_cylinder_flags
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_cylinder_2
+[2024.08.02-07.23.40:490][175]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/training_cylinder_2
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_pyramid
+[2024.08.02-07.23.40:490][175]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_pyramid_flags
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_pyramid_2
+[2024.08.02-07.23.40:490][175]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/training_pyramid_2
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_sphere
+[2024.08.02-07.23.40:490][175]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_sphere_flags
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_sphere_2
+[2024.08.02-07.23.40:490][175]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/training_sphere_2
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_torus
+[2024.08.02-07.23.40:490][175]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_torus_flags
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/uniform_Lines
+[2024.08.02-07.23.40:490][175]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/uniform_Lines_flags
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/ununiform_Lines
+[2024.08.02-07.23.40:490][175]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/ununiform_Lines_flags
+[2024.08.02-07.23.40:490][175]LogTemp: Point Cloud Files with No Matching Flags:
+[2024.08.02-07.23.40:490][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/galaxy
+[2024.08.02-07.23.40:490][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/multiEllipsolds
+[2024.08.02-07.23.40:490][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/stringf
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/stringf1
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/strings
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_cylinder_2
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_pyramid_2
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_sphere_2
+[2024.08.02-07.23.40:491][175]LogTemp: Valid Point Cloud Files with Matching Flags:
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/ball_hemisphere
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/disk
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/fiveellipsolds
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube1
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube2
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube3
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/nbody1
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/nbody2
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/snap_animation
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/three_rings
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_cylinder
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_pyramid
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_sphere
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_torus
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/uniform_Lines
+[2024.08.02-07.23.40:491][175]LogTemp: ../../../MetaCastBachelor/Content/Data/data/ununiform_Lines
+[2024.08.02-07.23.40:510][175]LogTemp: Warning: Loaded 146578 points and flags
+[2024.08.02-07.23.40:512][175]LogTemp: Warning: Minimum: X=0.000 Y=0.000 Z=0.000 ; Maximum: X=100.000 Y=100.000 Z=100.000
+[2024.08.02-07.23.40:571][175]LogTemp: Initializing DensityField!
+[2024.08.02-07.23.40:692][175]LogTemp: Starting density calculation.
+[2024.08.02-07.23.40:699][175]LogTemp: Cleared previous densities.
+[2024.08.02-07.23.40:820][175]LogTemp: Maximum density found: 5.575187
+[2024.08.02-07.23.40:820][175]LogTemp: Minimum density found: 0.000000
+[2024.08.02-07.23.40:820][175]LogTemp: Average density found: 0.129851
+[2024.08.02-07.23.40:820][175]LogTemp: Density calculation completed in 0.127896 seconds.
+[2024.08.02-07.23.40:820][175]LogTemp: Starting gradient calculation.
+[2024.08.02-07.23.40:842][175]LogTemp: Gradient calculation completed.
+[2024.08.02-07.23.40:885][175]LogLoad: Took 0.532630 seconds to LoadMap(/Game/Maps/MagicWandMap.MagicWandMap)
+[2024.08.02-07.23.40:897][175]LogRHI: Display: Encountered a new graphics PSO: 1980780655
+[2024.08.02-07.23.40:897][175]LogRHI: Display: Encountered a new graphics PSO: 3450231069
+[2024.08.02-07.23.40:898][175]LogUObjectGlobals: Warning: Gamethread hitch waiting for resource cleanup on a UObject (PointCloudMeshComponent /Game/Maps/MagicWandMap.MagicWandMap:PersistentLevel.BP_PointCloud_C_1.GPUPointCloudRenderer.PointCloud Mesh) overwrite took  11.57ms. Fix the higher level code so that this does not happen.
+[2024.08.02-07.23.41:036][177]LogRHI: Display: Encountered a new graphics PSO: 1361913955
+[2024.08.02-07.23.41:036][177]LogRHI: Display: Encountered a new graphics PSO: 4228879312
+[2024.08.02-07.23.41:036][177]LogRHI: Display: Encountered a new graphics PSO: 1099305870
+[2024.08.02-07.23.41:036][177]LogRHI: Display: Encountered a new graphics PSO: 909860731
+[2024.08.02-07.23.41:060][178]LogRHI: Display: Encountered a new graphics PSO: 3242259045
+[2024.08.02-07.24.21:779][828]LogRHI: Display: Encountered a new graphics PSO: 3243850598
+[2024.08.02-07.24.24:342][970]LogAudioMixer: Display: Audio Buffer Underrun (starvation) detected. InstanceID=1
+[2024.08.02-07.24.28:142][ 10]LogStreaming: Display: 0.012 ms for processing 74 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 0 (325->325) packages and 66 (883->817) public exports.
+[2024.08.02-07.24.53:096][297]LogAudioMixer: Display: Audio Buffer Underrun (starvation) detected. InstanceID=1
+[2024.08.02-07.25.23:663][884]LogAudioMixer: Display: Audio Buffer Underrun (starvation) detected. InstanceID=1
+[2024.08.02-07.26.02:385][683]LogAudioMixer: Display: Audio Buffer Underrun (starvation) detected. InstanceID=1
+[2024.08.02-07.27.14:942][141]LogWindowsDesktop: Alt-F4 pressed!
+[2024.08.02-07.27.14:942][141]LogSlate: Request Window 'MetaCastBachelor (64-bit Development PCD3D_SM6) ' being destroyed
+[2024.08.02-07.27.14:962][141]LogSlate: Window 'MetaCastBachelor (64-bit Development PCD3D_SM6) ' being destroyed
+[2024.08.02-07.27.14:963][141]LogWindowsTextInputMethodSystem: Activated input method: German (Germany) - (Keyboard).
+[2024.08.02-07.27.14:978][141]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
+[2024.08.02-07.27.14:978][141]LogEngine: All Windows Closed
+[2024.08.02-07.27.14:978][141]LogWindows: FPlatformMisc::RequestExit(0, UGameEngine::Tick.ViewportClosed)
+[2024.08.02-07.27.14:978][141]LogWindows: FPlatformMisc::RequestExitWithStatus(0, 0, UGameEngine::Tick.ViewportClosed)
+[2024.08.02-07.27.14:978][141]LogCore: Engine exit requested (reason: Win RequestExit)
+[2024.08.02-07.27.14:981][142]LogCore: Engine exit requested (reason: EngineExit() was called; note: exit was already requested)
+[2024.08.02-07.27.14:981][142]LogInit: Display: PreExit Game.
+[2024.08.02-07.27.14:983][142]LogWorld: BeginTearingDown for /Game/Maps/MagicWandMap
+[2024.08.02-07.27.14:983][142]LogWorld: UWorld::CleanupWorld for MagicWandMap, bSessionEnded=true, bCleanupResources=true
+[2024.08.02-07.27.14:983][142]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.27.15:700][142]LogAudio: Display: Beginning Audio Device Manager Shutdown (Module: AudioMixerXAudio2)...
+[2024.08.02-07.27.15:700][142]LogAudio: Display: Destroying 1 Remaining Audio Device(s)...
+[2024.08.02-07.27.15:700][142]LogAudio: Display: Audio Device unregistered from world 'MagicWandMap'.
+[2024.08.02-07.27.15:700][142]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 1
+[2024.08.02-07.27.15:733][142]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1
+[2024.08.02-07.27.15:734][142]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1
+[2024.08.02-07.27.15:741][142]LogAudio: Display: Audio Device Manager Shutdown
+[2024.08.02-07.27.15:746][142]LogExit: Preparing to exit.
+[2024.08.02-07.27.15:746][142]LogMoviePlayer: Shutting down movie player
+[2024.08.02-07.27.15:752][142]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
+[2024.08.02-07.27.15:771][142]LogDemo: Cleaned up 0 splitscreen connections, owner deletion: enabled
+[2024.08.02-07.27.15:774][142]LogExit: Game engine shut down
+[2024.08.02-07.27.15:822][142]LogExit: Object subsystem successfully closed.
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module AutomationController (496)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module AutomationWorker (494)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module Voice (492)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module AIModule (490)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module GameplayDebugger (489)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module NavigationSystem (487)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module OpenXRInput (484)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module WmfMediaFactory (482)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module WebMMediaFactory (480)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module WebMMedia (478)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module OpenExrWrapper (476)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module ImgMediaFactory (474)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module AvfMediaFactory (472)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module FractureEngine (470)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module CharacterAI (468)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module SessionServices (466)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module MovieSceneTracks (464)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module MovieScene (462)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module StreamingPauseRendering (460)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module BinkAudioDecoder (458)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module AudioMixerXAudio2 (456)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module AudioMixer (455)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module AudioMixerCore (454)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module TypedElementRuntime (450)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module TypedElementFramework (448)
+[2024.08.02-07.27.15:853][142]LogModuleManager: Shutting down and abandoning module ProfilerService (446)
+[2024.08.02-07.27.15:884][142]LogModuleManager: Shutting down and abandoning module ProfileVisualizer (444)
+[2024.08.02-07.27.15:884][142]LogModuleManager: Shutting down and abandoning module RWTHVRToolkit (442)
+[2024.08.02-07.27.15:884][142]LogModuleManager: Shutting down and abandoning module RWTHVRCluster (440)
+[2024.08.02-07.27.15:884][142]LogModuleManager: Shutting down and abandoning module GPUPointCloudRendererEditor (438)
+[2024.08.02-07.27.15:884][142]LogModuleManager: Shutting down and abandoning module TakeMovieScene (436)
+[2024.08.02-07.27.15:884][142]LogModuleManager: Shutting down and abandoning module RemoteControlInterception (434)
+[2024.08.02-07.27.15:884][142]LogModuleManager: Shutting down and abandoning module CameraCalibrationCoreMovieScene (432)
+[2024.08.02-07.27.15:884][142]LogModuleManager: Shutting down and abandoning module TraceUtilities (430)
+[2024.08.02-07.27.15:884][142]LogModuleManager: Shutting down and abandoning module DisplayClusterReplication (428)
+[2024.08.02-07.27.15:884][142]LogModuleManager: Shutting down and abandoning module SharedMemoryMedia (426)
+[2024.08.02-07.27.15:884][142]LogSharedMemoryMedia: Shutting down module SharedMemoryMedia'...
+[2024.08.02-07.27.15:884][142]LogModuleManager: Shutting down and abandoning module DisplayClusterMedia (424)
+[2024.08.02-07.27.15:884][142]LogDisplayClusterMedia: Shutting down module 'DisplayClusterMedia'...
+[2024.08.02-07.27.15:884][142]LogModuleManager: Shutting down and abandoning module DisplayClusterRemoteControlInterceptor (422)
+[2024.08.02-07.27.15:884][142]LogDisplayClusterRemoteControlInterceptor: DisplayClusterRemoteControlInterceptor has been unregistered
+[2024.08.02-07.27.15:884][142]LogModuleManager: Shutting down and abandoning module DisplayClusterStageMonitoring (420)
+[2024.08.02-07.27.15:884][142]LogModuleManager: Shutting down and abandoning module DisplayClusterScenePreview (418)
+[2024.08.02-07.27.15:884][142]LogModuleManager: Shutting down and abandoning module DisplayClusterMessageInterception (416)
+[2024.08.02-07.27.15:884][142]LogModuleManager: Shutting down and abandoning module DisplayClusterProjection (414)
+[2024.08.02-07.27.15:884][142]LogDisplayClusterProjection: Projection module shutdown
+[2024.08.02-07.27.15:884][142]LogDisplayClusterProjection: Un-registering <camera> projection factory...
+[2024.08.02-07.27.15:884][142]LogDisplayClusterRender: Unregistering factory for projection policy: camera
+[2024.08.02-07.27.15:884][142]LogDisplayClusterRender: Unregistered factory for projection policy: camera
+[2024.08.02-07.27.15:884][142]LogDisplayClusterProjection: Un-registering <domeprojection> projection factory...
+[2024.08.02-07.27.15:884][142]LogDisplayClusterRender: Unregistering factory for projection policy: domeprojection
+[2024.08.02-07.27.15:884][142]LogDisplayClusterRender: Unregistered factory for projection policy: domeprojection
+[2024.08.02-07.27.15:884][142]LogDisplayClusterProjection: Un-registering <easyblend> projection factory...
+[2024.08.02-07.27.15:884][142]LogDisplayClusterRender: Unregistering factory for projection policy: easyblend
+[2024.08.02-07.27.15:884][142]LogDisplayClusterRender: Unregistered factory for projection policy: easyblend
+[2024.08.02-07.27.15:884][142]LogDisplayClusterProjection: Un-registering <link> projection factory...
+[2024.08.02-07.27.15:884][142]LogDisplayClusterRender: Unregistering factory for projection policy: link
+[2024.08.02-07.27.15:884][142]LogDisplayClusterRender: Unregistered factory for projection policy: link
+[2024.08.02-07.27.15:884][142]LogDisplayClusterProjection: Un-registering <manual> projection factory...
+[2024.08.02-07.27.15:884][142]LogDisplayClusterRender: Unregistering factory for projection policy: manual
+[2024.08.02-07.27.15:884][142]LogDisplayClusterRender: Unregistered factory for projection policy: manual
+[2024.08.02-07.27.15:884][142]LogDisplayClusterProjection: Un-registering <mpcdi> projection factory...
+[2024.08.02-07.27.15:884][142]LogDisplayClusterRender: Unregistering factory for projection policy: mpcdi
+[2024.08.02-07.27.15:884][142]LogDisplayClusterRender: Unregistered factory for projection policy: mpcdi
+[2024.08.02-07.27.15:884][142]LogDisplayClusterProjection: Un-registering <mesh> projection factory...
+[2024.08.02-07.27.15:884][142]LogDisplayClusterRender: Unregistering factory for projection policy: mesh
+[2024.08.02-07.27.15:884][142]LogDisplayClusterRender: Unregistered factory for projection policy: mesh
+[2024.08.02-07.27.15:884][142]LogDisplayClusterProjection: Un-registering <simple> projection factory...
+[2024.08.02-07.27.15:884][142]LogDisplayClusterRender: Unregistering factory for projection policy: simple
+[2024.08.02-07.27.15:885][142]LogDisplayClusterRender: Unregistered factory for projection policy: simple
+[2024.08.02-07.27.15:885][142]LogDisplayClusterProjection: Un-registering <vioso> projection factory...
+[2024.08.02-07.27.15:885][142]LogDisplayClusterRender: Unregistering factory for projection policy: vioso
+[2024.08.02-07.27.15:885][142]LogDisplayClusterRender: Unregistered factory for projection policy: vioso
+[2024.08.02-07.27.15:885][142]LogDisplayClusterProjection: Projection module has been destroyed
+[2024.08.02-07.27.15:885][142]LogDisplayClusterProjectionVIOSO: VIOSO API released.
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module DisplayCluster (412)
+[2024.08.02-07.27.15:885][142]LogDisplayClusterModule: Cleaning up internals...
+[2024.08.02-07.27.15:885][142]LogDisplayClusterCluster: Releasing cluster manager...
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module DisplayClusterLightCardExtender (410)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module XRBase (408)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module ResonanceAudio (406)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module OSC (404)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module MobilePatchingUtils (402)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module LiveLinkOverNDisplay (400)
+[2024.08.02-07.27.15:885][142]LogNDisplayLiveLinkSubjectReplicator: Unregistering sync object.
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module InputDebugging (398)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module GooglePAD (396)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module DynamicMesh (394)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module GeometryAlgorithms (392)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module GeometryCacheTracks (390)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module GeometryCache (388)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module AudioWidgets (386)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module AdvancedWidgets (385)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module AudioCapture (382)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module AudioCaptureWasapi (381)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module AssetTags (378)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module ArchVisCharacter (376)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module AppleImageUtils (374)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module AndroidPermission (372)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module ActorLayerUtilities (370)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module TemplateSequence (366)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module SequencerScripting (364)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module UEOpenExrRTTI (362)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineRenderPasses (360)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineSettings (358)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineCore (356)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module MediaPlate (354)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module MediaCompositing (352)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module ImgMedia (350)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module InterchangeCommonParser (348)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module InterchangeDispatcher (346)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module InterchangeExport (344)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module InterchangeMessages (342)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module GLTFCore (340)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module VPSettings (338)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module VPRoles (336)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module StructUtilsEngine (334)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module OpenImageDenoise (332)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module LocalizableMessageBlueprint (330)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module LocalizableMessage (328)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module GeometryCollectionNodes (326)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module GeometryCollectionTracks (324)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module DataflowNodes (322)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module DataflowEnginePlugin (320)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module ChaosUserDataPT (318)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module ChaosNiagara (316)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module BackChannel (314)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module AutomationUtils (312)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module ConsoleVariablesEditorRuntime (310)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module UObjectPlugin (308)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module DumpGPUServices (306)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module MultiUserClientLibrary (304)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module OodleNetworkHandlerComponent (302)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module Composure (300)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module LiveLinkMovieScene (298)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module LiveLinkComponents (296)
+[2024.08.02-07.27.15:885][142]LogModuleManager: Shutting down and abandoning module LiveLink (294)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module ControlRigSpline (292)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module MetaCastBachelor (290)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module UniversalLogging (288)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module Synthesis (286)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module SoundFields (284)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module SignificanceManager (282)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module RigVM (280)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module ProceduralMeshComponent (278)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module MsQuicRuntime (276)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module MetasoundEngineTest (274)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module MetasoundEngine (272)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module WaveTable (271)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module AudioCodecEngine (269)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module MetasoundStandardNodes (266)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module MetasoundFrontend (264)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module MetasoundGenerator (262)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module MetasoundGraphCore (260)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module LocationServicesBPLibrary (258)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module SQLiteCore (256)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module CustomMeshComponent (254)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module CableComponent (252)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module AudioSynesthesia (250)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module AudioAnalyzer (249)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module AudioSynesthesiaCore (246)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module ActorSequence (244)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module UdpMessaging (242)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module TcpMessaging (240)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module ImgMediaEngine (238)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module InterchangePipelines (236)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module InterchangeImport (234)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module InterchangeFactoryNodes (232)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module InterchangeNodes (230)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module NiagaraAnimNotifies (228)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module Niagara (226)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module SignalProcessing (225)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module NiagaraCore (222)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module StructUtils (220)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module PBIK (218)
+[2024.08.02-07.27.16:098][142]LogModuleManager: Shutting down and abandoning module FullBodyIK (216)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module ChaosCaching (214)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module EnhancedInput (212)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module FacialAnimation (210)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module AnimationSharing (208)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module GameplayCameras (206)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module IKRig (204)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module ControlRig (202)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module Constraints (201)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module LevelSequence (199)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module Paper2D (196)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module Kdtree (194)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module WindowsMoviePlayer (192)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module WebMMoviePlayer (190)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module AndroidFileServer (188)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module NetworkReplayStreaming (186)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module PacketHandler (184)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module ClothingSystemRuntimeNv (182)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module MediaAssets (180)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module Overlay (178)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module FunctionalTesting (176)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module MessageLog (174)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module UMG (172)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module SlateReflector (170)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module Slate (168)
+[2024.08.02-07.27.16:099][142]LogModuleManager: Shutting down and abandoning module SlateCore (166)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module MRMesh (164)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module Messaging (162)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module HeadMountedDisplay (160)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module LiveCoding (158)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module Networking (156)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module Core (154)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module ImageWriteQueue (152)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module GPUPointCloudRenderer (150)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module TelemetryUtils (147)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module ImageWrapper (144)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module InputCore (142)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module Settings (140)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module ChaosSolverEngine (138)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module FieldSystemEngine (137)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module Chaos (134)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module GeometryCore (133)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module WindowsPlatformFeatures (130)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module GameplayMediaEncoder (129)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module AVEncoder (128)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module D3D12RHI (124)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module CameraCalibrationCore (122)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module DisplayClusterLightCardEditorShaders (120)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module DisplayClusterConfiguration (118)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module DisplayClusterShaders (116)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module WindowsDeviceProfileSelector (114)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module OpenXRAR (112)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module AugmentedReality (111)
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module OpenXRHandTracking (108)
+[2024.08.02-07.27.16:100][142]LogSlate: Slate User Destroyed.  User Index 0, Is Virtual User: 0
+[2024.08.02-07.27.16:100][142]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.27.16:100][142]LogModuleManager: Shutting down and abandoning module OpenXRHMD (107)
+[2024.08.02-07.27.16:104][142]LogModuleManager: Shutting down and abandoning module OpenXREyeTracker (104)
+[2024.08.02-07.27.16:104][142]LogModuleManager: Shutting down and abandoning module OpenCVHelper (102)
+[2024.08.02-07.27.16:104][142]LogModuleManager: Shutting down and abandoning module HPMotionController (100)
+[2024.08.02-07.27.16:104][142]LogModuleManager: Shutting down and abandoning module ExampleDeviceProfileSelector (98)
+[2024.08.02-07.27.16:104][142]LogModuleManager: Shutting down and abandoning module ChunkDownloader (96)
+[2024.08.02-07.27.16:104][142]LogModuleManager: Shutting down and abandoning module LauncherChunkInstaller (94)
+[2024.08.02-07.27.16:104][142]LogModuleManager: Shutting down and abandoning module OnlineSubsystem (92)
+[2024.08.02-07.27.16:104][142]LogModuleManager: Shutting down and abandoning module HTTP (87)
+[2024.08.02-07.27.16:115][142]LogModuleManager: Shutting down and abandoning module SSL (86)
+[2024.08.02-07.27.16:115][142]LogModuleManager: Shutting down and abandoning module OnlineSubsystemUtils (82)
+[2024.08.02-07.27.16:115][142]LogModuleManager: Shutting down and abandoning module OnlineServicesCommonEngineUtils (80)
+[2024.08.02-07.27.16:115][142]LogModuleManager: Shutting down and abandoning module OnlineServicesCommon (78)
+[2024.08.02-07.27.16:115][142]LogModuleManager: Shutting down and abandoning module OnlineServicesInterface (76)
+[2024.08.02-07.27.16:115][142]LogModuleManager: Shutting down and abandoning module WmfMedia (74)
+[2024.08.02-07.27.16:116][142]LogModuleManager: Shutting down and abandoning module Media (73)
+[2024.08.02-07.27.16:116][142]LogModuleManager: Shutting down and abandoning module GPUTextureTransfer (70)
+[2024.08.02-07.27.16:116][142]LogModuleManager: Shutting down and abandoning module MediaIOCore (68)
+[2024.08.02-07.27.16:116][142]LogModuleManager: Shutting down and abandoning module ExrReaderGpu (66)
+[2024.08.02-07.27.16:116][142]LogModuleManager: Shutting down and abandoning module NiagaraVertexFactories (64)
+[2024.08.02-07.27.16:116][142]LogModuleManager: Shutting down and abandoning module NiagaraShader (62)
+[2024.08.02-07.27.16:116][142]LogModuleManager: Shutting down and abandoning module VPUtilities (60)
+[2024.08.02-07.27.16:116][142]LogModuleManager: Shutting down and abandoning module ColorCorrectRegions (58)
+[2024.08.02-07.27.16:116][142]LogModuleManager: Shutting down and abandoning module ChaosCloth (56)
+[2024.08.02-07.27.16:116][142]LogModuleManager: Shutting down and abandoning module VariantManagerContent (54)
+[2024.08.02-07.27.16:116][142]LogModuleManager: Shutting down and abandoning module GLTFExporter (52)
+[2024.08.02-07.27.16:116][142]LogModuleManager: Shutting down and abandoning module DatasmithContent (50)
+[2024.08.02-07.27.16:117][142]LogModuleManager: Shutting down and abandoning module RenderDocPlugin (48)
+[2024.08.02-07.27.16:117][142]RenderDocPlugin: plugin has been unloaded.
+[2024.08.02-07.27.16:117][142]LogModuleManager: Shutting down and abandoning module PixWinPlugin (46)
+[2024.08.02-07.27.16:117][142]LogModuleManager: Shutting down and abandoning module OpenColorIO (44)
+[2024.08.02-07.27.16:117][142]LogModuleManager: Shutting down and abandoning module ACLPlugin (42)
+[2024.08.02-07.27.16:117][142]LogModuleManager: Shutting down and abandoning module AISupportModule (40)
+[2024.08.02-07.27.16:117][142]LogModuleManager: Shutting down and abandoning module PythonScriptPluginPreload (38)
+[2024.08.02-07.27.16:117][142]LogModuleManager: Shutting down and abandoning module PlatformCryptoOpenSSL (36)
+[2024.08.02-07.27.16:117][142]LogModuleManager: Shutting down and abandoning module PlatformCryptoTypes (34)
+[2024.08.02-07.27.16:117][142]LogModuleManager: Shutting down and abandoning module PlatformCrypto (32)
+[2024.08.02-07.27.16:117][142]LogModuleManager: Shutting down and abandoning module IoStoreOnDemand (30)
+[2024.08.02-07.27.16:117][142]LogModuleManager: Shutting down and abandoning module RenderCore (28)
+[2024.08.02-07.27.16:117][142]LogModuleManager: Shutting down and abandoning module Landscape (26)
+[2024.08.02-07.27.16:117][142]LogModuleManager: Shutting down and abandoning module SlateRHIRenderer (24)
+[2024.08.02-07.27.16:117][142]LogModuleManager: Shutting down and abandoning module AnimGraphRuntime (22)
+[2024.08.02-07.27.16:117][142]LogModuleManager: Shutting down and abandoning module Renderer (20)
+[2024.08.02-07.27.16:117][142]LogModuleManager: Shutting down and abandoning module Engine (18)
+[2024.08.02-07.27.16:117][142]LogModuleManager: Shutting down and abandoning module CoreUObject (16)
+[2024.08.02-07.27.16:117][142]LogModuleManager: Shutting down and abandoning module SandboxFile (14)
+[2024.08.02-07.27.16:117][142]LogModuleManager: Shutting down and abandoning module PakFile (12)
+[2024.08.02-07.27.16:117][142]LogPakFile: Destroying PakPlatformFile
+[2024.08.02-07.27.16:118][142]LogModuleManager: Shutting down and abandoning module RSA (11)
+[2024.08.02-07.27.16:118][142]LogModuleManager: Shutting down and abandoning module NetworkFile (8)
+[2024.08.02-07.27.16:118][142]LogModuleManager: Shutting down and abandoning module StreamingFile (6)
+[2024.08.02-07.27.16:118][142]LogModuleManager: Shutting down and abandoning module CookOnTheFly (4)
+[2024.08.02-07.27.16:118][142]LogModuleManager: Shutting down and abandoning module StorageServerClient (2)
+[2024.08.02-07.27.16:175][142]LogD3D12RHI: ~FD3D12DynamicRHI
+[2024.08.02-07.27.16:200][142]LogExit: Exiting.
+[2024.08.02-07.27.16:237][142]Log file closed, 08/02/24 09:27:16
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Logs/MetaCastBachelor-backup-2024.08.02-07.29.40.log b/Builds/Windows/MetaCastBachelor/Saved/Logs/MetaCastBachelor-backup-2024.08.02-07.29.40.log
new file mode 100644
index 0000000000000000000000000000000000000000..94319f49afdaa89f15be6c088a2da80a151acf02
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Logs/MetaCastBachelor-backup-2024.08.02-07.29.40.log
@@ -0,0 +1,1881 @@
+Log file open, 08/02/24 09:27:17
+LogWindows: Failed to load 'aqProf.dll' (GetLastError=126)
+LogWindows: File 'aqProf.dll' does not exist
+LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64).
+LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126)
+LogWindows: File 'VtuneApi.dll' does not exist
+LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126)
+LogWindows: File 'VtuneApi32e.dll' does not exist
+LogWindows: Custom abort handler registered for crash reporting.
+LogCore: Display: UnrealTraceServer: Unable to launch the trace store with '"../../../Engine//Binaries/Win64/UnrealTraceServer.exe" fork' (00000002)
+LogTrace: Initializing trace...
+LogTrace: Finished trace initialization.
+LogCsvProfiler: Display: Metadata set : platform="Windows"
+LogCsvProfiler: Display: Metadata set : config="Development"
+LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.3-CL-29314046"
+LogCsvProfiler: Display: Metadata set : engineversion="5.3.2-29314046+++UE5+Release-5.3"
+LogCsvProfiler: Display: Metadata set : os="Windows 10 (22H2) [10.0.19045.4651] "
+LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|Intel(R) Core(TM) i9-10900X CPU @ 3.70GHz"
+LogCsvProfiler: Display: Metadata set : pgoenabled="0"
+LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0"
+LogCsvProfiler: Display: Metadata set : ltoenabled="0"
+LogCsvProfiler: Display: Metadata set : asan="0"
+LogCsvProfiler: Display: Metadata set : commandline="" MetaCastBachelor""
+LogCsvProfiler: Display: Metadata set : loginid="6cbed587469a168a7370319bba147631"
+LogCsvProfiler: Display: Metadata set : llm="0"
+LogPakFile: Initializing PakPlatformFile
+LogIoDispatcher: Display: Reading toc: ../../../MetaCastBachelor/Content/Paks/global.utoc
+LogIoDispatcher: Display: Toc signature hash: 0000000000000000000000000000000000000000
+LogIoDispatcher: Display: Mounting container '../../../MetaCastBachelor/Content/Paks/global.utoc' in location slot 0
+LogPakFile: Display: Initialized I/O dispatcher file backend. Mounted the global container: ../../../MetaCastBachelor/Content/Paks/global.utoc
+LogPakFile: Display: Found Pak file ../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak attempting to mount.
+LogPakFile: Display: Mounting pak file ../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak.
+LogIoDispatcher: Display: Reading toc: ../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc
+LogIoDispatcher: Display: Toc signature hash: 0000000000000000000000000000000000000000
+LogIoDispatcher: Display: Mounting container '../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc' in location slot 0
+LogPakFile: Display: Mounted IoStore container "../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc"
+LogPakFile: Display: Mounted Pak file '../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak', mount point: '../../../'
+LogStats: Stats thread started at 0.167783
+LogAssetRegistry: Premade AssetRegistry loaded from '../../../MetaCastBachelor/AssetRegistry.bin'
+LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +1:00, Platform Override: ''
+LogInit: Session CrashGUID >====================================================
+         Session CrashGUID >   UECC-Windows-241389CB4E4CE7020354FCB3086345BF
+         Session CrashGUID >====================================================
+LogStreaming: Warning: Failed to read file 'D:/UnrealProjects/MetaCastBachelor/Builds/Windows/Cloud/IoStoreOnDemand.ini' error.
+LogPluginManager: Mounting Engine plugin Paper2D
+LogPluginManager: Mounting Engine plugin AISupport
+LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor
+LogPluginManager: Mounting Engine plugin ACLPlugin
+LogPluginManager: Mounting Engine plugin AnimationData
+LogPluginManager: Mounting Engine plugin ControlRigSpline
+LogPluginManager: Mounting Engine plugin ControlRig
+LogPluginManager: Mounting Engine plugin IKRig
+LogPluginManager: Mounting Engine plugin LiveLink
+LogPluginManager: Mounting Engine plugin Bridge
+LogPluginManager: Mounting Engine plugin CameraShakePreviewer
+LogPluginManager: Mounting Engine plugin GameplayCameras
+LogPluginManager: Mounting Engine plugin Composure
+LogPluginManager: Mounting Engine plugin OpenColorIO
+LogPluginManager: Mounting Engine plugin OodleNetwork
+LogPluginManager: Mounting Engine plugin AnimationSharing
+LogPluginManager: Mounting Engine plugin MultiUserClient
+LogPluginManager: Mounting Engine plugin ConcertMain
+LogPluginManager: Mounting Engine plugin ConcertSyncClient
+LogPluginManager: Mounting Engine plugin ConcertSyncCore
+LogPluginManager: Mounting Engine plugin ConcertSharedSlate
+LogPluginManager: Mounting Engine plugin DumpGPUServices
+LogPluginManager: Mounting Engine plugin PixWinPlugin
+LogPluginManager: Mounting Engine plugin PluginUtils
+LogPluginManager: Mounting Engine plugin RenderDocPlugin
+LogPluginManager: Mounting Engine plugin UObjectPlugin
+LogPluginManager: Mounting Engine plugin AssetManagerEditor
+LogPluginManager: Mounting Engine plugin BlueprintHeaderView
+LogPluginManager: Mounting Engine plugin BlueprintMaterialTextureNodes
+LogPluginManager: Mounting Engine plugin ConsoleVariables
+LogPluginManager: Mounting Engine plugin EditorScriptingUtilities
+LogPluginManager: Mounting Engine plugin FacialAnimation
+LogPluginManager: Mounting Engine plugin GameplayTagsEditor
+LogPluginManager: Mounting Engine plugin GeometryMode
+LogPluginManager: Mounting Engine plugin LightMixer
+LogPluginManager: Mounting Engine plugin ObjectMixer
+LogPluginManager: Mounting Engine plugin SequencerAnimTools
+LogPluginManager: Mounting Engine plugin SpeedTreeImporter
+LogPluginManager: Mounting Engine plugin UVEditor
+LogPluginManager: Mounting Engine plugin EnhancedInput
+LogPluginManager: Found config from plugin[EnhancedInput] Input
+LogPluginManager: Mounting Engine plugin DatasmithContent
+LogPluginManager: Mounting Engine plugin GLTFExporter
+LogPluginManager: Mounting Engine plugin VariantManagerContent
+LogPluginManager: Mounting Engine plugin VariantManager
+LogPluginManager: Mounting Engine plugin AutomationUtils
+LogPluginManager: Mounting Engine plugin BackChannel
+LogPluginManager: Mounting Engine plugin ChaosCaching
+LogPluginManager: Mounting Engine plugin ChaosClothEditor
+LogPluginManager: Mounting Engine plugin ChaosCloth
+LogPluginManager: Mounting Engine plugin ChaosEditor
+LogPluginManager: Mounting Engine plugin ChaosNiagara
+LogPluginManager: Mounting Engine plugin ChaosSolverPlugin
+LogPluginManager: Mounting Engine plugin ChaosUserDataPT
+LogPluginManager: Mounting Engine plugin CharacterAI
+LogPluginManager: Mounting Engine plugin ColorCorrectRegions
+LogPluginManager: Mounting Engine plugin Dataflow
+LogPluginManager: Mounting Engine plugin Fracture
+LogPluginManager: Mounting Engine plugin FullBodyIK
+LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin
+LogPluginManager: Mounting Engine plugin LocalizableMessage
+LogPluginManager: Mounting Engine plugin OpenImageDenoise
+LogPluginManager: Mounting Engine plugin PlatformCrypto
+LogPluginManager: Mounting Engine plugin PythonScriptPlugin
+LogPluginManager: Mounting Engine plugin StructUtils
+LogPluginManager: Mounting Engine plugin ToolPresets
+LogPluginManager: Mounting Engine plugin VirtualProductionUtilities
+LogPluginManager: Mounting Engine plugin VPRoles
+LogPluginManager: Mounting Engine plugin VPSettings
+LogPluginManager: Mounting Engine plugin Niagara
+LogPluginManager: Mounting Engine plugin AlembicImporter
+LogPluginManager: Mounting Engine plugin InterchangeEditor
+LogPluginManager: Mounting Engine plugin Interchange
+LogPluginManager: Mounting Engine plugin AvfMedia
+LogPluginManager: Mounting Engine plugin ImgMedia
+LogPluginManager: Mounting Engine plugin MediaCompositing
+LogPluginManager: Mounting Engine plugin MediaIOFramework
+LogPluginManager: Mounting Engine plugin MediaPlate
+LogPluginManager: Mounting Engine plugin WebMMedia
+LogPluginManager: Mounting Engine plugin WmfMedia
+LogPluginManager: Mounting Engine plugin MeshPainting
+LogPluginManager: Mounting Engine plugin TcpMessaging
+LogPluginManager: Mounting Engine plugin UdpMessaging
+LogPluginManager: Mounting Engine plugin ActorSequence
+LogPluginManager: Mounting Engine plugin LevelSequenceEditor
+LogPluginManager: Mounting Engine plugin MovieRenderPipeline
+LogPluginManager: Mounting Engine plugin SequencerScripting
+LogPluginManager: Mounting Engine plugin TemplateSequence
+LogPluginManager: Mounting Engine plugin OnlineBase
+LogPluginManager: Mounting Engine plugin OnlineServices
+LogPluginManager: Mounting Engine plugin OnlineSubsystemNull
+LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils
+LogPluginManager: Mounting Engine plugin OnlineSubsystem
+LogPluginManager: Mounting Engine plugin LauncherChunkInstaller
+LogPluginManager: Mounting Engine plugin ActorLayerUtilities
+LogPluginManager: Mounting Engine plugin AndroidFileServer
+LogPluginManager: Mounting Engine plugin AndroidPermission
+LogPluginManager: Mounting Engine plugin AppleImageUtils
+LogPluginManager: Mounting Engine plugin ArchVisCharacter
+LogPluginManager: Mounting Engine plugin AssetTags
+LogPluginManager: Mounting Engine plugin AudioCapture
+LogPluginManager: Mounting Engine plugin AudioSynesthesia
+LogPluginManager: Mounting Engine plugin AudioWidgets
+LogPluginManager: Mounting Engine plugin CableComponent
+LogPluginManager: Mounting Engine plugin ChunkDownloader
+LogPluginManager: Mounting Engine plugin CustomMeshComponent
+LogPluginManager: Mounting Engine plugin SQLiteCore
+LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector
+LogPluginManager: Mounting Engine plugin GeometryCache
+LogPluginManager: Mounting Engine plugin GeometryProcessing
+LogPluginManager: Mounting Engine plugin GooglePAD
+LogPluginManager: Mounting Engine plugin HPMotionController
+LogPluginManager: Mounting Engine plugin InputDebugging
+LogPluginManager: Found config from plugin[InputDebugging] Input
+LogPluginManager: Mounting Engine plugin LiveLinkOverNDisplay
+LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary
+LogPluginManager: Mounting Engine plugin Metasound
+LogPluginManager: Mounting Engine plugin MobilePatchingUtils
+LogPluginManager: Mounting Engine plugin MsQuic
+LogPluginManager: Mounting Engine plugin OSC
+LogPluginManager: Mounting Engine plugin OpenCV
+LogPluginManager: Mounting Engine plugin OpenXREyeTracker
+LogPluginManager: Mounting Engine plugin OpenXRHandTracking
+LogPluginManager: Mounting Engine plugin OpenXR
+LogPluginManager: Mounting Engine plugin ProceduralMeshComponent
+LogPluginManager: Mounting Engine plugin PropertyAccessEditor
+LogPluginManager: Mounting Engine plugin ResonanceAudio
+LogPluginManager: Mounting Engine plugin RigVM
+LogPluginManager: Mounting Engine plugin SignificanceManager
+LogPluginManager: Mounting Engine plugin SoundFields
+LogPluginManager: Mounting Engine plugin Synthesis
+LogPluginManager: Mounting Engine plugin WaveTable
+LogPluginManager: Mounting Engine plugin WebMMoviePlayer
+LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector
+LogPluginManager: Mounting Engine plugin WindowsMoviePlayer
+LogPluginManager: Mounting Engine plugin XRBase
+LogPluginManager: Mounting Engine plugin nDisplayModularFeatures
+LogPluginManager: Mounting Engine plugin nDisplay
+LogPluginManager: Mounting Engine plugin InterchangeTests
+LogPluginManager: Mounting Engine plugin TraceUtilities
+LogPluginManager: Mounting Engine plugin CameraCalibrationCore
+LogPluginManager: Mounting Engine plugin MultiUserTakes
+LogPluginManager: Mounting Engine plugin RemoteControlInterception
+LogPluginManager: Mounting Engine plugin Switchboard
+LogPluginManager: Mounting Engine plugin Takes
+LogPluginManager: Mounting Project plugin GPUPointCloudRenderer
+LogPluginManager: Mounting Project plugin Kdtree
+LogPluginManager: Mounting Project plugin RWTHVRToolkit
+LogPluginManager: Mounting Project plugin UniversalLogging
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/2D/Paper2D/Content/' mounted to '/Paper2D/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ACLPlugin/Content/' mounted to '/ACLPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRigSpline/Content/' mounted to '/ControlRigSpline/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRig/Content/' mounted to '/ControlRig/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/IKRig/Content/' mounted to '/IKRig/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Bridge/Content/' mounted to '/Bridge/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/Composure/Content/' mounted to '/Composure/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/OpenColorIO/Content/' mounted to '/OpenColorIO/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/AnimationSharing/Content/' mounted to '/AnimationSharing/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/' mounted to '/ConcertSyncClient/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/BlueprintHeaderView/Content/' mounted to '/BlueprintHeaderView/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ConsoleVariablesEditor/Content/' mounted to '/ConsoleVariables/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/GeometryMode/Content/' mounted to '/GeometryMode/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/LightMixer/Content/' mounted to '/LightMixer/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/ObjectMixer/Content/' mounted to '/ObjectMixer/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/SpeedTreeImporter/Content/' mounted to '/SpeedTreeImporter/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/UVEditor/Content/' mounted to '/UVEditor/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/DatasmithContent/Content/' mounted to '/DatasmithContent/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/GLTFExporter/Content/' mounted to '/GLTFExporter/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosCaching/Content/' mounted to '/ChaosCaching/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosClothEditor/Content/' mounted to '/ChaosClothEditor/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosNiagara/Content/' mounted to '/ChaosNiagara/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosSolverPlugin/Content/' mounted to '/ChaosSolverPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ColorCorrectRegions/Content/' mounted to '/ColorCorrectRegions/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Dataflow/Content/' mounted to '/Dataflow/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/FullBodyIK/Content/' mounted to '/FullBodyIK/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/GeometryCollectionPlugin/Content/' mounted to '/GeometryCollectionPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/PythonScriptPlugin/Content/' mounted to '/PythonScriptPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ToolPresets/Content/' mounted to '/ToolPresets/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProductionUtilities/Content/' mounted to '/VirtualProductionUtilities/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPRoles/Content/' mounted to '/VPRoles/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPSettings/Content/' mounted to '/VPSettings/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/FX/Niagara/Content/' mounted to '/Niagara/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Interchange/Runtime/Content/' mounted to '/Interchange/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaCompositing/Content/' mounted to '/MediaCompositing/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaPlate/Content/' mounted to '/MediaPlate/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/MovieRenderPipeline/Content/' mounted to '/MovieRenderPipeline/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/SequencerScripting/Content/' mounted to '/SequencerScripting/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioSynesthesia/Content/' mounted to '/AudioSynesthesia/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioWidgets/Content/' mounted to '/AudioWidgets/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/GeometryProcessing/Content/' mounted to '/GeometryProcessing/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Metasound/Content/' mounted to '/Metasound/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenCV/Content/' mounted to '/OpenCV/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXREyeTracker/Content/' mounted to '/OpenXREyeTracker/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXRHandTracking/Content/' mounted to '/OpenXRHandTracking/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXR/Content/' mounted to '/OpenXR/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/ResonanceAudio/Content/' mounted to '/ResonanceAudio/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/RigVM/Content/' mounted to '/RigVM/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Synthesis/Content/' mounted to '/Synthesis/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/WaveTable/Content/' mounted to '/WaveTable/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplayModularFeatures/Content/' mounted to '/nDisplayModularFeatures/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplay/Content/' mounted to '/nDisplay/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/TraceUtilities/Content/' mounted to '/TraceUtilities/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/CameraCalibrationCore/Content/' mounted to '/CameraCalibrationCore/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/MultiUserTakes/Content/' mounted to '/MultiUserTakes/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Switchboard/Content/' mounted to '/Switchboard/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Takes/Content/' mounted to '/Takes/'
+LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UE4_GPUPointCloudRenderer/Content/' mounted to '/GPUPointCloudRenderer/'
+LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UEPlugin-Kdtree/Kdtree/Content/' mounted to '/Kdtree/'
+LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/rwth-vr-toolkit-with-meta-cast/Content/' mounted to '/RWTHVRToolkit/'
+LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126)
+LogWindows: File 'WinPixGpuCapturer.dll' does not exist
+PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX.
+LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine]
+RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings.
+LogInit: Using libcurl 8.4.0
+LogInit:  - built for Windows
+LogInit:  - supports SSL with OpenSSL/1.1.1t
+LogInit:  - supports HTTP deflate (compression) using libz 1.2.13
+LogInit:  - other features:
+LogInit:      CURL_VERSION_SSL
+LogInit:      CURL_VERSION_LIBZ
+LogInit:      CURL_VERSION_IPV6
+LogInit:      CURL_VERSION_ASYNCHDNS
+LogInit:      CURL_VERSION_LARGEFILE
+LogInit:  CurlRequestOptions (configurable via config and command line):
+LogInit:  - bVerifyPeer = true  - Libcurl will verify peer certificate
+LogInit:  - bUseHttpProxy = false  - Libcurl will NOT use HTTP proxy
+LogInit:  - bDontReuseConnections = false  - Libcurl will reuse connections
+LogInit:  - MaxHostConnections = 16  - Libcurl will limit the number of connections to a host
+LogInit:  - LocalHostAddr = Default
+LogInit:  - BufferSize = 65536
+LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467
+LogOnline: OSS: Created online subsystem instance for: NULL
+LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL]
+LogHMD: OpenXRHMDModule::InitInstance using DefaultLoader.
+LogHMD: OpenXR runtime supported extensions:
+LogHMD: 	XR_KHR_vulkan_enable
+LogHMD: 	XR_KHR_vulkan_enable2
+LogHMD: 	XR_KHR_D3D11_enable
+LogHMD: 	XR_KHR_D3D12_enable
+LogHMD: 	XR_KHR_opengl_enable
+LogHMD: 	XR_KHR_win32_convert_performance_counter_time
+LogHMD: 	XR_EXT_win32_appcontainer_compatible
+LogHMD: 	XR_KHR_binding_modification
+LogHMD: 	XR_KHR_composition_layer_depth
+LogHMD: 	XR_KHR_visibility_mask
+LogHMD: 	XR_EXT_active_action_set_priority
+LogHMD: 	XR_EXT_dpad_binding
+LogHMD: 	XR_EXT_frame_composition_report
+LogHMD: 	XR_EXT_hand_tracking
+LogHMD: 	XR_EXT_hand_joints_motion_range
+LogHMD: 	XR_EXT_hp_mixed_reality_controller
+LogHMD: 	XR_EXT_local_floor
+LogHMD: 	XR_EXT_palm_pose
+LogHMD: 	XR_FB_display_refresh_rate
+LogHMD: 	XR_HTC_vive_cosmos_controller_interaction
+LogHMD: 	XR_HTC_vive_focus3_controller_interaction
+LogHMD: 	XR_HTC_vive_wrist_tracker_interaction
+LogHMD: 	XR_MND_headless
+LogHMD: 	XR_VALVE_analog_threshold
+LogHMD: 	XR_HTCX_vive_tracker_interaction
+LogHMD: 	XR_EXT_debug_utils
+LogHMD: Optional extension XR_KHR_vulkan_swapchain_format_list is not available
+LogHMD: Optional extension XR_FB_foveation_vulkan is not available
+LogHMD: Optional extension XR_KHR_composition_layer_cylinder is not available
+LogHMD: Optional extension XR_KHR_composition_layer_equirect is not available
+LogHMD: Optional extension XR_VARJO_quad_views is not available
+LogHMD: Optional extension XR_EPIC_view_configuration_fov is not available
+LogHMD: Optional extension XR_FB_composition_layer_alpha_blend is not available
+LogHMD: Optional extension XR_FB_foveation is not available
+LogHMD: Optional extension XR_FB_swapchain_update_state is not available
+LogHMD: Optional extension XR_FB_foveation_configuration is not available
+LogHMD: Optional extension XR_OCULUS_audio_device_guid is not available
+LogHMD: Warning: Required extension XR_EXT_eye_gaze_interaction is not available
+LogHMD: Could not enable all required OpenXR extensions for OpenXREyeTracker on current system. This plugin will be loaded but ignored, but will be enabled on a target platform that supports the required extension.
+LogHMD: Initialized OpenXR on SteamVR/OpenXR runtime version 2.6.2
+LogInit: ExecutableName: MetaCastBachelor.exe
+LogInit: Build: ++UE5+Release-5.3-CL-29314046
+LogInit: Engine Version: 5.3.2-29314046+++UE5+Release-5.3
+LogInit: Compatible Engine Version: 5.3.0-27405482+++UE5+Release-5.3
+LogInit: Net CL: 27405482
+LogInit: OS: Windows 10 (22H2) [10.0.19045.4651] (), CPU: Intel(R) Core(TM) i9-10900X CPU @ 3.70GHz, GPU: NVIDIA GeForce RTX 3090
+LogInit: Compiled (64-bit): Nov  3 2023 16:20:53
+LogInit: Architecture: x64
+LogInit: Compiled with Visual C++: 19.36.32537.00
+LogInit: Build Configuration: Development
+LogInit: Branch Name: ++UE5+Release-5.3
+LogInit: Command Line: 
+LogInit: Base Directory: D:/UnrealProjects/MetaCastBachelor/Builds/Windows/MetaCastBachelor/Binaries/Win64/
+LogInit: Allocator: binned2
+LogInit: Installed Engine Build: 0
+LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no
+LogDevObjectVersion: Number of dev versions registered: 39
+LogDevObjectVersion:   Dev-Blueprints (B0D832E4-1F89-4F0D-ACCF-7EB736FD4AA2): 10
+LogDevObjectVersion:   Dev-Build (E1C64328-A22C-4D53-A36C-8E866417BD8C): 0
+LogDevObjectVersion:   Dev-Core (375EC13C-06E4-48FB-B500-84F0262A717E): 4
+LogDevObjectVersion:   Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40
+LogDevObjectVersion:   Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37
+LogDevObjectVersion:   Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3
+LogDevObjectVersion:   Dev-Networking (A4E4105C-59A1-49B5-A7C5-40C4547EDFEE): 0
+LogDevObjectVersion:   Dev-Online (39C831C9-5AE6-47DC-9A44-9C173E1C8E7C): 0
+LogDevObjectVersion:   Dev-Physics (78F01B33-EBEA-4F98-B9B4-84EACCB95AA2): 20
+LogDevObjectVersion:   Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0
+LogDevObjectVersion:   Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 47
+LogDevObjectVersion:   Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13
+LogDevObjectVersion:   Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3
+LogDevObjectVersion:   Dev-LoadTimes (C2A15278-BFE7-4AFE-6C17-90FF531DF755): 1
+LogDevObjectVersion:   Private-Geometry (6EACA3D4-40EC-4CC1-B786-8BED09428FC5): 3
+LogDevObjectVersion:   Dev-AnimPhys (29E575DD-E0A3-4627-9D10-D276232CDCEA): 17
+LogDevObjectVersion:   Dev-Anim (AF43A65D-7FD3-4947-9873-3E8ED9C1BB05): 15
+LogDevObjectVersion:   Dev-ReflectionCapture (6B266CEC-1EC7-4B8F-A30B-E4D90942FC07): 1
+LogDevObjectVersion:   Dev-Automation (0DF73D61-A23F-47EA-B727-89E90C41499A): 1
+LogDevObjectVersion:   FortniteMain (601D1886-AC64-4F84-AA16-D3DE0DEAC7D6): 111
+LogDevObjectVersion:   FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 2
+LogDevObjectVersion:   FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 10
+LogDevObjectVersion:   FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 11
+LogDevObjectVersion:   Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10
+LogDevObjectVersion:   Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1
+LogDevObjectVersion:   Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10
+LogDevObjectVersion:   Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41
+LogDevObjectVersion:   Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1
+LogDevObjectVersion:   Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1
+LogDevObjectVersion:   Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1
+LogDevObjectVersion:   UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 118
+LogDevObjectVersion:   UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 47
+LogDevObjectVersion:   UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8
+LogDevObjectVersion:   UE5-Dev-Cooker (26075A32-730F-4708-88E9-8C32F1599D05): 0
+LogDevObjectVersion:   Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2
+LogDevObjectVersion:   UE5-Dev-LWCRendering (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1
+LogDevObjectVersion:   Dev-RigVM (DC49959B-53C0-4DE7-9156-EA885E7C5D39): 2
+LogDevObjectVersion:   Dev-ControlRig (A7820CFB-20A7-4359-8C54-2C149623CF50): 27
+LogDevObjectVersion:   Dev-IKRig (F6DFBB78-BB50-A0E4-4018-B84D60CBAF23): 2
+LogInit: Presizing for max 2097152 objects, including 1 objects not considered by GC, pre-allocating 0 bytes for permanent pool.
+LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: true, Async Post Load: true
+LogStreaming: Display: AsyncLoading2 - Initialized
+LogInit: Object subsystem initialized
+LogConfig: Set CVar [[con.DebugEarlyDefault:1]]
+LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created
+LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created
+LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created
+LogConfig: Set CVar [[r.setres:1280x720]]
+LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created
+LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]]
+LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created
+LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created
+LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]]
+[2024.08.02-07.27.17:773][  0]LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created
+[2024.08.02-07.27.17:773][  0]LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created
+[2024.08.02-07.27.17:773][  0]LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created
+[2024.08.02-07.27.17:773][  0]LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created
+[2024.08.02-07.27.17:773][  0]LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created
+[2024.08.02-07.27.17:773][  0]LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created
+[2024.08.02-07.27.17:773][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine]
+[2024.08.02-07.27.17:773][  0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:None]] deferred - dummy variable created
+[2024.08.02-07.27.17:773][  0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:None]] deferred - dummy variable created
+[2024.08.02-07.27.17:773][  0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]]
+[2024.08.02-07.27.17:773][  0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created
+[2024.08.02-07.27.17:773][  0]LogConfig: Set CVar [[r.Mobile.DisableVertexFog:1]]
+[2024.08.02-07.27.17:773][  0]LogConfig: Set CVar [[r.Mobile.AllowDitheredLODTransition:0]]
+[2024.08.02-07.27.17:773][  0]LogConfig: CVar [[r.Mobile.AllowSoftwareOcclusion:0]] deferred - dummy variable created
+[2024.08.02-07.27.17:773][  0]LogConfig: Set CVar [[r.Mobile.VirtualTextures:0]]
+[2024.08.02-07.27.17:773][  0]LogConfig: Set CVar [[r.DiscardUnusedQuality:0]]
+[2024.08.02-07.27.17:773][  0]LogConfig: Set CVar [[r.AllowOcclusionQueries:1]]
+[2024.08.02-07.27.17:773][  0]LogConfig: Set CVar [[r.MinScreenRadiusForLights:0.030000]]
+[2024.08.02-07.27.17:773][  0]LogConfig: Set CVar [[r.MinScreenRadiusForDepthPrepass:0.030000]]
+[2024.08.02-07.27.17:773][  0]LogConfig: Set CVar [[r.MinScreenRadiusForCSMDepth:0.010000]]
+[2024.08.02-07.27.17:773][  0]LogConfig: Set CVar [[r.PrecomputedVisibilityWarning:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.TextureStreaming:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[Compat.UseDXT5NormalMaps:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.VirtualTextures:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.VirtualTexturedLightmaps:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.VT.TileSize:128]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.VT.TileBorderSize:4]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.vt.FeedbackFactor:16]]
+[2024.08.02-07.27.17:774][  0]LogConfig: CVar [[r.VT.EnableCompressZlib:1]] deferred - dummy variable created
+[2024.08.02-07.27.17:774][  0]LogConfig: CVar [[r.VT.EnableCompressCrunch:0]] deferred - dummy variable created
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.ClearCoatNormal:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.ReflectionCaptureResolution:128]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.ReflectionEnvironmentLightmapMixBasedOnRoughness:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.ForwardShading:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.VertexFoggingForOpaque:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.AllowStaticLighting:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.NormalMapsForStaticLighting:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: CVar [[r.DistanceFieldBuild.EightBit:0]] deferred - dummy variable created
+[2024.08.02-07.27.17:774][  0]LogConfig: CVar [[r.GenerateLandscapeGIData:0]] deferred - dummy variable created
+[2024.08.02-07.27.17:774][  0]LogConfig: CVar [[r.DistanceFieldBuild.Compress:0]] deferred - dummy variable created
+[2024.08.02-07.27.17:774][  0]LogConfig: CVar [[r.TessellationAdaptivePixelsPerTriangle:48.000000]] deferred - dummy variable created
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.SeparateTranslucency:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.TranslucentSortPolicy:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: CVar [[TranslucentSortAxis:(X=0.000000,Y=-1.000000,Z=0.000000)]] deferred - dummy variable created
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.CustomDepth:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.CustomDepthTemporalAAJitter:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.PostProcessing.PropagateAlpha:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.DefaultFeature.Bloom:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.DefaultFeature.AmbientOcclusion:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.DefaultFeature.AmbientOcclusionStaticFraction:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.Method:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.Bias:1.000000]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: CVar [[r.EyeAdaptation.EditorOnly:0]] deferred - dummy variable created
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:1.0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:1.0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.DefaultFeature.MotionBlur:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.DefaultFeature.LensFlare:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.TemporalAA.Upsampling:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: CVar [[r.SSGI.Enable:0]] deferred - dummy variable created
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.AntiAliasingMethod:3]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.DefaultFeature.LightUnits:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.DefaultBackBufferPixelFormat:4]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.Shadow.UnbuiltPreviewInGame:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.StencilForLODDither:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.EarlyZPass:3]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.EarlyZPassOnlyMaterialMasking:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.DBuffer:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.ClearSceneMethod:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.VelocityOutputPass:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.Velocity.EnableVertexDeformation:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.SelectiveBasePassOutputs:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: CVar [[bDefaultParticleCutouts:0]] deferred - dummy variable created
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[fx.GPUSimulationTextureSizeX:1024]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[fx.GPUSimulationTextureSizeY:1024]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.AllowGlobalClipPlane:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.GBufferFormat:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.MorphTarget.Mode:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[vr.InstancedStereo:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.MobileHDR:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[vr.MobileMultiView:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.Mobile.UseHWsRGBEncoding:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[vr.RoundRobinOcclusion:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: CVar [[vr.ODSCapture:0]] deferred - dummy variable created
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.MeshStreaming:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.WireframeCullThreshold:5.000000]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.RayTracing:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.RayTracing.UseTextureLod:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.SupportStationarySkylight:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.SupportLowQualityLightmaps:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.SupportPointLightWholeSceneShadows:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: CVar [[r.SupportAtmosphericFog:1]] deferred - dummy variable created
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.SupportSkyAtmosphere:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.SupportSkyAtmosphereAffectsHeightFog:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:0]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.SkinCache.DefaultBehavior:1]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.SkinCache.SceneMemoryLimitInMB:128.000000]]
+[2024.08.02-07.27.17:774][  0]LogConfig: Set CVar [[r.Mobile.EnableStaticAndCSMShadowReceivers:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.Mobile.EnableMovableLightCSMShaderCulling:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.Mobile.AllowDistanceFieldShadows:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.Mobile.AllowMovableDirectionalLights:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: CVar [[r.MobileNumDynamicPointLights:4]] deferred - dummy variable created
+[2024.08.02-07.27.17:775][  0]LogConfig: CVar [[r.MobileDynamicPointLightsUseStaticBranch:1]] deferred - dummy variable created
+[2024.08.02-07.27.17:775][  0]LogConfig: CVar [[r.Mobile.EnableMovableSpotlights:0]] deferred - dummy variable created
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.Mobile.EnableMovableSpotlightsShadow:0]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.GPUSkin.Support16BitBoneIndex:0]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.GPUSkin.Limit2BoneInfluences:0]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.SupportDepthOnlyIndexBuffers:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.SupportReversedIndexBuffers:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: CVar [[r.LightPropagationVolume:0]] deferred - dummy variable created
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.Mobile.AmbientOcclusion:0]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.GPUSkin.UnlimitedBoneInfluences:0]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.GPUSkin.UnlimitedBoneInfluencesThreshold:8]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.Mobile.PlanarReflectionMode:0]]
+[2024.08.02-07.27.17:775][  0]LogConfig: CVar [[bStreamSkeletalMeshLODs:(Default=False,PerPlatform=())]] deferred - dummy variable created
+[2024.08.02-07.27.17:775][  0]LogConfig: CVar [[bDiscardSkeletalMeshOptionalLODs:(Default=False,PerPlatform=())]] deferred - dummy variable created
+[2024.08.02-07.27.17:775][  0]LogConfig: CVar [[VisualizeCalibrationCustomMaterialPath:None]] deferred - dummy variable created
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.Mobile.AntiAliasing:3]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.Mobile.FloatPrecisionMode:2]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.OpenGL.ForceDXC:0]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.ReflectionMethod:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.MSAACount:4]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.Mobile.ShadingPath:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine]
+[2024.08.02-07.27.17:775][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]]
+[2024.08.02-07.27.17:775][  0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created
+[2024.08.02-07.27.17:775][  0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created
+[2024.08.02-07.27.17:775][  0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created
+[2024.08.02-07.27.17:775][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[gc.SizeOfPermanentObjectPool:0]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[gc.AllowParallelGC:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[gc.CreateGCClusters:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[gc.UseDisregardForGCOnDedicatedServers:0]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[gc.MultithreadedDestructionEnabled:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Set CVar [[gc.PendingKillEnabled:1]]
+[2024.08.02-07.27.17:775][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine]
+[2024.08.02-07.27.17:775][  0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created
+[2024.08.02-07.27.17:775][  0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created
+[2024.08.02-07.27.17:789][  0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.FXAA.Quality:4]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.TSR.ShadingRejection.TileOverscan:3]]
+[2024.08.02-07.27.17:789][  0]LogConfig: CVar [[r.TSR.Velocity.Extrapolation:1]] deferred - dummy variable created
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.LightFunctionQuality:1]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.ShadowQuality:5]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.VolumetricFog:1]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.CapsuleShadows:1]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.DistanceFieldAO:1]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.AOQuality:2]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.SSR.Quality:3]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapStrength:0]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.MotionBlurQuality:4]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]]
+[2024.08.02-07.27.17:789][  0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.LensFlareQuality:2]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.BloomQuality:5]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.FastBlurThreshold:100]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.Upscale.Quality:3]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.LightShaftQuality:1]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.Filter.SizeScale:1]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2         ; lower gathering resolution]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1        ; higher gathering accumulator quality]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1          ; Median3x3 postfilering method]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0       ; no bokeh simulation when gathering]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4                 ; medium number of samples when gathering]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1    ; additive foreground scattering]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2    ; additive background scattering]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1      ; bokeh simulation when scattering]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1         ; only a maximum of 10% of scattered bokeh]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1                ; cheap slight out of focus]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0    ; no bokeh simulation on slight out of focus]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1                ; more stable temporal accumulation]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.Streaming.MipBias:0]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.Streaming.Boost:1]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.MaxAnisotropy:8]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.RefractionQuality:2]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.SceneColorFormat:4]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.DetailMode:2]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.SSS.Scale:1]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.SSS.SampleSet:2]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.SSS.Quality:1]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.SSS.HalfRes:0]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.SSGI.Quality:3]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.ParticleLightQuality:2]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[foliage.DensityScale:1.0]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[grass.DensityScale:1.0]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]]
+[2024.08.02-07.27.17:790][  0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]]
+[2024.08.02-07.27.17:790][  0]LogRHI: Using Default RHI: D3D12
+[2024.08.02-07.27.17:790][  0]LogRHI: Using Highest Feature Level of D3D12: SM6
+[2024.08.02-07.27.17:790][  0]LogRHI: Loading RHI module D3D12RHI
+[2024.08.02-07.27.17:793][  0]LogD3D12RHI: Aftermath initialized
+[2024.08.02-07.27.17:793][  0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64).
+[2024.08.02-07.27.17:793][  0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system.
+[2024.08.02-07.27.18:099][  0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3090 (VendorId: 10de, DeviceId: 2204, SubSysId: 38801028, Revision: 00a1
+[2024.08.02-07.27.18:099][  0]LogD3D12RHI:   Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported
+[2024.08.02-07.27.18:099][  0]LogD3D12RHI:   Adapter has 24340MB of dedicated video memory, 0MB of dedicated system memory, and 16238MB of shared system memory, 2 output[s]
+[2024.08.02-07.27.18:099][  0]LogD3D12RHI:   Driver Version: 546.09 (internal:31.0.15.4609, unified:546.09)
+[2024.08.02-07.27.18:099][  0]LogD3D12RHI:      Driver Date: 11-2-2023
+[2024.08.02-07.27.18:114][  0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000
+[2024.08.02-07.27.18:114][  0]LogD3D12RHI:   Max supported Feature Level 12_1, shader model 6.2, binding tier 3, wave ops supported, atomic64 unsupported
+[2024.08.02-07.27.18:114][  0]LogD3D12RHI:   Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16238MB of shared system memory, 0 output[s]
+[2024.08.02-07.27.18:114][  0]LogD3D12RHI: DirectX Agility SDK runtime found.
+[2024.08.02-07.27.18:114][  0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0
+[2024.08.02-07.27.18:114][  0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used.
+[2024.08.02-07.27.18:114][  0]LogInit: Selected Device Profile: [Windows]
+[2024.08.02-07.27.18:114][  0]LogHAL: Display: Platform has ~ 32 GB [34054676480 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0)
+[2024.08.02-07.27.18:114][  0]LogDeviceProfileManager: Going up to parent DeviceProfile []
+[2024.08.02-07.27.18:114][  0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini]
+[2024.08.02-07.27.18:114][  0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]]
+[2024.08.02-07.27.18:114][  0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]]
+[2024.08.02-07.27.18:114][  0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]]
+[2024.08.02-07.27.18:114][  0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine]
+[2024.08.02-07.27.18:115][  0]LogInit: Computer: ITC22160
+[2024.08.02-07.27.18:115][  0]LogInit: User: mp455017
+[2024.08.02-07.27.18:115][  0]LogInit: CPU Page size=4096, Cores=10
+[2024.08.02-07.27.18:115][  0]LogInit: High frequency timer resolution =10.000000 MHz
+[2024.08.02-07.27.18:115][  0]LogMemory: Memory total: Physical=31.7GB (32GB approx)
+[2024.08.02-07.27.18:115][  0]LogMemory: Platform Memory Stats for Windows
+[2024.08.02-07.27.18:115][  0]LogMemory: Process Physical Memory: 181.17 MB used, 192.87 MB peak
+[2024.08.02-07.27.18:115][  0]LogMemory: Process Virtual Memory: 157.42 MB used, 157.42 MB peak
+[2024.08.02-07.27.18:115][  0]LogMemory: Physical Memory: 22338.95 MB used,  10138.12 MB free, 32477.07 MB total
+[2024.08.02-07.27.18:115][  0]LogMemory: Virtual Memory: 58808.42 MB used,  14225.73 MB free, 73034.14 MB total
+[2024.08.02-07.27.18:115][  0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0"
+[2024.08.02-07.27.18:124][  0]LogWindows: WindowsPlatformFeatures enabled
+[2024.08.02-07.27.18:124][  0]LogInit: Physics initialised using underlying interface: Chaos
+[2024.08.02-07.27.18:125][  0]LogInit: Using OS detected language (en-US).
+[2024.08.02-07.27.18:125][  0]LogInit: Using OS detected locale (de-DE).
+[2024.08.02-07.27.18:125][  0]LogTextLocalizationManager: No specific localization for 'en-US' exists, so 'en' will be used for the language.
+[2024.08.02-07.27.18:125][  0]LogTextLocalizationManager: No localization for 'de-DE' exists, so 'en' will be used for the locale.
+[2024.08.02-07.27.18:184][  0]LogWindowsTextInputMethodSystem: Available input methods:
+[2024.08.02-07.27.18:184][  0]LogWindowsTextInputMethodSystem:   - English (United States) - (Keyboard).
+[2024.08.02-07.27.18:184][  0]LogWindowsTextInputMethodSystem:   - German (Germany) - (Keyboard).
+[2024.08.02-07.27.18:184][  0]LogWindowsTextInputMethodSystem:   - German (Germany) - Touch Input Correction (TSF IME).
+[2024.08.02-07.27.18:184][  0]LogWindowsTextInputMethodSystem: Activated input method: German (Germany) - (Keyboard).
+[2024.08.02-07.27.18:213][  0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0
+[2024.08.02-07.27.18:213][  0]LogSlate: Slate User Registered.  User Index 0, Is Virtual User: 0
+[2024.08.02-07.27.18:245][  0]LogRHI: Using Default RHI: D3D12
+[2024.08.02-07.27.18:246][  0]LogRHI: Using Highest Feature Level of D3D12: SM6
+[2024.08.02-07.27.18:246][  0]LogRHI: Loading RHI module D3D12RHI
+[2024.08.02-07.27.18:246][  0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system.
+[2024.08.02-07.27.18:246][  0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used.
+[2024.08.02-07.27.18:246][  0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6
+[2024.08.02-07.27.18:247][  0]LogWindows: Attached monitors:
+[2024.08.02-07.27.18:247][  0]LogWindows:     resolution: 1920x1080, work area: (1920, 0) -> (3840, 1040), device: '\\.\DISPLAY2'
+[2024.08.02-07.27.18:247][  0]LogWindows:     resolution: 1920x1080, work area: (0, 0) -> (1920, 1040), device: '\\.\DISPLAY1' [PRIMARY]
+[2024.08.02-07.27.18:247][  0]LogWindows: Found 2 attached monitors.
+[2024.08.02-07.27.18:247][  0]LogWindows: Gathering driver information using Windows Setup API
+[2024.08.02-07.27.18:247][  0]LogRHI: RHI Adapter Info:
+[2024.08.02-07.27.18:247][  0]LogRHI:             Name: NVIDIA GeForce RTX 3090
+[2024.08.02-07.27.18:247][  0]LogRHI:   Driver Version: 546.09 (internal:31.0.15.4609, unified:546.09)
+[2024.08.02-07.27.18:247][  0]LogRHI:      Driver Date: 11-2-2023
+[2024.08.02-07.27.18:247][  0]LogD3D12RHI:     GPU DeviceId: 0x2204 (for the marketing name, search the web for "GPU Device Id")
+[2024.08.02-07.27.18:247][  0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off
+[2024.08.02-07.27.18:262][  0]LogD3D12RHI: [Aftermath] Aftermath crash dumping enabled
+[2024.08.02-07.27.18:262][  0]LogD3D12RHI: [DRED] Dred breadcrumb context enabled
+[2024.08.02-07.27.18:262][  0]LogD3D12RHI: [DRED] Using lightweight DRED.
+[2024.08.02-07.27.18:262][  0]LogD3D12RHI: Emitting draw events for PIX profiling.
+[2024.08.02-07.27.18:466][  0]LogD3D12RHI: [Aftermath] Aftermath enabled and primed
+[2024.08.02-07.27.18:466][  0]LogD3D12RHI: [Aftermath] Aftermath resource tracking enabled
+[2024.08.02-07.27.18:466][  0]LogD3D12RHI: ID3D12Device1 is supported.
+[2024.08.02-07.27.18:466][  0]LogD3D12RHI: ID3D12Device2 is supported.
+[2024.08.02-07.27.18:466][  0]LogD3D12RHI: ID3D12Device3 is supported.
+[2024.08.02-07.27.18:466][  0]LogD3D12RHI: ID3D12Device4 is supported.
+[2024.08.02-07.27.18:466][  0]LogD3D12RHI: ID3D12Device5 is supported.
+[2024.08.02-07.27.18:466][  0]LogD3D12RHI: ID3D12Device6 is supported.
+[2024.08.02-07.27.18:466][  0]LogD3D12RHI: ID3D12Device7 is supported.
+[2024.08.02-07.27.18:466][  0]LogD3D12RHI: ID3D12Device8 is supported.
+[2024.08.02-07.27.18:466][  0]LogD3D12RHI: ID3D12Device9 is supported.
+[2024.08.02-07.27.18:466][  0]LogD3D12RHI: ID3D12Device10 is supported.
+[2024.08.02-07.27.18:466][  0]LogD3D12RHI: ID3D12Device11 is supported.
+[2024.08.02-07.27.18:466][  0]LogD3D12RHI: ID3D12Device12 is supported.
+[2024.08.02-07.27.18:467][  0]LogD3D12RHI: Bindless resources are supported
+[2024.08.02-07.27.18:467][  0]LogD3D12RHI: Stencil ref from pixel shader is not supported
+[2024.08.02-07.27.18:467][  0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32).
+[2024.08.02-07.27.18:467][  0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported.
+[2024.08.02-07.27.18:467][  0]LogD3D12RHI: Mesh shader tier 1.0 is supported
+[2024.08.02-07.27.18:467][  0]LogD3D12RHI: AtomicInt64OnTypedResource is supported
+[2024.08.02-07.27.18:467][  0]LogD3D12RHI: AtomicInt64OnGroupShared is supported
+[2024.08.02-07.27.18:467][  0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported
+[2024.08.02-07.27.18:467][  0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported
+[2024.08.02-07.27.18:531][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (3D)
+[2024.08.02-07.27.18:532][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Copy)
+[2024.08.02-07.27.18:533][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Compute)
+[2024.08.02-07.27.18:558][  0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0
+[2024.08.02-07.27.18:558][  0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0
+[2024.08.02-07.27.18:559][  0]LogRHI: Texture pool is 14850 MB (70% of 21214 MB)
+[2024.08.02-07.27.18:559][  0]LogD3D12RHI: Async texture creation enabled
+[2024.08.02-07.27.18:560][  0]LogD3D12RHI: RHI has support for 64 bit atomics
+[2024.08.02-07.27.18:595][  0]LogVRS: Current RHI supports Variable Rate Shading
+[2024.08.02-07.27.18:605][  0]LogRendererCore: Ray tracing is disabled. Reason: disabled through project setting (r.RayTracing=0).
+[2024.08.02-07.27.18:606][  0]LogShaderLibrary: Display: Using IoDispatcher for shader code library Global. Total 4019 unique shaders.
+[2024.08.02-07.27.18:606][  0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library Global
+[2024.08.02-07.27.18:606][  0]LogShaderLibrary: Display: Logical shader library 'Global' has been created as a monolithic library
+[2024.08.02-07.27.18:606][  0]LogShaderLibrary: Display: Tried to open shader library 'Global_SC', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:606][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRigSpline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'AnimationSharing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'IKRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'Composure', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'Paper2D', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryMode', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'ACLPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'LightMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosSolverPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'ColorCorrectRegions', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosClothEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'ObjectMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'BlueprintHeaderView', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'ConsoleVariables', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'SpeedTreeImporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'Dataflow', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioSynesthesia', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryProcessing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'Bridge', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenCV', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioWidgets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'FullBodyIK', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'Synthesis', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenColorIO', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'TraceUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'MovieRenderPipeline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'WaveTable', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'VPRoles', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'CameraCalibrationCore', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'SequencerScripting', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXRHandTracking', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'Metasound', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'VPSettings', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'Niagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXR', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXREyeTracker', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'ConcertSyncClient', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'ToolPresets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaCompositing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplayModularFeatures', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'ResonanceAudio', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'Kdtree', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'Interchange', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplay', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'MultiUserTakes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaPlate', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'Switchboard', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:607][  0]LogShaderLibrary: Display: Tried to open shader library 'VirtualProductionUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:608][  0]LogShaderLibrary: Display: Tried to open shader library 'RigVM', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:608][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosNiagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:608][  0]LogShaderLibrary: Display: Tried to open shader library 'Takes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:608][  0]LogShaderLibrary: Display: Tried to open shader library 'UVEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:608][  0]LogShaderLibrary: Display: Tried to open shader library 'GPUPointCloudRenderer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:608][  0]LogShaderLibrary: Display: Tried to open shader library 'RWTHVRToolkit', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:608][  0]LogShaderLibrary: Display: Tried to open shader library 'DatasmithContent', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:608][  0]LogShaderLibrary: Display: Tried to open shader library 'GLTFExporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:608][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryCollectionPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:608][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosCaching', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:608][  0]LogShaderLibrary: Display: Tried to open shader library 'PythonScriptPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:608][  0]LogTemp: Display: Clearing the OS Cache
+[2024.08.02-07.27.18:615][  0]LogInit: FStereoShaderAspects: --- StereoAspects begin ---
+[2024.08.02-07.27.18:616][  0]LogInit: FStereoShaderAspects: Platform=PCD3D_SM6 (49)
+[2024.08.02-07.27.18:616][  0]LogInit: FStereoShaderAspects: bInstancedStereo = 1
+[2024.08.02-07.27.18:616][  0]LogInit: FStereoShaderAspects: bMobilePlatform = 0
+[2024.08.02-07.27.18:616][  0]LogInit: FStereoShaderAspects: bMobilePostprocessing = 0
+[2024.08.02-07.27.18:616][  0]LogInit: FStereoShaderAspects: bMobileMultiView = 1
+[2024.08.02-07.27.18:616][  0]LogInit: FStereoShaderAspects: bMultiViewportCapable = 1
+[2024.08.02-07.27.18:616][  0]LogInit: FStereoShaderAspects: bInstancedStereoNative = 1
+[2024.08.02-07.27.18:616][  0]LogInit: FStereoShaderAspects: ---
+[2024.08.02-07.27.18:616][  0]LogInit: FStereoShaderAspects: bMobileMultiViewCoreSupport = 0
+[2024.08.02-07.27.18:616][  0]LogInit: FStereoShaderAspects: bMobileMultiViewNative = 0
+[2024.08.02-07.27.18:616][  0]LogInit: FStereoShaderAspects: bMobileMultiViewFallback = 0
+[2024.08.02-07.27.18:616][  0]LogInit: FStereoShaderAspects: ---
+[2024.08.02-07.27.18:616][  0]LogInit: FStereoShaderAspects: bInstancedMultiViewportEnabled = 1
+[2024.08.02-07.27.18:616][  0]LogInit: FStereoShaderAspects: bInstancedStereoEnabled = 1
+[2024.08.02-07.27.18:616][  0]LogInit: FStereoShaderAspects: bMobileMultiViewEnabled = 0
+[2024.08.02-07.27.18:616][  0]LogInit: FStereoShaderAspects: --- StereoAspects end ---
+[2024.08.02-07.27.18:619][  0]LogInit: XR: Instanced Stereo Rendering is Enabled
+[2024.08.02-07.27.18:619][  0]LogInit: XR: MultiViewport is Enabled
+[2024.08.02-07.27.18:619][  0]LogInit: XR: Mobile Multiview is Disabled
+[2024.08.02-07.27.18:621][  0]LogSlate: Using FreeType 2.10.0
+[2024.08.02-07.27.18:621][  0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1
+[2024.08.02-07.27.18:705][  0]LogShaderLibrary: Display: Tried to open shader library 'Paper2D', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:705][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/2D/Paper2D/Content/' mounted to '/Paper2D/'
+[2024.08.02-07.27.18:705][  0]LogShaderLibrary: Display: Tried to open shader library 'ACLPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:705][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ACLPlugin/Content/' mounted to '/ACLPlugin/'
+[2024.08.02-07.27.18:705][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRigSpline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:705][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRigSpline/Content/' mounted to '/ControlRigSpline/'
+[2024.08.02-07.27.18:705][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:705][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRig/Content/' mounted to '/ControlRig/'
+[2024.08.02-07.27.18:705][  0]LogShaderLibrary: Display: Tried to open shader library 'IKRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:705][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/IKRig/Content/' mounted to '/IKRig/'
+[2024.08.02-07.27.18:705][  0]LogShaderLibrary: Display: Tried to open shader library 'Bridge', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:705][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Bridge/Content/' mounted to '/Bridge/'
+[2024.08.02-07.27.18:705][  0]LogShaderLibrary: Display: Tried to open shader library 'Composure', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:705][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/Composure/Content/' mounted to '/Composure/'
+[2024.08.02-07.27.18:705][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenColorIO', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:705][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/OpenColorIO/Content/' mounted to '/OpenColorIO/'
+[2024.08.02-07.27.18:705][  0]LogShaderLibrary: Display: Tried to open shader library 'AnimationSharing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:705][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/AnimationSharing/Content/' mounted to '/AnimationSharing/'
+[2024.08.02-07.27.18:705][  0]LogShaderLibrary: Display: Tried to open shader library 'ConcertSyncClient', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:705][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/' mounted to '/ConcertSyncClient/'
+[2024.08.02-07.27.18:705][  0]LogShaderLibrary: Display: Tried to open shader library 'BlueprintHeaderView', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:705][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/BlueprintHeaderView/Content/' mounted to '/BlueprintHeaderView/'
+[2024.08.02-07.27.18:705][  0]LogShaderLibrary: Display: Tried to open shader library 'ConsoleVariables', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:705][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ConsoleVariablesEditor/Content/' mounted to '/ConsoleVariables/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryMode', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:706][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/GeometryMode/Content/' mounted to '/GeometryMode/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'LightMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:706][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/LightMixer/Content/' mounted to '/LightMixer/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'ObjectMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:706][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/ObjectMixer/Content/' mounted to '/ObjectMixer/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'SpeedTreeImporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:706][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/SpeedTreeImporter/Content/' mounted to '/SpeedTreeImporter/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'UVEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:706][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/UVEditor/Content/' mounted to '/UVEditor/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'DatasmithContent', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:706][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/DatasmithContent/Content/' mounted to '/DatasmithContent/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'GLTFExporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:706][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/GLTFExporter/Content/' mounted to '/GLTFExporter/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosCaching', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:706][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosCaching/Content/' mounted to '/ChaosCaching/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosClothEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:706][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosClothEditor/Content/' mounted to '/ChaosClothEditor/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosNiagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:706][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosNiagara/Content/' mounted to '/ChaosNiagara/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosSolverPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:706][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosSolverPlugin/Content/' mounted to '/ChaosSolverPlugin/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'ColorCorrectRegions', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:706][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ColorCorrectRegions/Content/' mounted to '/ColorCorrectRegions/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'Dataflow', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:706][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Dataflow/Content/' mounted to '/Dataflow/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'FullBodyIK', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:706][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/FullBodyIK/Content/' mounted to '/FullBodyIK/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryCollectionPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:706][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/GeometryCollectionPlugin/Content/' mounted to '/GeometryCollectionPlugin/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'PythonScriptPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:706][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/PythonScriptPlugin/Content/' mounted to '/PythonScriptPlugin/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'ToolPresets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:706][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ToolPresets/Content/' mounted to '/ToolPresets/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'VirtualProductionUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:706][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProductionUtilities/Content/' mounted to '/VirtualProductionUtilities/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'VPRoles', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:706][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPRoles/Content/' mounted to '/VPRoles/'
+[2024.08.02-07.27.18:706][  0]LogShaderLibrary: Display: Tried to open shader library 'VPSettings', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPSettings/Content/' mounted to '/VPSettings/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'Niagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/FX/Niagara/Content/' mounted to '/Niagara/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'Interchange', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Interchange/Runtime/Content/' mounted to '/Interchange/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaCompositing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaCompositing/Content/' mounted to '/MediaCompositing/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaPlate', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaPlate/Content/' mounted to '/MediaPlate/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'MovieRenderPipeline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/MovieRenderPipeline/Content/' mounted to '/MovieRenderPipeline/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'SequencerScripting', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/SequencerScripting/Content/' mounted to '/SequencerScripting/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioSynesthesia', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioSynesthesia/Content/' mounted to '/AudioSynesthesia/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioWidgets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioWidgets/Content/' mounted to '/AudioWidgets/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryProcessing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/GeometryProcessing/Content/' mounted to '/GeometryProcessing/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'Metasound', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Metasound/Content/' mounted to '/Metasound/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenCV', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenCV/Content/' mounted to '/OpenCV/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXREyeTracker', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXREyeTracker/Content/' mounted to '/OpenXREyeTracker/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXRHandTracking', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXRHandTracking/Content/' mounted to '/OpenXRHandTracking/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXR', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXR/Content/' mounted to '/OpenXR/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'ResonanceAudio', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/ResonanceAudio/Content/' mounted to '/ResonanceAudio/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'RigVM', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/RigVM/Content/' mounted to '/RigVM/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'Synthesis', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Synthesis/Content/' mounted to '/Synthesis/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'WaveTable', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/WaveTable/Content/' mounted to '/WaveTable/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplayModularFeatures', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplayModularFeatures/Content/' mounted to '/nDisplayModularFeatures/'
+[2024.08.02-07.27.18:707][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplay', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:707][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplay/Content/' mounted to '/nDisplay/'
+[2024.08.02-07.27.18:708][  0]LogShaderLibrary: Display: Tried to open shader library 'TraceUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:708][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/TraceUtilities/Content/' mounted to '/TraceUtilities/'
+[2024.08.02-07.27.18:708][  0]LogShaderLibrary: Display: Tried to open shader library 'CameraCalibrationCore', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:708][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/CameraCalibrationCore/Content/' mounted to '/CameraCalibrationCore/'
+[2024.08.02-07.27.18:708][  0]LogShaderLibrary: Display: Tried to open shader library 'MultiUserTakes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:708][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/MultiUserTakes/Content/' mounted to '/MultiUserTakes/'
+[2024.08.02-07.27.18:708][  0]LogShaderLibrary: Display: Tried to open shader library 'Switchboard', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:708][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Switchboard/Content/' mounted to '/Switchboard/'
+[2024.08.02-07.27.18:708][  0]LogShaderLibrary: Display: Tried to open shader library 'Takes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:708][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Takes/Content/' mounted to '/Takes/'
+[2024.08.02-07.27.18:708][  0]LogShaderLibrary: Display: Tried to open shader library 'GPUPointCloudRenderer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:708][  0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UE4_GPUPointCloudRenderer/Content/' mounted to '/GPUPointCloudRenderer/'
+[2024.08.02-07.27.18:708][  0]LogShaderLibrary: Display: Tried to open shader library 'Kdtree', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:708][  0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UEPlugin-Kdtree/Kdtree/Content/' mounted to '/Kdtree/'
+[2024.08.02-07.27.18:708][  0]LogShaderLibrary: Display: Tried to open shader library 'RWTHVRToolkit', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.27.18:708][  0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/rwth-vr-toolkit-with-meta-cast/Content/' mounted to '/RWTHVRToolkit/'
+[2024.08.02-07.27.18:708][  0]LogShaderLibrary: Display: Using IoDispatcher for shader code library MetaCastBachelor. Total 2223 unique shaders.
+[2024.08.02-07.27.18:708][  0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library MetaCastBachelor
+[2024.08.02-07.27.18:708][  0]LogShaderLibrary: Display: Logical shader library 'MetaCastBachelor' has been created as a monolithic library
+[2024.08.02-07.27.18:709][  0]LogRHI: Could not open FPipelineCacheFile: ../../../MetaCastBachelor/Content/PipelineCaches/Windows/MetaCastBachelor_PCD3D_SM6.stable.upipelinecache
+[2024.08.02-07.27.18:709][  0]LogRHI: Could not open FPipelineCacheFile: ../../../MetaCastBachelor/Content/PipelineCaches/Windows/MetaCastBachelor_PCD3D_SM6.stable.upipelinecache
+[2024.08.02-07.27.18:709][  0]LogShaderLibrary: Display: Tried to open again shader library 'MetaCastBachelor', but could not find new components for it (existing components: 1).
+[2024.08.02-07.27.18:709][  0]LogRHI: Could not open FPipelineCacheFile: ../../../MetaCastBachelor/Content/PipelineCaches/Windows/MetaCastBachelor_PCD3D_SM6.stable.upipelinecache
+[2024.08.02-07.27.18:709][  0]LogInit: Using OS detected language (en-US).
+[2024.08.02-07.27.18:709][  0]LogInit: Using OS detected locale (de-DE).
+[2024.08.02-07.27.18:710][  0]LogTextLocalizationManager: No localization for 'en-US' exists, so 'en' will be used for the language.
+[2024.08.02-07.27.18:710][  0]LogTextLocalizationManager: No localization for 'de-DE' exists, so 'en' will be used for the locale.
+[2024.08.02-07.27.18:710][  0]LogAssetRegistry: FAssetRegistry took 0.0002 seconds to start up
+[2024.08.02-07.27.18:878][  0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages
+[2024.08.02-07.27.18:881][  0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found.
+[2024.08.02-07.27.18:881][  0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found.
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: Available device profiles:
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC2347CE80][000001BC2283AAC0 66] GlobalDefaults, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC2347CB80][000001BC22490010 66] Windows, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC2347CA00][000001BC22499250 66] WindowsEditor, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC2347C700][000001BC7D770010 66] WindowsServer, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC2347FD00][000001BC7D7724A0 66] WindowsClient, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC2347FB80][000001BC7D774930 66] IOS, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC2347FA00][000001BC7D776DC0 66] iPadAir2, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC2347F880][000001BC7D779250 66] IPadPro, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D3100][000001BC7D77B6E0 66] iPadAir3, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D2F80][000001BC7D77DB70 66] iPadAir4, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D2E00][000001BC7D6D0010 66] iPadAir5, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D2C80][000001BC236EDB70 66] iPadMini4, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D2B00][000001BC236EB6E0 66] iPadMini5, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D2980][000001BC236E9250 66] iPadMini6, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D2800][000001BC236E6DC0 66] iPhone6S, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D2680][000001BC236E4930 66] iPhone7, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D2500][000001BC236E24A0 66] iPodTouch7, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D2380][000001BC236E0010 66] iPhone6SPlus, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D2200][000001BC236FDB70 66] iPhone7Plus, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D2080][000001BC236FB6E0 66] iPhoneSE, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D1F00][000001BC236F9250 66] iPhone8, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D1D80][000001BC236F6DC0 66] iPhone8Plus, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D1C00][000001BC236F4930 66] iPhoneX, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC2347C880][000001BC236F24A0 66] iPhoneXS, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC2347FE80][000001BC236F0010 66] iPhoneXSMax, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D1A80][000001BC2370DB70 66] iPhoneXR, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D1900][000001BC2370B6E0 66] iPhone11, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D1780][000001BC23709250 66] iPhone11Pro, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D1600][000001BC23706DC0 66] iPhone11ProMax, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D1480][000001BC23704930 66] iPhoneSE2, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D1300][000001BC237024A0 66] iPhone12Mini, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D1180][000001BC23700010 66] iPhone12, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D1000][000001BC2371DB70 66] iPhone12Pro, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D0E80][000001BC2371B6E0 66] iPhone12ProMax, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D0D00][000001BC23719250 66] iPhone13Mini, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D0B80][000001BC23716DC0 66] iPhone13, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D0A00][000001BC23714930 66] iPhone13Pro, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D0880][000001BC237124A0 66] iPhone13ProMax, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D0700][000001BC23710010 66] iPhoneSE3, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D0580][000001BC2372DB70 66] iPhone14, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D0400][000001BC2372B6E0 66] iPhone14Plus, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D0280][000001BC23729250 66] iPhone14Pro, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D0100][000001BC23726DC0 66] iPhone14ProMax, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D6280][000001BC23724930 66] iPhone15, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D6100][000001BC237224A0 66] iPhone15Plus, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D5F80][000001BC23720010 66] iPhone15Pro, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D5E00][000001BC2373DB70 66] iPhone15ProMax, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D5C80][000001BC2373B6E0 66] iPadPro105, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D5B00][000001BC23739250 66] iPadPro129, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D5980][000001BC23736DC0 66] iPadPro97, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D5800][000001BC23734930 66] iPadPro2_129, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D5680][000001BC237324A0 66] iPad5, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D5500][000001BC23730010 66] iPad6, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D5380][000001BC2374DB70 66] iPad7, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D5200][000001BC2374B6E0 66] iPad8, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D5080][000001BC23749250 66] iPad9, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D4F00][000001BC23746DC0 66] iPad10, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D4D80][000001BC23744930 66] iPadPro11, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D4C00][000001BC237424A0 66] iPadPro2_11, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D4A80][000001BC23740010 66] iPadPro3_11, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D4900][000001BC2375DB70 66] iPadPro4_11, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D4780][000001BC2375B6E0 66] iPadPro3_129, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D4600][000001BC23759250 66] iPadPro4_129, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D4480][000001BC23756DC0 66] iPadPro5_129, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D4300][000001BC23754930 66] iPadPro6_129, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D4180][000001BC237524A0 66] AppleTV, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D4000][000001BC23750010 66] AppleTV4K, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D3E80][000001BC2376DB70 66] AppleTV2_4K, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D3D00][000001BC2376B6E0 66] TVOS, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D3B80][000001BC23769250 66] Mac, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D3A00][000001BC23766DC0 66] MacEditor, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D3880][000001BC23764930 66] MacClient, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D3700][000001BC237624A0 66] MacServer, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D3580][000001BC23760010 66] Linux, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D3400][000001BC2377DB70 66] LinuxEditor, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D3280][000001BC2377B6E0 66] LinuxArm64Editor, 
+[2024.08.02-07.27.18:883][  0]LogDeviceProfileManager: 	[000001BC236D9400][000001BC23779250 66] LinuxArm64, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D9280][000001BC23776DC0 66] LinuxClient, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D9100][000001BC23774930 66] LinuxArm64Client, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D8F80][000001BC237724A0 66] LinuxServer, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D8E00][000001BC23770010 66] LinuxArm64Server, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D8C80][000001BC2378DB70 66] Android, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D8B00][000001BC2378B6E0 66] Android_Preview_OpenGL, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D8980][000001BC23789250 66] Android_Preview_Vulkan, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D8800][000001BC23786DC0 66] Android_Low, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D8680][000001BC23784930 66] Android_Mid, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D8500][000001BC237824A0 66] Android_High, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D8380][000001BC23780010 66] Android_Default, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D8200][000001BC2379DB70 66] Android_Adreno4xx, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D8080][000001BC2379B6E0 66] Android_Adreno5xx_Low, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D7F00][000001BC23799250 66] Android_Adreno5xx, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D7D80][000001BC23796DC0 66] Android_Adreno6xx, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D7C00][000001BC23794930 66] Android_Adreno6xx_Vulkan, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D7A80][000001BC237924A0 66] Android_Adreno7xx, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D7900][000001BC23790010 66] Android_Adreno7xx_Vulkan, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D7780][000001BC237ADB70 66] Android_Mali_T6xx, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D7600][000001BC237AB6E0 66] Android_Mali_T7xx, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D7480][000001BC237A9250 66] Android_Mali_T8xx, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D7300][000001BC237A6DC0 66] Android_Mali_G71, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D7180][000001BC237A4930 66] Android_Mali_G72, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D7000][000001BC237A24A0 66] Android_Mali_G72_Vulkan, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D6E80][000001BC237A0010 66] Android_Mali_G76, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D6D00][000001BC237DDB70 66] Android_Mali_G76_Vulkan, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D6B80][000001BC237DB6E0 66] Android_Mali_G77, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D6A00][000001BC237D9250 66] Android_Mali_G77_Vulkan, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D6880][000001BC237D6DC0 66] Android_Mali_G78, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D6700][000001BC237D4930 66] Android_Mali_G78_Vulkan, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D6580][000001BC237D24A0 66] Android_Mali_G710, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236D6400][000001BC237D0010 66] Android_Mali_G710_Vulkan, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236DC580][000001BC237EDB70 66] Android_Mali_G7xx, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236DC400][000001BC237EB6E0 66] Android_Mali_G7xx_Vulkan, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236DC280][000001BC237E9250 66] Android_Xclipse_920, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236DC100][000001BC237E6DC0 66] Android_Xclipse_920_Vulkan, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236DBF80][000001BC237E4930 66] Android_Vulkan_SM5, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236DBE00][000001BC237E24A0 66] Android_PowerVR_G6xxx, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236DBC80][000001BC237E0010 66] Android_PowerVR_GT7xxx, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236DBB00][000001BC237FDB70 66] Android_PowerVR_GE8xxx, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236DB980][000001BC237FB6E0 66] Android_PowerVR_GM9xxx, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236DB800][000001BC237F9250 66] Android_PowerVR_GM9xxx_Vulkan, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236DB680][000001BC237F6DC0 66] Android_TegraK1, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236DB500][000001BC237F4930 66] Android_Unknown_Vulkan, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236DB380][000001BC237F24A0 66] Oculus_Quest, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236DB200][000001BC237F0010 66] Oculus_Quest2, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236DB080][000001BC2380DB70 66] Meta_Quest_Pro, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236DAF00][000001BC2380B6E0 66] Meta_Quest_3, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236DAD80][000001BC23809250 66] HoloLens, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: 	[000001BC236DAC00][000001BC23806DC0 66] MagicLeap_Vulkan, 
+[2024.08.02-07.27.18:884][  0]LogDeviceProfileManager: Active device profile: [000001BC2347CB80][000001BC22490010 66] Windows
+[2024.08.02-07.27.18:884][  0]LogCsvProfiler: Display: Metadata set : deviceprofile="Windows"
+[2024.08.02-07.27.19:227][  0]LogTextureEncodingSettings: Display: Texture Encode Speed: Final (cook).
+[2024.08.02-07.27.19:227][  0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal
+[2024.08.02-07.27.19:230][  0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled
+[2024.08.02-07.27.19:290][  0]LogPackageLocalizationCache: Processed 62 localized package path(s) for 1 prioritized culture(s) in 0.000132 seconds
+[2024.08.02-07.27.19:349][  0]LogStaticMesh: [SM_LightCardPlane] Mesh is marked for CPU read.
+[2024.08.02-07.27.19:351][  0]LogStaticMesh: [plane_hd_1x1] Mesh is marked for CPU read.
+[2024.08.02-07.27.19:360][  0]LogConfig: Warning: FConfigCacheIni::LoadFile failed loading file as it was 0 size.  Filename was:  ../../../MetaCastBachelor/Config/Demo.ini
+[2024.08.02-07.27.19:366][  0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
+[2024.08.02-07.27.19:366][  0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
+[2024.08.02-07.27.19:427][  0]LogMoviePlayer: Initializing movie player
+[2024.08.02-07.27.19:430][  0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: C8E0C1104E27303F581FC2B4EE00E677 | Instance: 1D1FFA9F48212A00A2A29AAFAD075FBD (ITC22160-55808).
+[2024.08.02-07.27.19:456][  0]LogAudio: Display: Registering Engine Module Parameter Interfaces...
+[2024.08.02-07.27.19:456][  0]LogMetasoundEngine: MetaSound Engine Initialized
+[2024.08.02-07.27.19:460][  0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance
+[2024.08.02-07.27.19:460][  0]LogSlateStyle: Warning: Missing Resource from 'CoreStyle' Style: 'Unable to find Brush 'Sequencer.Timeline.VanillaScrubHandleDown'.'
+[2024.08.02-07.27.19:460][  0]LogDisplayClusterModule: Instantiating subsystem managers...
+[2024.08.02-07.27.19:460][  0]LogDisplayClusterRender: Registering factory for rendering device type: dc_dev_mono
+[2024.08.02-07.27.19:460][  0]LogDisplayClusterRender: Registered factory for rendering device type: dc_dev_mono
+[2024.08.02-07.27.19:460][  0]LogDisplayClusterRender: Registering factory for rendering device type: quad_buffer_stereo
+[2024.08.02-07.27.19:460][  0]LogDisplayClusterRender: Registered factory for rendering device type: quad_buffer_stereo
+[2024.08.02-07.27.19:460][  0]LogDisplayClusterRender: Registering factory for rendering device type: dc_dev_side_by_side
+[2024.08.02-07.27.19:460][  0]LogDisplayClusterRender: Registered factory for rendering device type: dc_dev_side_by_side
+[2024.08.02-07.27.19:460][  0]LogDisplayClusterRender: Registering factory for rendering device type: dc_dev_top_bottom
+[2024.08.02-07.27.19:460][  0]LogDisplayClusterRender: Registered factory for rendering device type: dc_dev_top_bottom
+[2024.08.02-07.27.19:460][  0]LogDisplayClusterRender: Registering factory for synchronization policy: none
+[2024.08.02-07.27.19:460][  0]LogDisplayClusterRender: Registered factory for synchronization policy: none
+[2024.08.02-07.27.19:460][  0]LogDisplayClusterRender: Registering factory for synchronization policy: ethernet
+[2024.08.02-07.27.19:460][  0]LogDisplayClusterRender: Registered factory for synchronization policy: ethernet
+[2024.08.02-07.27.19:460][  0]LogDisplayClusterRender: Registering factory for synchronization policy: ethernet_barrier
+[2024.08.02-07.27.19:460][  0]LogDisplayClusterRender: Registered factory for synchronization policy: ethernet_barrier
+[2024.08.02-07.27.19:460][  0]LogDisplayClusterRender: Registering factory for synchronization policy: nvidia
+[2024.08.02-07.27.19:460][  0]LogDisplayClusterRender: Registered factory for synchronization policy: nvidia
+[2024.08.02-07.27.19:460][  0]LogDisplayClusterModule: DisplayCluster module has been started
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterProjectionVIOSO: VIOSO API(1,6,19,90) was initialized from file '../../../Engine/Plugins/Runtime/nDisplay/ThirdParty/VIOSO/DLL/ViosoWarpBlend64.dll'.
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterProjection: Projection module has been instantiated
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterProjection: Projection module startup
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterProjection: Registering <camera> projection policy factory...
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterRender: Registering factory for projection type: camera
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterRender: Registered factory for projection type: camera
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterProjection: Registering <domeprojection> projection policy factory...
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterRender: Registering factory for projection type: domeprojection
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterRender: Registered factory for projection type: domeprojection
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterProjection: Registering <easyblend> projection policy factory...
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterRender: Registering factory for projection type: easyblend
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterRender: Registered factory for projection type: easyblend
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterProjection: Registering <link> projection policy factory...
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterRender: Registering factory for projection type: link
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterRender: Registered factory for projection type: link
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterProjection: Registering <manual> projection policy factory...
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterRender: Registering factory for projection type: manual
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterRender: Registered factory for projection type: manual
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterProjection: Registering <mpcdi> projection policy factory...
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterRender: Registering factory for projection type: mpcdi
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterRender: Registered factory for projection type: mpcdi
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterProjection: Registering <mesh> projection policy factory...
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterRender: Registering factory for projection type: mesh
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterRender: Registered factory for projection type: mesh
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterProjection: Registering <simple> projection policy factory...
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterRender: Registering factory for projection type: simple
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterRender: Registered factory for projection type: simple
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterProjection: Registering <vioso> projection policy factory...
+[2024.08.02-07.27.19:464][  0]LogDisplayClusterRender: Registering factory for projection type: vioso
+[2024.08.02-07.27.19:465][  0]LogDisplayClusterRender: Registered factory for projection type: vioso
+[2024.08.02-07.27.19:465][  0]LogDisplayClusterProjection: Projection module has started
+[2024.08.02-07.27.19:465][  0]LogDisplayClusterRemoteControlInterceptor: DisplayClusterRemoteControlInterceptor has been registered
+[2024.08.02-07.27.19:465][  0]LogDisplayClusterMedia: Starting module 'DisplayClusterMedia'...
+[2024.08.02-07.27.19:465][  0]GPUPointCloudRenderer: //////////////////////////////////////////// 
+
+[2024.08.02-07.27.19:465][  0]GPUPointCloudRenderer: // Initializing GPU Point Cloud Renderer... 
+
+[2024.08.02-07.27.19:465][  0]GPUPointCloudRenderer: //////////////////////////////////////////// 
+
+[2024.08.02-07.27.19:474][  0]LogUObjectArray: 25084 objects as part of root set at end of initial load.
+[2024.08.02-07.27.19:474][  0]LogUObjectArray: 4 objects are not in the root set, but can never be destroyed because they are in the DisregardForGC set.
+[2024.08.02-07.27.19:474][  0]LogUObjectAllocator: 5582112 out of 0 bytes used by permanent object pool.
+[2024.08.02-07.27.19:474][  0]LogUObjectArray: CloseDisregardForGC: 25084/25084 objects in disregard for GC pool
+[2024.08.02-07.27.19:484][  0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 24348 public script object entries (639.99 KB)
+[2024.08.02-07.27.19:484][  0]LogStreaming: Display: AsyncLoading2 - Thread Started: true, IsInitialLoad: false
+[2024.08.02-07.27.19:485][  0]LogEngine: Initializing Engine...
+[2024.08.02-07.27.19:512][  0]LogHMD: HMD configured for shader platform PCD3D_SM6, bIsMobileMultiViewEnabled=0, bProjectionLayerAlphaEnabled=0
+[2024.08.02-07.27.23:079][  0]LogStats: UGameplayTagsManager::InitializeManager -  0.000 s
+[2024.08.02-07.27.23:086][  0]LogInit: Initializing FReadOnlyCVARCache
+[2024.08.02-07.27.23:086][  0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use.
+[2024.08.02-07.27.23:086][  0]LogInit: Texture streaming: Enabled
+[2024.08.02-07.27.23:086][  0]LogAudio: Display: Initializing Audio Device Manager...
+[2024.08.02-07.27.23:086][  0]LogAudio: Display: Loading Default Audio Settings Objects...
+[2024.08.02-07.27.23:086][  0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load).
+[2024.08.02-07.27.23:086][  0]LogAudio: Display: AudioInfo: 'BINKA' Registered
+[2024.08.02-07.27.23:086][  0]LogAudio: Display: AudioInfo: 'PCM' Registered
+[2024.08.02-07.27.23:086][  0]LogAudio: Display: AudioInfo: 'ADPCM' Registered
+[2024.08.02-07.27.23:086][  0]LogAudio: Display: AudioInfo: 'OGG' Registered
+[2024.08.02-07.27.23:086][  0]LogAudio: Display: AudioInfo: 'OPUS' Registered
+[2024.08.02-07.27.23:086][  0]LogAudio: Display: Audio Device Manager Initialized
+[2024.08.02-07.27.23:086][  0]LogAudio: Display: Creating Audio Device:                 Id: 1, Scope: Shared, Realtime: True
+[2024.08.02-07.27.23:086][  0]LogAudioMixer: Display: Audio Mixer Platform Settings:
+[2024.08.02-07.27.23:086][  0]LogAudioMixer: Display: 	Sample Rate:						  48000
+[2024.08.02-07.27.23:086][  0]LogAudioMixer: Display: 	Callback Buffer Frame Size Requested: 1024
+[2024.08.02-07.27.23:086][  0]LogAudioMixer: Display: 	Callback Buffer Frame Size To Use:	  1024
+[2024.08.02-07.27.23:086][  0]LogAudioMixer: Display: 	Number of buffers to queue:			  1
+[2024.08.02-07.27.23:086][  0]LogAudioMixer: Display: 	Max Channels (voices):				  32
+[2024.08.02-07.27.23:086][  0]LogAudioMixer: Display: 	Number of Async Source Workers:		  4
+[2024.08.02-07.27.23:086][  0]LogAudio: Display: AudioDevice MaxSources: 32
+[2024.08.02-07.27.23:086][  0]LogAudio: Display: Audio Spatialization Plugin: None (built-in).
+[2024.08.02-07.27.23:086][  0]LogAudio: Display: Audio Reverb Plugin: None (built-in).
+[2024.08.02-07.27.23:086][  0]LogAudio: Display: Audio Occlusion Plugin: None (built-in).
+[2024.08.02-07.27.23:101][  0]LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded.
+[2024.08.02-07.27.23:101][  0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2'
+[2024.08.02-07.27.23:177][  0]LogAudioMixer: Display: Using Audio Hardware Device Lautsprecher (3- Realtek USB2.0 Audio)
+[2024.08.02-07.27.23:178][  0]LogAudioMixer: Display: Initializing Sound Submixes...
+[2024.08.02-07.27.23:179][  0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault'
+[2024.08.02-07.27.23:179][  0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault'
+[2024.08.02-07.27.23:181][  0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1
+[2024.08.02-07.27.23:181][  0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1
+[2024.08.02-07.27.23:181][  0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1
+[2024.08.02-07.27.23:181][  0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1
+[2024.08.02-07.27.23:181][  0]LogInit: FAudioDevice initialized with ID 1.
+[2024.08.02-07.27.23:181][  0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1
+[2024.08.02-07.27.23:182][  0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1"
+[2024.08.02-07.27.23:183][  0]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created!
+[2024.08.02-07.27.23:183][  0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
+[2024.08.02-07.27.23:185][  0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'.
+[2024.08.02-07.27.23:186][  0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
+[2024.08.02-07.27.23:186][  0]LogInit: Display: Game Engine Initialized.
+[2024.08.02-07.27.23:187][  0]LogWindows: Attached monitors:
+[2024.08.02-07.27.23:187][  0]LogWindows:     resolution: 1920x1080, work area: (1920, 0) -> (3840, 1040), device: '\\.\DISPLAY2'
+[2024.08.02-07.27.23:187][  0]LogWindows:     resolution: 1920x1080, work area: (0, 0) -> (1920, 1040), device: '\\.\DISPLAY1' [PRIMARY]
+[2024.08.02-07.27.23:187][  0]LogWindows: Found 2 attached monitors.
+[2024.08.02-07.27.23:187][  0]LogWindows: Gathering driver information using Windows Setup API
+[2024.08.02-07.27.23:188][  0]LogInit: Display: Starting Game.
+[2024.08.02-07.27.23:188][  0]LogNet: Browse: /Game/Maps/Login?Name=Player
+[2024.08.02-07.27.23:188][  0]LogLoad: LoadMap: /Game/Maps/Login?Name=Player
+[2024.08.02-07.27.23:188][  0]LogWorld: BeginTearingDown for /Temp/Untitled_0
+[2024.08.02-07.27.23:188][  0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true
+[2024.08.02-07.27.23:188][  0]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.27.23:194][  0]LogRHI: Display: Encountered a new compute PSO: 108100765
+[2024.08.02-07.27.23:196][  0]LogRHI: Display: Encountered a new compute PSO: 3044213281
+[2024.08.02-07.27.23:197][  0]LogRHI: Display: Encountered a new compute PSO: 3441300143
+[2024.08.02-07.27.23:206][  0]LogAudio: Display: Audio Device unregistered from world 'None'.
+[2024.08.02-07.27.23:206][  0]LogStreaming: Display: 0.001 ms for processing 44 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 0 (163->163) packages and 0 (167->167) public exports.
+[2024.08.02-07.27.23:208][  0]LogUObjectHash: Compacting FUObjectHashTables data took   0.70ms
+[2024.08.02-07.27.23:242][  0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Login'.
+[2024.08.02-07.27.23:242][  0]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created!
+[2024.08.02-07.27.23:242][  0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
+[2024.08.02-07.27.23:244][  0]LogAIModule: Creating AISystem for world Login
+[2024.08.02-07.27.23:263][  0]LogRHI: Display: Encountered a new compute PSO: 1624740199
+[2024.08.02-07.27.23:263][  0]LogRHI: Display: Encountered a new compute PSO: 3081443093
+[2024.08.02-07.27.23:264][  0]LogRHI: Display: Encountered a new compute PSO: 434897211
+[2024.08.02-07.27.23:265][  0]LogLoad: Game class is 'VRGameMode_C'
+[2024.08.02-07.27.23:267][  0]LogWorld: Bringing World /Game/Maps/Login.Login up for play (max tick rate 0) at 2024.08.02-09.27.23
+[2024.08.02-07.27.23:267][  0]LogWorld: Bringing up level for play took: 0.001310
+[2024.08.02-07.27.23:268][  0]LogGameMode: FindPlayerStart: PATHS NOT DEFINED or NO PLAYERSTART with positive rating
+[2024.08.02-07.27.23:275][  0]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1
+[2024.08.02-07.27.23:275][  0]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.27.23:280][  0]LogSlate: Took 0.000525 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoRegular.ufont' (155K)
+[2024.08.02-07.27.23:280][  0]vr.PixelDensity = "1"
+[2024.08.02-07.27.23:280][  0]LogLoad: Took 0.092418 seconds to LoadMap(/Game/Maps/Login)
+[2024.08.02-07.27.23:281][  0]LogSlate: Took 0.000401 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoBold.ufont' (160K)
+[2024.08.02-07.27.23:282][  0]LogViewport: Scene viewport resized to 1920x1080, mode WindowedFullscreen.
+[2024.08.02-07.27.23:285][  0]LogHMD: Warning: Requesting 10 bit swapchain, but not supported: fall back to 8bpc
+[2024.08.02-07.27.23:339][  0]LogSlate: Took 0.000452 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K)
+[2024.08.02-07.27.23:340][  0]LogRHI: Display: ShaderPipelineCache: Paused Batching. 1
+[2024.08.02-07.27.23:340][  0]LogPakFile: AllPaks IndexSizes: DirectoryHashSize=193072, PathHashSize=16, EntriesSize=32752, TotalSize=225840
+[2024.08.02-07.27.23:340][  0]LogRHI: Display: ShaderPipelineCache: Resumed Batching. 0
+[2024.08.02-07.27.23:340][  0]LogRHI: Display: ShaderPipelineCache: Batching Resumed.
+[2024.08.02-07.27.23:341][  0]LogRenderer: Warning: Resizing VR buffer to 2656 by 1300
+[2024.08.02-07.27.23:345][  0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init()
+[2024.08.02-07.27.23:346][  0]LogLoad: (Engine Initialization) Total time: 6.19 seconds
+[2024.08.02-07.27.23:351][  0]LogSlate: Took 0.000425 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K)
+[2024.08.02-07.27.23:383][  0]LogRHI: Display: Encountered a new compute PSO: 4084646486
+[2024.08.02-07.27.23:383][  0]LogRHI: Display: Encountered a new graphics PSO: 438169823
+[2024.08.02-07.27.23:383][  0]LogRHI: Display: Encountered a new compute PSO: 812371551
+[2024.08.02-07.27.23:383][  0]LogRHI: Display: Encountered a new graphics PSO: 2996660223
+[2024.08.02-07.27.23:383][  0]LogRHI: Display: Encountered a new compute PSO: 3071658855
+[2024.08.02-07.27.23:383][  0]LogRHI: Display: Encountered a new compute PSO: 3707458169
+[2024.08.02-07.27.23:383][  0]LogRHI: Display: Encountered a new compute PSO: 1983791817
+[2024.08.02-07.27.23:383][  0]LogRHI: Display: Encountered a new compute PSO: 3265167958
+[2024.08.02-07.27.23:383][  0]LogRHI: Display: Encountered a new graphics PSO: 568850401
+[2024.08.02-07.27.23:383][  0]LogRHI: Display: Encountered a new compute PSO: 1980351999
+[2024.08.02-07.27.23:383][  0]LogRHI: Display: Encountered a new graphics PSO: 1857403627
+[2024.08.02-07.27.23:383][  0]LogRHI: Display: Encountered a new graphics PSO: 2789720086
+[2024.08.02-07.27.23:384][  0]LogRHI: Display: Encountered a new graphics PSO: 1680577637
+[2024.08.02-07.27.23:385][  0]LogRHI: Display: Encountered a new graphics PSO: 2141321626
+[2024.08.02-07.27.23:402][  0]LogRHI: Display: Encountered a new graphics PSO: 3396054539
+[2024.08.02-07.27.23:564][  0]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.27.23:567][  0]LogContentStreaming: Texture pool size now 1000 MB
+[2024.08.02-07.27.23:594][  2]LogRHI: Display: Encountered a new compute PSO: 3916353388
+[2024.08.02-07.27.23:594][  2]LogRHI: Display: Encountered a new compute PSO: 1213868836
+[2024.08.02-07.27.23:595][  2]LogRHI: Display: Encountered a new graphics PSO: 392357091
+[2024.08.02-07.27.23:595][  2]LogRHI: Display: Encountered a new graphics PSO: 2989811062
+[2024.08.02-07.27.23:595][  2]LogRHI: Display: Encountered a new compute PSO: 3415796330
+[2024.08.02-07.27.23:595][  2]LogRHI: Display: Encountered a new compute PSO: 3156736644
+[2024.08.02-07.27.23:595][  2]LogRHI: Display: Encountered a new compute PSO: 2377609249
+[2024.08.02-07.27.23:595][  2]LogRHI: Display: Encountered a new compute PSO: 1481873912
+[2024.08.02-07.27.23:595][  2]LogRHI: Display: Encountered a new compute PSO: 36000004
+[2024.08.02-07.27.23:595][  2]LogRHI: Display: Encountered a new compute PSO: 1496384869
+[2024.08.02-07.27.23:595][  2]LogRHI: Display: Encountered a new compute PSO: 3810519787
+[2024.08.02-07.27.23:595][  2]LogRHI: Display: Encountered a new compute PSO: 2607838988
+[2024.08.02-07.27.23:595][  2]LogRHI: Display: Encountered a new compute PSO: 1838702928
+[2024.08.02-07.27.23:595][  2]LogRHI: Display: Encountered a new graphics PSO: 2274179198
+[2024.08.02-07.27.23:595][  2]LogRHI: Display: Encountered a new compute PSO: 2045927908
+[2024.08.02-07.27.23:595][  2]LogRHI: Display: Encountered a new compute PSO: 3560210858
+[2024.08.02-07.27.23:595][  2]LogRHI: Display: Encountered a new compute PSO: 2137981577
+[2024.08.02-07.27.23:595][  2]LogRHI: Display: Encountered a new compute PSO: 3509667929
+[2024.08.02-07.27.23:595][  2]LogRHI: Display: Encountered a new compute PSO: 309180451
+[2024.08.02-07.27.23:595][  2]LogRHI: Display: Encountered a new compute PSO: 676159369
+[2024.08.02-07.27.23:596][  2]LogRHI: Display: Encountered a new compute PSO: 831929746
+[2024.08.02-07.27.23:596][  2]LogRHI: Display: Encountered a new compute PSO: 2399646039
+[2024.08.02-07.27.23:596][  2]LogRHI: Display: Encountered a new compute PSO: 3137437172
+[2024.08.02-07.27.23:596][  2]LogRHI: Display: Encountered a new compute PSO: 3360497970
+[2024.08.02-07.27.23:596][  2]LogRHI: Display: Encountered a new graphics PSO: 3670865199
+[2024.08.02-07.27.23:596][  2]LogRHI: Display: Encountered a new compute PSO: 2077624189
+[2024.08.02-07.27.23:596][  2]LogRHI: Display: Encountered a new compute PSO: 724033258
+[2024.08.02-07.27.23:596][  2]LogRHI: Display: Encountered a new graphics PSO: 1044072120
+[2024.08.02-07.27.23:597][  2]LogRHI: Display: Encountered a new graphics PSO: 3377188663
+[2024.08.02-07.27.23:597][  2]LogRHI: Display: Encountered a new compute PSO: 4090296402
+[2024.08.02-07.27.23:597][  2]LogRHI: Display: Encountered a new graphics PSO: 4210484662
+[2024.08.02-07.27.23:597][  2]LogRHI: Display: Encountered a new graphics PSO: 977987442
+[2024.08.02-07.27.23:598][  2]LogRHI: Display: Encountered a new compute PSO: 710140861
+[2024.08.02-07.27.23:599][  2]LogRHI: Display: Encountered a new graphics PSO: 1487777183
+[2024.08.02-07.27.23:599][  2]LogRHI: Display: Encountered a new compute PSO: 3886170959
+[2024.08.02-07.27.23:600][  2]LogRHI: Display: Encountered a new graphics PSO: 3898165938
+[2024.08.02-07.27.23:600][  2]LogRHI: Display: Encountered a new graphics PSO: 2376581795
+[2024.08.02-07.27.23:600][  2]LogRHI: Display: Encountered a new graphics PSO: 3776468594
+[2024.08.02-07.27.23:601][  2]LogRHI: Display: Encountered a new graphics PSO: 3126438517
+[2024.08.02-07.27.23:603][  2]LogRHI: Display: Encountered a new compute PSO: 349008682
+[2024.08.02-07.27.23:865][  2]LogD3D12RHI: Cannot end block when stack is empty
+[2024.08.02-07.27.23:867][  2]LogRHI: Display: Encountered a new graphics PSO: 1601640264
+[2024.08.02-07.27.23:867][  2]LogRHI: Display: Encountered a new graphics PSO: 2881236056
+[2024.08.02-07.27.23:867][  2]LogHMD: SetSpectatorScreenMode(7).
+[2024.08.02-07.27.23:881][  3]LogRHI: Display: Encountered a new graphics PSO: 1324910427
+[2024.08.02-07.27.23:881][  3]LogRHI: Display: Encountered a new graphics PSO: 1796231892
+[2024.08.02-07.27.23:921][  6]LogRHI: Display: Encountered a new graphics PSO: 1475094606
+[2024.08.02-07.27.23:921][  6]LogRHI: Display: Encountered a new graphics PSO: 3836121350
+[2024.08.02-07.27.26:302][217]LogBlueprintUserMessages: [LoginManager_C_1] 44
+[2024.08.02-07.27.26:305][217]LogTemp: Initialized Participant ID: 44
+[2024.08.02-07.27.26:323][219]LogProfilingDebugging: Allocated a 1024 x 1024 texture for HMD canvas layer
+[2024.08.02-07.27.26:323][219]LogRHI: Display: Encountered a new graphics PSO: 1502675884
+[2024.08.02-07.27.26:338][220]LogRHI: Display: Encountered a new graphics PSO: 4069790606
+[2024.08.02-07.27.26:510][233]LogHMD: SetSpectatorScreenMode(7).
+[2024.08.02-07.27.26:510][233]LogBlueprintUserMessages: [LoginManager_C_1] Initialized!
+[2024.08.02-07.27.29:608][512]LogBlueprintUserMessages: [LoginManager_C_1] Starting Condition: MetaPoint
+[2024.08.02-07.27.31:318][666]LogRHI: Display: Encountered a new graphics PSO: 2384109491
+[2024.08.02-07.27.31:318][666]LogRHI: Display: Encountered a new graphics PSO: 2900977544
+[2024.08.02-07.27.32:275][752]LogRHI: Display: Encountered a new graphics PSO: 3889033541
+[2024.08.02-07.27.32:275][752]LogRHI: Display: Encountered a new graphics PSO: 3309177214
+[2024.08.02-07.27.34:607][962]LogBlueprintUserMessages: [LoginManager_C_1] LOADING CONDITION!
+[2024.08.02-07.27.34:607][962]LogTemp: Loading level: /Game/Maps/MetaPointMap.MetaPointMap
+[2024.08.02-07.27.34:610][963]LogNet: Browse: /Game/Maps/MetaPointMap.MetaPointMap
+[2024.08.02-07.27.34:610][963]LogLoad: LoadMap: /Game/Maps/MetaPointMap.MetaPointMap
+[2024.08.02-07.27.34:610][963]LogWorld: BeginTearingDown for /Game/Maps/Login
+[2024.08.02-07.27.34:611][963]LogWorld: UWorld::CleanupWorld for Login, bSessionEnded=true, bCleanupResources=true
+[2024.08.02-07.27.34:611][963]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.27.34:629][963]LogHMD: Error: Unexpected error on xrBeginFrame. Error code was XR_ERROR_CALL_ORDER_INVALID.
+[2024.08.02-07.27.34:656][963]LogStreaming: Display: 0.030 ms for processing 532 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 63 (265->202) packages and 221 (437->216) public exports.
+[2024.08.02-07.27.34:656][963]LogAudio: Display: Audio Device unregistered from world 'None'.
+[2024.08.02-07.27.34:658][963]LogSlate: Slate User Unregistered.  User Index 8
+[2024.08.02-07.27.34:658][963]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.27.34:659][963]LogUObjectHash: Compacting FUObjectHashTables data took   0.62ms
+[2024.08.02-07.27.34:663][963]LogStreaming: Display: FlushAsyncLoading(103): 1 QueuedPackages, 0 AsyncPackages
+[2024.08.02-07.27.34:696][963]LogPackageName: Warning: TryConvertFilenameToLongPackageName was passed an ObjectPath (/Game/Maps/MetaPointMap.MetaPointMap) rather than a PackageName or FilePath; it will be converted to the PackageName. Accepting ObjectPaths is deprecated behavior and will be removed in a future release; TryConvertFilenameToLongPackageName will fail on ObjectPaths.
+[2024.08.02-07.27.34:708][963]LogAudio: Display: Audio Device (ID: 1) registered with world 'MetaPointMap'.
+[2024.08.02-07.27.34:708][963]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created!
+[2024.08.02-07.27.34:708][963]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
+[2024.08.02-07.27.34:719][963]LogAIModule: Creating AISystem for world MetaPointMap
+[2024.08.02-07.27.34:720][963]LogLoad: Game class is 'VRGameMode_C'
+[2024.08.02-07.27.34:721][963]LogWorld: Bringing World /Game/Maps/MetaPointMap.MetaPointMap up for play (max tick rate 0) at 2024.08.02-09.27.34
+[2024.08.02-07.27.34:721][963]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1
+[2024.08.02-07.27.34:721][963]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.27.34:721][963]LogWorld: Bringing up level for play took: 0.000902
+[2024.08.02-07.27.34:721][963]LogGameMode: FindPlayerStart: PATHS NOT DEFINED or NO PLAYERSTART with positive rating
+[2024.08.02-07.27.34:722][963]LogTemp: Point Cloud Folder: ../../../MetaCastBachelor/Content/Data/data
+[2024.08.02-07.27.34:722][963]LogTemp: Flag Folder: ../../../MetaCastBachelor/Content/Data/flags
+[2024.08.02-07.27.34:725][963]LogTemp: Total Point Cloud Files: 24
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/ball_hemisphere
+[2024.08.02-07.27.34:725][963]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/ball_hemisphere_flags
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/disk
+[2024.08.02-07.27.34:725][963]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/disk_flags
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/fiveellipsolds
+[2024.08.02-07.27.34:725][963]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/fiveellipsolds_flags_1
+[2024.08.02-07.27.34:725][963]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/fiveellipsolds_flags_2
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube1
+[2024.08.02-07.27.34:725][963]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube1_flags_1
+[2024.08.02-07.27.34:725][963]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube1_flags_2
+[2024.08.02-07.27.34:725][963]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube1_flags_3
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube2
+[2024.08.02-07.27.34:725][963]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube2_flags
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube3
+[2024.08.02-07.27.34:725][963]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube3_flags
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/galaxy
+[2024.08.02-07.27.34:725][963]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/galaxy
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/multiEllipsolds
+[2024.08.02-07.27.34:725][963]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/multiEllipsolds
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/nbody1
+[2024.08.02-07.27.34:725][963]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/nbody1_flags
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/nbody2
+[2024.08.02-07.27.34:725][963]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/nbody2_flags
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/snap_animation
+[2024.08.02-07.27.34:725][963]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/snap_animation_flags
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/stringf
+[2024.08.02-07.27.34:725][963]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/stringf
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/stringf1
+[2024.08.02-07.27.34:725][963]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/stringf1
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/strings
+[2024.08.02-07.27.34:725][963]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/strings
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/three_rings
+[2024.08.02-07.27.34:725][963]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/three_rings_flags
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_cylinder
+[2024.08.02-07.27.34:725][963]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_cylinder_flags
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_cylinder_2
+[2024.08.02-07.27.34:725][963]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/training_cylinder_2
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_pyramid
+[2024.08.02-07.27.34:725][963]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_pyramid_flags
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_pyramid_2
+[2024.08.02-07.27.34:725][963]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/training_pyramid_2
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_sphere
+[2024.08.02-07.27.34:725][963]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_sphere_flags
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_sphere_2
+[2024.08.02-07.27.34:725][963]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/training_sphere_2
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_torus
+[2024.08.02-07.27.34:725][963]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_torus_flags
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/uniform_Lines
+[2024.08.02-07.27.34:725][963]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/uniform_Lines_flags
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/ununiform_Lines
+[2024.08.02-07.27.34:725][963]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/ununiform_Lines_flags
+[2024.08.02-07.27.34:725][963]LogTemp: Point Cloud Files with No Matching Flags:
+[2024.08.02-07.27.34:725][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/galaxy
+[2024.08.02-07.27.34:725][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/multiEllipsolds
+[2024.08.02-07.27.34:725][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/stringf
+[2024.08.02-07.27.34:725][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/stringf1
+[2024.08.02-07.27.34:725][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/strings
+[2024.08.02-07.27.34:725][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_cylinder_2
+[2024.08.02-07.27.34:725][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_pyramid_2
+[2024.08.02-07.27.34:725][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_sphere_2
+[2024.08.02-07.27.34:725][963]LogTemp: Valid Point Cloud Files with Matching Flags:
+[2024.08.02-07.27.34:725][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/ball_hemisphere
+[2024.08.02-07.27.34:725][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/disk
+[2024.08.02-07.27.34:725][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/fiveellipsolds
+[2024.08.02-07.27.34:725][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube1
+[2024.08.02-07.27.34:726][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube2
+[2024.08.02-07.27.34:726][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube3
+[2024.08.02-07.27.34:726][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/nbody1
+[2024.08.02-07.27.34:726][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/nbody2
+[2024.08.02-07.27.34:726][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/snap_animation
+[2024.08.02-07.27.34:726][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/three_rings
+[2024.08.02-07.27.34:726][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_cylinder
+[2024.08.02-07.27.34:726][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_pyramid
+[2024.08.02-07.27.34:726][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_sphere
+[2024.08.02-07.27.34:726][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_torus
+[2024.08.02-07.27.34:726][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/uniform_Lines
+[2024.08.02-07.27.34:726][963]LogTemp: ../../../MetaCastBachelor/Content/Data/data/ununiform_Lines
+[2024.08.02-07.27.34:746][963]LogTemp: Warning: Loaded 146578 points and flags
+[2024.08.02-07.27.34:748][963]LogTemp: Warning: Minimum: X=0.000 Y=0.000 Z=0.000 ; Maximum: X=100.000 Y=100.000 Z=100.000
+[2024.08.02-07.27.34:813][963]LogTemp: Initializing DensityField!
+[2024.08.02-07.27.34:964][963]LogTemp: Starting density calculation.
+[2024.08.02-07.27.34:972][963]LogTemp: Cleared previous densities.
+[2024.08.02-07.27.35:547][963]LogTemp: Maximum density found: 319.770691
+[2024.08.02-07.27.35:547][963]LogTemp: Minimum density found: 0.000000
+[2024.08.02-07.27.35:547][963]LogTemp: Average density found: 16.587347
+[2024.08.02-07.27.35:547][963]LogTemp: Density calculation completed in 0.582388 seconds.
+[2024.08.02-07.27.35:547][963]LogTemp: Starting gradient calculation.
+[2024.08.02-07.27.35:566][963]LogTemp: Gradient calculation completed.
+[2024.08.02-07.27.35:608][963]LogLoad: Took 0.998693 seconds to LoadMap(/Game/Maps/MetaPointMap.MetaPointMap)
+[2024.08.02-07.27.35:622][963]LogRHI: Display: Encountered a new graphics PSO: 1980780655
+[2024.08.02-07.27.35:623][963]LogRHI: Display: Encountered a new graphics PSO: 3450231069
+[2024.08.02-07.27.35:623][963]LogUObjectGlobals: Warning: Gamethread hitch waiting for resource cleanup on a UObject (PointCloudMeshComponent /Game/Maps/MetaPointMap.MetaPointMap:PersistentLevel.BP_PointCloud_C_1.GPUPointCloudRenderer.PointCloud Mesh) overwrite took  13.65ms. Fix the higher level code so that this does not happen.
+[2024.08.02-07.27.35:744][965]LogRHI: Display: Encountered a new graphics PSO: 3384699161
+[2024.08.02-07.27.35:744][965]LogRHI: Display: Encountered a new graphics PSO: 909860731
+[2024.08.02-07.27.38:530][215]LogRHI: Display: Encountered a new graphics PSO: 813189182
+[2024.08.02-07.28.24:507][ 32]LogStreaming: Display: 0.010 ms for processing 75 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 0 (325->325) packages and 66 (888->822) public exports.
+[2024.08.02-07.29.02:014][109]LogTemp: Resetting to index 1
+[2024.08.02-07.29.02:022][109]LogTemp: Warning: Loaded 100000 points and flags
+[2024.08.02-07.29.02:024][109]LogTemp: Warning: Minimum: X=0.000 Y=0.000 Z=0.000 ; Maximum: X=100.000 Y=100.000 Z=100.000
+[2024.08.02-07.29.02:025][109]LogUObjectGlobals: Warning: Gamethread hitch waiting for resource cleanup on a UObject (PointCloudMeshComponent /Game/Maps/MetaPointMap.MetaPointMap:PersistentLevel.BP_PointCloud_C_1.GPUPointCloudRenderer.PointCloud Mesh) overwrite took   0.00ms. Fix the higher level code so that this does not happen.
+[2024.08.02-07.29.02:059][109]LogTemp: Initializing DensityField!
+[2024.08.02-07.29.02:207][109]LogTemp: Starting density calculation.
+[2024.08.02-07.29.02:215][109]LogTemp: Cleared previous densities.
+[2024.08.02-07.29.02:719][109]LogTemp: Maximum density found: 1772.134766
+[2024.08.02-07.29.02:719][109]LogTemp: Minimum density found: 0.000000
+[2024.08.02-07.29.02:719][109]LogTemp: Average density found: 11.313632
+[2024.08.02-07.29.02:719][109]LogTemp: Density calculation completed in 0.511294 seconds.
+[2024.08.02-07.29.02:719][109]LogTemp: Starting gradient calculation.
+[2024.08.02-07.29.02:738][109]LogTemp: Gradient calculation completed.
+[2024.08.02-07.29.02:741][109]LogUObjectGlobals: Warning: Gamethread hitch waiting for resource cleanup on a UObject (PointCloudMeshComponent /Game/Maps/MetaPointMap.MetaPointMap:PersistentLevel.BP_PointCloud_C_1.GPUPointCloudRenderer.PointCloud Mesh) overwrite took   1.05ms. Fix the higher level code so that this does not happen.
+[2024.08.02-07.29.25:606][149]LogStreaming: Display: 0.001 ms for processing 2 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 0 (325->325) packages and 0 (822->822) public exports.
+[2024.08.02-07.29.36:508][130]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.36:517][131]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.36:527][132]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.36:539][133]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.36:550][134]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.36:561][135]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.36:572][136]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.36:583][137]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.36:594][138]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.36:605][139]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.37:886][254]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.37:895][255]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.37:905][256]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.37:918][257]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.37:928][258]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.37:939][259]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.37:949][260]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.37:961][261]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.37:972][262]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.37:983][263]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.37:994][264]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.38:006][265]LogTemp: Warning: Start index -1 is invalid.
+[2024.08.02-07.29.39:137][367]LogWindowsDesktop: Alt-F4 pressed!
+[2024.08.02-07.29.39:138][367]LogSlate: Request Window 'MetaCastBachelor (64-bit Development PCD3D_SM6) ' being destroyed
+[2024.08.02-07.29.39:150][367]LogSlate: Window 'MetaCastBachelor (64-bit Development PCD3D_SM6) ' being destroyed
+[2024.08.02-07.29.39:151][367]LogWindowsTextInputMethodSystem: Activated input method: German (Germany) - (Keyboard).
+[2024.08.02-07.29.39:164][367]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
+[2024.08.02-07.29.39:164][367]LogEngine: All Windows Closed
+[2024.08.02-07.29.39:164][367]LogWindows: FPlatformMisc::RequestExit(0, UGameEngine::Tick.ViewportClosed)
+[2024.08.02-07.29.39:164][367]LogWindows: FPlatformMisc::RequestExitWithStatus(0, 0, UGameEngine::Tick.ViewportClosed)
+[2024.08.02-07.29.39:164][367]LogCore: Engine exit requested (reason: Win RequestExit)
+[2024.08.02-07.29.39:167][368]LogCore: Engine exit requested (reason: EngineExit() was called; note: exit was already requested)
+[2024.08.02-07.29.39:167][368]LogInit: Display: PreExit Game.
+[2024.08.02-07.29.39:168][368]LogWorld: BeginTearingDown for /Game/Maps/MetaPointMap
+[2024.08.02-07.29.39:169][368]LogWorld: UWorld::CleanupWorld for MetaPointMap, bSessionEnded=true, bCleanupResources=true
+[2024.08.02-07.29.39:169][368]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.29.40:193][368]LogAudio: Display: Beginning Audio Device Manager Shutdown (Module: AudioMixerXAudio2)...
+[2024.08.02-07.29.40:193][368]LogAudio: Display: Destroying 1 Remaining Audio Device(s)...
+[2024.08.02-07.29.40:193][368]LogAudio: Display: Audio Device unregistered from world 'MetaPointMap'.
+[2024.08.02-07.29.40:193][368]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 1
+[2024.08.02-07.29.40:223][368]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1
+[2024.08.02-07.29.40:224][368]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1
+[2024.08.02-07.29.40:232][368]LogAudio: Display: Audio Device Manager Shutdown
+[2024.08.02-07.29.40:236][368]LogExit: Preparing to exit.
+[2024.08.02-07.29.40:236][368]LogMoviePlayer: Shutting down movie player
+[2024.08.02-07.29.40:240][368]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
+[2024.08.02-07.29.40:253][368]LogExit: Game engine shut down
+[2024.08.02-07.29.40:255][368]LogDemo: Cleaned up 0 splitscreen connections, owner deletion: enabled
+[2024.08.02-07.29.40:300][368]LogExit: Object subsystem successfully closed.
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module AutomationController (496)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module AutomationWorker (494)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module Voice (492)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module AIModule (490)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module GameplayDebugger (489)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module NavigationSystem (487)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module OpenXRInput (484)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module WmfMediaFactory (482)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module WebMMediaFactory (480)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module WebMMedia (478)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module OpenExrWrapper (476)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module ImgMediaFactory (474)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module AvfMediaFactory (472)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module FractureEngine (470)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module CharacterAI (468)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module SessionServices (466)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module MovieSceneTracks (464)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module MovieScene (462)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module StreamingPauseRendering (460)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module BinkAudioDecoder (458)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module AudioMixerXAudio2 (456)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module AudioMixer (455)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module AudioMixerCore (454)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module TypedElementRuntime (450)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module TypedElementFramework (448)
+[2024.08.02-07.29.40:329][368]LogModuleManager: Shutting down and abandoning module ProfilerService (446)
+[2024.08.02-07.29.40:490][368]LogModuleManager: Shutting down and abandoning module ProfileVisualizer (444)
+[2024.08.02-07.29.40:490][368]LogModuleManager: Shutting down and abandoning module RWTHVRToolkit (442)
+[2024.08.02-07.29.40:490][368]LogModuleManager: Shutting down and abandoning module RWTHVRCluster (440)
+[2024.08.02-07.29.40:490][368]LogModuleManager: Shutting down and abandoning module GPUPointCloudRendererEditor (438)
+[2024.08.02-07.29.40:490][368]LogModuleManager: Shutting down and abandoning module TakeMovieScene (436)
+[2024.08.02-07.29.40:490][368]LogModuleManager: Shutting down and abandoning module RemoteControlInterception (434)
+[2024.08.02-07.29.40:490][368]LogModuleManager: Shutting down and abandoning module CameraCalibrationCoreMovieScene (432)
+[2024.08.02-07.29.40:490][368]LogModuleManager: Shutting down and abandoning module TraceUtilities (430)
+[2024.08.02-07.29.40:490][368]LogModuleManager: Shutting down and abandoning module DisplayClusterReplication (428)
+[2024.08.02-07.29.40:490][368]LogModuleManager: Shutting down and abandoning module SharedMemoryMedia (426)
+[2024.08.02-07.29.40:490][368]LogSharedMemoryMedia: Shutting down module SharedMemoryMedia'...
+[2024.08.02-07.29.40:490][368]LogModuleManager: Shutting down and abandoning module DisplayClusterMedia (424)
+[2024.08.02-07.29.40:490][368]LogDisplayClusterMedia: Shutting down module 'DisplayClusterMedia'...
+[2024.08.02-07.29.40:490][368]LogModuleManager: Shutting down and abandoning module DisplayClusterRemoteControlInterceptor (422)
+[2024.08.02-07.29.40:490][368]LogDisplayClusterRemoteControlInterceptor: DisplayClusterRemoteControlInterceptor has been unregistered
+[2024.08.02-07.29.40:490][368]LogModuleManager: Shutting down and abandoning module DisplayClusterStageMonitoring (420)
+[2024.08.02-07.29.40:490][368]LogModuleManager: Shutting down and abandoning module DisplayClusterScenePreview (418)
+[2024.08.02-07.29.40:490][368]LogModuleManager: Shutting down and abandoning module DisplayClusterMessageInterception (416)
+[2024.08.02-07.29.40:490][368]LogModuleManager: Shutting down and abandoning module DisplayClusterProjection (414)
+[2024.08.02-07.29.40:490][368]LogDisplayClusterProjection: Projection module shutdown
+[2024.08.02-07.29.40:490][368]LogDisplayClusterProjection: Un-registering <camera> projection factory...
+[2024.08.02-07.29.40:490][368]LogDisplayClusterRender: Unregistering factory for projection policy: camera
+[2024.08.02-07.29.40:490][368]LogDisplayClusterRender: Unregistered factory for projection policy: camera
+[2024.08.02-07.29.40:490][368]LogDisplayClusterProjection: Un-registering <domeprojection> projection factory...
+[2024.08.02-07.29.40:490][368]LogDisplayClusterRender: Unregistering factory for projection policy: domeprojection
+[2024.08.02-07.29.40:490][368]LogDisplayClusterRender: Unregistered factory for projection policy: domeprojection
+[2024.08.02-07.29.40:491][368]LogDisplayClusterProjection: Un-registering <easyblend> projection factory...
+[2024.08.02-07.29.40:491][368]LogDisplayClusterRender: Unregistering factory for projection policy: easyblend
+[2024.08.02-07.29.40:491][368]LogDisplayClusterRender: Unregistered factory for projection policy: easyblend
+[2024.08.02-07.29.40:491][368]LogDisplayClusterProjection: Un-registering <link> projection factory...
+[2024.08.02-07.29.40:491][368]LogDisplayClusterRender: Unregistering factory for projection policy: link
+[2024.08.02-07.29.40:491][368]LogDisplayClusterRender: Unregistered factory for projection policy: link
+[2024.08.02-07.29.40:491][368]LogDisplayClusterProjection: Un-registering <manual> projection factory...
+[2024.08.02-07.29.40:491][368]LogDisplayClusterRender: Unregistering factory for projection policy: manual
+[2024.08.02-07.29.40:491][368]LogDisplayClusterRender: Unregistered factory for projection policy: manual
+[2024.08.02-07.29.40:491][368]LogDisplayClusterProjection: Un-registering <mpcdi> projection factory...
+[2024.08.02-07.29.40:491][368]LogDisplayClusterRender: Unregistering factory for projection policy: mpcdi
+[2024.08.02-07.29.40:491][368]LogDisplayClusterRender: Unregistered factory for projection policy: mpcdi
+[2024.08.02-07.29.40:491][368]LogDisplayClusterProjection: Un-registering <mesh> projection factory...
+[2024.08.02-07.29.40:491][368]LogDisplayClusterRender: Unregistering factory for projection policy: mesh
+[2024.08.02-07.29.40:491][368]LogDisplayClusterRender: Unregistered factory for projection policy: mesh
+[2024.08.02-07.29.40:491][368]LogDisplayClusterProjection: Un-registering <simple> projection factory...
+[2024.08.02-07.29.40:491][368]LogDisplayClusterRender: Unregistering factory for projection policy: simple
+[2024.08.02-07.29.40:491][368]LogDisplayClusterRender: Unregistered factory for projection policy: simple
+[2024.08.02-07.29.40:491][368]LogDisplayClusterProjection: Un-registering <vioso> projection factory...
+[2024.08.02-07.29.40:491][368]LogDisplayClusterRender: Unregistering factory for projection policy: vioso
+[2024.08.02-07.29.40:491][368]LogDisplayClusterRender: Unregistered factory for projection policy: vioso
+[2024.08.02-07.29.40:491][368]LogDisplayClusterProjection: Projection module has been destroyed
+[2024.08.02-07.29.40:491][368]LogDisplayClusterProjectionVIOSO: VIOSO API released.
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module DisplayCluster (412)
+[2024.08.02-07.29.40:491][368]LogDisplayClusterModule: Cleaning up internals...
+[2024.08.02-07.29.40:491][368]LogDisplayClusterCluster: Releasing cluster manager...
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module DisplayClusterLightCardExtender (410)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module XRBase (408)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module ResonanceAudio (406)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module OSC (404)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module MobilePatchingUtils (402)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module LiveLinkOverNDisplay (400)
+[2024.08.02-07.29.40:491][368]LogNDisplayLiveLinkSubjectReplicator: Unregistering sync object.
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module InputDebugging (398)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module GooglePAD (396)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module DynamicMesh (394)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module GeometryAlgorithms (392)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module GeometryCacheTracks (390)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module GeometryCache (388)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module AudioWidgets (386)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module AdvancedWidgets (385)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module AudioCapture (382)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module AudioCaptureWasapi (381)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module AssetTags (378)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module ArchVisCharacter (376)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module AppleImageUtils (374)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module AndroidPermission (372)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module ActorLayerUtilities (370)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module TemplateSequence (366)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module SequencerScripting (364)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module UEOpenExrRTTI (362)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineRenderPasses (360)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineSettings (358)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineCore (356)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module MediaPlate (354)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module MediaCompositing (352)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module ImgMedia (350)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module InterchangeCommonParser (348)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module InterchangeDispatcher (346)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module InterchangeExport (344)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module InterchangeMessages (342)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module GLTFCore (340)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module VPSettings (338)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module VPRoles (336)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module StructUtilsEngine (334)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module OpenImageDenoise (332)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module LocalizableMessageBlueprint (330)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module LocalizableMessage (328)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module GeometryCollectionNodes (326)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module GeometryCollectionTracks (324)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module DataflowNodes (322)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module DataflowEnginePlugin (320)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module ChaosUserDataPT (318)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module ChaosNiagara (316)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module BackChannel (314)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module AutomationUtils (312)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module ConsoleVariablesEditorRuntime (310)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module UObjectPlugin (308)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module DumpGPUServices (306)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module MultiUserClientLibrary (304)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module OodleNetworkHandlerComponent (302)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module Composure (300)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module LiveLinkMovieScene (298)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module LiveLinkComponents (296)
+[2024.08.02-07.29.40:491][368]LogModuleManager: Shutting down and abandoning module LiveLink (294)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module ControlRigSpline (292)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module MetaCastBachelor (290)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module UniversalLogging (288)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module Synthesis (286)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module SoundFields (284)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module SignificanceManager (282)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module RigVM (280)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module ProceduralMeshComponent (278)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module MsQuicRuntime (276)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module MetasoundEngineTest (274)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module MetasoundEngine (272)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module WaveTable (271)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module AudioCodecEngine (269)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module MetasoundStandardNodes (266)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module MetasoundFrontend (264)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module MetasoundGenerator (262)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module MetasoundGraphCore (260)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module LocationServicesBPLibrary (258)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module SQLiteCore (256)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module CustomMeshComponent (254)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module CableComponent (252)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module AudioSynesthesia (250)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module AudioAnalyzer (249)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module AudioSynesthesiaCore (246)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module ActorSequence (244)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module UdpMessaging (242)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module TcpMessaging (240)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module ImgMediaEngine (238)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module InterchangePipelines (236)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module InterchangeImport (234)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module InterchangeFactoryNodes (232)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module InterchangeNodes (230)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module NiagaraAnimNotifies (228)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module Niagara (226)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module SignalProcessing (225)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module NiagaraCore (222)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module StructUtils (220)
+[2024.08.02-07.29.40:547][368]LogModuleManager: Shutting down and abandoning module PBIK (218)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module FullBodyIK (216)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module ChaosCaching (214)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module EnhancedInput (212)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module FacialAnimation (210)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module AnimationSharing (208)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module GameplayCameras (206)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module IKRig (204)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module ControlRig (202)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module Constraints (201)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module LevelSequence (199)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module Paper2D (196)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module Kdtree (194)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module WindowsMoviePlayer (192)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module WebMMoviePlayer (190)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module AndroidFileServer (188)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module NetworkReplayStreaming (186)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module PacketHandler (184)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module ClothingSystemRuntimeNv (182)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module MediaAssets (180)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module Overlay (178)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module FunctionalTesting (176)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module MessageLog (174)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module UMG (172)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module SlateReflector (170)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module Slate (168)
+[2024.08.02-07.29.40:548][368]LogModuleManager: Shutting down and abandoning module SlateCore (166)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module MRMesh (164)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module Messaging (162)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module HeadMountedDisplay (160)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module LiveCoding (158)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module Networking (156)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module Core (154)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module ImageWriteQueue (152)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module GPUPointCloudRenderer (150)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module TelemetryUtils (147)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module ImageWrapper (144)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module InputCore (142)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module Settings (140)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module ChaosSolverEngine (138)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module FieldSystemEngine (137)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module Chaos (134)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module GeometryCore (133)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module WindowsPlatformFeatures (130)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module GameplayMediaEncoder (129)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module AVEncoder (128)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module D3D12RHI (124)
+[2024.08.02-07.29.40:549][368]LogModuleManager: Shutting down and abandoning module CameraCalibrationCore (122)
+[2024.08.02-07.29.40:550][368]LogModuleManager: Shutting down and abandoning module DisplayClusterLightCardEditorShaders (120)
+[2024.08.02-07.29.40:550][368]LogModuleManager: Shutting down and abandoning module DisplayClusterConfiguration (118)
+[2024.08.02-07.29.40:550][368]LogModuleManager: Shutting down and abandoning module DisplayClusterShaders (116)
+[2024.08.02-07.29.40:550][368]LogModuleManager: Shutting down and abandoning module WindowsDeviceProfileSelector (114)
+[2024.08.02-07.29.40:550][368]LogModuleManager: Shutting down and abandoning module OpenXRAR (112)
+[2024.08.02-07.29.40:550][368]LogModuleManager: Shutting down and abandoning module AugmentedReality (111)
+[2024.08.02-07.29.40:550][368]LogModuleManager: Shutting down and abandoning module OpenXRHandTracking (108)
+[2024.08.02-07.29.40:550][368]LogSlate: Slate User Destroyed.  User Index 0, Is Virtual User: 0
+[2024.08.02-07.29.40:550][368]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.29.40:550][368]LogModuleManager: Shutting down and abandoning module OpenXRHMD (107)
+[2024.08.02-07.29.40:552][368]LogModuleManager: Shutting down and abandoning module OpenXREyeTracker (104)
+[2024.08.02-07.29.40:552][368]LogModuleManager: Shutting down and abandoning module OpenCVHelper (102)
+[2024.08.02-07.29.40:552][368]LogModuleManager: Shutting down and abandoning module HPMotionController (100)
+[2024.08.02-07.29.40:552][368]LogModuleManager: Shutting down and abandoning module ExampleDeviceProfileSelector (98)
+[2024.08.02-07.29.40:552][368]LogModuleManager: Shutting down and abandoning module ChunkDownloader (96)
+[2024.08.02-07.29.40:552][368]LogModuleManager: Shutting down and abandoning module LauncherChunkInstaller (94)
+[2024.08.02-07.29.40:552][368]LogModuleManager: Shutting down and abandoning module OnlineSubsystem (92)
+[2024.08.02-07.29.40:553][368]LogModuleManager: Shutting down and abandoning module HTTP (87)
+[2024.08.02-07.29.40:583][368]LogModuleManager: Shutting down and abandoning module SSL (86)
+[2024.08.02-07.29.40:583][368]LogModuleManager: Shutting down and abandoning module OnlineSubsystemUtils (82)
+[2024.08.02-07.29.40:583][368]LogModuleManager: Shutting down and abandoning module OnlineServicesCommonEngineUtils (80)
+[2024.08.02-07.29.40:583][368]LogModuleManager: Shutting down and abandoning module OnlineServicesCommon (78)
+[2024.08.02-07.29.40:583][368]LogModuleManager: Shutting down and abandoning module OnlineServicesInterface (76)
+[2024.08.02-07.29.40:583][368]LogModuleManager: Shutting down and abandoning module WmfMedia (74)
+[2024.08.02-07.29.40:584][368]LogModuleManager: Shutting down and abandoning module Media (73)
+[2024.08.02-07.29.40:584][368]LogModuleManager: Shutting down and abandoning module GPUTextureTransfer (70)
+[2024.08.02-07.29.40:584][368]LogModuleManager: Shutting down and abandoning module MediaIOCore (68)
+[2024.08.02-07.29.40:584][368]LogModuleManager: Shutting down and abandoning module ExrReaderGpu (66)
+[2024.08.02-07.29.40:584][368]LogModuleManager: Shutting down and abandoning module NiagaraVertexFactories (64)
+[2024.08.02-07.29.40:584][368]LogModuleManager: Shutting down and abandoning module NiagaraShader (62)
+[2024.08.02-07.29.40:584][368]LogModuleManager: Shutting down and abandoning module VPUtilities (60)
+[2024.08.02-07.29.40:584][368]LogModuleManager: Shutting down and abandoning module ColorCorrectRegions (58)
+[2024.08.02-07.29.40:584][368]LogModuleManager: Shutting down and abandoning module ChaosCloth (56)
+[2024.08.02-07.29.40:584][368]LogModuleManager: Shutting down and abandoning module VariantManagerContent (54)
+[2024.08.02-07.29.40:584][368]LogModuleManager: Shutting down and abandoning module GLTFExporter (52)
+[2024.08.02-07.29.40:584][368]LogModuleManager: Shutting down and abandoning module DatasmithContent (50)
+[2024.08.02-07.29.40:585][368]LogModuleManager: Shutting down and abandoning module RenderDocPlugin (48)
+[2024.08.02-07.29.40:585][368]RenderDocPlugin: plugin has been unloaded.
+[2024.08.02-07.29.40:585][368]LogModuleManager: Shutting down and abandoning module PixWinPlugin (46)
+[2024.08.02-07.29.40:585][368]LogModuleManager: Shutting down and abandoning module OpenColorIO (44)
+[2024.08.02-07.29.40:585][368]LogModuleManager: Shutting down and abandoning module ACLPlugin (42)
+[2024.08.02-07.29.40:585][368]LogModuleManager: Shutting down and abandoning module AISupportModule (40)
+[2024.08.02-07.29.40:585][368]LogModuleManager: Shutting down and abandoning module PythonScriptPluginPreload (38)
+[2024.08.02-07.29.40:585][368]LogModuleManager: Shutting down and abandoning module PlatformCryptoOpenSSL (36)
+[2024.08.02-07.29.40:585][368]LogModuleManager: Shutting down and abandoning module PlatformCryptoTypes (34)
+[2024.08.02-07.29.40:585][368]LogModuleManager: Shutting down and abandoning module PlatformCrypto (32)
+[2024.08.02-07.29.40:585][368]LogModuleManager: Shutting down and abandoning module IoStoreOnDemand (30)
+[2024.08.02-07.29.40:585][368]LogModuleManager: Shutting down and abandoning module RenderCore (28)
+[2024.08.02-07.29.40:585][368]LogModuleManager: Shutting down and abandoning module Landscape (26)
+[2024.08.02-07.29.40:585][368]LogModuleManager: Shutting down and abandoning module SlateRHIRenderer (24)
+[2024.08.02-07.29.40:585][368]LogModuleManager: Shutting down and abandoning module AnimGraphRuntime (22)
+[2024.08.02-07.29.40:586][368]LogModuleManager: Shutting down and abandoning module Renderer (20)
+[2024.08.02-07.29.40:586][368]LogModuleManager: Shutting down and abandoning module Engine (18)
+[2024.08.02-07.29.40:586][368]LogModuleManager: Shutting down and abandoning module CoreUObject (16)
+[2024.08.02-07.29.40:586][368]LogModuleManager: Shutting down and abandoning module SandboxFile (14)
+[2024.08.02-07.29.40:586][368]LogModuleManager: Shutting down and abandoning module PakFile (12)
+[2024.08.02-07.29.40:586][368]LogPakFile: Destroying PakPlatformFile
+[2024.08.02-07.29.40:586][368]LogModuleManager: Shutting down and abandoning module RSA (11)
+[2024.08.02-07.29.40:586][368]LogModuleManager: Shutting down and abandoning module NetworkFile (8)
+[2024.08.02-07.29.40:586][368]LogModuleManager: Shutting down and abandoning module StreamingFile (6)
+[2024.08.02-07.29.40:586][368]LogModuleManager: Shutting down and abandoning module CookOnTheFly (4)
+[2024.08.02-07.29.40:586][368]LogModuleManager: Shutting down and abandoning module StorageServerClient (2)
+[2024.08.02-07.29.40:636][368]LogD3D12RHI: ~FD3D12DynamicRHI
+[2024.08.02-07.29.40:659][368]LogExit: Exiting.
+[2024.08.02-07.29.40:699][368]Log file closed, 08/02/24 09:29:40
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Logs/MetaCastBachelor-backup-2024.08.02-07.33.16.log b/Builds/Windows/MetaCastBachelor/Saved/Logs/MetaCastBachelor-backup-2024.08.02-07.33.16.log
new file mode 100644
index 0000000000000000000000000000000000000000..a4725416d597d0ca77f189a9ca6cac78c7cc8d38
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Logs/MetaCastBachelor-backup-2024.08.02-07.33.16.log
@@ -0,0 +1,1877 @@
+Log file open, 08/02/24 09:32:19
+LogWindows: Failed to load 'aqProf.dll' (GetLastError=126)
+LogWindows: File 'aqProf.dll' does not exist
+LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64).
+LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126)
+LogWindows: File 'VtuneApi.dll' does not exist
+LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126)
+LogWindows: File 'VtuneApi32e.dll' does not exist
+LogWindows: Custom abort handler registered for crash reporting.
+LogCore: Display: UnrealTraceServer: Unable to launch the trace store with '"../../../Engine//Binaries/Win64/UnrealTraceServer.exe" fork' (00000002)
+LogTrace: Initializing trace...
+LogTrace: Finished trace initialization.
+LogCsvProfiler: Display: Metadata set : platform="Windows"
+LogCsvProfiler: Display: Metadata set : config="Development"
+LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.3-CL-29314046"
+LogCsvProfiler: Display: Metadata set : engineversion="5.3.2-29314046+++UE5+Release-5.3"
+LogCsvProfiler: Display: Metadata set : os="Windows 10 (22H2) [10.0.19045.4651] "
+LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|Intel(R) Core(TM) i9-10900X CPU @ 3.70GHz"
+LogCsvProfiler: Display: Metadata set : pgoenabled="0"
+LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0"
+LogCsvProfiler: Display: Metadata set : ltoenabled="0"
+LogCsvProfiler: Display: Metadata set : asan="0"
+LogCsvProfiler: Display: Metadata set : commandline="" MetaCastBachelor""
+LogCsvProfiler: Display: Metadata set : loginid="6cbed587469a168a7370319bba147631"
+LogCsvProfiler: Display: Metadata set : llm="0"
+LogPakFile: Initializing PakPlatformFile
+LogIoDispatcher: Display: Reading toc: ../../../MetaCastBachelor/Content/Paks/global.utoc
+LogIoDispatcher: Display: Toc signature hash: 0000000000000000000000000000000000000000
+LogIoDispatcher: Display: Mounting container '../../../MetaCastBachelor/Content/Paks/global.utoc' in location slot 0
+LogPakFile: Display: Initialized I/O dispatcher file backend. Mounted the global container: ../../../MetaCastBachelor/Content/Paks/global.utoc
+LogPakFile: Display: Found Pak file ../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak attempting to mount.
+LogPakFile: Display: Mounting pak file ../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak.
+LogIoDispatcher: Display: Reading toc: ../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc
+LogIoDispatcher: Display: Toc signature hash: 0000000000000000000000000000000000000000
+LogIoDispatcher: Display: Mounting container '../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc' in location slot 0
+LogPakFile: Display: Mounted IoStore container "../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc"
+LogPakFile: Display: Mounted Pak file '../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak', mount point: '../../../'
+LogStats: Stats thread started at 0.198177
+LogAssetRegistry: Premade AssetRegistry loaded from '../../../MetaCastBachelor/AssetRegistry.bin'
+LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +1:00, Platform Override: ''
+LogInit: Session CrashGUID >====================================================
+         Session CrashGUID >   UECC-Windows-3993C43D42833AFC784EC790C04EACFC
+         Session CrashGUID >====================================================
+LogStreaming: Warning: Failed to read file 'D:/UnrealProjects/MetaCastBachelor/Builds/Windows/Cloud/IoStoreOnDemand.ini' error.
+LogPluginManager: Mounting Engine plugin Paper2D
+LogPluginManager: Mounting Engine plugin AISupport
+LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor
+LogPluginManager: Mounting Engine plugin ACLPlugin
+LogPluginManager: Mounting Engine plugin AnimationData
+LogPluginManager: Mounting Engine plugin ControlRigSpline
+LogPluginManager: Mounting Engine plugin ControlRig
+LogPluginManager: Mounting Engine plugin IKRig
+LogPluginManager: Mounting Engine plugin LiveLink
+LogPluginManager: Mounting Engine plugin Bridge
+LogPluginManager: Mounting Engine plugin CameraShakePreviewer
+LogPluginManager: Mounting Engine plugin GameplayCameras
+LogPluginManager: Mounting Engine plugin Composure
+LogPluginManager: Mounting Engine plugin OpenColorIO
+LogPluginManager: Mounting Engine plugin OodleNetwork
+LogPluginManager: Mounting Engine plugin AnimationSharing
+LogPluginManager: Mounting Engine plugin MultiUserClient
+LogPluginManager: Mounting Engine plugin ConcertMain
+LogPluginManager: Mounting Engine plugin ConcertSyncClient
+LogPluginManager: Mounting Engine plugin ConcertSyncCore
+LogPluginManager: Mounting Engine plugin ConcertSharedSlate
+LogPluginManager: Mounting Engine plugin DumpGPUServices
+LogPluginManager: Mounting Engine plugin PixWinPlugin
+LogPluginManager: Mounting Engine plugin PluginUtils
+LogPluginManager: Mounting Engine plugin RenderDocPlugin
+LogPluginManager: Mounting Engine plugin UObjectPlugin
+LogPluginManager: Mounting Engine plugin AssetManagerEditor
+LogPluginManager: Mounting Engine plugin BlueprintHeaderView
+LogPluginManager: Mounting Engine plugin BlueprintMaterialTextureNodes
+LogPluginManager: Mounting Engine plugin ConsoleVariables
+LogPluginManager: Mounting Engine plugin EditorScriptingUtilities
+LogPluginManager: Mounting Engine plugin FacialAnimation
+LogPluginManager: Mounting Engine plugin GameplayTagsEditor
+LogPluginManager: Mounting Engine plugin GeometryMode
+LogPluginManager: Mounting Engine plugin LightMixer
+LogPluginManager: Mounting Engine plugin ObjectMixer
+LogPluginManager: Mounting Engine plugin SequencerAnimTools
+LogPluginManager: Mounting Engine plugin SpeedTreeImporter
+LogPluginManager: Mounting Engine plugin UVEditor
+LogPluginManager: Mounting Engine plugin EnhancedInput
+LogPluginManager: Found config from plugin[EnhancedInput] Input
+LogPluginManager: Mounting Engine plugin DatasmithContent
+LogPluginManager: Mounting Engine plugin GLTFExporter
+LogPluginManager: Mounting Engine plugin VariantManagerContent
+LogPluginManager: Mounting Engine plugin VariantManager
+LogPluginManager: Mounting Engine plugin AutomationUtils
+LogPluginManager: Mounting Engine plugin BackChannel
+LogPluginManager: Mounting Engine plugin ChaosCaching
+LogPluginManager: Mounting Engine plugin ChaosClothEditor
+LogPluginManager: Mounting Engine plugin ChaosCloth
+LogPluginManager: Mounting Engine plugin ChaosEditor
+LogPluginManager: Mounting Engine plugin ChaosNiagara
+LogPluginManager: Mounting Engine plugin ChaosSolverPlugin
+LogPluginManager: Mounting Engine plugin ChaosUserDataPT
+LogPluginManager: Mounting Engine plugin CharacterAI
+LogPluginManager: Mounting Engine plugin ColorCorrectRegions
+LogPluginManager: Mounting Engine plugin Dataflow
+LogPluginManager: Mounting Engine plugin Fracture
+LogPluginManager: Mounting Engine plugin FullBodyIK
+LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin
+LogPluginManager: Mounting Engine plugin LocalizableMessage
+LogPluginManager: Mounting Engine plugin OpenImageDenoise
+LogPluginManager: Mounting Engine plugin PlatformCrypto
+LogPluginManager: Mounting Engine plugin PythonScriptPlugin
+LogPluginManager: Mounting Engine plugin StructUtils
+LogPluginManager: Mounting Engine plugin ToolPresets
+LogPluginManager: Mounting Engine plugin VirtualProductionUtilities
+LogPluginManager: Mounting Engine plugin VPRoles
+LogPluginManager: Mounting Engine plugin VPSettings
+LogPluginManager: Mounting Engine plugin Niagara
+LogPluginManager: Mounting Engine plugin AlembicImporter
+LogPluginManager: Mounting Engine plugin InterchangeEditor
+LogPluginManager: Mounting Engine plugin Interchange
+LogPluginManager: Mounting Engine plugin AvfMedia
+LogPluginManager: Mounting Engine plugin ImgMedia
+LogPluginManager: Mounting Engine plugin MediaCompositing
+LogPluginManager: Mounting Engine plugin MediaIOFramework
+LogPluginManager: Mounting Engine plugin MediaPlate
+LogPluginManager: Mounting Engine plugin WebMMedia
+LogPluginManager: Mounting Engine plugin WmfMedia
+LogPluginManager: Mounting Engine plugin MeshPainting
+LogPluginManager: Mounting Engine plugin TcpMessaging
+LogPluginManager: Mounting Engine plugin UdpMessaging
+LogPluginManager: Mounting Engine plugin ActorSequence
+LogPluginManager: Mounting Engine plugin LevelSequenceEditor
+LogPluginManager: Mounting Engine plugin MovieRenderPipeline
+LogPluginManager: Mounting Engine plugin SequencerScripting
+LogPluginManager: Mounting Engine plugin TemplateSequence
+LogPluginManager: Mounting Engine plugin OnlineBase
+LogPluginManager: Mounting Engine plugin OnlineServices
+LogPluginManager: Mounting Engine plugin OnlineSubsystemNull
+LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils
+LogPluginManager: Mounting Engine plugin OnlineSubsystem
+LogPluginManager: Mounting Engine plugin LauncherChunkInstaller
+LogPluginManager: Mounting Engine plugin ActorLayerUtilities
+LogPluginManager: Mounting Engine plugin AndroidFileServer
+LogPluginManager: Mounting Engine plugin AndroidPermission
+LogPluginManager: Mounting Engine plugin AppleImageUtils
+LogPluginManager: Mounting Engine plugin ArchVisCharacter
+LogPluginManager: Mounting Engine plugin AssetTags
+LogPluginManager: Mounting Engine plugin AudioCapture
+LogPluginManager: Mounting Engine plugin AudioSynesthesia
+LogPluginManager: Mounting Engine plugin AudioWidgets
+LogPluginManager: Mounting Engine plugin CableComponent
+LogPluginManager: Mounting Engine plugin ChunkDownloader
+LogPluginManager: Mounting Engine plugin CustomMeshComponent
+LogPluginManager: Mounting Engine plugin SQLiteCore
+LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector
+LogPluginManager: Mounting Engine plugin GeometryCache
+LogPluginManager: Mounting Engine plugin GeometryProcessing
+LogPluginManager: Mounting Engine plugin GooglePAD
+LogPluginManager: Mounting Engine plugin HPMotionController
+LogPluginManager: Mounting Engine plugin InputDebugging
+LogPluginManager: Found config from plugin[InputDebugging] Input
+LogPluginManager: Mounting Engine plugin LiveLinkOverNDisplay
+LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary
+LogPluginManager: Mounting Engine plugin Metasound
+LogPluginManager: Mounting Engine plugin MobilePatchingUtils
+LogPluginManager: Mounting Engine plugin MsQuic
+LogPluginManager: Mounting Engine plugin OSC
+LogPluginManager: Mounting Engine plugin OpenCV
+LogPluginManager: Mounting Engine plugin OpenXREyeTracker
+LogPluginManager: Mounting Engine plugin OpenXRHandTracking
+LogPluginManager: Mounting Engine plugin OpenXR
+LogPluginManager: Mounting Engine plugin ProceduralMeshComponent
+LogPluginManager: Mounting Engine plugin PropertyAccessEditor
+LogPluginManager: Mounting Engine plugin ResonanceAudio
+LogPluginManager: Mounting Engine plugin RigVM
+LogPluginManager: Mounting Engine plugin SignificanceManager
+LogPluginManager: Mounting Engine plugin SoundFields
+LogPluginManager: Mounting Engine plugin Synthesis
+LogPluginManager: Mounting Engine plugin WaveTable
+LogPluginManager: Mounting Engine plugin WebMMoviePlayer
+LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector
+LogPluginManager: Mounting Engine plugin WindowsMoviePlayer
+LogPluginManager: Mounting Engine plugin XRBase
+LogPluginManager: Mounting Engine plugin nDisplayModularFeatures
+LogPluginManager: Mounting Engine plugin nDisplay
+LogPluginManager: Mounting Engine plugin InterchangeTests
+LogPluginManager: Mounting Engine plugin TraceUtilities
+LogPluginManager: Mounting Engine plugin CameraCalibrationCore
+LogPluginManager: Mounting Engine plugin MultiUserTakes
+LogPluginManager: Mounting Engine plugin RemoteControlInterception
+LogPluginManager: Mounting Engine plugin Switchboard
+LogPluginManager: Mounting Engine plugin Takes
+LogPluginManager: Mounting Project plugin GPUPointCloudRenderer
+LogPluginManager: Mounting Project plugin Kdtree
+LogPluginManager: Mounting Project plugin RWTHVRToolkit
+LogPluginManager: Mounting Project plugin UniversalLogging
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/2D/Paper2D/Content/' mounted to '/Paper2D/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ACLPlugin/Content/' mounted to '/ACLPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRigSpline/Content/' mounted to '/ControlRigSpline/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRig/Content/' mounted to '/ControlRig/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/IKRig/Content/' mounted to '/IKRig/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Bridge/Content/' mounted to '/Bridge/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/Composure/Content/' mounted to '/Composure/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/OpenColorIO/Content/' mounted to '/OpenColorIO/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/AnimationSharing/Content/' mounted to '/AnimationSharing/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/' mounted to '/ConcertSyncClient/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/BlueprintHeaderView/Content/' mounted to '/BlueprintHeaderView/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ConsoleVariablesEditor/Content/' mounted to '/ConsoleVariables/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/GeometryMode/Content/' mounted to '/GeometryMode/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/LightMixer/Content/' mounted to '/LightMixer/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/ObjectMixer/Content/' mounted to '/ObjectMixer/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/SpeedTreeImporter/Content/' mounted to '/SpeedTreeImporter/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/UVEditor/Content/' mounted to '/UVEditor/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/DatasmithContent/Content/' mounted to '/DatasmithContent/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/GLTFExporter/Content/' mounted to '/GLTFExporter/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosCaching/Content/' mounted to '/ChaosCaching/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosClothEditor/Content/' mounted to '/ChaosClothEditor/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosNiagara/Content/' mounted to '/ChaosNiagara/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosSolverPlugin/Content/' mounted to '/ChaosSolverPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ColorCorrectRegions/Content/' mounted to '/ColorCorrectRegions/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Dataflow/Content/' mounted to '/Dataflow/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/FullBodyIK/Content/' mounted to '/FullBodyIK/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/GeometryCollectionPlugin/Content/' mounted to '/GeometryCollectionPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/PythonScriptPlugin/Content/' mounted to '/PythonScriptPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ToolPresets/Content/' mounted to '/ToolPresets/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProductionUtilities/Content/' mounted to '/VirtualProductionUtilities/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPRoles/Content/' mounted to '/VPRoles/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPSettings/Content/' mounted to '/VPSettings/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/FX/Niagara/Content/' mounted to '/Niagara/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Interchange/Runtime/Content/' mounted to '/Interchange/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaCompositing/Content/' mounted to '/MediaCompositing/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaPlate/Content/' mounted to '/MediaPlate/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/MovieRenderPipeline/Content/' mounted to '/MovieRenderPipeline/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/SequencerScripting/Content/' mounted to '/SequencerScripting/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioSynesthesia/Content/' mounted to '/AudioSynesthesia/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioWidgets/Content/' mounted to '/AudioWidgets/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/GeometryProcessing/Content/' mounted to '/GeometryProcessing/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Metasound/Content/' mounted to '/Metasound/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenCV/Content/' mounted to '/OpenCV/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXREyeTracker/Content/' mounted to '/OpenXREyeTracker/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXRHandTracking/Content/' mounted to '/OpenXRHandTracking/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXR/Content/' mounted to '/OpenXR/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/ResonanceAudio/Content/' mounted to '/ResonanceAudio/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/RigVM/Content/' mounted to '/RigVM/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Synthesis/Content/' mounted to '/Synthesis/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/WaveTable/Content/' mounted to '/WaveTable/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplayModularFeatures/Content/' mounted to '/nDisplayModularFeatures/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplay/Content/' mounted to '/nDisplay/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/TraceUtilities/Content/' mounted to '/TraceUtilities/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/CameraCalibrationCore/Content/' mounted to '/CameraCalibrationCore/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/MultiUserTakes/Content/' mounted to '/MultiUserTakes/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Switchboard/Content/' mounted to '/Switchboard/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Takes/Content/' mounted to '/Takes/'
+LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UE4_GPUPointCloudRenderer/Content/' mounted to '/GPUPointCloudRenderer/'
+LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UEPlugin-Kdtree/Kdtree/Content/' mounted to '/Kdtree/'
+LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/rwth-vr-toolkit-with-meta-cast/Content/' mounted to '/RWTHVRToolkit/'
+LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126)
+LogWindows: File 'WinPixGpuCapturer.dll' does not exist
+PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX.
+LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine]
+RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings.
+LogInit: Using libcurl 8.4.0
+LogInit:  - built for Windows
+LogInit:  - supports SSL with OpenSSL/1.1.1t
+LogInit:  - supports HTTP deflate (compression) using libz 1.2.13
+LogInit:  - other features:
+LogInit:      CURL_VERSION_SSL
+LogInit:      CURL_VERSION_LIBZ
+LogInit:      CURL_VERSION_IPV6
+LogInit:      CURL_VERSION_ASYNCHDNS
+LogInit:      CURL_VERSION_LARGEFILE
+LogInit:  CurlRequestOptions (configurable via config and command line):
+LogInit:  - bVerifyPeer = true  - Libcurl will verify peer certificate
+LogInit:  - bUseHttpProxy = false  - Libcurl will NOT use HTTP proxy
+LogInit:  - bDontReuseConnections = false  - Libcurl will reuse connections
+LogInit:  - MaxHostConnections = 16  - Libcurl will limit the number of connections to a host
+LogInit:  - LocalHostAddr = Default
+LogInit:  - BufferSize = 65536
+LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467
+LogOnline: OSS: Created online subsystem instance for: NULL
+LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL]
+LogHMD: OpenXRHMDModule::InitInstance using DefaultLoader.
+LogHMD: OpenXR runtime supported extensions:
+LogHMD: 	XR_KHR_vulkan_enable
+LogHMD: 	XR_KHR_vulkan_enable2
+LogHMD: 	XR_KHR_D3D11_enable
+LogHMD: 	XR_KHR_D3D12_enable
+LogHMD: 	XR_KHR_opengl_enable
+LogHMD: 	XR_KHR_win32_convert_performance_counter_time
+LogHMD: 	XR_EXT_win32_appcontainer_compatible
+LogHMD: 	XR_KHR_binding_modification
+LogHMD: 	XR_KHR_composition_layer_depth
+LogHMD: 	XR_KHR_visibility_mask
+LogHMD: 	XR_EXT_active_action_set_priority
+LogHMD: 	XR_EXT_dpad_binding
+LogHMD: 	XR_EXT_frame_composition_report
+LogHMD: 	XR_EXT_hand_tracking
+LogHMD: 	XR_EXT_hand_joints_motion_range
+LogHMD: 	XR_EXT_hp_mixed_reality_controller
+LogHMD: 	XR_EXT_local_floor
+LogHMD: 	XR_EXT_palm_pose
+LogHMD: 	XR_FB_display_refresh_rate
+LogHMD: 	XR_HTC_vive_cosmos_controller_interaction
+LogHMD: 	XR_HTC_vive_focus3_controller_interaction
+LogHMD: 	XR_HTC_vive_wrist_tracker_interaction
+LogHMD: 	XR_MND_headless
+LogHMD: 	XR_VALVE_analog_threshold
+LogHMD: 	XR_HTCX_vive_tracker_interaction
+LogHMD: 	XR_EXT_debug_utils
+LogHMD: Optional extension XR_KHR_vulkan_swapchain_format_list is not available
+LogHMD: Optional extension XR_FB_foveation_vulkan is not available
+LogHMD: Optional extension XR_KHR_composition_layer_cylinder is not available
+LogHMD: Optional extension XR_KHR_composition_layer_equirect is not available
+LogHMD: Optional extension XR_VARJO_quad_views is not available
+LogHMD: Optional extension XR_EPIC_view_configuration_fov is not available
+LogHMD: Optional extension XR_FB_composition_layer_alpha_blend is not available
+LogHMD: Optional extension XR_FB_foveation is not available
+LogHMD: Optional extension XR_FB_swapchain_update_state is not available
+LogHMD: Optional extension XR_FB_foveation_configuration is not available
+LogHMD: Optional extension XR_OCULUS_audio_device_guid is not available
+LogHMD: Warning: Required extension XR_EXT_eye_gaze_interaction is not available
+LogHMD: Could not enable all required OpenXR extensions for OpenXREyeTracker on current system. This plugin will be loaded but ignored, but will be enabled on a target platform that supports the required extension.
+LogHMD: Initialized OpenXR on SteamVR/OpenXR runtime version 2.6.2
+LogInit: ExecutableName: MetaCastBachelor.exe
+LogInit: Build: ++UE5+Release-5.3-CL-29314046
+LogInit: Engine Version: 5.3.2-29314046+++UE5+Release-5.3
+LogInit: Compatible Engine Version: 5.3.0-27405482+++UE5+Release-5.3
+LogInit: Net CL: 27405482
+LogInit: OS: Windows 10 (22H2) [10.0.19045.4651] (), CPU: Intel(R) Core(TM) i9-10900X CPU @ 3.70GHz, GPU: NVIDIA GeForce RTX 3090
+LogInit: Compiled (64-bit): Nov  3 2023 16:20:53
+LogInit: Architecture: x64
+LogInit: Compiled with Visual C++: 19.36.32537.00
+LogInit: Build Configuration: Development
+LogInit: Branch Name: ++UE5+Release-5.3
+LogInit: Command Line: 
+LogInit: Base Directory: D:/UnrealProjects/MetaCastBachelor/Builds/Windows/MetaCastBachelor/Binaries/Win64/
+LogInit: Allocator: binned2
+LogInit: Installed Engine Build: 0
+LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no
+LogDevObjectVersion: Number of dev versions registered: 39
+LogDevObjectVersion:   Dev-Blueprints (B0D832E4-1F89-4F0D-ACCF-7EB736FD4AA2): 10
+LogDevObjectVersion:   Dev-Build (E1C64328-A22C-4D53-A36C-8E866417BD8C): 0
+LogDevObjectVersion:   Dev-Core (375EC13C-06E4-48FB-B500-84F0262A717E): 4
+LogDevObjectVersion:   Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40
+LogDevObjectVersion:   Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37
+LogDevObjectVersion:   Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3
+LogDevObjectVersion:   Dev-Networking (A4E4105C-59A1-49B5-A7C5-40C4547EDFEE): 0
+LogDevObjectVersion:   Dev-Online (39C831C9-5AE6-47DC-9A44-9C173E1C8E7C): 0
+LogDevObjectVersion:   Dev-Physics (78F01B33-EBEA-4F98-B9B4-84EACCB95AA2): 20
+LogDevObjectVersion:   Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0
+LogDevObjectVersion:   Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 47
+LogDevObjectVersion:   Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13
+LogDevObjectVersion:   Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3
+LogDevObjectVersion:   Dev-LoadTimes (C2A15278-BFE7-4AFE-6C17-90FF531DF755): 1
+LogDevObjectVersion:   Private-Geometry (6EACA3D4-40EC-4CC1-B786-8BED09428FC5): 3
+LogDevObjectVersion:   Dev-AnimPhys (29E575DD-E0A3-4627-9D10-D276232CDCEA): 17
+LogDevObjectVersion:   Dev-Anim (AF43A65D-7FD3-4947-9873-3E8ED9C1BB05): 15
+LogDevObjectVersion:   Dev-ReflectionCapture (6B266CEC-1EC7-4B8F-A30B-E4D90942FC07): 1
+LogDevObjectVersion:   Dev-Automation (0DF73D61-A23F-47EA-B727-89E90C41499A): 1
+LogDevObjectVersion:   FortniteMain (601D1886-AC64-4F84-AA16-D3DE0DEAC7D6): 111
+LogDevObjectVersion:   FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 2
+LogDevObjectVersion:   FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 10
+LogDevObjectVersion:   FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 11
+LogDevObjectVersion:   Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10
+LogDevObjectVersion:   Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1
+LogDevObjectVersion:   Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10
+LogDevObjectVersion:   Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41
+LogDevObjectVersion:   Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1
+LogDevObjectVersion:   Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1
+LogDevObjectVersion:   Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1
+LogDevObjectVersion:   UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 118
+LogDevObjectVersion:   UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 47
+LogDevObjectVersion:   UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8
+LogDevObjectVersion:   UE5-Dev-Cooker (26075A32-730F-4708-88E9-8C32F1599D05): 0
+LogDevObjectVersion:   Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2
+LogDevObjectVersion:   UE5-Dev-LWCRendering (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1
+LogDevObjectVersion:   Dev-RigVM (DC49959B-53C0-4DE7-9156-EA885E7C5D39): 2
+LogDevObjectVersion:   Dev-ControlRig (A7820CFB-20A7-4359-8C54-2C149623CF50): 27
+LogDevObjectVersion:   Dev-IKRig (F6DFBB78-BB50-A0E4-4018-B84D60CBAF23): 2
+LogInit: Presizing for max 2097152 objects, including 1 objects not considered by GC, pre-allocating 0 bytes for permanent pool.
+LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: true, Async Post Load: true
+LogStreaming: Display: AsyncLoading2 - Initialized
+LogInit: Object subsystem initialized
+LogConfig: Set CVar [[con.DebugEarlyDefault:1]]
+LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created
+LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created
+LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created
+LogConfig: Set CVar [[r.setres:1280x720]]
+LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created
+LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]]
+LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created
+LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created
+LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine]
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:None]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:None]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.Mobile.DisableVertexFog:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.Mobile.AllowDitheredLODTransition:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.Mobile.AllowSoftwareOcclusion:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.Mobile.VirtualTextures:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DiscardUnusedQuality:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.AllowOcclusionQueries:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.MinScreenRadiusForLights:0.030000]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.MinScreenRadiusForDepthPrepass:0.030000]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.MinScreenRadiusForCSMDepth:0.010000]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.PrecomputedVisibilityWarning:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.TextureStreaming:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[Compat.UseDXT5NormalMaps:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.VirtualTextures:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.VirtualTexturedLightmaps:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.VT.TileSize:128]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.VT.TileBorderSize:4]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.vt.FeedbackFactor:16]]
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.VT.EnableCompressZlib:1]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.VT.EnableCompressCrunch:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.ClearCoatNormal:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.ReflectionCaptureResolution:128]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.ReflectionEnvironmentLightmapMixBasedOnRoughness:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.ForwardShading:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.VertexFoggingForOpaque:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.AllowStaticLighting:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.NormalMapsForStaticLighting:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.DistanceFieldBuild.EightBit:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.GenerateLandscapeGIData:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.DistanceFieldBuild.Compress:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.TessellationAdaptivePixelsPerTriangle:48.000000]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.SeparateTranslucency:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.TranslucentSortPolicy:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[TranslucentSortAxis:(X=0.000000,Y=-1.000000,Z=0.000000)]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.CustomDepth:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.CustomDepthTemporalAAJitter:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.PostProcessing.PropagateAlpha:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.Bloom:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.AmbientOcclusion:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.AmbientOcclusionStaticFraction:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.Method:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.Bias:1.000000]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.EyeAdaptation.EditorOnly:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:1.0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:1.0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.MotionBlur:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.LensFlare:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.TemporalAA.Upsampling:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: CVar [[r.SSGI.Enable:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.AntiAliasingMethod:3]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultFeature.LightUnits:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.DefaultBackBufferPixelFormat:4]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.Shadow.UnbuiltPreviewInGame:1]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.StencilForLODDither:0]]
+[2024.08.02-07.32.20:320][  0]LogConfig: Set CVar [[r.EarlyZPass:3]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.EarlyZPassOnlyMaterialMasking:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.DBuffer:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.ClearSceneMethod:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.VelocityOutputPass:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Velocity.EnableVertexDeformation:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SelectiveBasePassOutputs:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[bDefaultParticleCutouts:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[fx.GPUSimulationTextureSizeX:1024]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[fx.GPUSimulationTextureSizeY:1024]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.AllowGlobalClipPlane:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.GBufferFormat:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.MorphTarget.Mode:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[vr.InstancedStereo:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.MobileHDR:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[vr.MobileMultiView:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.UseHWsRGBEncoding:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[vr.RoundRobinOcclusion:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[vr.ODSCapture:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.MeshStreaming:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.WireframeCullThreshold:5.000000]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.RayTracing:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.RayTracing.UseTextureLod:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SupportStationarySkylight:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SupportLowQualityLightmaps:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SupportPointLightWholeSceneShadows:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[r.SupportAtmosphericFog:1]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SupportSkyAtmosphere:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SupportSkyAtmosphereAffectsHeightFog:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SkinCache.DefaultBehavior:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SkinCache.SceneMemoryLimitInMB:128.000000]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.EnableStaticAndCSMShadowReceivers:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.EnableMovableLightCSMShaderCulling:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.AllowDistanceFieldShadows:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.AllowMovableDirectionalLights:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[r.MobileNumDynamicPointLights:4]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[r.MobileDynamicPointLightsUseStaticBranch:1]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[r.Mobile.EnableMovableSpotlights:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.EnableMovableSpotlightsShadow:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.GPUSkin.Support16BitBoneIndex:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.GPUSkin.Limit2BoneInfluences:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SupportDepthOnlyIndexBuffers:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.SupportReversedIndexBuffers:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[r.LightPropagationVolume:0]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.AmbientOcclusion:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.GPUSkin.UnlimitedBoneInfluences:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.GPUSkin.UnlimitedBoneInfluencesThreshold:8]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.PlanarReflectionMode:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[bStreamSkeletalMeshLODs:(Default=False,PerPlatform=())]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[bDiscardSkeletalMeshOptionalLODs:(Default=False,PerPlatform=())]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[VisualizeCalibrationCustomMaterialPath:None]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.AntiAliasing:3]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.FloatPrecisionMode:2]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.OpenGL.ForceDXC:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.ReflectionMethod:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.MSAACount:4]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Mobile.ShadingPath:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine]
+[2024.08.02-07.32.20:321][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]]
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created
+[2024.08.02-07.32.20:321][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[gc.SizeOfPermanentObjectPool:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]]
+[2024.08.02-07.32.20:321][  0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.AllowParallelGC:1]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.CreateGCClusters:1]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.UseDisregardForGCOnDedicatedServers:0]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.MultithreadedDestructionEnabled:1]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Set CVar [[gc.PendingKillEnabled:1]]
+[2024.08.02-07.32.20:322][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine]
+[2024.08.02-07.32.20:322][  0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created
+[2024.08.02-07.32.20:322][  0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created
+[2024.08.02-07.32.20:340][  0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.FXAA.Quality:4]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.TSR.ShadingRejection.TileOverscan:3]]
+[2024.08.02-07.32.20:340][  0]LogConfig: CVar [[r.TSR.Velocity.Extrapolation:1]] deferred - dummy variable created
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.LightFunctionQuality:1]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.ShadowQuality:5]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.VolumetricFog:1]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]]
+[2024.08.02-07.32.20:340][  0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.CapsuleShadows:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DistanceFieldAO:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.AOQuality:2]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.SSR.Quality:3]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapStrength:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.MotionBlurQuality:4]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.LensFlareQuality:2]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.BloomQuality:5]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.FastBlurThreshold:100]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Upscale.Quality:3]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.LightShaftQuality:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Filter.SizeScale:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2         ; lower gathering resolution]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1        ; higher gathering accumulator quality]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1          ; Median3x3 postfilering method]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0       ; no bokeh simulation when gathering]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4                 ; medium number of samples when gathering]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1    ; additive foreground scattering]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2    ; additive background scattering]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1      ; bokeh simulation when scattering]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1         ; only a maximum of 10% of scattered bokeh]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1                ; cheap slight out of focus]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0    ; no bokeh simulation on slight out of focus]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1                ; more stable temporal accumulation]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Streaming.MipBias:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Streaming.Boost:1]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.MaxAnisotropy:8]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]]
+[2024.08.02-07.32.20:341][  0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.RefractionQuality:2]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SceneColorFormat:4]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.DetailMode:2]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SSS.Scale:1]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SSS.SampleSet:2]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SSS.Quality:1]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SSS.HalfRes:0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SSGI.Quality:3]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.ParticleLightQuality:2]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[foliage.DensityScale:1.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[grass.DensityScale:1.0]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]]
+[2024.08.02-07.32.20:342][  0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]]
+[2024.08.02-07.32.20:342][  0]LogRHI: Using Default RHI: D3D12
+[2024.08.02-07.32.20:342][  0]LogRHI: Using Highest Feature Level of D3D12: SM6
+[2024.08.02-07.32.20:342][  0]LogRHI: Loading RHI module D3D12RHI
+[2024.08.02-07.32.20:346][  0]LogD3D12RHI: Aftermath initialized
+[2024.08.02-07.32.20:346][  0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64).
+[2024.08.02-07.32.20:346][  0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system.
+[2024.08.02-07.32.20:736][  0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3090 (VendorId: 10de, DeviceId: 2204, SubSysId: 38801028, Revision: 00a1
+[2024.08.02-07.32.20:736][  0]LogD3D12RHI:   Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported
+[2024.08.02-07.32.20:736][  0]LogD3D12RHI:   Adapter has 24340MB of dedicated video memory, 0MB of dedicated system memory, and 16238MB of shared system memory, 2 output[s]
+[2024.08.02-07.32.20:737][  0]LogD3D12RHI:   Driver Version: 546.09 (internal:31.0.15.4609, unified:546.09)
+[2024.08.02-07.32.20:737][  0]LogD3D12RHI:      Driver Date: 11-2-2023
+[2024.08.02-07.32.20:751][  0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000
+[2024.08.02-07.32.20:751][  0]LogD3D12RHI:   Max supported Feature Level 12_1, shader model 6.2, binding tier 3, wave ops supported, atomic64 unsupported
+[2024.08.02-07.32.20:751][  0]LogD3D12RHI:   Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16238MB of shared system memory, 0 output[s]
+[2024.08.02-07.32.20:751][  0]LogD3D12RHI: DirectX Agility SDK runtime found.
+[2024.08.02-07.32.20:751][  0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0
+[2024.08.02-07.32.20:751][  0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used.
+[2024.08.02-07.32.20:751][  0]LogInit: Selected Device Profile: [Windows]
+[2024.08.02-07.32.20:751][  0]LogHAL: Display: Platform has ~ 32 GB [34054676480 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0)
+[2024.08.02-07.32.20:751][  0]LogDeviceProfileManager: Going up to parent DeviceProfile []
+[2024.08.02-07.32.20:751][  0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini]
+[2024.08.02-07.32.20:751][  0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]]
+[2024.08.02-07.32.20:751][  0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]]
+[2024.08.02-07.32.20:751][  0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]]
+[2024.08.02-07.32.20:751][  0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine]
+[2024.08.02-07.32.20:751][  0]LogInit: Computer: ITC22160
+[2024.08.02-07.32.20:751][  0]LogInit: User: mp455017
+[2024.08.02-07.32.20:751][  0]LogInit: CPU Page size=4096, Cores=10
+[2024.08.02-07.32.20:751][  0]LogInit: High frequency timer resolution =10.000000 MHz
+[2024.08.02-07.32.20:751][  0]LogMemory: Memory total: Physical=31.7GB (32GB approx)
+[2024.08.02-07.32.20:751][  0]LogMemory: Platform Memory Stats for Windows
+[2024.08.02-07.32.20:751][  0]LogMemory: Process Physical Memory: 180.58 MB used, 193.02 MB peak
+[2024.08.02-07.32.20:751][  0]LogMemory: Process Virtual Memory: 154.72 MB used, 154.72 MB peak
+[2024.08.02-07.32.20:751][  0]LogMemory: Physical Memory: 25411.31 MB used,  7065.76 MB free, 32477.07 MB total
+[2024.08.02-07.32.20:751][  0]LogMemory: Virtual Memory: 70183.50 MB used,  12192.89 MB free, 82376.39 MB total
+[2024.08.02-07.32.20:751][  0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0"
+[2024.08.02-07.32.20:761][  0]LogWindows: WindowsPlatformFeatures enabled
+[2024.08.02-07.32.20:761][  0]LogInit: Physics initialised using underlying interface: Chaos
+[2024.08.02-07.32.20:762][  0]LogInit: Using OS detected language (en-US).
+[2024.08.02-07.32.20:763][  0]LogInit: Using OS detected locale (de-DE).
+[2024.08.02-07.32.20:763][  0]LogTextLocalizationManager: No specific localization for 'en-US' exists, so 'en' will be used for the language.
+[2024.08.02-07.32.20:763][  0]LogTextLocalizationManager: No localization for 'de-DE' exists, so 'en' will be used for the locale.
+[2024.08.02-07.32.20:835][  0]LogWindowsTextInputMethodSystem: Available input methods:
+[2024.08.02-07.32.20:835][  0]LogWindowsTextInputMethodSystem:   - English (United States) - (Keyboard).
+[2024.08.02-07.32.20:835][  0]LogWindowsTextInputMethodSystem:   - German (Germany) - (Keyboard).
+[2024.08.02-07.32.20:835][  0]LogWindowsTextInputMethodSystem:   - German (Germany) - Touch Input Correction (TSF IME).
+[2024.08.02-07.32.20:836][  0]LogWindowsTextInputMethodSystem: Activated input method: German (Germany) - (Keyboard).
+[2024.08.02-07.32.20:866][  0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0
+[2024.08.02-07.32.20:866][  0]LogSlate: Slate User Registered.  User Index 0, Is Virtual User: 0
+[2024.08.02-07.32.20:904][  0]LogRHI: Using Default RHI: D3D12
+[2024.08.02-07.32.20:904][  0]LogRHI: Using Highest Feature Level of D3D12: SM6
+[2024.08.02-07.32.20:904][  0]LogRHI: Loading RHI module D3D12RHI
+[2024.08.02-07.32.20:904][  0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system.
+[2024.08.02-07.32.20:904][  0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used.
+[2024.08.02-07.32.20:904][  0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6
+[2024.08.02-07.32.20:906][  0]LogWindows: Attached monitors:
+[2024.08.02-07.32.20:906][  0]LogWindows:     resolution: 1920x1080, work area: (1920, 0) -> (3840, 1040), device: '\\.\DISPLAY2'
+[2024.08.02-07.32.20:906][  0]LogWindows:     resolution: 1920x1080, work area: (0, 0) -> (1920, 1040), device: '\\.\DISPLAY1' [PRIMARY]
+[2024.08.02-07.32.20:906][  0]LogWindows: Found 2 attached monitors.
+[2024.08.02-07.32.20:906][  0]LogWindows: Gathering driver information using Windows Setup API
+[2024.08.02-07.32.20:906][  0]LogRHI: RHI Adapter Info:
+[2024.08.02-07.32.20:906][  0]LogRHI:             Name: NVIDIA GeForce RTX 3090
+[2024.08.02-07.32.20:906][  0]LogRHI:   Driver Version: 546.09 (internal:31.0.15.4609, unified:546.09)
+[2024.08.02-07.32.20:906][  0]LogRHI:      Driver Date: 11-2-2023
+[2024.08.02-07.32.20:906][  0]LogD3D12RHI:     GPU DeviceId: 0x2204 (for the marketing name, search the web for "GPU Device Id")
+[2024.08.02-07.32.20:906][  0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off
+[2024.08.02-07.32.20:921][  0]LogD3D12RHI: [Aftermath] Aftermath crash dumping enabled
+[2024.08.02-07.32.20:921][  0]LogD3D12RHI: [DRED] Dred breadcrumb context enabled
+[2024.08.02-07.32.20:922][  0]LogD3D12RHI: [DRED] Using lightweight DRED.
+[2024.08.02-07.32.20:922][  0]LogD3D12RHI: Emitting draw events for PIX profiling.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: [Aftermath] Aftermath enabled and primed
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: [Aftermath] Aftermath resource tracking enabled
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device1 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device2 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device3 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device4 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device5 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device6 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device7 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device8 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device9 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device10 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device11 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: ID3D12Device12 is supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: Bindless resources are supported
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: Stencil ref from pixel shader is not supported
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32).
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported.
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: Mesh shader tier 1.0 is supported
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: AtomicInt64OnTypedResource is supported
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: AtomicInt64OnGroupShared is supported
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported
+[2024.08.02-07.32.21:156][  0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported
+[2024.08.02-07.32.21:237][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (3D)
+[2024.08.02-07.32.21:238][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Copy)
+[2024.08.02-07.32.21:240][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Compute)
+[2024.08.02-07.32.21:274][  0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0
+[2024.08.02-07.32.21:274][  0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0
+[2024.08.02-07.32.21:275][  0]LogRHI: Texture pool is 14850 MB (70% of 21214 MB)
+[2024.08.02-07.32.21:275][  0]LogD3D12RHI: Async texture creation enabled
+[2024.08.02-07.32.21:275][  0]LogD3D12RHI: RHI has support for 64 bit atomics
+[2024.08.02-07.32.21:318][  0]LogVRS: Current RHI supports Variable Rate Shading
+[2024.08.02-07.32.21:336][  0]LogRendererCore: Ray tracing is disabled. Reason: disabled through project setting (r.RayTracing=0).
+[2024.08.02-07.32.21:337][  0]LogShaderLibrary: Display: Using IoDispatcher for shader code library Global. Total 4019 unique shaders.
+[2024.08.02-07.32.21:337][  0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library Global
+[2024.08.02-07.32.21:337][  0]LogShaderLibrary: Display: Logical shader library 'Global' has been created as a monolithic library
+[2024.08.02-07.32.21:337][  0]LogShaderLibrary: Display: Tried to open shader library 'Global_SC', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:337][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRigSpline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:337][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosClothEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:338][  0]LogShaderLibrary: Display: Tried to open shader library 'BlueprintHeaderView', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:338][  0]LogShaderLibrary: Display: Tried to open shader library 'Paper2D', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:338][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosNiagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:338][  0]LogShaderLibrary: Display: Tried to open shader library 'MovieRenderPipeline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:338][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:338][  0]LogShaderLibrary: Display: Tried to open shader library 'ConsoleVariables', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:339][  0]LogShaderLibrary: Display: Tried to open shader library 'IKRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:339][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosSolverPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:339][  0]LogShaderLibrary: Display: Tried to open shader library 'ObjectMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:339][  0]LogShaderLibrary: Display: Tried to open shader library 'AnimationSharing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:339][  0]LogShaderLibrary: Display: Tried to open shader library 'ToolPresets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:340][  0]LogShaderLibrary: Display: Tried to open shader library 'Composure', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:340][  0]LogShaderLibrary: Display: Tried to open shader library 'Bridge', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:340][  0]LogShaderLibrary: Display: Tried to open shader library 'ConcertSyncClient', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:340][  0]LogShaderLibrary: Display: Tried to open shader library 'ColorCorrectRegions', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:340][  0]LogShaderLibrary: Display: Tried to open shader library 'SpeedTreeImporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryMode', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'ACLPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'SequencerScripting', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'MultiUserTakes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'LightMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioSynesthesia', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXRHandTracking', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'Takes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'Switchboard', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioWidgets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXR', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:341][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryProcessing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'GLTFExporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'TraceUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'Kdtree', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'CameraCalibrationCore', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplayModularFeatures', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'GPUPointCloudRenderer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplay', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenColorIO', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'Synthesis', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'WaveTable', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'ResonanceAudio', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'RigVM', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosCaching', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'RWTHVRToolkit', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaCompositing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'Metasound', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'VirtualProductionUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaPlate', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryCollectionPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'Dataflow', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'PythonScriptPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'FullBodyIK', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:342][  0]LogShaderLibrary: Display: Tried to open shader library 'Niagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:343][  0]LogShaderLibrary: Display: Tried to open shader library 'UVEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:343][  0]LogShaderLibrary: Display: Tried to open shader library 'VPRoles', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:343][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenCV', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:343][  0]LogShaderLibrary: Display: Tried to open shader library 'Interchange', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:343][  0]LogShaderLibrary: Display: Tried to open shader library 'DatasmithContent', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:343][  0]LogShaderLibrary: Display: Tried to open shader library 'VPSettings', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:343][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXREyeTracker', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:343][  0]LogTemp: Display: Clearing the OS Cache
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: --- StereoAspects begin ---
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: Platform=PCD3D_SM6 (49)
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bInstancedStereo = 1
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bMobilePlatform = 0
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bMobilePostprocessing = 0
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bMobileMultiView = 1
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bMultiViewportCapable = 1
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bInstancedStereoNative = 1
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: ---
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bMobileMultiViewCoreSupport = 0
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bMobileMultiViewNative = 0
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bMobileMultiViewFallback = 0
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: ---
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bInstancedMultiViewportEnabled = 1
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bInstancedStereoEnabled = 1
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: bMobileMultiViewEnabled = 0
+[2024.08.02-07.32.21:360][  0]LogInit: FStereoShaderAspects: --- StereoAspects end ---
+[2024.08.02-07.32.21:366][  0]LogInit: XR: Instanced Stereo Rendering is Enabled
+[2024.08.02-07.32.21:366][  0]LogInit: XR: MultiViewport is Enabled
+[2024.08.02-07.32.21:366][  0]LogInit: XR: Mobile Multiview is Disabled
+[2024.08.02-07.32.21:371][  0]LogSlate: Using FreeType 2.10.0
+[2024.08.02-07.32.21:371][  0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1
+[2024.08.02-07.32.21:498][  0]LogShaderLibrary: Display: Tried to open shader library 'Paper2D', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:498][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/2D/Paper2D/Content/' mounted to '/Paper2D/'
+[2024.08.02-07.32.21:498][  0]LogShaderLibrary: Display: Tried to open shader library 'ACLPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:498][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ACLPlugin/Content/' mounted to '/ACLPlugin/'
+[2024.08.02-07.32.21:498][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRigSpline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRigSpline/Content/' mounted to '/ControlRigSpline/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRig/Content/' mounted to '/ControlRig/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'IKRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/IKRig/Content/' mounted to '/IKRig/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'Bridge', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Bridge/Content/' mounted to '/Bridge/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'Composure', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/Composure/Content/' mounted to '/Composure/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenColorIO', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/OpenColorIO/Content/' mounted to '/OpenColorIO/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'AnimationSharing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/AnimationSharing/Content/' mounted to '/AnimationSharing/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'ConcertSyncClient', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/' mounted to '/ConcertSyncClient/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'BlueprintHeaderView', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/BlueprintHeaderView/Content/' mounted to '/BlueprintHeaderView/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'ConsoleVariables', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ConsoleVariablesEditor/Content/' mounted to '/ConsoleVariables/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryMode', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/GeometryMode/Content/' mounted to '/GeometryMode/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'LightMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/LightMixer/Content/' mounted to '/LightMixer/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'ObjectMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/ObjectMixer/Content/' mounted to '/ObjectMixer/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'SpeedTreeImporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/SpeedTreeImporter/Content/' mounted to '/SpeedTreeImporter/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'UVEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/UVEditor/Content/' mounted to '/UVEditor/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'DatasmithContent', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/DatasmithContent/Content/' mounted to '/DatasmithContent/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'GLTFExporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/GLTFExporter/Content/' mounted to '/GLTFExporter/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosCaching', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosCaching/Content/' mounted to '/ChaosCaching/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosClothEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosClothEditor/Content/' mounted to '/ChaosClothEditor/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosNiagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosNiagara/Content/' mounted to '/ChaosNiagara/'
+[2024.08.02-07.32.21:499][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosSolverPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:499][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosSolverPlugin/Content/' mounted to '/ChaosSolverPlugin/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'ColorCorrectRegions', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ColorCorrectRegions/Content/' mounted to '/ColorCorrectRegions/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'Dataflow', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Dataflow/Content/' mounted to '/Dataflow/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'FullBodyIK', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/FullBodyIK/Content/' mounted to '/FullBodyIK/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryCollectionPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/GeometryCollectionPlugin/Content/' mounted to '/GeometryCollectionPlugin/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'PythonScriptPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/PythonScriptPlugin/Content/' mounted to '/PythonScriptPlugin/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'ToolPresets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ToolPresets/Content/' mounted to '/ToolPresets/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'VirtualProductionUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProductionUtilities/Content/' mounted to '/VirtualProductionUtilities/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'VPRoles', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPRoles/Content/' mounted to '/VPRoles/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'VPSettings', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPSettings/Content/' mounted to '/VPSettings/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'Niagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/FX/Niagara/Content/' mounted to '/Niagara/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'Interchange', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Interchange/Runtime/Content/' mounted to '/Interchange/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaCompositing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaCompositing/Content/' mounted to '/MediaCompositing/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaPlate', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaPlate/Content/' mounted to '/MediaPlate/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'MovieRenderPipeline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/MovieRenderPipeline/Content/' mounted to '/MovieRenderPipeline/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'SequencerScripting', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/SequencerScripting/Content/' mounted to '/SequencerScripting/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioSynesthesia', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioSynesthesia/Content/' mounted to '/AudioSynesthesia/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioWidgets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioWidgets/Content/' mounted to '/AudioWidgets/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryProcessing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/GeometryProcessing/Content/' mounted to '/GeometryProcessing/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'Metasound', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Metasound/Content/' mounted to '/Metasound/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenCV', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenCV/Content/' mounted to '/OpenCV/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXREyeTracker', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXREyeTracker/Content/' mounted to '/OpenXREyeTracker/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXRHandTracking', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXRHandTracking/Content/' mounted to '/OpenXRHandTracking/'
+[2024.08.02-07.32.21:500][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXR', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:500][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXR/Content/' mounted to '/OpenXR/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'ResonanceAudio', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/ResonanceAudio/Content/' mounted to '/ResonanceAudio/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'RigVM', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/RigVM/Content/' mounted to '/RigVM/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'Synthesis', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Synthesis/Content/' mounted to '/Synthesis/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'WaveTable', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/WaveTable/Content/' mounted to '/WaveTable/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplayModularFeatures', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplayModularFeatures/Content/' mounted to '/nDisplayModularFeatures/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplay', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplay/Content/' mounted to '/nDisplay/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'TraceUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/TraceUtilities/Content/' mounted to '/TraceUtilities/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'CameraCalibrationCore', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/CameraCalibrationCore/Content/' mounted to '/CameraCalibrationCore/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'MultiUserTakes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/MultiUserTakes/Content/' mounted to '/MultiUserTakes/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'Switchboard', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Switchboard/Content/' mounted to '/Switchboard/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'Takes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Takes/Content/' mounted to '/Takes/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'GPUPointCloudRenderer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UE4_GPUPointCloudRenderer/Content/' mounted to '/GPUPointCloudRenderer/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'Kdtree', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UEPlugin-Kdtree/Kdtree/Content/' mounted to '/Kdtree/'
+[2024.08.02-07.32.21:501][  0]LogShaderLibrary: Display: Tried to open shader library 'RWTHVRToolkit', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.32.21:501][  0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/rwth-vr-toolkit-with-meta-cast/Content/' mounted to '/RWTHVRToolkit/'
+[2024.08.02-07.32.21:502][  0]LogShaderLibrary: Display: Using IoDispatcher for shader code library MetaCastBachelor. Total 2223 unique shaders.
+[2024.08.02-07.32.21:502][  0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library MetaCastBachelor
+[2024.08.02-07.32.21:502][  0]LogShaderLibrary: Display: Logical shader library 'MetaCastBachelor' has been created as a monolithic library
+[2024.08.02-07.32.21:502][  0]LogRHI: Could not open FPipelineCacheFile: ../../../MetaCastBachelor/Content/PipelineCaches/Windows/MetaCastBachelor_PCD3D_SM6.stable.upipelinecache
+[2024.08.02-07.32.21:502][  0]LogRHI: Could not open FPipelineCacheFile: ../../../MetaCastBachelor/Content/PipelineCaches/Windows/MetaCastBachelor_PCD3D_SM6.stable.upipelinecache
+[2024.08.02-07.32.21:502][  0]LogShaderLibrary: Display: Tried to open again shader library 'MetaCastBachelor', but could not find new components for it (existing components: 1).
+[2024.08.02-07.32.21:503][  0]LogRHI: Could not open FPipelineCacheFile: ../../../MetaCastBachelor/Content/PipelineCaches/Windows/MetaCastBachelor_PCD3D_SM6.stable.upipelinecache
+[2024.08.02-07.32.21:503][  0]LogInit: Using OS detected language (en-US).
+[2024.08.02-07.32.21:503][  0]LogInit: Using OS detected locale (de-DE).
+[2024.08.02-07.32.21:503][  0]LogTextLocalizationManager: No localization for 'en-US' exists, so 'en' will be used for the language.
+[2024.08.02-07.32.21:503][  0]LogTextLocalizationManager: No localization for 'de-DE' exists, so 'en' will be used for the locale.
+[2024.08.02-07.32.21:504][  0]LogAssetRegistry: FAssetRegistry took 0.0003 seconds to start up
+[2024.08.02-07.32.21:675][  0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages
+[2024.08.02-07.32.21:678][  0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found.
+[2024.08.02-07.32.21:678][  0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found.
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: Available device profiles:
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF1180][000001C97B19AAC0 66] GlobalDefaults, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0E80][000001C97ADB0010 66] Windows, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0D00][000001C97ADB9250 66] WindowsEditor, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0A00][000001C97C04DB70 66] WindowsServer, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0700][000001C97C04B6E0 66] WindowsClient, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0580][000001C97C049250 66] IOS, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0400][000001C97C046DC0 66] iPadAir2, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0280][000001C97C044930 66] IPadPro, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0100][000001C97C0424A0 66] iPadAir3, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF6280][000001C97C040010 66] iPadAir4, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF6100][000001C97C05DB70 66] iPadAir5, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5F80][000001C97C05B6E0 66] iPadMini4, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5E00][000001C97C059250 66] iPadMini5, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5C80][000001C97C056DC0 66] iPadMini6, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5B00][000001C97C054930 66] iPhone6S, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5980][000001C97C0524A0 66] iPhone7, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5800][000001C97C050010 66] iPodTouch7, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5680][000001C97C06DB70 66] iPhone6SPlus, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5500][000001C97C06B6E0 66] iPhone7Plus, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5380][000001C97C069250 66] iPhoneSE, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5200][000001C97C066DC0 66] iPhone8, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF5080][000001C97C064930 66] iPhone8Plus, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4F00][000001C97C0624A0 66] iPhoneX, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0B80][000001C97C060010 66] iPhoneXS, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF0880][000001C97C07DB70 66] iPhoneXSMax, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4D80][000001C97C07B6E0 66] iPhoneXR, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4C00][000001C97C079250 66] iPhone11, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4A80][000001C97C076DC0 66] iPhone11Pro, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4900][000001C97C074930 66] iPhone11ProMax, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4780][000001C97C0724A0 66] iPhoneSE2, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4600][000001C97C070010 66] iPhone12Mini, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4480][000001C97C08DB70 66] iPhone12, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4300][000001C97C08B6E0 66] iPhone12Pro, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4180][000001C97C089250 66] iPhone12ProMax, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF4000][000001C97C086DC0 66] iPhone13Mini, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF3E80][000001C97C084930 66] iPhone13, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF3D00][000001C97C0824A0 66] iPhone13Pro, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF3B80][000001C97C080010 66] iPhone13ProMax, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF3A00][000001C97C09DB70 66] iPhoneSE3, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF3880][000001C97C09B6E0 66] iPhone14, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF3700][000001C97C099250 66] iPhone14Plus, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF3580][000001C97C096DC0 66] iPhone14Pro, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF3400][000001C97C094930 66] iPhone14ProMax, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF3280][000001C97C0924A0 66] iPhone15, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF9400][000001C97C090010 66] iPhone15Plus, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF9280][000001C97C0ADB70 66] iPhone15Pro, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF9100][000001C97C0AB6E0 66] iPhone15ProMax, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8F80][000001C97C0A9250 66] iPadPro105, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8E00][000001C97C0A6DC0 66] iPadPro129, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8C80][000001C97C0A4930 66] iPadPro97, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8B00][000001C97C0A24A0 66] iPadPro2_129, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8980][000001C97C0A0010 66] iPad5, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8800][000001C97C0BDB70 66] iPad6, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8680][000001C97C0BB6E0 66] iPad7, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8500][000001C97C0B9250 66] iPad8, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8380][000001C97C0B6DC0 66] iPad9, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8200][000001C97C0B4930 66] iPad10, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF8080][000001C97C0B24A0 66] iPadPro11, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7F00][000001C97C0B0010 66] iPadPro2_11, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7D80][000001C97C0CDB70 66] iPadPro3_11, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7C00][000001C97C0CB6E0 66] iPadPro4_11, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7A80][000001C97C0C9250 66] iPadPro3_129, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7900][000001C97C0C6DC0 66] iPadPro4_129, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7780][000001C97C0C4930 66] iPadPro5_129, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7600][000001C97C0C24A0 66] iPadPro6_129, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7480][000001C97C0C0010 66] AppleTV, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7300][000001C97C0DDB70 66] AppleTV4K, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7180][000001C97C0DB6E0 66] AppleTV2_4K, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF7000][000001C97C0D9250 66] TVOS, 
+[2024.08.02-07.32.21:680][  0]LogDeviceProfileManager: 	[000001C97BFF6E80][000001C97C0D6DC0 66] Mac, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF6D00][000001C97C0D4930 66] MacEditor, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF6B80][000001C97C0D24A0 66] MacClient, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF6A00][000001C97C0D0010 66] MacServer, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF6880][000001C97C0EDB70 66] Linux, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF6700][000001C97C0EB6E0 66] LinuxEditor, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF6580][000001C97C0E9250 66] LinuxArm64Editor, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF6400][000001C97C0E6DC0 66] LinuxArm64, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFC580][000001C97C0E4930 66] LinuxClient, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFC400][000001C97C0E24A0 66] LinuxArm64Client, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFC280][000001C97C0E0010 66] LinuxServer, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFC100][000001C97C0FDB70 66] LinuxArm64Server, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFBF80][000001C97C0FB6E0 66] Android, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFBE00][000001C97C0F9250 66] Android_Preview_OpenGL, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFBC80][000001C97C0F6DC0 66] Android_Preview_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFBB00][000001C97C0F4930 66] Android_Low, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFB980][000001C97C0F24A0 66] Android_Mid, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFB800][000001C97C0F0010 66] Android_High, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFB680][000001C97C10DB70 66] Android_Default, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFB500][000001C97C10B6E0 66] Android_Adreno4xx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFB380][000001C97C109250 66] Android_Adreno5xx_Low, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFB200][000001C97C106DC0 66] Android_Adreno5xx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFB080][000001C97C104930 66] Android_Adreno6xx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFAF00][000001C97C1024A0 66] Android_Adreno6xx_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFAD80][000001C97C100010 66] Android_Adreno7xx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFAC00][000001C97C11DB70 66] Android_Adreno7xx_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFAA80][000001C97C11B6E0 66] Android_Mali_T6xx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFA900][000001C97C119250 66] Android_Mali_T7xx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFA780][000001C97C116DC0 66] Android_Mali_T8xx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFA600][000001C97C114930 66] Android_Mali_G71, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFA480][000001C97C1124A0 66] Android_Mali_G72, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFA300][000001C97C110010 66] Android_Mali_G72_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFA180][000001C97C14DB70 66] Android_Mali_G76, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFA000][000001C97C14B6E0 66] Android_Mali_G76_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF9E80][000001C97C149250 66] Android_Mali_G77, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF9D00][000001C97C146DC0 66] Android_Mali_G77_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF9B80][000001C97C144930 66] Android_Mali_G78, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF9A00][000001C97C1424A0 66] Android_Mali_G78_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF9880][000001C97C140010 66] Android_Mali_G710, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF9700][000001C97C15DB70 66] Android_Mali_G710_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFF9580][000001C97C15B6E0 66] Android_Mali_G7xx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFF700][000001C97C159250 66] Android_Mali_G7xx_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFF580][000001C97C156DC0 66] Android_Xclipse_920, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFF400][000001C97C154930 66] Android_Xclipse_920_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFF280][000001C97C1524A0 66] Android_Vulkan_SM5, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFF100][000001C97C150010 66] Android_PowerVR_G6xxx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFEF80][000001C97C16DB70 66] Android_PowerVR_GT7xxx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFEE00][000001C97C16B6E0 66] Android_PowerVR_GE8xxx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFEC80][000001C97C169250 66] Android_PowerVR_GM9xxx, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFEB00][000001C97C166DC0 66] Android_PowerVR_GM9xxx_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFE980][000001C97C164930 66] Android_TegraK1, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFE800][000001C97C1624A0 66] Android_Unknown_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFE680][000001C97C160010 66] Oculus_Quest, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFE500][000001C97C17DB70 66] Oculus_Quest2, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFE380][000001C97C17B6E0 66] Meta_Quest_Pro, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFE200][000001C97C179250 66] Meta_Quest_3, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFE080][000001C97C176DC0 66] HoloLens, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: 	[000001C97BFFDF00][000001C97C174930 66] MagicLeap_Vulkan, 
+[2024.08.02-07.32.21:681][  0]LogDeviceProfileManager: Active device profile: [000001C97BFF0E80][000001C97ADB0010 66] Windows
+[2024.08.02-07.32.21:681][  0]LogCsvProfiler: Display: Metadata set : deviceprofile="Windows"
+[2024.08.02-07.32.22:034][  0]LogTextureEncodingSettings: Display: Texture Encode Speed: Final (cook).
+[2024.08.02-07.32.22:035][  0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal
+[2024.08.02-07.32.22:035][  0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled
+[2024.08.02-07.32.22:094][  0]LogPackageLocalizationCache: Processed 62 localized package path(s) for 1 prioritized culture(s) in 0.000171 seconds
+[2024.08.02-07.32.22:156][  0]LogStaticMesh: [SM_LightCardPlane] Mesh is marked for CPU read.
+[2024.08.02-07.32.22:158][  0]LogStaticMesh: [plane_hd_1x1] Mesh is marked for CPU read.
+[2024.08.02-07.32.22:169][  0]LogConfig: Warning: FConfigCacheIni::LoadFile failed loading file as it was 0 size.  Filename was:  ../../../MetaCastBachelor/Config/Demo.ini
+[2024.08.02-07.32.22:176][  0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
+[2024.08.02-07.32.22:176][  0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
+[2024.08.02-07.32.22:247][  0]LogMoviePlayer: Initializing movie player
+[2024.08.02-07.32.22:250][  0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 4F0ECDA0472BF84A4BC5B1B950CAFBB0 | Instance: 031E5A4C43A47167CF05F5863FB9DA37 (ITC22160-18964).
+[2024.08.02-07.32.22:286][  0]LogAudio: Display: Registering Engine Module Parameter Interfaces...
+[2024.08.02-07.32.22:287][  0]LogMetasoundEngine: MetaSound Engine Initialized
+[2024.08.02-07.32.22:291][  0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance
+[2024.08.02-07.32.22:291][  0]LogSlateStyle: Warning: Missing Resource from 'CoreStyle' Style: 'Unable to find Brush 'Sequencer.Timeline.VanillaScrubHandleDown'.'
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterModule: Instantiating subsystem managers...
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registering factory for rendering device type: dc_dev_mono
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registered factory for rendering device type: dc_dev_mono
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registering factory for rendering device type: quad_buffer_stereo
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registered factory for rendering device type: quad_buffer_stereo
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registering factory for rendering device type: dc_dev_side_by_side
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registered factory for rendering device type: dc_dev_side_by_side
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registering factory for rendering device type: dc_dev_top_bottom
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registered factory for rendering device type: dc_dev_top_bottom
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registering factory for synchronization policy: none
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registered factory for synchronization policy: none
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registering factory for synchronization policy: ethernet
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registered factory for synchronization policy: ethernet
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registering factory for synchronization policy: ethernet_barrier
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registered factory for synchronization policy: ethernet_barrier
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registering factory for synchronization policy: nvidia
+[2024.08.02-07.32.22:291][  0]LogDisplayClusterRender: Registered factory for synchronization policy: nvidia
+[2024.08.02-07.32.22:292][  0]LogDisplayClusterModule: DisplayCluster module has been started
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjectionVIOSO: VIOSO API(1,6,19,90) was initialized from file '../../../Engine/Plugins/Runtime/nDisplay/ThirdParty/VIOSO/DLL/ViosoWarpBlend64.dll'.
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Projection module has been instantiated
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Projection module startup
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Registering <camera> projection policy factory...
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registering factory for projection type: camera
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registered factory for projection type: camera
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Registering <domeprojection> projection policy factory...
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registering factory for projection type: domeprojection
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registered factory for projection type: domeprojection
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Registering <easyblend> projection policy factory...
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registering factory for projection type: easyblend
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registered factory for projection type: easyblend
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Registering <link> projection policy factory...
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registering factory for projection type: link
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registered factory for projection type: link
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Registering <manual> projection policy factory...
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registering factory for projection type: manual
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registered factory for projection type: manual
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Registering <mpcdi> projection policy factory...
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registering factory for projection type: mpcdi
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registered factory for projection type: mpcdi
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Registering <mesh> projection policy factory...
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registering factory for projection type: mesh
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registered factory for projection type: mesh
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Registering <simple> projection policy factory...
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registering factory for projection type: simple
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registered factory for projection type: simple
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Registering <vioso> projection policy factory...
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registering factory for projection type: vioso
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRender: Registered factory for projection type: vioso
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterProjection: Projection module has started
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterRemoteControlInterceptor: DisplayClusterRemoteControlInterceptor has been registered
+[2024.08.02-07.32.22:297][  0]LogDisplayClusterMedia: Starting module 'DisplayClusterMedia'...
+[2024.08.02-07.32.22:297][  0]GPUPointCloudRenderer: //////////////////////////////////////////// 
+
+[2024.08.02-07.32.22:297][  0]GPUPointCloudRenderer: // Initializing GPU Point Cloud Renderer... 
+
+[2024.08.02-07.32.22:297][  0]GPUPointCloudRenderer: //////////////////////////////////////////// 
+
+[2024.08.02-07.32.22:308][  0]LogUObjectArray: 25084 objects as part of root set at end of initial load.
+[2024.08.02-07.32.22:308][  0]LogUObjectArray: 4 objects are not in the root set, but can never be destroyed because they are in the DisregardForGC set.
+[2024.08.02-07.32.22:308][  0]LogUObjectAllocator: 5582112 out of 0 bytes used by permanent object pool.
+[2024.08.02-07.32.22:308][  0]LogUObjectArray: CloseDisregardForGC: 25084/25084 objects in disregard for GC pool
+[2024.08.02-07.32.22:321][  0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 24348 public script object entries (639.99 KB)
+[2024.08.02-07.32.22:321][  0]LogStreaming: Display: AsyncLoading2 - Thread Started: true, IsInitialLoad: false
+[2024.08.02-07.32.22:322][  0]LogEngine: Initializing Engine...
+[2024.08.02-07.32.22:351][  0]LogHMD: HMD configured for shader platform PCD3D_SM6, bIsMobileMultiViewEnabled=0, bProjectionLayerAlphaEnabled=0
+[2024.08.02-07.32.22:943][  0]LogStats: UGameplayTagsManager::InitializeManager -  0.000 s
+[2024.08.02-07.32.22:950][  0]LogInit: Initializing FReadOnlyCVARCache
+[2024.08.02-07.32.22:950][  0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use.
+[2024.08.02-07.32.22:950][  0]LogInit: Texture streaming: Enabled
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: Initializing Audio Device Manager...
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: Loading Default Audio Settings Objects...
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load).
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: AudioInfo: 'BINKA' Registered
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: AudioInfo: 'PCM' Registered
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: AudioInfo: 'ADPCM' Registered
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: AudioInfo: 'OGG' Registered
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: AudioInfo: 'OPUS' Registered
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: Audio Device Manager Initialized
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: Creating Audio Device:                 Id: 1, Scope: Shared, Realtime: True
+[2024.08.02-07.32.22:951][  0]LogAudioMixer: Display: Audio Mixer Platform Settings:
+[2024.08.02-07.32.22:951][  0]LogAudioMixer: Display: 	Sample Rate:						  48000
+[2024.08.02-07.32.22:951][  0]LogAudioMixer: Display: 	Callback Buffer Frame Size Requested: 1024
+[2024.08.02-07.32.22:951][  0]LogAudioMixer: Display: 	Callback Buffer Frame Size To Use:	  1024
+[2024.08.02-07.32.22:951][  0]LogAudioMixer: Display: 	Number of buffers to queue:			  1
+[2024.08.02-07.32.22:951][  0]LogAudioMixer: Display: 	Max Channels (voices):				  32
+[2024.08.02-07.32.22:951][  0]LogAudioMixer: Display: 	Number of Async Source Workers:		  4
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: AudioDevice MaxSources: 32
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: Audio Spatialization Plugin: None (built-in).
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: Audio Reverb Plugin: None (built-in).
+[2024.08.02-07.32.22:951][  0]LogAudio: Display: Audio Occlusion Plugin: None (built-in).
+[2024.08.02-07.32.22:966][  0]LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded.
+[2024.08.02-07.32.22:967][  0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2'
+[2024.08.02-07.32.23:050][  0]LogAudioMixer: Display: Using Audio Hardware Device Lautsprecher (3- Realtek USB2.0 Audio)
+[2024.08.02-07.32.23:051][  0]LogAudioMixer: Display: Initializing Sound Submixes...
+[2024.08.02-07.32.23:052][  0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault'
+[2024.08.02-07.32.23:052][  0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault'
+[2024.08.02-07.32.23:053][  0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1
+[2024.08.02-07.32.23:053][  0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1
+[2024.08.02-07.32.23:054][  0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1
+[2024.08.02-07.32.23:054][  0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1
+[2024.08.02-07.32.23:054][  0]LogInit: FAudioDevice initialized with ID 1.
+[2024.08.02-07.32.23:054][  0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1
+[2024.08.02-07.32.23:054][  0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1"
+[2024.08.02-07.32.23:055][  0]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created!
+[2024.08.02-07.32.23:055][  0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
+[2024.08.02-07.32.23:057][  0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'.
+[2024.08.02-07.32.23:058][  0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
+[2024.08.02-07.32.23:058][  0]LogInit: Display: Game Engine Initialized.
+[2024.08.02-07.32.23:059][  0]LogWindows: Attached monitors:
+[2024.08.02-07.32.23:060][  0]LogWindows:     resolution: 1920x1080, work area: (1920, 0) -> (3840, 1040), device: '\\.\DISPLAY2'
+[2024.08.02-07.32.23:060][  0]LogWindows:     resolution: 1920x1080, work area: (0, 0) -> (1920, 1040), device: '\\.\DISPLAY1' [PRIMARY]
+[2024.08.02-07.32.23:060][  0]LogWindows: Found 2 attached monitors.
+[2024.08.02-07.32.23:060][  0]LogWindows: Gathering driver information using Windows Setup API
+[2024.08.02-07.32.23:060][  0]LogInit: Display: Starting Game.
+[2024.08.02-07.32.23:060][  0]LogNet: Browse: /Game/Maps/Login?Name=Player
+[2024.08.02-07.32.23:060][  0]LogLoad: LoadMap: /Game/Maps/Login?Name=Player
+[2024.08.02-07.32.23:060][  0]LogWorld: BeginTearingDown for /Temp/Untitled_0
+[2024.08.02-07.32.23:060][  0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true
+[2024.08.02-07.32.23:060][  0]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.32.23:065][  0]LogRHI: Display: Encountered a new compute PSO: 108100765
+[2024.08.02-07.32.23:068][  0]LogRHI: Display: Encountered a new compute PSO: 3044213281
+[2024.08.02-07.32.23:069][  0]LogRHI: Display: Encountered a new compute PSO: 3441300143
+[2024.08.02-07.32.23:077][  0]LogStreaming: Display: 0.001 ms for processing 44 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 0 (163->163) packages and 0 (167->167) public exports.
+[2024.08.02-07.32.23:077][  0]LogAudio: Display: Audio Device unregistered from world 'None'.
+[2024.08.02-07.32.23:080][  0]LogUObjectHash: Compacting FUObjectHashTables data took   0.83ms
+[2024.08.02-07.32.23:112][  0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Login'.
+[2024.08.02-07.32.23:112][  0]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created!
+[2024.08.02-07.32.23:112][  0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
+[2024.08.02-07.32.23:114][  0]LogAIModule: Creating AISystem for world Login
+[2024.08.02-07.32.23:133][  0]LogRHI: Display: Encountered a new compute PSO: 1624740199
+[2024.08.02-07.32.23:133][  0]LogRHI: Display: Encountered a new compute PSO: 3081443093
+[2024.08.02-07.32.23:134][  0]LogRHI: Display: Encountered a new compute PSO: 434897211
+[2024.08.02-07.32.23:150][  0]LogLoad: Game class is 'VRGameMode_C'
+[2024.08.02-07.32.23:151][  0]LogWorld: Bringing World /Game/Maps/Login.Login up for play (max tick rate 0) at 2024.08.02-09.32.23
+[2024.08.02-07.32.23:152][  0]LogWorld: Bringing up level for play took: 0.001575
+[2024.08.02-07.32.23:152][  0]LogGameMode: FindPlayerStart: PATHS NOT DEFINED or NO PLAYERSTART with positive rating
+[2024.08.02-07.32.23:157][  0]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1
+[2024.08.02-07.32.23:157][  0]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.32.23:160][  0]LogSlate: Took 0.000505 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoRegular.ufont' (155K)
+[2024.08.02-07.32.23:161][  0]vr.PixelDensity = "1"
+[2024.08.02-07.32.23:161][  0]LogLoad: Took 0.101720 seconds to LoadMap(/Game/Maps/Login)
+[2024.08.02-07.32.23:162][  0]LogSlate: Took 0.000406 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoBold.ufont' (160K)
+[2024.08.02-07.32.23:162][  0]LogViewport: Scene viewport resized to 1920x1080, mode WindowedFullscreen.
+[2024.08.02-07.32.23:166][  0]LogHMD: Warning: Requesting 10 bit swapchain, but not supported: fall back to 8bpc
+[2024.08.02-07.32.23:227][  0]LogSlate: Took 0.000421 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K)
+[2024.08.02-07.32.23:227][  0]LogRHI: Display: ShaderPipelineCache: Paused Batching. 1
+[2024.08.02-07.32.23:228][  0]LogPakFile: AllPaks IndexSizes: DirectoryHashSize=193072, PathHashSize=16, EntriesSize=32752, TotalSize=225840
+[2024.08.02-07.32.23:228][  0]LogRHI: Display: ShaderPipelineCache: Resumed Batching. 0
+[2024.08.02-07.32.23:228][  0]LogRHI: Display: ShaderPipelineCache: Batching Resumed.
+[2024.08.02-07.32.23:229][  0]LogRenderer: Warning: Resizing VR buffer to 2656 by 1300
+[2024.08.02-07.32.23:234][  0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init()
+[2024.08.02-07.32.23:234][  0]LogLoad: (Engine Initialization) Total time: 3.64 seconds
+[2024.08.02-07.32.23:240][  0]LogSlate: Took 0.000436 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K)
+[2024.08.02-07.32.23:273][  0]LogRHI: Display: Encountered a new compute PSO: 4084646486
+[2024.08.02-07.32.23:273][  0]LogRHI: Display: Encountered a new compute PSO: 812371551
+[2024.08.02-07.32.23:273][  0]LogRHI: Display: Encountered a new graphics PSO: 2996660223
+[2024.08.02-07.32.23:273][  0]LogRHI: Display: Encountered a new graphics PSO: 438169823
+[2024.08.02-07.32.23:274][  0]LogRHI: Display: Encountered a new compute PSO: 3071658855
+[2024.08.02-07.32.23:274][  0]LogRHI: Display: Encountered a new compute PSO: 1983791817
+[2024.08.02-07.32.23:274][  0]LogRHI: Display: Encountered a new compute PSO: 3707458169
+[2024.08.02-07.32.23:274][  0]LogRHI: Display: Encountered a new compute PSO: 1980351999
+[2024.08.02-07.32.23:274][  0]LogRHI: Display: Encountered a new compute PSO: 3265167958
+[2024.08.02-07.32.23:274][  0]LogRHI: Display: Encountered a new graphics PSO: 568850401
+[2024.08.02-07.32.23:274][  0]LogRHI: Display: Encountered a new graphics PSO: 1857403627
+[2024.08.02-07.32.23:274][  0]LogRHI: Display: Encountered a new graphics PSO: 2789720086
+[2024.08.02-07.32.23:275][  0]LogRHI: Display: Encountered a new graphics PSO: 1680577637
+[2024.08.02-07.32.23:276][  0]LogRHI: Display: Encountered a new graphics PSO: 2141321626
+[2024.08.02-07.32.23:294][  0]LogRHI: Display: Encountered a new graphics PSO: 3396054539
+[2024.08.02-07.32.23:412][  0]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.32.23:415][  0]LogContentStreaming: Texture pool size now 1000 MB
+[2024.08.02-07.32.23:445][  2]LogRHI: Display: Encountered a new compute PSO: 36000004
+[2024.08.02-07.32.23:445][  2]LogRHI: Display: Encountered a new compute PSO: 3916353388
+[2024.08.02-07.32.23:446][  2]LogRHI: Display: Encountered a new graphics PSO: 2989811062
+[2024.08.02-07.32.23:446][  2]LogRHI: Display: Encountered a new graphics PSO: 392357091
+[2024.08.02-07.32.23:446][  2]LogRHI: Display: Encountered a new compute PSO: 3415796330
+[2024.08.02-07.32.23:446][  2]LogRHI: Display: Encountered a new compute PSO: 1496384869
+[2024.08.02-07.32.23:446][  2]LogRHI: Display: Encountered a new compute PSO: 2137981577
+[2024.08.02-07.32.23:446][  2]LogRHI: Display: Encountered a new compute PSO: 1213868836
+[2024.08.02-07.32.23:446][  2]LogRHI: Display: Encountered a new compute PSO: 1481873912
+[2024.08.02-07.32.23:446][  2]LogRHI: Display: Encountered a new compute PSO: 2377609249
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new graphics PSO: 2274179198
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 3810519787
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 3156736644
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 2045927908
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 2607838988
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 309180451
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 3137437172
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 3360497970
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 1838702928
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 2399646039
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 831929746
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 676159369
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 3560210858
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 2077624189
+[2024.08.02-07.32.23:447][  2]LogRHI: Display: Encountered a new compute PSO: 3509667929
+[2024.08.02-07.32.23:448][  2]LogRHI: Display: Encountered a new graphics PSO: 1044072120
+[2024.08.02-07.32.23:448][  2]LogRHI: Display: Encountered a new compute PSO: 724033258
+[2024.08.02-07.32.23:448][  2]LogRHI: Display: Encountered a new graphics PSO: 3377188663
+[2024.08.02-07.32.23:448][  2]LogRHI: Display: Encountered a new graphics PSO: 3670865199
+[2024.08.02-07.32.23:448][  2]LogRHI: Display: Encountered a new compute PSO: 4090296402
+[2024.08.02-07.32.23:448][  2]LogRHI: Display: Encountered a new graphics PSO: 4210484662
+[2024.08.02-07.32.23:449][  2]LogRHI: Display: Encountered a new graphics PSO: 977987442
+[2024.08.02-07.32.23:449][  2]LogRHI: Display: Encountered a new compute PSO: 710140861
+[2024.08.02-07.32.23:450][  2]LogRHI: Display: Encountered a new graphics PSO: 1487777183
+[2024.08.02-07.32.23:450][  2]LogRHI: Display: Encountered a new compute PSO: 3886170959
+[2024.08.02-07.32.23:451][  2]LogRHI: Display: Encountered a new graphics PSO: 3898165938
+[2024.08.02-07.32.23:452][  2]LogRHI: Display: Encountered a new graphics PSO: 2376581795
+[2024.08.02-07.32.23:452][  2]LogRHI: Display: Encountered a new graphics PSO: 3776468594
+[2024.08.02-07.32.23:452][  2]LogRHI: Display: Encountered a new graphics PSO: 3126438517
+[2024.08.02-07.32.23:455][  2]LogRHI: Display: Encountered a new compute PSO: 349008682
+[2024.08.02-07.32.23:756][  2]LogD3D12RHI: Cannot end block when stack is empty
+[2024.08.02-07.32.23:757][  2]LogRHI: Display: Encountered a new graphics PSO: 1601640264
+[2024.08.02-07.32.23:757][  2]LogRHI: Display: Encountered a new graphics PSO: 2881236056
+[2024.08.02-07.32.23:779][  3]LogHMD: SetSpectatorScreenMode(7).
+[2024.08.02-07.32.23:790][  4]LogRHI: Display: Encountered a new graphics PSO: 1324910427
+[2024.08.02-07.32.23:790][  4]LogRHI: Display: Encountered a new graphics PSO: 1796231892
+[2024.08.02-07.32.24:345][ 54]LogRHI: Display: Encountered a new graphics PSO: 1475094606
+[2024.08.02-07.32.24:345][ 54]LogRHI: Display: Encountered a new graphics PSO: 3836121350
+[2024.08.02-07.32.24:955][109]LogRHI: Display: Encountered a new graphics PSO: 3889033541
+[2024.08.02-07.32.24:956][109]LogRHI: Display: Encountered a new graphics PSO: 3309177214
+[2024.08.02-07.32.27:470][336]LogBlueprintUserMessages: [LoginManager_C_1] 55
+[2024.08.02-07.32.27:473][336]LogTemp: Initialized Participant ID: 55
+[2024.08.02-07.32.27:491][338]LogProfilingDebugging: Allocated a 1024 x 1024 texture for HMD canvas layer
+[2024.08.02-07.32.27:491][338]LogRHI: Display: Encountered a new graphics PSO: 1502675884
+[2024.08.02-07.32.27:504][339]LogRHI: Display: Encountered a new graphics PSO: 4069790606
+[2024.08.02-07.32.27:721][340]LogStats: FPlatformStackWalk::StackWalkAndDump -  0.200 s
+[2024.08.02-07.32.27:721][340]LogOutputDevice: Error: === Handled ensure: ===
+[2024.08.02-07.32.27:721][340]LogOutputDevice: Error: 
+[2024.08.02-07.32.27:721][340]LogOutputDevice: Error: Ensure condition failed: ((Result) >= 0)  [File:D:\build\++UE5\Sync\Engine\Plugins\Runtime\OpenXR\Source\OpenXRHMD\Private\OpenXRHMD.cpp] [Line: 3407] 
+[2024.08.02-07.32.27:721][340]LogOutputDevice: Error: OpenXR call failed with result XR_ERROR_RUNTIME_FAILURE
+[2024.08.02-07.32.27:721][340]LogOutputDevice: Error: Stack: 
+[2024.08.02-07.32.27:721][340]LogOutputDevice: Error: [Callstack] 0x00007ff7f4f084ec MetaCastBachelor.exe!FOpenXRHMD::OnFinishRendering_RHIThread() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7f4f0cc6e MetaCastBachelor.exe!FOpenXRRenderBridge::Present() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7f0deb340 MetaCastBachelor.exe!FD3D12Viewport::PresentChecked() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7f0deae5c MetaCastBachelor.exe!FD3D12Viewport::Present() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7f0ded277 MetaCastBachelor.exe!FD3D12CommandContextBase::RHIEndDrawingViewport() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7f10238cb MetaCastBachelor.exe!FRHICommand<FRHICommandEndDrawingViewport,FRHICommandEndDrawingViewportString2069>::ExecuteAndDestruct() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7f102149d MetaCastBachelor.exe!FRHICommandListBase::Execute() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7f100e571 MetaCastBachelor.exe!operator==() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7ecd49443 MetaCastBachelor.exe!TGraphTask<TFunctionGraphTaskImpl<void __cdecl(void),0> >::ExecuteTask() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7eccd9c07 MetaCastBachelor.exe!FNamedTaskThread::ProcessTasksNamedThread() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7eccda1fe MetaCastBachelor.exe!FNamedTaskThread::ProcessTasksUntilQuit() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7f117789c MetaCastBachelor.exe!FRHIThread::Run() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7ed28b252 MetaCastBachelor.exe!FRunnableThreadWin::Run() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ff7ed27eca7 MetaCastBachelor.exe!FRunnableThreadWin::GuardedRun() []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ffe05847374 KERNEL32.DLL!UnknownFunction []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: [Callstack] 0x00007ffe06b3cc91 ntdll.dll!UnknownFunction []
+[2024.08.02-07.32.27:722][340]LogOutputDevice: Error: 
+[2024.08.02-07.32.27:730][340]LogStats:                SubmitErrorReport -  0.000 s
+[2024.08.02-07.32.28:201][340]LogRHI: Error: Breadcrumbs 'RHIThread'
+
+[2024.08.02-07.32.28:205][340]LogWindows: Could not start crash report client using ../../../Engine/Binaries/Win64/CrashReportClient-Win64-Debug.exe
+[2024.08.02-07.32.28:205][340]LogMemory: Platform Memory Stats for Windows
+[2024.08.02-07.32.28:205][340]LogMemory: Process Physical Memory: 881.50 MB used, 884.77 MB peak
+[2024.08.02-07.32.28:205][340]LogMemory: Process Virtual Memory: 2279.77 MB used, 2280.62 MB peak
+[2024.08.02-07.32.28:205][340]LogMemory: Physical Memory: 24022.26 MB used,  8454.81 MB free, 32477.07 MB total
+[2024.08.02-07.32.28:205][340]LogMemory: Virtual Memory: 67523.48 MB used,  14852.91 MB free, 82376.39 MB total
+[2024.08.02-07.32.28:205][340]LogStats:                    SendNewReport -  0.476 s
+[2024.08.02-07.32.28:205][340]LogStats:             FDebug::EnsureFailed -  0.684 s
+[2024.08.02-07.32.28:224][341]LogHMD: SetSpectatorScreenMode(7).
+[2024.08.02-07.32.28:224][341]LogBlueprintUserMessages: [LoginManager_C_1] Initialized!
+[2024.08.02-07.32.30:479][544]LogBlueprintUserMessages: [LoginManager_C_1] Starting Condition: MagicWand
+[2024.08.02-07.32.35:478][994]LogBlueprintUserMessages: [LoginManager_C_1] LOADING CONDITION!
+[2024.08.02-07.32.35:478][994]LogTemp: Loading level: /Game/Maps/MagicWandMap.MagicWandMap
+[2024.08.02-07.32.35:481][995]LogNet: Browse: /Game/Maps/MagicWandMap.MagicWandMap
+[2024.08.02-07.32.35:481][995]LogLoad: LoadMap: /Game/Maps/MagicWandMap.MagicWandMap
+[2024.08.02-07.32.35:481][995]LogWorld: BeginTearingDown for /Game/Maps/Login
+[2024.08.02-07.32.35:482][995]LogWorld: UWorld::CleanupWorld for Login, bSessionEnded=true, bCleanupResources=true
+[2024.08.02-07.32.35:482][995]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.32.35:500][995]LogHMD: Error: Unexpected error on xrBeginFrame. Error code was XR_ERROR_CALL_ORDER_INVALID.
+[2024.08.02-07.32.35:527][995]LogStreaming: Display: 0.018 ms for processing 532 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 63 (265->202) packages and 221 (437->216) public exports.
+[2024.08.02-07.32.35:527][995]LogAudio: Display: Audio Device unregistered from world 'None'.
+[2024.08.02-07.32.35:529][995]LogSlate: Slate User Unregistered.  User Index 8
+[2024.08.02-07.32.35:529][995]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.32.35:530][995]LogUObjectHash: Compacting FUObjectHashTables data took   0.86ms
+[2024.08.02-07.32.35:534][995]LogStreaming: Display: FlushAsyncLoading(103): 1 QueuedPackages, 0 AsyncPackages
+[2024.08.02-07.32.35:564][995]LogPackageName: Warning: TryConvertFilenameToLongPackageName was passed an ObjectPath (/Game/Maps/MagicWandMap.MagicWandMap) rather than a PackageName or FilePath; it will be converted to the PackageName. Accepting ObjectPaths is deprecated behavior and will be removed in a future release; TryConvertFilenameToLongPackageName will fail on ObjectPaths.
+[2024.08.02-07.32.35:591][995]LogAudio: Display: Audio Device (ID: 1) registered with world 'MagicWandMap'.
+[2024.08.02-07.32.35:591][995]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created!
+[2024.08.02-07.32.35:591][995]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
+[2024.08.02-07.32.35:593][995]LogAIModule: Creating AISystem for world MagicWandMap
+[2024.08.02-07.32.35:593][995]LogLoad: Game class is 'VRGameMode_C'
+[2024.08.02-07.32.35:595][995]LogWorld: Bringing World /Game/Maps/MagicWandMap.MagicWandMap up for play (max tick rate 0) at 2024.08.02-09.32.35
+[2024.08.02-07.32.35:595][995]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1
+[2024.08.02-07.32.35:595][995]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.32.35:595][995]LogWorld: Bringing up level for play took: 0.002067
+[2024.08.02-07.32.35:596][995]LogGameMode: FindPlayerStart: PATHS NOT DEFINED or NO PLAYERSTART with positive rating
+[2024.08.02-07.32.35:597][995]LogTemp: Point Cloud Folder: ../../../MetaCastBachelor/Content/Data/data
+[2024.08.02-07.32.35:597][995]LogTemp: Flag Folder: ../../../MetaCastBachelor/Content/Data/flags
+[2024.08.02-07.32.35:599][995]LogTemp: Total Point Cloud Files: 24
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/ball_hemisphere
+[2024.08.02-07.32.35:599][995]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/ball_hemisphere_flags
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/disk
+[2024.08.02-07.32.35:599][995]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/disk_flags
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/fiveellipsolds
+[2024.08.02-07.32.35:599][995]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/fiveellipsolds_flags_1
+[2024.08.02-07.32.35:599][995]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/fiveellipsolds_flags_2
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube1
+[2024.08.02-07.32.35:599][995]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube1_flags_1
+[2024.08.02-07.32.35:599][995]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube1_flags_2
+[2024.08.02-07.32.35:599][995]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube1_flags_3
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube2
+[2024.08.02-07.32.35:599][995]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube2_flags
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube3
+[2024.08.02-07.32.35:599][995]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube3_flags
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/galaxy
+[2024.08.02-07.32.35:599][995]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/galaxy
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/multiEllipsolds
+[2024.08.02-07.32.35:599][995]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/multiEllipsolds
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/nbody1
+[2024.08.02-07.32.35:599][995]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/nbody1_flags
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/nbody2
+[2024.08.02-07.32.35:599][995]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/nbody2_flags
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/snap_animation
+[2024.08.02-07.32.35:599][995]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/snap_animation_flags
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/stringf
+[2024.08.02-07.32.35:599][995]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/stringf
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/stringf1
+[2024.08.02-07.32.35:599][995]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/stringf1
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/strings
+[2024.08.02-07.32.35:599][995]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/strings
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/three_rings
+[2024.08.02-07.32.35:599][995]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/three_rings_flags
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_cylinder
+[2024.08.02-07.32.35:599][995]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_cylinder_flags
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_cylinder_2
+[2024.08.02-07.32.35:599][995]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/training_cylinder_2
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_pyramid
+[2024.08.02-07.32.35:599][995]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_pyramid_flags
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_pyramid_2
+[2024.08.02-07.32.35:599][995]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/training_pyramid_2
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_sphere
+[2024.08.02-07.32.35:599][995]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_sphere_flags
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_sphere_2
+[2024.08.02-07.32.35:599][995]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/training_sphere_2
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_torus
+[2024.08.02-07.32.35:599][995]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_torus_flags
+[2024.08.02-07.32.35:599][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/uniform_Lines
+[2024.08.02-07.32.35:599][995]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/uniform_Lines_flags
+[2024.08.02-07.32.35:600][995]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/ununiform_Lines
+[2024.08.02-07.32.35:600][995]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/ununiform_Lines_flags
+[2024.08.02-07.32.35:600][995]LogTemp: Point Cloud Files with No Matching Flags:
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/galaxy
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/multiEllipsolds
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/stringf
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/stringf1
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/strings
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_cylinder_2
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_pyramid_2
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_sphere_2
+[2024.08.02-07.32.35:600][995]LogTemp: Valid Point Cloud Files with Matching Flags:
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/ball_hemisphere
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/disk
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/fiveellipsolds
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube1
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube2
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube3
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/nbody1
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/nbody2
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/snap_animation
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/three_rings
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_cylinder
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_pyramid
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_sphere
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_torus
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/uniform_Lines
+[2024.08.02-07.32.35:600][995]LogTemp: ../../../MetaCastBachelor/Content/Data/data/ununiform_Lines
+[2024.08.02-07.32.35:618][995]LogTemp: Warning: Loaded 146578 points and flags
+[2024.08.02-07.32.35:620][995]LogTemp: Warning: Minimum: X=0.000 Y=0.000 Z=0.000 ; Maximum: X=100.000 Y=100.000 Z=100.000
+[2024.08.02-07.32.35:681][995]LogTemp: Initializing DensityField!
+[2024.08.02-07.32.35:808][995]LogTemp: Starting density calculation.
+[2024.08.02-07.32.35:815][995]LogTemp: Cleared previous densities.
+[2024.08.02-07.32.35:952][995]LogTemp: Maximum density found: 5.575187
+[2024.08.02-07.32.35:952][995]LogTemp: Minimum density found: 0.000000
+[2024.08.02-07.32.35:952][995]LogTemp: Average density found: 0.129851
+[2024.08.02-07.32.35:952][995]LogTemp: Density calculation completed in 0.143931 seconds.
+[2024.08.02-07.32.35:952][995]LogTemp: Starting gradient calculation.
+[2024.08.02-07.32.35:975][995]LogTemp: Gradient calculation completed.
+[2024.08.02-07.32.36:020][995]LogLoad: Took 0.539449 seconds to LoadMap(/Game/Maps/MagicWandMap.MagicWandMap)
+[2024.08.02-07.32.36:032][995]LogRHI: Display: Encountered a new graphics PSO: 1980780655
+[2024.08.02-07.32.36:032][995]LogRHI: Display: Encountered a new graphics PSO: 3450231069
+[2024.08.02-07.32.36:032][995]LogUObjectGlobals: Warning: Gamethread hitch waiting for resource cleanup on a UObject (PointCloudMeshComponent /Game/Maps/MagicWandMap.MagicWandMap:PersistentLevel.BP_PointCloud_C_1.GPUPointCloudRenderer.PointCloud Mesh) overwrite took  10.80ms. Fix the higher level code so that this does not happen.
+[2024.08.02-07.32.36:145][997]LogRHI: Display: Encountered a new graphics PSO: 4228879312
+[2024.08.02-07.32.36:145][997]LogRHI: Display: Encountered a new graphics PSO: 1361913955
+[2024.08.02-07.32.36:145][997]LogRHI: Display: Encountered a new graphics PSO: 1099305870
+[2024.08.02-07.32.36:145][997]LogRHI: Display: Encountered a new graphics PSO: 909860731
+[2024.08.02-07.32.36:167][998]LogRHI: Display: Encountered a new graphics PSO: 3242259045
+[2024.08.02-07.33.14:802][425]LogWindowsDesktop: Alt-F4 pressed!
+[2024.08.02-07.33.14:802][425]LogSlate: Request Window 'MetaCastBachelor (64-bit Development PCD3D_SM6) ' being destroyed
+[2024.08.02-07.33.14:815][425]LogSlate: Window 'MetaCastBachelor (64-bit Development PCD3D_SM6) ' being destroyed
+[2024.08.02-07.33.14:816][425]LogWindowsTextInputMethodSystem: Activated input method: German (Germany) - (Keyboard).
+[2024.08.02-07.33.14:830][425]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
+[2024.08.02-07.33.14:830][425]LogEngine: All Windows Closed
+[2024.08.02-07.33.14:830][425]LogWindows: FPlatformMisc::RequestExit(0, UGameEngine::Tick.ViewportClosed)
+[2024.08.02-07.33.14:830][425]LogWindows: FPlatformMisc::RequestExitWithStatus(0, 0, UGameEngine::Tick.ViewportClosed)
+[2024.08.02-07.33.14:830][425]LogCore: Engine exit requested (reason: Win RequestExit)
+[2024.08.02-07.33.14:832][426]LogCore: Engine exit requested (reason: EngineExit() was called; note: exit was already requested)
+[2024.08.02-07.33.14:832][426]LogInit: Display: PreExit Game.
+[2024.08.02-07.33.14:833][426]LogWorld: BeginTearingDown for /Game/Maps/MagicWandMap
+[2024.08.02-07.33.14:834][426]LogWorld: UWorld::CleanupWorld for MagicWandMap, bSessionEnded=true, bCleanupResources=true
+[2024.08.02-07.33.14:834][426]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.33.15:250][426]LogAudio: Display: Beginning Audio Device Manager Shutdown (Module: AudioMixerXAudio2)...
+[2024.08.02-07.33.15:250][426]LogAudio: Display: Destroying 1 Remaining Audio Device(s)...
+[2024.08.02-07.33.15:250][426]LogAudio: Display: Audio Device unregistered from world 'MagicWandMap'.
+[2024.08.02-07.33.15:250][426]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 1
+[2024.08.02-07.33.15:283][426]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1
+[2024.08.02-07.33.15:284][426]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1
+[2024.08.02-07.33.15:294][426]LogAudio: Display: Audio Device Manager Shutdown
+[2024.08.02-07.33.15:297][426]LogExit: Preparing to exit.
+[2024.08.02-07.33.15:297][426]LogMoviePlayer: Shutting down movie player
+[2024.08.02-07.33.15:303][426]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
+[2024.08.02-07.33.15:317][426]LogDemo: Cleaned up 0 splitscreen connections, owner deletion: enabled
+[2024.08.02-07.33.15:318][426]LogExit: Game engine shut down
+[2024.08.02-07.33.15:377][426]LogExit: Object subsystem successfully closed.
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module AutomationController (496)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module AutomationWorker (494)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module Voice (492)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module AIModule (490)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module GameplayDebugger (489)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module NavigationSystem (487)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module OpenXRInput (484)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module WmfMediaFactory (482)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module WebMMediaFactory (480)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module WebMMedia (478)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module OpenExrWrapper (476)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module ImgMediaFactory (474)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module AvfMediaFactory (472)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module FractureEngine (470)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module CharacterAI (468)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module SessionServices (466)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module MovieSceneTracks (464)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module MovieScene (462)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module StreamingPauseRendering (460)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module BinkAudioDecoder (458)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module AudioMixerXAudio2 (456)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module AudioMixer (455)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module AudioMixerCore (454)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module TypedElementRuntime (450)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module TypedElementFramework (448)
+[2024.08.02-07.33.15:392][426]LogModuleManager: Shutting down and abandoning module ProfilerService (446)
+[2024.08.02-07.33.15:531][426]LogModuleManager: Shutting down and abandoning module ProfileVisualizer (444)
+[2024.08.02-07.33.15:531][426]LogModuleManager: Shutting down and abandoning module RWTHVRToolkit (442)
+[2024.08.02-07.33.15:531][426]LogModuleManager: Shutting down and abandoning module RWTHVRCluster (440)
+[2024.08.02-07.33.15:531][426]LogModuleManager: Shutting down and abandoning module GPUPointCloudRendererEditor (438)
+[2024.08.02-07.33.15:531][426]LogModuleManager: Shutting down and abandoning module TakeMovieScene (436)
+[2024.08.02-07.33.15:531][426]LogModuleManager: Shutting down and abandoning module RemoteControlInterception (434)
+[2024.08.02-07.33.15:531][426]LogModuleManager: Shutting down and abandoning module CameraCalibrationCoreMovieScene (432)
+[2024.08.02-07.33.15:531][426]LogModuleManager: Shutting down and abandoning module TraceUtilities (430)
+[2024.08.02-07.33.15:531][426]LogModuleManager: Shutting down and abandoning module DisplayClusterReplication (428)
+[2024.08.02-07.33.15:531][426]LogModuleManager: Shutting down and abandoning module SharedMemoryMedia (426)
+[2024.08.02-07.33.15:531][426]LogSharedMemoryMedia: Shutting down module SharedMemoryMedia'...
+[2024.08.02-07.33.15:531][426]LogModuleManager: Shutting down and abandoning module DisplayClusterMedia (424)
+[2024.08.02-07.33.15:531][426]LogDisplayClusterMedia: Shutting down module 'DisplayClusterMedia'...
+[2024.08.02-07.33.15:531][426]LogModuleManager: Shutting down and abandoning module DisplayClusterRemoteControlInterceptor (422)
+[2024.08.02-07.33.15:531][426]LogDisplayClusterRemoteControlInterceptor: DisplayClusterRemoteControlInterceptor has been unregistered
+[2024.08.02-07.33.15:531][426]LogModuleManager: Shutting down and abandoning module DisplayClusterStageMonitoring (420)
+[2024.08.02-07.33.15:531][426]LogModuleManager: Shutting down and abandoning module DisplayClusterScenePreview (418)
+[2024.08.02-07.33.15:531][426]LogModuleManager: Shutting down and abandoning module DisplayClusterMessageInterception (416)
+[2024.08.02-07.33.15:531][426]LogModuleManager: Shutting down and abandoning module DisplayClusterProjection (414)
+[2024.08.02-07.33.15:531][426]LogDisplayClusterProjection: Projection module shutdown
+[2024.08.02-07.33.15:531][426]LogDisplayClusterProjection: Un-registering <camera> projection factory...
+[2024.08.02-07.33.15:531][426]LogDisplayClusterRender: Unregistering factory for projection policy: camera
+[2024.08.02-07.33.15:531][426]LogDisplayClusterRender: Unregistered factory for projection policy: camera
+[2024.08.02-07.33.15:531][426]LogDisplayClusterProjection: Un-registering <domeprojection> projection factory...
+[2024.08.02-07.33.15:531][426]LogDisplayClusterRender: Unregistering factory for projection policy: domeprojection
+[2024.08.02-07.33.15:531][426]LogDisplayClusterRender: Unregistered factory for projection policy: domeprojection
+[2024.08.02-07.33.15:531][426]LogDisplayClusterProjection: Un-registering <easyblend> projection factory...
+[2024.08.02-07.33.15:531][426]LogDisplayClusterRender: Unregistering factory for projection policy: easyblend
+[2024.08.02-07.33.15:531][426]LogDisplayClusterRender: Unregistered factory for projection policy: easyblend
+[2024.08.02-07.33.15:531][426]LogDisplayClusterProjection: Un-registering <link> projection factory...
+[2024.08.02-07.33.15:531][426]LogDisplayClusterRender: Unregistering factory for projection policy: link
+[2024.08.02-07.33.15:531][426]LogDisplayClusterRender: Unregistered factory for projection policy: link
+[2024.08.02-07.33.15:531][426]LogDisplayClusterProjection: Un-registering <manual> projection factory...
+[2024.08.02-07.33.15:531][426]LogDisplayClusterRender: Unregistering factory for projection policy: manual
+[2024.08.02-07.33.15:532][426]LogDisplayClusterRender: Unregistered factory for projection policy: manual
+[2024.08.02-07.33.15:532][426]LogDisplayClusterProjection: Un-registering <mpcdi> projection factory...
+[2024.08.02-07.33.15:532][426]LogDisplayClusterRender: Unregistering factory for projection policy: mpcdi
+[2024.08.02-07.33.15:532][426]LogDisplayClusterRender: Unregistered factory for projection policy: mpcdi
+[2024.08.02-07.33.15:532][426]LogDisplayClusterProjection: Un-registering <mesh> projection factory...
+[2024.08.02-07.33.15:532][426]LogDisplayClusterRender: Unregistering factory for projection policy: mesh
+[2024.08.02-07.33.15:532][426]LogDisplayClusterRender: Unregistered factory for projection policy: mesh
+[2024.08.02-07.33.15:532][426]LogDisplayClusterProjection: Un-registering <simple> projection factory...
+[2024.08.02-07.33.15:532][426]LogDisplayClusterRender: Unregistering factory for projection policy: simple
+[2024.08.02-07.33.15:532][426]LogDisplayClusterRender: Unregistered factory for projection policy: simple
+[2024.08.02-07.33.15:532][426]LogDisplayClusterProjection: Un-registering <vioso> projection factory...
+[2024.08.02-07.33.15:532][426]LogDisplayClusterRender: Unregistering factory for projection policy: vioso
+[2024.08.02-07.33.15:532][426]LogDisplayClusterRender: Unregistered factory for projection policy: vioso
+[2024.08.02-07.33.15:532][426]LogDisplayClusterProjection: Projection module has been destroyed
+[2024.08.02-07.33.15:532][426]LogDisplayClusterProjectionVIOSO: VIOSO API released.
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module DisplayCluster (412)
+[2024.08.02-07.33.15:532][426]LogDisplayClusterModule: Cleaning up internals...
+[2024.08.02-07.33.15:532][426]LogDisplayClusterCluster: Releasing cluster manager...
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module DisplayClusterLightCardExtender (410)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module XRBase (408)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module ResonanceAudio (406)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module OSC (404)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module MobilePatchingUtils (402)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module LiveLinkOverNDisplay (400)
+[2024.08.02-07.33.15:532][426]LogNDisplayLiveLinkSubjectReplicator: Unregistering sync object.
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module InputDebugging (398)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module GooglePAD (396)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module DynamicMesh (394)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module GeometryAlgorithms (392)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module GeometryCacheTracks (390)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module GeometryCache (388)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module AudioWidgets (386)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module AdvancedWidgets (385)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module AudioCapture (382)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module AudioCaptureWasapi (381)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module AssetTags (378)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module ArchVisCharacter (376)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module AppleImageUtils (374)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module AndroidPermission (372)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module ActorLayerUtilities (370)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module TemplateSequence (366)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module SequencerScripting (364)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module UEOpenExrRTTI (362)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineRenderPasses (360)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineSettings (358)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineCore (356)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module MediaPlate (354)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module MediaCompositing (352)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module ImgMedia (350)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module InterchangeCommonParser (348)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module InterchangeDispatcher (346)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module InterchangeExport (344)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module InterchangeMessages (342)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module GLTFCore (340)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module VPSettings (338)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module VPRoles (336)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module StructUtilsEngine (334)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module OpenImageDenoise (332)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module LocalizableMessageBlueprint (330)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module LocalizableMessage (328)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module GeometryCollectionNodes (326)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module GeometryCollectionTracks (324)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module DataflowNodes (322)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module DataflowEnginePlugin (320)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module ChaosUserDataPT (318)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module ChaosNiagara (316)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module BackChannel (314)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module AutomationUtils (312)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module ConsoleVariablesEditorRuntime (310)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module UObjectPlugin (308)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module DumpGPUServices (306)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module MultiUserClientLibrary (304)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module OodleNetworkHandlerComponent (302)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module Composure (300)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module LiveLinkMovieScene (298)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module LiveLinkComponents (296)
+[2024.08.02-07.33.15:532][426]LogModuleManager: Shutting down and abandoning module LiveLink (294)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module ControlRigSpline (292)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module MetaCastBachelor (290)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module UniversalLogging (288)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module Synthesis (286)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module SoundFields (284)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module SignificanceManager (282)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module RigVM (280)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module ProceduralMeshComponent (278)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module MsQuicRuntime (276)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module MetasoundEngineTest (274)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module MetasoundEngine (272)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module WaveTable (271)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module AudioCodecEngine (269)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module MetasoundStandardNodes (266)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module MetasoundFrontend (264)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module MetasoundGenerator (262)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module MetasoundGraphCore (260)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module LocationServicesBPLibrary (258)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module SQLiteCore (256)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module CustomMeshComponent (254)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module CableComponent (252)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module AudioSynesthesia (250)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module AudioAnalyzer (249)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module AudioSynesthesiaCore (246)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module ActorSequence (244)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module UdpMessaging (242)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module TcpMessaging (240)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module ImgMediaEngine (238)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module InterchangePipelines (236)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module InterchangeImport (234)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module InterchangeFactoryNodes (232)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module InterchangeNodes (230)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module NiagaraAnimNotifies (228)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module Niagara (226)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module SignalProcessing (225)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module NiagaraCore (222)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module StructUtils (220)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module PBIK (218)
+[2024.08.02-07.33.16:317][426]LogModuleManager: Shutting down and abandoning module FullBodyIK (216)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module ChaosCaching (214)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module EnhancedInput (212)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module FacialAnimation (210)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module AnimationSharing (208)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module GameplayCameras (206)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module IKRig (204)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module ControlRig (202)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module Constraints (201)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module LevelSequence (199)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module Paper2D (196)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module Kdtree (194)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module WindowsMoviePlayer (192)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module WebMMoviePlayer (190)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module AndroidFileServer (188)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module NetworkReplayStreaming (186)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module PacketHandler (184)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module ClothingSystemRuntimeNv (182)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module MediaAssets (180)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module Overlay (178)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module FunctionalTesting (176)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module MessageLog (174)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module UMG (172)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module SlateReflector (170)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module Slate (168)
+[2024.08.02-07.33.16:318][426]LogModuleManager: Shutting down and abandoning module SlateCore (166)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module MRMesh (164)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module Messaging (162)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module HeadMountedDisplay (160)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module LiveCoding (158)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module Networking (156)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module Core (154)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module ImageWriteQueue (152)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module GPUPointCloudRenderer (150)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module TelemetryUtils (147)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module ImageWrapper (144)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module InputCore (142)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module Settings (140)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module ChaosSolverEngine (138)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module FieldSystemEngine (137)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module Chaos (134)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module GeometryCore (133)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module WindowsPlatformFeatures (130)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module GameplayMediaEncoder (129)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module AVEncoder (128)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module D3D12RHI (124)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module CameraCalibrationCore (122)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module DisplayClusterLightCardEditorShaders (120)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module DisplayClusterConfiguration (118)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module DisplayClusterShaders (116)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module WindowsDeviceProfileSelector (114)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module OpenXRAR (112)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module AugmentedReality (111)
+[2024.08.02-07.33.16:319][426]LogModuleManager: Shutting down and abandoning module OpenXRHandTracking (108)
+[2024.08.02-07.33.16:319][426]LogSlate: Slate User Destroyed.  User Index 0, Is Virtual User: 0
+[2024.08.02-07.33.16:320][426]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.33.16:320][426]LogModuleManager: Shutting down and abandoning module OpenXRHMD (107)
+[2024.08.02-07.33.16:322][426]LogModuleManager: Shutting down and abandoning module OpenXREyeTracker (104)
+[2024.08.02-07.33.16:322][426]LogModuleManager: Shutting down and abandoning module OpenCVHelper (102)
+[2024.08.02-07.33.16:322][426]LogModuleManager: Shutting down and abandoning module HPMotionController (100)
+[2024.08.02-07.33.16:322][426]LogModuleManager: Shutting down and abandoning module ExampleDeviceProfileSelector (98)
+[2024.08.02-07.33.16:322][426]LogModuleManager: Shutting down and abandoning module ChunkDownloader (96)
+[2024.08.02-07.33.16:322][426]LogModuleManager: Shutting down and abandoning module LauncherChunkInstaller (94)
+[2024.08.02-07.33.16:322][426]LogModuleManager: Shutting down and abandoning module OnlineSubsystem (92)
+[2024.08.02-07.33.16:322][426]LogModuleManager: Shutting down and abandoning module HTTP (87)
+[2024.08.02-07.33.16:336][426]LogModuleManager: Shutting down and abandoning module SSL (86)
+[2024.08.02-07.33.16:336][426]LogModuleManager: Shutting down and abandoning module OnlineSubsystemUtils (82)
+[2024.08.02-07.33.16:336][426]LogModuleManager: Shutting down and abandoning module OnlineServicesCommonEngineUtils (80)
+[2024.08.02-07.33.16:336][426]LogModuleManager: Shutting down and abandoning module OnlineServicesCommon (78)
+[2024.08.02-07.33.16:336][426]LogModuleManager: Shutting down and abandoning module OnlineServicesInterface (76)
+[2024.08.02-07.33.16:336][426]LogModuleManager: Shutting down and abandoning module WmfMedia (74)
+[2024.08.02-07.33.16:337][426]LogModuleManager: Shutting down and abandoning module Media (73)
+[2024.08.02-07.33.16:337][426]LogModuleManager: Shutting down and abandoning module GPUTextureTransfer (70)
+[2024.08.02-07.33.16:337][426]LogModuleManager: Shutting down and abandoning module MediaIOCore (68)
+[2024.08.02-07.33.16:337][426]LogModuleManager: Shutting down and abandoning module ExrReaderGpu (66)
+[2024.08.02-07.33.16:337][426]LogModuleManager: Shutting down and abandoning module NiagaraVertexFactories (64)
+[2024.08.02-07.33.16:337][426]LogModuleManager: Shutting down and abandoning module NiagaraShader (62)
+[2024.08.02-07.33.16:337][426]LogModuleManager: Shutting down and abandoning module VPUtilities (60)
+[2024.08.02-07.33.16:337][426]LogModuleManager: Shutting down and abandoning module ColorCorrectRegions (58)
+[2024.08.02-07.33.16:337][426]LogModuleManager: Shutting down and abandoning module ChaosCloth (56)
+[2024.08.02-07.33.16:337][426]LogModuleManager: Shutting down and abandoning module VariantManagerContent (54)
+[2024.08.02-07.33.16:337][426]LogModuleManager: Shutting down and abandoning module GLTFExporter (52)
+[2024.08.02-07.33.16:337][426]LogModuleManager: Shutting down and abandoning module DatasmithContent (50)
+[2024.08.02-07.33.16:338][426]LogModuleManager: Shutting down and abandoning module RenderDocPlugin (48)
+[2024.08.02-07.33.16:338][426]RenderDocPlugin: plugin has been unloaded.
+[2024.08.02-07.33.16:338][426]LogModuleManager: Shutting down and abandoning module PixWinPlugin (46)
+[2024.08.02-07.33.16:338][426]LogModuleManager: Shutting down and abandoning module OpenColorIO (44)
+[2024.08.02-07.33.16:338][426]LogModuleManager: Shutting down and abandoning module ACLPlugin (42)
+[2024.08.02-07.33.16:338][426]LogModuleManager: Shutting down and abandoning module AISupportModule (40)
+[2024.08.02-07.33.16:338][426]LogModuleManager: Shutting down and abandoning module PythonScriptPluginPreload (38)
+[2024.08.02-07.33.16:338][426]LogModuleManager: Shutting down and abandoning module PlatformCryptoOpenSSL (36)
+[2024.08.02-07.33.16:338][426]LogModuleManager: Shutting down and abandoning module PlatformCryptoTypes (34)
+[2024.08.02-07.33.16:338][426]LogModuleManager: Shutting down and abandoning module PlatformCrypto (32)
+[2024.08.02-07.33.16:338][426]LogModuleManager: Shutting down and abandoning module IoStoreOnDemand (30)
+[2024.08.02-07.33.16:338][426]LogModuleManager: Shutting down and abandoning module RenderCore (28)
+[2024.08.02-07.33.16:338][426]LogModuleManager: Shutting down and abandoning module Landscape (26)
+[2024.08.02-07.33.16:338][426]LogModuleManager: Shutting down and abandoning module SlateRHIRenderer (24)
+[2024.08.02-07.33.16:338][426]LogModuleManager: Shutting down and abandoning module AnimGraphRuntime (22)
+[2024.08.02-07.33.16:338][426]LogModuleManager: Shutting down and abandoning module Renderer (20)
+[2024.08.02-07.33.16:338][426]LogModuleManager: Shutting down and abandoning module Engine (18)
+[2024.08.02-07.33.16:338][426]LogModuleManager: Shutting down and abandoning module CoreUObject (16)
+[2024.08.02-07.33.16:338][426]LogModuleManager: Shutting down and abandoning module SandboxFile (14)
+[2024.08.02-07.33.16:338][426]LogModuleManager: Shutting down and abandoning module PakFile (12)
+[2024.08.02-07.33.16:338][426]LogPakFile: Destroying PakPlatformFile
+[2024.08.02-07.33.16:339][426]LogModuleManager: Shutting down and abandoning module RSA (11)
+[2024.08.02-07.33.16:339][426]LogModuleManager: Shutting down and abandoning module NetworkFile (8)
+[2024.08.02-07.33.16:339][426]LogModuleManager: Shutting down and abandoning module StreamingFile (6)
+[2024.08.02-07.33.16:339][426]LogModuleManager: Shutting down and abandoning module CookOnTheFly (4)
+[2024.08.02-07.33.16:339][426]LogModuleManager: Shutting down and abandoning module StorageServerClient (2)
+[2024.08.02-07.33.16:389][426]LogD3D12RHI: ~FD3D12DynamicRHI
+[2024.08.02-07.33.16:411][426]LogExit: Exiting.
+[2024.08.02-07.33.16:450][426]Log file closed, 08/02/24 09:33:16
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Logs/MetaCastBachelor.log b/Builds/Windows/MetaCastBachelor/Saved/Logs/MetaCastBachelor.log
new file mode 100644
index 0000000000000000000000000000000000000000..8e1cdafe96828d7ef6c5ffc0cb0dd83a39340dbb
--- /dev/null
+++ b/Builds/Windows/MetaCastBachelor/Saved/Logs/MetaCastBachelor.log
@@ -0,0 +1,1847 @@
+Log file open, 08/02/24 09:47:03
+LogWindows: Failed to load 'aqProf.dll' (GetLastError=126)
+LogWindows: File 'aqProf.dll' does not exist
+LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64).
+LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126)
+LogWindows: File 'VtuneApi.dll' does not exist
+LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126)
+LogWindows: File 'VtuneApi32e.dll' does not exist
+LogWindows: Custom abort handler registered for crash reporting.
+LogCore: Display: UnrealTraceServer: Unable to launch the trace store with '"../../../Engine//Binaries/Win64/UnrealTraceServer.exe" fork' (00000002)
+LogTrace: Initializing trace...
+LogTrace: Finished trace initialization.
+LogCsvProfiler: Display: Metadata set : platform="Windows"
+LogCsvProfiler: Display: Metadata set : config="Development"
+LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.3-CL-29314046"
+LogCsvProfiler: Display: Metadata set : engineversion="5.3.2-29314046+++UE5+Release-5.3"
+LogCsvProfiler: Display: Metadata set : os="Windows 10 (22H2) [10.0.19045.4651] "
+LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|Intel(R) Core(TM) i9-10900X CPU @ 3.70GHz"
+LogCsvProfiler: Display: Metadata set : pgoenabled="0"
+LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0"
+LogCsvProfiler: Display: Metadata set : ltoenabled="0"
+LogCsvProfiler: Display: Metadata set : asan="0"
+LogCsvProfiler: Display: Metadata set : commandline="" MetaCastBachelor""
+LogCsvProfiler: Display: Metadata set : loginid="6cbed587469a168a7370319bba147631"
+LogCsvProfiler: Display: Metadata set : llm="0"
+LogPakFile: Initializing PakPlatformFile
+LogIoDispatcher: Display: Reading toc: ../../../MetaCastBachelor/Content/Paks/global.utoc
+LogIoDispatcher: Display: Toc signature hash: 0000000000000000000000000000000000000000
+LogIoDispatcher: Display: Mounting container '../../../MetaCastBachelor/Content/Paks/global.utoc' in location slot 0
+LogPakFile: Display: Initialized I/O dispatcher file backend. Mounted the global container: ../../../MetaCastBachelor/Content/Paks/global.utoc
+LogPakFile: Display: Found Pak file ../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak attempting to mount.
+LogPakFile: Display: Mounting pak file ../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak.
+LogIoDispatcher: Display: Reading toc: ../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc
+LogIoDispatcher: Display: Toc signature hash: 0000000000000000000000000000000000000000
+LogIoDispatcher: Display: Mounting container '../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc' in location slot 0
+LogPakFile: Display: Mounted IoStore container "../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.utoc"
+LogPakFile: Display: Mounted Pak file '../../../MetaCastBachelor/Content/Paks/MetaCastBachelor-Windows.pak', mount point: '../../../'
+LogStats: Stats thread started at 0.151726
+LogAssetRegistry: Premade AssetRegistry loaded from '../../../MetaCastBachelor/AssetRegistry.bin'
+LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +1:00, Platform Override: ''
+LogInit: Session CrashGUID >====================================================
+         Session CrashGUID >   UECC-Windows-E3C9761E4BF7C760D57C51945791F4DF
+         Session CrashGUID >====================================================
+LogStreaming: Warning: Failed to read file 'D:/UnrealProjects/MetaCastBachelor/Builds/Windows/Cloud/IoStoreOnDemand.ini' error.
+LogPluginManager: Mounting Engine plugin Paper2D
+LogPluginManager: Mounting Engine plugin AISupport
+LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor
+LogPluginManager: Mounting Engine plugin ACLPlugin
+LogPluginManager: Mounting Engine plugin AnimationData
+LogPluginManager: Mounting Engine plugin ControlRigSpline
+LogPluginManager: Mounting Engine plugin ControlRig
+LogPluginManager: Mounting Engine plugin IKRig
+LogPluginManager: Mounting Engine plugin LiveLink
+LogPluginManager: Mounting Engine plugin Bridge
+LogPluginManager: Mounting Engine plugin CameraShakePreviewer
+LogPluginManager: Mounting Engine plugin GameplayCameras
+LogPluginManager: Mounting Engine plugin Composure
+LogPluginManager: Mounting Engine plugin OpenColorIO
+LogPluginManager: Mounting Engine plugin OodleNetwork
+LogPluginManager: Mounting Engine plugin AnimationSharing
+LogPluginManager: Mounting Engine plugin MultiUserClient
+LogPluginManager: Mounting Engine plugin ConcertMain
+LogPluginManager: Mounting Engine plugin ConcertSyncClient
+LogPluginManager: Mounting Engine plugin ConcertSyncCore
+LogPluginManager: Mounting Engine plugin ConcertSharedSlate
+LogPluginManager: Mounting Engine plugin DumpGPUServices
+LogPluginManager: Mounting Engine plugin PixWinPlugin
+LogPluginManager: Mounting Engine plugin PluginUtils
+LogPluginManager: Mounting Engine plugin RenderDocPlugin
+LogPluginManager: Mounting Engine plugin UObjectPlugin
+LogPluginManager: Mounting Engine plugin AssetManagerEditor
+LogPluginManager: Mounting Engine plugin BlueprintHeaderView
+LogPluginManager: Mounting Engine plugin BlueprintMaterialTextureNodes
+LogPluginManager: Mounting Engine plugin ConsoleVariables
+LogPluginManager: Mounting Engine plugin EditorScriptingUtilities
+LogPluginManager: Mounting Engine plugin FacialAnimation
+LogPluginManager: Mounting Engine plugin GameplayTagsEditor
+LogPluginManager: Mounting Engine plugin GeometryMode
+LogPluginManager: Mounting Engine plugin LightMixer
+LogPluginManager: Mounting Engine plugin ObjectMixer
+LogPluginManager: Mounting Engine plugin SequencerAnimTools
+LogPluginManager: Mounting Engine plugin SpeedTreeImporter
+LogPluginManager: Mounting Engine plugin UVEditor
+LogPluginManager: Mounting Engine plugin EnhancedInput
+LogPluginManager: Found config from plugin[EnhancedInput] Input
+LogPluginManager: Mounting Engine plugin DatasmithContent
+LogPluginManager: Mounting Engine plugin GLTFExporter
+LogPluginManager: Mounting Engine plugin VariantManagerContent
+LogPluginManager: Mounting Engine plugin VariantManager
+LogPluginManager: Mounting Engine plugin AutomationUtils
+LogPluginManager: Mounting Engine plugin BackChannel
+LogPluginManager: Mounting Engine plugin ChaosCaching
+LogPluginManager: Mounting Engine plugin ChaosClothEditor
+LogPluginManager: Mounting Engine plugin ChaosCloth
+LogPluginManager: Mounting Engine plugin ChaosEditor
+LogPluginManager: Mounting Engine plugin ChaosNiagara
+LogPluginManager: Mounting Engine plugin ChaosSolverPlugin
+LogPluginManager: Mounting Engine plugin ChaosUserDataPT
+LogPluginManager: Mounting Engine plugin CharacterAI
+LogPluginManager: Mounting Engine plugin ColorCorrectRegions
+LogPluginManager: Mounting Engine plugin Dataflow
+LogPluginManager: Mounting Engine plugin Fracture
+LogPluginManager: Mounting Engine plugin FullBodyIK
+LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin
+LogPluginManager: Mounting Engine plugin LocalizableMessage
+LogPluginManager: Mounting Engine plugin OpenImageDenoise
+LogPluginManager: Mounting Engine plugin PlatformCrypto
+LogPluginManager: Mounting Engine plugin PythonScriptPlugin
+LogPluginManager: Mounting Engine plugin StructUtils
+LogPluginManager: Mounting Engine plugin ToolPresets
+LogPluginManager: Mounting Engine plugin VirtualProductionUtilities
+LogPluginManager: Mounting Engine plugin VPRoles
+LogPluginManager: Mounting Engine plugin VPSettings
+LogPluginManager: Mounting Engine plugin Niagara
+LogPluginManager: Mounting Engine plugin AlembicImporter
+LogPluginManager: Mounting Engine plugin InterchangeEditor
+LogPluginManager: Mounting Engine plugin Interchange
+LogPluginManager: Mounting Engine plugin AvfMedia
+LogPluginManager: Mounting Engine plugin ImgMedia
+LogPluginManager: Mounting Engine plugin MediaCompositing
+LogPluginManager: Mounting Engine plugin MediaIOFramework
+LogPluginManager: Mounting Engine plugin MediaPlate
+LogPluginManager: Mounting Engine plugin WebMMedia
+LogPluginManager: Mounting Engine plugin WmfMedia
+LogPluginManager: Mounting Engine plugin MeshPainting
+LogPluginManager: Mounting Engine plugin TcpMessaging
+LogPluginManager: Mounting Engine plugin UdpMessaging
+LogPluginManager: Mounting Engine plugin ActorSequence
+LogPluginManager: Mounting Engine plugin LevelSequenceEditor
+LogPluginManager: Mounting Engine plugin MovieRenderPipeline
+LogPluginManager: Mounting Engine plugin SequencerScripting
+LogPluginManager: Mounting Engine plugin TemplateSequence
+LogPluginManager: Mounting Engine plugin OnlineBase
+LogPluginManager: Mounting Engine plugin OnlineServices
+LogPluginManager: Mounting Engine plugin OnlineSubsystemNull
+LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils
+LogPluginManager: Mounting Engine plugin OnlineSubsystem
+LogPluginManager: Mounting Engine plugin LauncherChunkInstaller
+LogPluginManager: Mounting Engine plugin ActorLayerUtilities
+LogPluginManager: Mounting Engine plugin AndroidFileServer
+LogPluginManager: Mounting Engine plugin AndroidPermission
+LogPluginManager: Mounting Engine plugin AppleImageUtils
+LogPluginManager: Mounting Engine plugin ArchVisCharacter
+LogPluginManager: Mounting Engine plugin AssetTags
+LogPluginManager: Mounting Engine plugin AudioCapture
+LogPluginManager: Mounting Engine plugin AudioSynesthesia
+LogPluginManager: Mounting Engine plugin AudioWidgets
+LogPluginManager: Mounting Engine plugin CableComponent
+LogPluginManager: Mounting Engine plugin ChunkDownloader
+LogPluginManager: Mounting Engine plugin CustomMeshComponent
+LogPluginManager: Mounting Engine plugin SQLiteCore
+LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector
+LogPluginManager: Mounting Engine plugin GeometryCache
+LogPluginManager: Mounting Engine plugin GeometryProcessing
+LogPluginManager: Mounting Engine plugin GooglePAD
+LogPluginManager: Mounting Engine plugin HPMotionController
+LogPluginManager: Mounting Engine plugin InputDebugging
+LogPluginManager: Found config from plugin[InputDebugging] Input
+LogPluginManager: Mounting Engine plugin LiveLinkOverNDisplay
+LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary
+LogPluginManager: Mounting Engine plugin Metasound
+LogPluginManager: Mounting Engine plugin MobilePatchingUtils
+LogPluginManager: Mounting Engine plugin MsQuic
+LogPluginManager: Mounting Engine plugin OSC
+LogPluginManager: Mounting Engine plugin OpenCV
+LogPluginManager: Mounting Engine plugin OpenXREyeTracker
+LogPluginManager: Mounting Engine plugin OpenXRHandTracking
+LogPluginManager: Mounting Engine plugin OpenXR
+LogPluginManager: Mounting Engine plugin ProceduralMeshComponent
+LogPluginManager: Mounting Engine plugin PropertyAccessEditor
+LogPluginManager: Mounting Engine plugin ResonanceAudio
+LogPluginManager: Mounting Engine plugin RigVM
+LogPluginManager: Mounting Engine plugin SignificanceManager
+LogPluginManager: Mounting Engine plugin SoundFields
+LogPluginManager: Mounting Engine plugin Synthesis
+LogPluginManager: Mounting Engine plugin WaveTable
+LogPluginManager: Mounting Engine plugin WebMMoviePlayer
+LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector
+LogPluginManager: Mounting Engine plugin WindowsMoviePlayer
+LogPluginManager: Mounting Engine plugin XRBase
+LogPluginManager: Mounting Engine plugin nDisplayModularFeatures
+LogPluginManager: Mounting Engine plugin nDisplay
+LogPluginManager: Mounting Engine plugin InterchangeTests
+LogPluginManager: Mounting Engine plugin TraceUtilities
+LogPluginManager: Mounting Engine plugin CameraCalibrationCore
+LogPluginManager: Mounting Engine plugin MultiUserTakes
+LogPluginManager: Mounting Engine plugin RemoteControlInterception
+LogPluginManager: Mounting Engine plugin Switchboard
+LogPluginManager: Mounting Engine plugin Takes
+LogPluginManager: Mounting Project plugin GPUPointCloudRenderer
+LogPluginManager: Mounting Project plugin Kdtree
+LogPluginManager: Mounting Project plugin RWTHVRToolkit
+LogPluginManager: Mounting Project plugin UniversalLogging
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/2D/Paper2D/Content/' mounted to '/Paper2D/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ACLPlugin/Content/' mounted to '/ACLPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRigSpline/Content/' mounted to '/ControlRigSpline/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRig/Content/' mounted to '/ControlRig/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/IKRig/Content/' mounted to '/IKRig/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Bridge/Content/' mounted to '/Bridge/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/Composure/Content/' mounted to '/Composure/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/OpenColorIO/Content/' mounted to '/OpenColorIO/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/AnimationSharing/Content/' mounted to '/AnimationSharing/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/' mounted to '/ConcertSyncClient/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/BlueprintHeaderView/Content/' mounted to '/BlueprintHeaderView/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ConsoleVariablesEditor/Content/' mounted to '/ConsoleVariables/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/GeometryMode/Content/' mounted to '/GeometryMode/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/LightMixer/Content/' mounted to '/LightMixer/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/ObjectMixer/Content/' mounted to '/ObjectMixer/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/SpeedTreeImporter/Content/' mounted to '/SpeedTreeImporter/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/UVEditor/Content/' mounted to '/UVEditor/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/DatasmithContent/Content/' mounted to '/DatasmithContent/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/GLTFExporter/Content/' mounted to '/GLTFExporter/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosCaching/Content/' mounted to '/ChaosCaching/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosClothEditor/Content/' mounted to '/ChaosClothEditor/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosNiagara/Content/' mounted to '/ChaosNiagara/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosSolverPlugin/Content/' mounted to '/ChaosSolverPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ColorCorrectRegions/Content/' mounted to '/ColorCorrectRegions/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Dataflow/Content/' mounted to '/Dataflow/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/FullBodyIK/Content/' mounted to '/FullBodyIK/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/GeometryCollectionPlugin/Content/' mounted to '/GeometryCollectionPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/PythonScriptPlugin/Content/' mounted to '/PythonScriptPlugin/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ToolPresets/Content/' mounted to '/ToolPresets/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProductionUtilities/Content/' mounted to '/VirtualProductionUtilities/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPRoles/Content/' mounted to '/VPRoles/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPSettings/Content/' mounted to '/VPSettings/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/FX/Niagara/Content/' mounted to '/Niagara/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Interchange/Runtime/Content/' mounted to '/Interchange/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaCompositing/Content/' mounted to '/MediaCompositing/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaPlate/Content/' mounted to '/MediaPlate/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/MovieRenderPipeline/Content/' mounted to '/MovieRenderPipeline/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/SequencerScripting/Content/' mounted to '/SequencerScripting/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioSynesthesia/Content/' mounted to '/AudioSynesthesia/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioWidgets/Content/' mounted to '/AudioWidgets/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/GeometryProcessing/Content/' mounted to '/GeometryProcessing/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Metasound/Content/' mounted to '/Metasound/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenCV/Content/' mounted to '/OpenCV/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXREyeTracker/Content/' mounted to '/OpenXREyeTracker/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXRHandTracking/Content/' mounted to '/OpenXRHandTracking/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXR/Content/' mounted to '/OpenXR/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/ResonanceAudio/Content/' mounted to '/ResonanceAudio/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/RigVM/Content/' mounted to '/RigVM/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Synthesis/Content/' mounted to '/Synthesis/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/WaveTable/Content/' mounted to '/WaveTable/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplayModularFeatures/Content/' mounted to '/nDisplayModularFeatures/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplay/Content/' mounted to '/nDisplay/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/TraceUtilities/Content/' mounted to '/TraceUtilities/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/CameraCalibrationCore/Content/' mounted to '/CameraCalibrationCore/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/MultiUserTakes/Content/' mounted to '/MultiUserTakes/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Switchboard/Content/' mounted to '/Switchboard/'
+LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Takes/Content/' mounted to '/Takes/'
+LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UE4_GPUPointCloudRenderer/Content/' mounted to '/GPUPointCloudRenderer/'
+LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UEPlugin-Kdtree/Kdtree/Content/' mounted to '/Kdtree/'
+LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/rwth-vr-toolkit-with-meta-cast/Content/' mounted to '/RWTHVRToolkit/'
+LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126)
+LogWindows: File 'WinPixGpuCapturer.dll' does not exist
+PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX.
+LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine]
+RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings.
+LogInit: Using libcurl 8.4.0
+LogInit:  - built for Windows
+LogInit:  - supports SSL with OpenSSL/1.1.1t
+LogInit:  - supports HTTP deflate (compression) using libz 1.2.13
+LogInit:  - other features:
+LogInit:      CURL_VERSION_SSL
+LogInit:      CURL_VERSION_LIBZ
+LogInit:      CURL_VERSION_IPV6
+LogInit:      CURL_VERSION_ASYNCHDNS
+LogInit:      CURL_VERSION_LARGEFILE
+LogInit:  CurlRequestOptions (configurable via config and command line):
+LogInit:  - bVerifyPeer = true  - Libcurl will verify peer certificate
+LogInit:  - bUseHttpProxy = false  - Libcurl will NOT use HTTP proxy
+LogInit:  - bDontReuseConnections = false  - Libcurl will reuse connections
+LogInit:  - MaxHostConnections = 16  - Libcurl will limit the number of connections to a host
+LogInit:  - LocalHostAddr = Default
+LogInit:  - BufferSize = 65536
+LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467
+LogOnline: OSS: Created online subsystem instance for: NULL
+LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL]
+LogHMD: OpenXRHMDModule::InitInstance using DefaultLoader.
+LogHMD: OpenXR runtime supported extensions:
+LogHMD: 	XR_KHR_vulkan_enable
+LogHMD: 	XR_KHR_vulkan_enable2
+LogHMD: 	XR_KHR_D3D11_enable
+LogHMD: 	XR_KHR_D3D12_enable
+LogHMD: 	XR_KHR_opengl_enable
+LogHMD: 	XR_KHR_win32_convert_performance_counter_time
+LogHMD: 	XR_EXT_win32_appcontainer_compatible
+LogHMD: 	XR_KHR_binding_modification
+LogHMD: 	XR_KHR_composition_layer_depth
+LogHMD: 	XR_KHR_visibility_mask
+LogHMD: 	XR_EXT_active_action_set_priority
+LogHMD: 	XR_EXT_dpad_binding
+LogHMD: 	XR_EXT_frame_composition_report
+LogHMD: 	XR_EXT_hand_tracking
+LogHMD: 	XR_EXT_hand_tracking_data_source
+LogHMD: 	XR_EXT_hand_joints_motion_range
+LogHMD: 	XR_EXT_hp_mixed_reality_controller
+LogHMD: 	XR_EXT_local_floor
+LogHMD: 	XR_EXT_palm_pose
+LogHMD: 	XR_FB_display_refresh_rate
+LogHMD: 	XR_HTC_vive_cosmos_controller_interaction
+LogHMD: 	XR_HTC_vive_focus3_controller_interaction
+LogHMD: 	XR_HTC_vive_wrist_tracker_interaction
+LogHMD: 	XR_MND_headless
+LogHMD: 	XR_VALVE_analog_threshold
+LogHMD: 	XR_HTCX_vive_tracker_interaction
+LogHMD: 	XR_EXT_debug_utils
+LogHMD: Optional extension XR_KHR_vulkan_swapchain_format_list is not available
+LogHMD: Optional extension XR_FB_foveation_vulkan is not available
+LogHMD: Optional extension XR_KHR_composition_layer_cylinder is not available
+LogHMD: Optional extension XR_KHR_composition_layer_equirect is not available
+LogHMD: Optional extension XR_VARJO_quad_views is not available
+LogHMD: Optional extension XR_EPIC_view_configuration_fov is not available
+LogHMD: Optional extension XR_FB_composition_layer_alpha_blend is not available
+LogHMD: Optional extension XR_FB_foveation is not available
+LogHMD: Optional extension XR_FB_swapchain_update_state is not available
+LogHMD: Optional extension XR_FB_foveation_configuration is not available
+LogHMD: Optional extension XR_OCULUS_audio_device_guid is not available
+LogHMD: Warning: Required extension XR_EXT_eye_gaze_interaction is not available
+LogHMD: Could not enable all required OpenXR extensions for OpenXREyeTracker on current system. This plugin will be loaded but ignored, but will be enabled on a target platform that supports the required extension.
+LogHMD: Initialized OpenXR on SteamVR/OpenXR runtime version 2.7.4
+LogInit: ExecutableName: MetaCastBachelor.exe
+LogInit: Build: ++UE5+Release-5.3-CL-29314046
+LogInit: Engine Version: 5.3.2-29314046+++UE5+Release-5.3
+LogInit: Compatible Engine Version: 5.3.0-27405482+++UE5+Release-5.3
+LogInit: Net CL: 27405482
+LogInit: OS: Windows 10 (22H2) [10.0.19045.4651] (), CPU: Intel(R) Core(TM) i9-10900X CPU @ 3.70GHz, GPU: NVIDIA GeForce RTX 3090
+LogInit: Compiled (64-bit): Nov  3 2023 16:20:53
+LogInit: Architecture: x64
+LogInit: Compiled with Visual C++: 19.36.32537.00
+LogInit: Build Configuration: Development
+LogInit: Branch Name: ++UE5+Release-5.3
+LogInit: Command Line: 
+LogInit: Base Directory: D:/UnrealProjects/MetaCastBachelor/Builds/Windows/MetaCastBachelor/Binaries/Win64/
+LogInit: Allocator: binned2
+LogInit: Installed Engine Build: 0
+LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no
+LogDevObjectVersion: Number of dev versions registered: 39
+LogDevObjectVersion:   Dev-Blueprints (B0D832E4-1F89-4F0D-ACCF-7EB736FD4AA2): 10
+LogDevObjectVersion:   Dev-Build (E1C64328-A22C-4D53-A36C-8E866417BD8C): 0
+LogDevObjectVersion:   Dev-Core (375EC13C-06E4-48FB-B500-84F0262A717E): 4
+LogDevObjectVersion:   Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40
+LogDevObjectVersion:   Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37
+LogDevObjectVersion:   Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3
+LogDevObjectVersion:   Dev-Networking (A4E4105C-59A1-49B5-A7C5-40C4547EDFEE): 0
+LogDevObjectVersion:   Dev-Online (39C831C9-5AE6-47DC-9A44-9C173E1C8E7C): 0
+LogDevObjectVersion:   Dev-Physics (78F01B33-EBEA-4F98-B9B4-84EACCB95AA2): 20
+LogDevObjectVersion:   Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0
+LogDevObjectVersion:   Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 47
+LogDevObjectVersion:   Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13
+LogDevObjectVersion:   Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3
+LogDevObjectVersion:   Dev-LoadTimes (C2A15278-BFE7-4AFE-6C17-90FF531DF755): 1
+LogDevObjectVersion:   Private-Geometry (6EACA3D4-40EC-4CC1-B786-8BED09428FC5): 3
+LogDevObjectVersion:   Dev-AnimPhys (29E575DD-E0A3-4627-9D10-D276232CDCEA): 17
+LogDevObjectVersion:   Dev-Anim (AF43A65D-7FD3-4947-9873-3E8ED9C1BB05): 15
+LogDevObjectVersion:   Dev-ReflectionCapture (6B266CEC-1EC7-4B8F-A30B-E4D90942FC07): 1
+LogDevObjectVersion:   Dev-Automation (0DF73D61-A23F-47EA-B727-89E90C41499A): 1
+LogDevObjectVersion:   FortniteMain (601D1886-AC64-4F84-AA16-D3DE0DEAC7D6): 111
+LogDevObjectVersion:   FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 2
+LogDevObjectVersion:   FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 10
+LogDevObjectVersion:   FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 11
+LogDevObjectVersion:   Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10
+LogDevObjectVersion:   Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1
+LogDevObjectVersion:   Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10
+LogDevObjectVersion:   Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41
+LogDevObjectVersion:   Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1
+LogDevObjectVersion:   Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1
+LogDevObjectVersion:   Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1
+LogDevObjectVersion:   UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 118
+LogDevObjectVersion:   UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 47
+LogDevObjectVersion:   UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8
+LogDevObjectVersion:   UE5-Dev-Cooker (26075A32-730F-4708-88E9-8C32F1599D05): 0
+LogDevObjectVersion:   Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2
+LogDevObjectVersion:   UE5-Dev-LWCRendering (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1
+LogDevObjectVersion:   Dev-RigVM (DC49959B-53C0-4DE7-9156-EA885E7C5D39): 2
+LogDevObjectVersion:   Dev-ControlRig (A7820CFB-20A7-4359-8C54-2C149623CF50): 27
+LogDevObjectVersion:   Dev-IKRig (F6DFBB78-BB50-A0E4-4018-B84D60CBAF23): 2
+LogInit: Presizing for max 2097152 objects, including 1 objects not considered by GC, pre-allocating 0 bytes for permanent pool.
+LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: true, Async Post Load: true
+LogStreaming: Display: AsyncLoading2 - Initialized
+LogInit: Object subsystem initialized
+LogConfig: Set CVar [[con.DebugEarlyDefault:1]]
+LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created
+LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created
+LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created
+LogConfig: Set CVar [[r.setres:1280x720]]
+LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created
+LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]]
+LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created
+LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created
+LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]]
+[2024.08.02-07.47.03:285][  0]LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created
+[2024.08.02-07.47.03:285][  0]LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created
+[2024.08.02-07.47.03:285][  0]LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created
+[2024.08.02-07.47.03:285][  0]LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created
+[2024.08.02-07.47.03:285][  0]LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created
+[2024.08.02-07.47.03:285][  0]LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created
+[2024.08.02-07.47.03:285][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine]
+[2024.08.02-07.47.03:285][  0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:None]] deferred - dummy variable created
+[2024.08.02-07.47.03:285][  0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:None]] deferred - dummy variable created
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]]
+[2024.08.02-07.47.03:285][  0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.Mobile.DisableVertexFog:1]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.Mobile.AllowDitheredLODTransition:0]]
+[2024.08.02-07.47.03:285][  0]LogConfig: CVar [[r.Mobile.AllowSoftwareOcclusion:0]] deferred - dummy variable created
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.Mobile.VirtualTextures:0]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.DiscardUnusedQuality:0]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.AllowOcclusionQueries:1]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.MinScreenRadiusForLights:0.030000]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.MinScreenRadiusForDepthPrepass:0.030000]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.MinScreenRadiusForCSMDepth:0.010000]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.PrecomputedVisibilityWarning:0]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.TextureStreaming:1]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[Compat.UseDXT5NormalMaps:0]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.VirtualTextures:0]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.VirtualTexturedLightmaps:0]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.VT.TileSize:128]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.VT.TileBorderSize:4]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.vt.FeedbackFactor:16]]
+[2024.08.02-07.47.03:285][  0]LogConfig: CVar [[r.VT.EnableCompressZlib:1]] deferred - dummy variable created
+[2024.08.02-07.47.03:285][  0]LogConfig: CVar [[r.VT.EnableCompressCrunch:0]] deferred - dummy variable created
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.ClearCoatNormal:0]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.ReflectionCaptureResolution:128]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.ReflectionEnvironmentLightmapMixBasedOnRoughness:1]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.ForwardShading:1]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.VertexFoggingForOpaque:1]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.AllowStaticLighting:1]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.NormalMapsForStaticLighting:0]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]]
+[2024.08.02-07.47.03:285][  0]LogConfig: CVar [[r.DistanceFieldBuild.EightBit:0]] deferred - dummy variable created
+[2024.08.02-07.47.03:285][  0]LogConfig: CVar [[r.GenerateLandscapeGIData:0]] deferred - dummy variable created
+[2024.08.02-07.47.03:285][  0]LogConfig: CVar [[r.DistanceFieldBuild.Compress:0]] deferred - dummy variable created
+[2024.08.02-07.47.03:285][  0]LogConfig: CVar [[r.TessellationAdaptivePixelsPerTriangle:48.000000]] deferred - dummy variable created
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.SeparateTranslucency:0]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.TranslucentSortPolicy:0]]
+[2024.08.02-07.47.03:285][  0]LogConfig: CVar [[TranslucentSortAxis:(X=0.000000,Y=-1.000000,Z=0.000000)]] deferred - dummy variable created
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.CustomDepth:0]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.CustomDepthTemporalAAJitter:0]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.PostProcessing.PropagateAlpha:0]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.DefaultFeature.Bloom:0]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.DefaultFeature.AmbientOcclusion:0]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.DefaultFeature.AmbientOcclusionStaticFraction:1]]
+[2024.08.02-07.47.03:285][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.Method:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.Bias:1.000000]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: CVar [[r.EyeAdaptation.EditorOnly:0]] deferred - dummy variable created
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:1.0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:1.0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.DefaultFeature.MotionBlur:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.DefaultFeature.LensFlare:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.TemporalAA.Upsampling:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: CVar [[r.SSGI.Enable:0]] deferred - dummy variable created
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.AntiAliasingMethod:3]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.DefaultFeature.LightUnits:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.DefaultBackBufferPixelFormat:4]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.Shadow.UnbuiltPreviewInGame:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.StencilForLODDither:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.EarlyZPass:3]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.EarlyZPassOnlyMaterialMasking:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.DBuffer:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.ClearSceneMethod:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.VelocityOutputPass:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.Velocity.EnableVertexDeformation:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.SelectiveBasePassOutputs:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: CVar [[bDefaultParticleCutouts:0]] deferred - dummy variable created
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[fx.GPUSimulationTextureSizeX:1024]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[fx.GPUSimulationTextureSizeY:1024]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.AllowGlobalClipPlane:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.GBufferFormat:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.MorphTarget.Mode:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[vr.InstancedStereo:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.MobileHDR:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[vr.MobileMultiView:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.Mobile.UseHWsRGBEncoding:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[vr.RoundRobinOcclusion:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: CVar [[vr.ODSCapture:0]] deferred - dummy variable created
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.MeshStreaming:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.WireframeCullThreshold:5.000000]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.RayTracing:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.RayTracing.UseTextureLod:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.SupportStationarySkylight:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.SupportLowQualityLightmaps:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.SupportPointLightWholeSceneShadows:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: CVar [[r.SupportAtmosphericFog:1]] deferred - dummy variable created
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.SupportSkyAtmosphere:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.SupportSkyAtmosphereAffectsHeightFog:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.SkinCache.DefaultBehavior:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.SkinCache.SceneMemoryLimitInMB:128.000000]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.Mobile.EnableStaticAndCSMShadowReceivers:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.Mobile.EnableMovableLightCSMShaderCulling:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.Mobile.AllowDistanceFieldShadows:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.Mobile.AllowMovableDirectionalLights:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: CVar [[r.MobileNumDynamicPointLights:4]] deferred - dummy variable created
+[2024.08.02-07.47.03:286][  0]LogConfig: CVar [[r.MobileDynamicPointLightsUseStaticBranch:1]] deferred - dummy variable created
+[2024.08.02-07.47.03:286][  0]LogConfig: CVar [[r.Mobile.EnableMovableSpotlights:0]] deferred - dummy variable created
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.Mobile.EnableMovableSpotlightsShadow:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.GPUSkin.Support16BitBoneIndex:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.GPUSkin.Limit2BoneInfluences:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.SupportDepthOnlyIndexBuffers:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.SupportReversedIndexBuffers:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: CVar [[r.LightPropagationVolume:0]] deferred - dummy variable created
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.Mobile.AmbientOcclusion:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.GPUSkin.UnlimitedBoneInfluences:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.GPUSkin.UnlimitedBoneInfluencesThreshold:8]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.Mobile.PlanarReflectionMode:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: CVar [[bStreamSkeletalMeshLODs:(Default=False,PerPlatform=())]] deferred - dummy variable created
+[2024.08.02-07.47.03:286][  0]LogConfig: CVar [[bDiscardSkeletalMeshOptionalLODs:(Default=False,PerPlatform=())]] deferred - dummy variable created
+[2024.08.02-07.47.03:286][  0]LogConfig: CVar [[VisualizeCalibrationCustomMaterialPath:None]] deferred - dummy variable created
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.Mobile.AntiAliasing:3]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.Mobile.FloatPrecisionMode:2]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.OpenGL.ForceDXC:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.ReflectionMethod:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.MSAACount:4]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.Mobile.ShadingPath:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine]
+[2024.08.02-07.47.03:286][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]]
+[2024.08.02-07.47.03:286][  0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created
+[2024.08.02-07.47.03:286][  0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created
+[2024.08.02-07.47.03:286][  0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created
+[2024.08.02-07.47.03:286][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[gc.SizeOfPermanentObjectPool:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[gc.AllowParallelGC:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[gc.CreateGCClusters:1]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]]
+[2024.08.02-07.47.03:286][  0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]]
+[2024.08.02-07.47.03:287][  0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]]
+[2024.08.02-07.47.03:287][  0]LogConfig: Set CVar [[gc.UseDisregardForGCOnDedicatedServers:0]]
+[2024.08.02-07.47.03:287][  0]LogConfig: Set CVar [[gc.MultithreadedDestructionEnabled:1]]
+[2024.08.02-07.47.03:287][  0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]]
+[2024.08.02-07.47.03:287][  0]LogConfig: Set CVar [[gc.PendingKillEnabled:1]]
+[2024.08.02-07.47.03:287][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine]
+[2024.08.02-07.47.03:287][  0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created
+[2024.08.02-07.47.03:287][  0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created
+[2024.08.02-07.47.03:299][  0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability]
+[2024.08.02-07.47.03:299][  0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]]
+[2024.08.02-07.47.03:299][  0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]]
+[2024.08.02-07.47.03:299][  0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability]
+[2024.08.02-07.47.03:299][  0]LogConfig: Set CVar [[r.FXAA.Quality:4]]
+[2024.08.02-07.47.03:299][  0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]]
+[2024.08.02-07.47.03:299][  0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]]
+[2024.08.02-07.47.03:299][  0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]]
+[2024.08.02-07.47.03:299][  0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]]
+[2024.08.02-07.47.03:299][  0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]]
+[2024.08.02-07.47.03:299][  0]LogConfig: Set CVar [[r.TSR.ShadingRejection.TileOverscan:3]]
+[2024.08.02-07.47.03:299][  0]LogConfig: CVar [[r.TSR.Velocity.Extrapolation:1]] deferred - dummy variable created
+[2024.08.02-07.47.03:299][  0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]]
+[2024.08.02-07.47.03:299][  0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability]
+[2024.08.02-07.47.03:299][  0]LogConfig: Set CVar [[r.LightFunctionQuality:1]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.ShadowQuality:5]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.VolumetricFog:1]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.CapsuleShadows:1]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.DistanceFieldAO:1]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.AOQuality:2]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.SSR.Quality:3]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapStrength:0]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.MotionBlurQuality:4]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.LensFlareQuality:2]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.BloomQuality:5]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.FastBlurThreshold:100]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Upscale.Quality:3]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.LightShaftQuality:1]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Filter.SizeScale:1]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2         ; lower gathering resolution]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1        ; higher gathering accumulator quality]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1          ; Median3x3 postfilering method]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0       ; no bokeh simulation when gathering]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4                 ; medium number of samples when gathering]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1    ; additive foreground scattering]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2    ; additive background scattering]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1      ; bokeh simulation when scattering]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1         ; only a maximum of 10% of scattered bokeh]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1                ; cheap slight out of focus]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0    ; no bokeh simulation on slight out of focus]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1                ; more stable temporal accumulation]]
+[2024.08.02-07.47.03:300][  0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.Streaming.MipBias:0]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.Streaming.Boost:1]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.MaxAnisotropy:8]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.RefractionQuality:2]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.SceneColorFormat:4]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.DetailMode:2]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.SSS.Scale:1]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.SSS.SampleSet:2]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.SSS.Quality:1]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.SSS.HalfRes:0]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.SSGI.Quality:3]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.ParticleLightQuality:2]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[foliage.DensityScale:1.0]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[grass.DensityScale:1.0]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]]
+[2024.08.02-07.47.03:301][  0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]]
+[2024.08.02-07.47.03:301][  0]LogRHI: Using Default RHI: D3D12
+[2024.08.02-07.47.03:301][  0]LogRHI: Using Highest Feature Level of D3D12: SM6
+[2024.08.02-07.47.03:301][  0]LogRHI: Loading RHI module D3D12RHI
+[2024.08.02-07.47.03:303][  0]LogD3D12RHI: Aftermath initialized
+[2024.08.02-07.47.03:303][  0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64).
+[2024.08.02-07.47.03:303][  0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system.
+[2024.08.02-07.47.03:593][  0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3090 (VendorId: 10de, DeviceId: 2204, SubSysId: 38801028, Revision: 00a1
+[2024.08.02-07.47.03:593][  0]LogD3D12RHI:   Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported
+[2024.08.02-07.47.03:593][  0]LogD3D12RHI:   Adapter has 24340MB of dedicated video memory, 0MB of dedicated system memory, and 16238MB of shared system memory, 2 output[s]
+[2024.08.02-07.47.03:594][  0]LogD3D12RHI:   Driver Version: 546.09 (internal:31.0.15.4609, unified:546.09)
+[2024.08.02-07.47.03:594][  0]LogD3D12RHI:      Driver Date: 11-2-2023
+[2024.08.02-07.47.03:606][  0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000
+[2024.08.02-07.47.03:606][  0]LogD3D12RHI:   Max supported Feature Level 12_1, shader model 6.2, binding tier 3, wave ops supported, atomic64 unsupported
+[2024.08.02-07.47.03:606][  0]LogD3D12RHI:   Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16238MB of shared system memory, 0 output[s]
+[2024.08.02-07.47.03:606][  0]LogD3D12RHI: DirectX Agility SDK runtime found.
+[2024.08.02-07.47.03:606][  0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0
+[2024.08.02-07.47.03:606][  0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used.
+[2024.08.02-07.47.03:606][  0]LogInit: Selected Device Profile: [Windows]
+[2024.08.02-07.47.03:606][  0]LogHAL: Display: Platform has ~ 32 GB [34054676480 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0)
+[2024.08.02-07.47.03:606][  0]LogDeviceProfileManager: Going up to parent DeviceProfile []
+[2024.08.02-07.47.03:606][  0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini]
+[2024.08.02-07.47.03:606][  0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]]
+[2024.08.02-07.47.03:606][  0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]]
+[2024.08.02-07.47.03:606][  0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]]
+[2024.08.02-07.47.03:606][  0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine]
+[2024.08.02-07.47.03:607][  0]LogInit: Computer: ITC22160
+[2024.08.02-07.47.03:607][  0]LogInit: User: mp455017
+[2024.08.02-07.47.03:607][  0]LogInit: CPU Page size=4096, Cores=10
+[2024.08.02-07.47.03:607][  0]LogInit: High frequency timer resolution =10.000000 MHz
+[2024.08.02-07.47.03:607][  0]LogMemory: Memory total: Physical=31.7GB (32GB approx)
+[2024.08.02-07.47.03:607][  0]LogMemory: Platform Memory Stats for Windows
+[2024.08.02-07.47.03:607][  0]LogMemory: Process Physical Memory: 180.36 MB used, 192.79 MB peak
+[2024.08.02-07.47.03:607][  0]LogMemory: Process Virtual Memory: 155.80 MB used, 155.80 MB peak
+[2024.08.02-07.47.03:607][  0]LogMemory: Physical Memory: 22654.18 MB used,  9822.89 MB free, 32477.07 MB total
+[2024.08.02-07.47.03:607][  0]LogMemory: Virtual Memory: 57122.34 MB used,  7067.54 MB free, 64189.88 MB total
+[2024.08.02-07.47.03:607][  0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0"
+[2024.08.02-07.47.03:614][  0]LogWindows: WindowsPlatformFeatures enabled
+[2024.08.02-07.47.03:614][  0]LogInit: Physics initialised using underlying interface: Chaos
+[2024.08.02-07.47.03:615][  0]LogInit: Using OS detected language (en-US).
+[2024.08.02-07.47.03:615][  0]LogInit: Using OS detected locale (de-DE).
+[2024.08.02-07.47.03:616][  0]LogTextLocalizationManager: No specific localization for 'en-US' exists, so 'en' will be used for the language.
+[2024.08.02-07.47.03:616][  0]LogTextLocalizationManager: No localization for 'de-DE' exists, so 'en' will be used for the locale.
+[2024.08.02-07.47.03:667][  0]LogWindowsTextInputMethodSystem: Available input methods:
+[2024.08.02-07.47.03:667][  0]LogWindowsTextInputMethodSystem:   - English (United States) - (Keyboard).
+[2024.08.02-07.47.03:667][  0]LogWindowsTextInputMethodSystem:   - German (Germany) - (Keyboard).
+[2024.08.02-07.47.03:667][  0]LogWindowsTextInputMethodSystem:   - German (Germany) - Touch Input Correction (TSF IME).
+[2024.08.02-07.47.03:667][  0]LogWindowsTextInputMethodSystem: Activated input method: German (Germany) - (Keyboard).
+[2024.08.02-07.47.03:690][  0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0
+[2024.08.02-07.47.03:690][  0]LogSlate: Slate User Registered.  User Index 0, Is Virtual User: 0
+[2024.08.02-07.47.03:720][  0]LogRHI: Using Default RHI: D3D12
+[2024.08.02-07.47.03:720][  0]LogRHI: Using Highest Feature Level of D3D12: SM6
+[2024.08.02-07.47.03:720][  0]LogRHI: Loading RHI module D3D12RHI
+[2024.08.02-07.47.03:720][  0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system.
+[2024.08.02-07.47.03:720][  0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used.
+[2024.08.02-07.47.03:720][  0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6
+[2024.08.02-07.47.03:721][  0]LogWindows: Attached monitors:
+[2024.08.02-07.47.03:721][  0]LogWindows:     resolution: 1920x1080, work area: (1920, 0) -> (3840, 1040), device: '\\.\DISPLAY2'
+[2024.08.02-07.47.03:721][  0]LogWindows:     resolution: 1920x1080, work area: (0, 0) -> (1920, 1040), device: '\\.\DISPLAY1' [PRIMARY]
+[2024.08.02-07.47.03:721][  0]LogWindows: Found 2 attached monitors.
+[2024.08.02-07.47.03:721][  0]LogWindows: Gathering driver information using Windows Setup API
+[2024.08.02-07.47.03:721][  0]LogRHI: RHI Adapter Info:
+[2024.08.02-07.47.03:721][  0]LogRHI:             Name: NVIDIA GeForce RTX 3090
+[2024.08.02-07.47.03:721][  0]LogRHI:   Driver Version: 546.09 (internal:31.0.15.4609, unified:546.09)
+[2024.08.02-07.47.03:721][  0]LogRHI:      Driver Date: 11-2-2023
+[2024.08.02-07.47.03:721][  0]LogD3D12RHI:     GPU DeviceId: 0x2204 (for the marketing name, search the web for "GPU Device Id")
+[2024.08.02-07.47.03:721][  0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off
+[2024.08.02-07.47.03:733][  0]LogD3D12RHI: [Aftermath] Aftermath crash dumping enabled
+[2024.08.02-07.47.03:733][  0]LogD3D12RHI: [DRED] Dred breadcrumb context enabled
+[2024.08.02-07.47.03:733][  0]LogD3D12RHI: [DRED] Using lightweight DRED.
+[2024.08.02-07.47.03:733][  0]LogD3D12RHI: Emitting draw events for PIX profiling.
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: [Aftermath] Aftermath enabled and primed
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: [Aftermath] Aftermath resource tracking enabled
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: ID3D12Device1 is supported.
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: ID3D12Device2 is supported.
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: ID3D12Device3 is supported.
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: ID3D12Device4 is supported.
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: ID3D12Device5 is supported.
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: ID3D12Device6 is supported.
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: ID3D12Device7 is supported.
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: ID3D12Device8 is supported.
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: ID3D12Device9 is supported.
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: ID3D12Device10 is supported.
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: ID3D12Device11 is supported.
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: ID3D12Device12 is supported.
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: Bindless resources are supported
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: Stencil ref from pixel shader is not supported
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32).
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported.
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: Mesh shader tier 1.0 is supported
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: AtomicInt64OnTypedResource is supported
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: AtomicInt64OnGroupShared is supported
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported
+[2024.08.02-07.47.03:935][  0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported
+[2024.08.02-07.47.03:996][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (3D)
+[2024.08.02-07.47.03:997][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Copy)
+[2024.08.02-07.47.03:998][  0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Compute)
+[2024.08.02-07.47.04:026][  0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0
+[2024.08.02-07.47.04:026][  0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0
+[2024.08.02-07.47.04:027][  0]LogRHI: Texture pool is 14850 MB (70% of 21214 MB)
+[2024.08.02-07.47.04:027][  0]LogD3D12RHI: Async texture creation enabled
+[2024.08.02-07.47.04:027][  0]LogD3D12RHI: RHI has support for 64 bit atomics
+[2024.08.02-07.47.04:066][  0]LogVRS: Current RHI supports Variable Rate Shading
+[2024.08.02-07.47.04:078][  0]LogRendererCore: Ray tracing is disabled. Reason: disabled through project setting (r.RayTracing=0).
+[2024.08.02-07.47.04:079][  0]LogShaderLibrary: Display: Using IoDispatcher for shader code library Global. Total 4019 unique shaders.
+[2024.08.02-07.47.04:079][  0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library Global
+[2024.08.02-07.47.04:079][  0]LogShaderLibrary: Display: Logical shader library 'Global' has been created as a monolithic library
+[2024.08.02-07.47.04:079][  0]LogShaderLibrary: Display: Tried to open shader library 'Global_SC', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:079][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRigSpline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:079][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosClothEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:079][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:079][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosNiagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:079][  0]LogShaderLibrary: Display: Tried to open shader library 'VPRoles', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:079][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaCompositing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:079][  0]LogShaderLibrary: Display: Tried to open shader library 'Composure', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:079][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosSolverPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:079][  0]LogShaderLibrary: Display: Tried to open shader library 'Paper2D', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:079][  0]LogShaderLibrary: Display: Tried to open shader library 'VPSettings', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'ACLPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenCV', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryProcessing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaPlate', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXREyeTracker', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'IKRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'ObjectMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'ColorCorrectRegions', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'ToolPresets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'Niagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'AnimationSharing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'UVEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'BlueprintHeaderView', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenColorIO', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioSynesthesia', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'ConcertSyncClient', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'SpeedTreeImporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'Metasound', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXRHandTracking', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'Synthesis', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'ResonanceAudio', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:080][  0]LogShaderLibrary: Display: Tried to open shader library 'Bridge', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:081][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryCollectionPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:081][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryMode', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:081][  0]LogShaderLibrary: Display: Tried to open shader library 'LightMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:081][  0]LogShaderLibrary: Display: Tried to open shader library 'Interchange', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:081][  0]LogShaderLibrary: Display: Tried to open shader library 'PythonScriptPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:081][  0]LogShaderLibrary: Display: Tried to open shader library 'ConsoleVariables', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:081][  0]LogShaderLibrary: Display: Tried to open shader library 'DatasmithContent', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:081][  0]LogShaderLibrary: Display: Tried to open shader library 'TraceUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:081][  0]LogShaderLibrary: Display: Tried to open shader library 'MovieRenderPipeline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:081][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioWidgets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:081][  0]LogShaderLibrary: Display: Tried to open shader library 'MultiUserTakes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:081][  0]LogShaderLibrary: Display: Tried to open shader library 'CameraCalibrationCore', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:082][  0]LogShaderLibrary: Display: Tried to open shader library 'SequencerScripting', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:082][  0]LogShaderLibrary: Display: Tried to open shader library 'Takes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:082][  0]LogShaderLibrary: Display: Tried to open shader library 'Switchboard', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:082][  0]LogShaderLibrary: Display: Tried to open shader library 'VirtualProductionUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:082][  0]LogShaderLibrary: Display: Tried to open shader library 'GPUPointCloudRenderer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:082][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXR', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:082][  0]LogShaderLibrary: Display: Tried to open shader library 'Dataflow', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:082][  0]LogShaderLibrary: Display: Tried to open shader library 'WaveTable', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:082][  0]LogShaderLibrary: Display: Tried to open shader library 'Kdtree', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:082][  0]LogShaderLibrary: Display: Tried to open shader library 'RWTHVRToolkit', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:082][  0]LogShaderLibrary: Display: Tried to open shader library 'RigVM', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:082][  0]LogShaderLibrary: Display: Tried to open shader library 'FullBodyIK', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:082][  0]LogShaderLibrary: Display: Tried to open shader library 'GLTFExporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:082][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosCaching', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:082][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplayModularFeatures', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:082][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplay', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:082][  0]LogTemp: Display: Clearing the OS Cache
+[2024.08.02-07.47.04:092][  0]LogInit: FStereoShaderAspects: --- StereoAspects begin ---
+[2024.08.02-07.47.04:092][  0]LogInit: FStereoShaderAspects: Platform=PCD3D_SM6 (49)
+[2024.08.02-07.47.04:092][  0]LogInit: FStereoShaderAspects: bInstancedStereo = 1
+[2024.08.02-07.47.04:092][  0]LogInit: FStereoShaderAspects: bMobilePlatform = 0
+[2024.08.02-07.47.04:092][  0]LogInit: FStereoShaderAspects: bMobilePostprocessing = 0
+[2024.08.02-07.47.04:092][  0]LogInit: FStereoShaderAspects: bMobileMultiView = 1
+[2024.08.02-07.47.04:092][  0]LogInit: FStereoShaderAspects: bMultiViewportCapable = 1
+[2024.08.02-07.47.04:092][  0]LogInit: FStereoShaderAspects: bInstancedStereoNative = 1
+[2024.08.02-07.47.04:092][  0]LogInit: FStereoShaderAspects: ---
+[2024.08.02-07.47.04:092][  0]LogInit: FStereoShaderAspects: bMobileMultiViewCoreSupport = 0
+[2024.08.02-07.47.04:092][  0]LogInit: FStereoShaderAspects: bMobileMultiViewNative = 0
+[2024.08.02-07.47.04:092][  0]LogInit: FStereoShaderAspects: bMobileMultiViewFallback = 0
+[2024.08.02-07.47.04:092][  0]LogInit: FStereoShaderAspects: ---
+[2024.08.02-07.47.04:092][  0]LogInit: FStereoShaderAspects: bInstancedMultiViewportEnabled = 1
+[2024.08.02-07.47.04:092][  0]LogInit: FStereoShaderAspects: bInstancedStereoEnabled = 1
+[2024.08.02-07.47.04:092][  0]LogInit: FStereoShaderAspects: bMobileMultiViewEnabled = 0
+[2024.08.02-07.47.04:092][  0]LogInit: FStereoShaderAspects: --- StereoAspects end ---
+[2024.08.02-07.47.04:096][  0]LogInit: XR: Instanced Stereo Rendering is Enabled
+[2024.08.02-07.47.04:096][  0]LogInit: XR: MultiViewport is Enabled
+[2024.08.02-07.47.04:096][  0]LogInit: XR: Mobile Multiview is Disabled
+[2024.08.02-07.47.04:099][  0]LogSlate: Using FreeType 2.10.0
+[2024.08.02-07.47.04:100][  0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'Paper2D', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/2D/Paper2D/Content/' mounted to '/Paper2D/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'ACLPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ACLPlugin/Content/' mounted to '/ACLPlugin/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRigSpline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRigSpline/Content/' mounted to '/ControlRigSpline/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'ControlRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/ControlRig/Content/' mounted to '/ControlRig/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'IKRig', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Animation/IKRig/Content/' mounted to '/IKRig/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'Bridge', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Bridge/Content/' mounted to '/Bridge/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'Composure', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/Composure/Content/' mounted to '/Composure/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenColorIO', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Compositing/OpenColorIO/Content/' mounted to '/OpenColorIO/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'AnimationSharing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/AnimationSharing/Content/' mounted to '/AnimationSharing/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'ConcertSyncClient', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Content/' mounted to '/ConcertSyncClient/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'BlueprintHeaderView', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/BlueprintHeaderView/Content/' mounted to '/BlueprintHeaderView/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'ConsoleVariables', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ConsoleVariablesEditor/Content/' mounted to '/ConsoleVariables/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryMode', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/GeometryMode/Content/' mounted to '/GeometryMode/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'LightMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/LightMixer/Content/' mounted to '/LightMixer/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'ObjectMixer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/ObjectMixer/ObjectMixer/Content/' mounted to '/ObjectMixer/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'SpeedTreeImporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/SpeedTreeImporter/Content/' mounted to '/SpeedTreeImporter/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'UVEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Editor/UVEditor/Content/' mounted to '/UVEditor/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'DatasmithContent', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/DatasmithContent/Content/' mounted to '/DatasmithContent/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'GLTFExporter', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Enterprise/GLTFExporter/Content/' mounted to '/GLTFExporter/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosCaching', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:210][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosCaching/Content/' mounted to '/ChaosCaching/'
+[2024.08.02-07.47.04:210][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosClothEditor', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosClothEditor/Content/' mounted to '/ChaosClothEditor/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosNiagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosNiagara/Content/' mounted to '/ChaosNiagara/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'ChaosSolverPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ChaosSolverPlugin/Content/' mounted to '/ChaosSolverPlugin/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'ColorCorrectRegions', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ColorCorrectRegions/Content/' mounted to '/ColorCorrectRegions/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'Dataflow', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/Dataflow/Content/' mounted to '/Dataflow/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'FullBodyIK', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/FullBodyIK/Content/' mounted to '/FullBodyIK/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryCollectionPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/GeometryCollectionPlugin/Content/' mounted to '/GeometryCollectionPlugin/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'PythonScriptPlugin', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/PythonScriptPlugin/Content/' mounted to '/PythonScriptPlugin/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'ToolPresets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/ToolPresets/Content/' mounted to '/ToolPresets/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'VirtualProductionUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProductionUtilities/Content/' mounted to '/VirtualProductionUtilities/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'VPRoles', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPRoles/Content/' mounted to '/VPRoles/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'VPSettings', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Experimental/VirtualProduction/VPSettings/Content/' mounted to '/VPSettings/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'Niagara', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/FX/Niagara/Content/' mounted to '/Niagara/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'Interchange', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Interchange/Runtime/Content/' mounted to '/Interchange/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaCompositing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaCompositing/Content/' mounted to '/MediaCompositing/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'MediaPlate', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Media/MediaPlate/Content/' mounted to '/MediaPlate/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'MovieRenderPipeline', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/MovieRenderPipeline/Content/' mounted to '/MovieRenderPipeline/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'SequencerScripting', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/MovieScene/SequencerScripting/Content/' mounted to '/SequencerScripting/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioSynesthesia', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioSynesthesia/Content/' mounted to '/AudioSynesthesia/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'AudioWidgets', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/AudioWidgets/Content/' mounted to '/AudioWidgets/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'GeometryProcessing', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/GeometryProcessing/Content/' mounted to '/GeometryProcessing/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'Metasound', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Metasound/Content/' mounted to '/Metasound/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenCV', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenCV/Content/' mounted to '/OpenCV/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXREyeTracker', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXREyeTracker/Content/' mounted to '/OpenXREyeTracker/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXRHandTracking', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXRHandTracking/Content/' mounted to '/OpenXRHandTracking/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'OpenXR', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:211][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/OpenXR/Content/' mounted to '/OpenXR/'
+[2024.08.02-07.47.04:211][  0]LogShaderLibrary: Display: Tried to open shader library 'ResonanceAudio', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:212][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/ResonanceAudio/Content/' mounted to '/ResonanceAudio/'
+[2024.08.02-07.47.04:212][  0]LogShaderLibrary: Display: Tried to open shader library 'RigVM', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:212][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/RigVM/Content/' mounted to '/RigVM/'
+[2024.08.02-07.47.04:212][  0]LogShaderLibrary: Display: Tried to open shader library 'Synthesis', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:212][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/Synthesis/Content/' mounted to '/Synthesis/'
+[2024.08.02-07.47.04:212][  0]LogShaderLibrary: Display: Tried to open shader library 'WaveTable', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:212][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/WaveTable/Content/' mounted to '/WaveTable/'
+[2024.08.02-07.47.04:212][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplayModularFeatures', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:212][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplayModularFeatures/Content/' mounted to '/nDisplayModularFeatures/'
+[2024.08.02-07.47.04:212][  0]LogShaderLibrary: Display: Tried to open shader library 'nDisplay', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:212][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/Runtime/nDisplay/Content/' mounted to '/nDisplay/'
+[2024.08.02-07.47.04:212][  0]LogShaderLibrary: Display: Tried to open shader library 'TraceUtilities', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:212][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/TraceUtilities/Content/' mounted to '/TraceUtilities/'
+[2024.08.02-07.47.04:212][  0]LogShaderLibrary: Display: Tried to open shader library 'CameraCalibrationCore', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:212][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/CameraCalibrationCore/Content/' mounted to '/CameraCalibrationCore/'
+[2024.08.02-07.47.04:212][  0]LogShaderLibrary: Display: Tried to open shader library 'MultiUserTakes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:212][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/MultiUserTakes/Content/' mounted to '/MultiUserTakes/'
+[2024.08.02-07.47.04:212][  0]LogShaderLibrary: Display: Tried to open shader library 'Switchboard', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:212][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Switchboard/Content/' mounted to '/Switchboard/'
+[2024.08.02-07.47.04:212][  0]LogShaderLibrary: Display: Tried to open shader library 'Takes', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:212][  0]LogPackageName: Display: FPackageName: Mount point added: '../../../Engine/Plugins/VirtualProduction/Takes/Content/' mounted to '/Takes/'
+[2024.08.02-07.47.04:212][  0]LogShaderLibrary: Display: Tried to open shader library 'GPUPointCloudRenderer', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:212][  0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UE4_GPUPointCloudRenderer/Content/' mounted to '/GPUPointCloudRenderer/'
+[2024.08.02-07.47.04:212][  0]LogShaderLibrary: Display: Tried to open shader library 'Kdtree', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:212][  0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/UEPlugin-Kdtree/Kdtree/Content/' mounted to '/Kdtree/'
+[2024.08.02-07.47.04:212][  0]LogShaderLibrary: Display: Tried to open shader library 'RWTHVRToolkit', but could not find it neither as a monolithic library nor as a chunked one.
+[2024.08.02-07.47.04:212][  0]LogPackageName: Display: FPackageName: Mount point added: '../../Plugins/rwth-vr-toolkit-with-meta-cast/Content/' mounted to '/RWTHVRToolkit/'
+[2024.08.02-07.47.04:212][  0]LogShaderLibrary: Display: Using IoDispatcher for shader code library MetaCastBachelor. Total 2223 unique shaders.
+[2024.08.02-07.47.04:212][  0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library MetaCastBachelor
+[2024.08.02-07.47.04:212][  0]LogShaderLibrary: Display: Logical shader library 'MetaCastBachelor' has been created as a monolithic library
+[2024.08.02-07.47.04:213][  0]LogRHI: Could not open FPipelineCacheFile: ../../../MetaCastBachelor/Content/PipelineCaches/Windows/MetaCastBachelor_PCD3D_SM6.stable.upipelinecache
+[2024.08.02-07.47.04:213][  0]LogRHI: Could not open FPipelineCacheFile: ../../../MetaCastBachelor/Content/PipelineCaches/Windows/MetaCastBachelor_PCD3D_SM6.stable.upipelinecache
+[2024.08.02-07.47.04:213][  0]LogShaderLibrary: Display: Tried to open again shader library 'MetaCastBachelor', but could not find new components for it (existing components: 1).
+[2024.08.02-07.47.04:213][  0]LogRHI: Could not open FPipelineCacheFile: ../../../MetaCastBachelor/Content/PipelineCaches/Windows/MetaCastBachelor_PCD3D_SM6.stable.upipelinecache
+[2024.08.02-07.47.04:213][  0]LogInit: Using OS detected language (en-US).
+[2024.08.02-07.47.04:213][  0]LogInit: Using OS detected locale (de-DE).
+[2024.08.02-07.47.04:213][  0]LogTextLocalizationManager: No localization for 'en-US' exists, so 'en' will be used for the language.
+[2024.08.02-07.47.04:213][  0]LogTextLocalizationManager: No localization for 'de-DE' exists, so 'en' will be used for the locale.
+[2024.08.02-07.47.04:214][  0]LogAssetRegistry: FAssetRegistry took 0.0002 seconds to start up
+[2024.08.02-07.47.04:350][  0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages
+[2024.08.02-07.47.04:352][  0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found.
+[2024.08.02-07.47.04:352][  0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found.
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: Available device profiles:
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A15779B80][0000029A14AFAAC0 66] GlobalDefaults, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A15779880][0000029A14790010 66] Windows, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A15779700][0000029A14799250 66] WindowsEditor, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577F700][0000029A1599DB70 66] WindowsServer, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577F400][0000029A1599B6E0 66] WindowsClient, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577F280][0000029A15999250 66] IOS, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577F100][0000029A15996DC0 66] iPadAir2, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577EF80][0000029A15994930 66] IPadPro, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577EE00][0000029A159924A0 66] iPadAir3, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577EC80][0000029A15990010 66] iPadAir4, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577EB00][0000029A159ADB70 66] iPadAir5, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577E980][0000029A159AB6E0 66] iPadMini4, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577E800][0000029A159A9250 66] iPadMini5, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577E680][0000029A159A6DC0 66] iPadMini6, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577E500][0000029A159A4930 66] iPhone6S, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577E380][0000029A159A24A0 66] iPhone7, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577E200][0000029A159A0010 66] iPodTouch7, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577E080][0000029A159BDB70 66] iPhone6SPlus, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577DF00][0000029A159BB6E0 66] iPhone7Plus, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577DD80][0000029A159B9250 66] iPhoneSE, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577DC00][0000029A159B6DC0 66] iPhone8, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577DA80][0000029A159B4930 66] iPhone8Plus, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577D900][0000029A159B24A0 66] iPhoneX, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A15779580][0000029A159B0010 66] iPhoneXS, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577F580][0000029A159CDB70 66] iPhoneXSMax, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577D780][0000029A159CB6E0 66] iPhoneXR, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577D600][0000029A159C9250 66] iPhone11, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577D480][0000029A159C6DC0 66] iPhone11Pro, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577D300][0000029A159C4930 66] iPhone11ProMax, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577D180][0000029A159C24A0 66] iPhoneSE2, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577D000][0000029A159C0010 66] iPhone12Mini, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577CE80][0000029A159DDB70 66] iPhone12, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577CD00][0000029A159DB6E0 66] iPhone12Pro, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577CB80][0000029A159D9250 66] iPhone12ProMax, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577CA00][0000029A159D6DC0 66] iPhone13Mini, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577C880][0000029A159D4930 66] iPhone13, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577C700][0000029A159D24A0 66] iPhone13Pro, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577FE80][0000029A159D0010 66] iPhone13ProMax, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577FD00][0000029A159EDB70 66] iPhoneSE3, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577FB80][0000029A159EB6E0 66] iPhone14, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577FA00][0000029A159E9250 66] iPhone14Plus, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A1577F880][0000029A159E6DC0 66] iPhone14Pro, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F3100][0000029A159E4930 66] iPhone14ProMax, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F2F80][0000029A159E24A0 66] iPhone15, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F2E00][0000029A159E0010 66] iPhone15Plus, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F2C80][0000029A15A0DB70 66] iPhone15Pro, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F2B00][0000029A15A0B6E0 66] iPhone15ProMax, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F2980][0000029A15A09250 66] iPadPro105, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F2800][0000029A15A06DC0 66] iPadPro129, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F2680][0000029A15A04930 66] iPadPro97, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F2500][0000029A15A024A0 66] iPadPro2_129, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F2380][0000029A15A00010 66] iPad5, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F2200][0000029A15A1DB70 66] iPad6, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F2080][0000029A15A1B6E0 66] iPad7, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F1F00][0000029A15A19250 66] iPad8, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F1D80][0000029A15A16DC0 66] iPad9, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F1C00][0000029A15A14930 66] iPad10, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F1A80][0000029A15A124A0 66] iPadPro11, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F1900][0000029A15A10010 66] iPadPro2_11, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F1780][0000029A15A2DB70 66] iPadPro3_11, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F1600][0000029A15A2B6E0 66] iPadPro4_11, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F1480][0000029A15A29250 66] iPadPro3_129, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F1300][0000029A15A26DC0 66] iPadPro4_129, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F1180][0000029A15A24930 66] iPadPro5_129, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F1000][0000029A15A224A0 66] iPadPro6_129, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F0E80][0000029A15A20010 66] AppleTV, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F0D00][0000029A15A3DB70 66] AppleTV4K, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F0B80][0000029A15A3B6E0 66] AppleTV2_4K, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F0A00][0000029A15A39250 66] TVOS, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F0880][0000029A15A36DC0 66] Mac, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F0700][0000029A15A34930 66] MacEditor, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F0580][0000029A15A324A0 66] MacClient, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F0400][0000029A15A30010 66] MacServer, 
+[2024.08.02-07.47.04:354][  0]LogDeviceProfileManager: 	[0000029A159F0280][0000029A15A4DB70 66] Linux, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F0100][0000029A15A4B6E0 66] LinuxEditor, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F6280][0000029A15A49250 66] LinuxArm64Editor, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F6100][0000029A15A46DC0 66] LinuxArm64, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F5F80][0000029A15A44930 66] LinuxClient, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F5E00][0000029A15A424A0 66] LinuxArm64Client, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F5C80][0000029A15A40010 66] LinuxServer, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F5B00][0000029A15A5DB70 66] LinuxArm64Server, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F5980][0000029A15A5B6E0 66] Android, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F5800][0000029A15A59250 66] Android_Preview_OpenGL, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F5680][0000029A15A56DC0 66] Android_Preview_Vulkan, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F5500][0000029A15A54930 66] Android_Low, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F5380][0000029A15A524A0 66] Android_Mid, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F5200][0000029A15A50010 66] Android_High, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F5080][0000029A15A6DB70 66] Android_Default, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F4F00][0000029A15A6B6E0 66] Android_Adreno4xx, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F4D80][0000029A15A69250 66] Android_Adreno5xx_Low, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F4C00][0000029A15A66DC0 66] Android_Adreno5xx, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F4A80][0000029A15A64930 66] Android_Adreno6xx, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F4900][0000029A15A624A0 66] Android_Adreno6xx_Vulkan, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F4780][0000029A15A60010 66] Android_Adreno7xx, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F4600][0000029A15A7DB70 66] Android_Adreno7xx_Vulkan, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F4480][0000029A15A7B6E0 66] Android_Mali_T6xx, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F4300][0000029A15A79250 66] Android_Mali_T7xx, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F4180][0000029A15A76DC0 66] Android_Mali_T8xx, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F4000][0000029A15A74930 66] Android_Mali_G71, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F3E80][0000029A15A724A0 66] Android_Mali_G72, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F3D00][0000029A15A70010 66] Android_Mali_G72_Vulkan, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F3B80][0000029A15AADB70 66] Android_Mali_G76, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F3A00][0000029A15AAB6E0 66] Android_Mali_G76_Vulkan, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F3880][0000029A15AA9250 66] Android_Mali_G77, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F3700][0000029A15AA6DC0 66] Android_Mali_G77_Vulkan, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F3580][0000029A15AA4930 66] Android_Mali_G78, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F3400][0000029A15AA24A0 66] Android_Mali_G78_Vulkan, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F3280][0000029A15AA0010 66] Android_Mali_G710, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F9400][0000029A15ABDB70 66] Android_Mali_G710_Vulkan, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F9280][0000029A15ABB6E0 66] Android_Mali_G7xx, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F9100][0000029A15AB9250 66] Android_Mali_G7xx_Vulkan, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F8F80][0000029A15AB6DC0 66] Android_Xclipse_920, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F8E00][0000029A15AB4930 66] Android_Xclipse_920_Vulkan, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F8C80][0000029A15AB24A0 66] Android_Vulkan_SM5, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F8B00][0000029A15AB0010 66] Android_PowerVR_G6xxx, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F8980][0000029A15ACDB70 66] Android_PowerVR_GT7xxx, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F8800][0000029A15ACB6E0 66] Android_PowerVR_GE8xxx, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F8680][0000029A15AC9250 66] Android_PowerVR_GM9xxx, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F8500][0000029A15AC6DC0 66] Android_PowerVR_GM9xxx_Vulkan, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F8380][0000029A15AC4930 66] Android_TegraK1, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F8200][0000029A15AC24A0 66] Android_Unknown_Vulkan, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F8080][0000029A15AC0010 66] Oculus_Quest, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F7F00][0000029A15ADDB70 66] Oculus_Quest2, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F7D80][0000029A15ADB6E0 66] Meta_Quest_Pro, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F7C00][0000029A15AD9250 66] Meta_Quest_3, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F7A80][0000029A15AD6DC0 66] HoloLens, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: 	[0000029A159F7900][0000029A15AD4930 66] MagicLeap_Vulkan, 
+[2024.08.02-07.47.04:355][  0]LogDeviceProfileManager: Active device profile: [0000029A15779880][0000029A14790010 66] Windows
+[2024.08.02-07.47.04:355][  0]LogCsvProfiler: Display: Metadata set : deviceprofile="Windows"
+[2024.08.02-07.47.04:589][  0]LogTextureEncodingSettings: Display: Texture Encode Speed: Final (cook).
+[2024.08.02-07.47.04:589][  0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal
+[2024.08.02-07.47.04:589][  0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled
+[2024.08.02-07.47.04:670][  0]LogPackageLocalizationCache: Processed 62 localized package path(s) for 1 prioritized culture(s) in 0.000143 seconds
+[2024.08.02-07.47.04:713][  0]LogStaticMesh: [SM_LightCardPlane] Mesh is marked for CPU read.
+[2024.08.02-07.47.04:715][  0]LogStaticMesh: [plane_hd_1x1] Mesh is marked for CPU read.
+[2024.08.02-07.47.04:723][  0]LogConfig: Warning: FConfigCacheIni::LoadFile failed loading file as it was 0 size.  Filename was:  ../../../MetaCastBachelor/Config/Demo.ini
+[2024.08.02-07.47.04:727][  0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
+[2024.08.02-07.47.04:727][  0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
+[2024.08.02-07.47.04:780][  0]LogMoviePlayer: Initializing movie player
+[2024.08.02-07.47.04:783][  0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 15281D2042B6EE5B7F9234AEB1D72BFE | Instance: B362EFAE484A768010738F9CF39AF4A6 (ITC22160-62600).
+[2024.08.02-07.47.04:807][  0]LogAudio: Display: Registering Engine Module Parameter Interfaces...
+[2024.08.02-07.47.04:808][  0]LogMetasoundEngine: MetaSound Engine Initialized
+[2024.08.02-07.47.04:811][  0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance
+[2024.08.02-07.47.04:811][  0]LogSlateStyle: Warning: Missing Resource from 'CoreStyle' Style: 'Unable to find Brush 'Sequencer.Timeline.VanillaScrubHandleDown'.'
+[2024.08.02-07.47.04:811][  0]LogDisplayClusterModule: Instantiating subsystem managers...
+[2024.08.02-07.47.04:811][  0]LogDisplayClusterRender: Registering factory for rendering device type: dc_dev_mono
+[2024.08.02-07.47.04:811][  0]LogDisplayClusterRender: Registered factory for rendering device type: dc_dev_mono
+[2024.08.02-07.47.04:811][  0]LogDisplayClusterRender: Registering factory for rendering device type: quad_buffer_stereo
+[2024.08.02-07.47.04:811][  0]LogDisplayClusterRender: Registered factory for rendering device type: quad_buffer_stereo
+[2024.08.02-07.47.04:811][  0]LogDisplayClusterRender: Registering factory for rendering device type: dc_dev_side_by_side
+[2024.08.02-07.47.04:811][  0]LogDisplayClusterRender: Registered factory for rendering device type: dc_dev_side_by_side
+[2024.08.02-07.47.04:811][  0]LogDisplayClusterRender: Registering factory for rendering device type: dc_dev_top_bottom
+[2024.08.02-07.47.04:811][  0]LogDisplayClusterRender: Registered factory for rendering device type: dc_dev_top_bottom
+[2024.08.02-07.47.04:811][  0]LogDisplayClusterRender: Registering factory for synchronization policy: none
+[2024.08.02-07.47.04:811][  0]LogDisplayClusterRender: Registered factory for synchronization policy: none
+[2024.08.02-07.47.04:812][  0]LogDisplayClusterRender: Registering factory for synchronization policy: ethernet
+[2024.08.02-07.47.04:812][  0]LogDisplayClusterRender: Registered factory for synchronization policy: ethernet
+[2024.08.02-07.47.04:812][  0]LogDisplayClusterRender: Registering factory for synchronization policy: ethernet_barrier
+[2024.08.02-07.47.04:812][  0]LogDisplayClusterRender: Registered factory for synchronization policy: ethernet_barrier
+[2024.08.02-07.47.04:812][  0]LogDisplayClusterRender: Registering factory for synchronization policy: nvidia
+[2024.08.02-07.47.04:812][  0]LogDisplayClusterRender: Registered factory for synchronization policy: nvidia
+[2024.08.02-07.47.04:812][  0]LogDisplayClusterModule: DisplayCluster module has been started
+[2024.08.02-07.47.04:814][  0]LogDisplayClusterProjectionVIOSO: VIOSO API(1,6,19,90) was initialized from file '../../../Engine/Plugins/Runtime/nDisplay/ThirdParty/VIOSO/DLL/ViosoWarpBlend64.dll'.
+[2024.08.02-07.47.04:814][  0]LogDisplayClusterProjection: Projection module has been instantiated
+[2024.08.02-07.47.04:814][  0]LogDisplayClusterProjection: Projection module startup
+[2024.08.02-07.47.04:814][  0]LogDisplayClusterProjection: Registering <camera> projection policy factory...
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterRender: Registering factory for projection type: camera
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterRender: Registered factory for projection type: camera
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterProjection: Registering <domeprojection> projection policy factory...
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterRender: Registering factory for projection type: domeprojection
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterRender: Registered factory for projection type: domeprojection
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterProjection: Registering <easyblend> projection policy factory...
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterRender: Registering factory for projection type: easyblend
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterRender: Registered factory for projection type: easyblend
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterProjection: Registering <link> projection policy factory...
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterRender: Registering factory for projection type: link
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterRender: Registered factory for projection type: link
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterProjection: Registering <manual> projection policy factory...
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterRender: Registering factory for projection type: manual
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterRender: Registered factory for projection type: manual
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterProjection: Registering <mpcdi> projection policy factory...
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterRender: Registering factory for projection type: mpcdi
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterRender: Registered factory for projection type: mpcdi
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterProjection: Registering <mesh> projection policy factory...
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterRender: Registering factory for projection type: mesh
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterRender: Registered factory for projection type: mesh
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterProjection: Registering <simple> projection policy factory...
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterRender: Registering factory for projection type: simple
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterRender: Registered factory for projection type: simple
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterProjection: Registering <vioso> projection policy factory...
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterRender: Registering factory for projection type: vioso
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterRender: Registered factory for projection type: vioso
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterProjection: Projection module has started
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterRemoteControlInterceptor: DisplayClusterRemoteControlInterceptor has been registered
+[2024.08.02-07.47.04:815][  0]LogDisplayClusterMedia: Starting module 'DisplayClusterMedia'...
+[2024.08.02-07.47.04:815][  0]GPUPointCloudRenderer: //////////////////////////////////////////// 
+
+[2024.08.02-07.47.04:815][  0]GPUPointCloudRenderer: // Initializing GPU Point Cloud Renderer... 
+
+[2024.08.02-07.47.04:815][  0]GPUPointCloudRenderer: //////////////////////////////////////////// 
+
+[2024.08.02-07.47.04:823][  0]LogUObjectArray: 25084 objects as part of root set at end of initial load.
+[2024.08.02-07.47.04:823][  0]LogUObjectArray: 4 objects are not in the root set, but can never be destroyed because they are in the DisregardForGC set.
+[2024.08.02-07.47.04:823][  0]LogUObjectAllocator: 5582112 out of 0 bytes used by permanent object pool.
+[2024.08.02-07.47.04:823][  0]LogUObjectArray: CloseDisregardForGC: 25084/25084 objects in disregard for GC pool
+[2024.08.02-07.47.04:833][  0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 24348 public script object entries (639.99 KB)
+[2024.08.02-07.47.04:833][  0]LogStreaming: Display: AsyncLoading2 - Thread Started: true, IsInitialLoad: false
+[2024.08.02-07.47.04:834][  0]LogEngine: Initializing Engine...
+[2024.08.02-07.47.04:857][  0]LogHMD: HMD configured for shader platform PCD3D_SM6, bIsMobileMultiViewEnabled=0, bProjectionLayerAlphaEnabled=0
+[2024.08.02-07.47.05:428][  0]LogStats: UGameplayTagsManager::InitializeManager -  0.000 s
+[2024.08.02-07.47.05:435][  0]LogInit: Initializing FReadOnlyCVARCache
+[2024.08.02-07.47.05:435][  0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use.
+[2024.08.02-07.47.05:435][  0]LogInit: Texture streaming: Enabled
+[2024.08.02-07.47.05:435][  0]LogAudio: Display: Initializing Audio Device Manager...
+[2024.08.02-07.47.05:435][  0]LogAudio: Display: Loading Default Audio Settings Objects...
+[2024.08.02-07.47.05:435][  0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load).
+[2024.08.02-07.47.05:435][  0]LogAudio: Display: AudioInfo: 'BINKA' Registered
+[2024.08.02-07.47.05:435][  0]LogAudio: Display: AudioInfo: 'PCM' Registered
+[2024.08.02-07.47.05:435][  0]LogAudio: Display: AudioInfo: 'ADPCM' Registered
+[2024.08.02-07.47.05:435][  0]LogAudio: Display: AudioInfo: 'OGG' Registered
+[2024.08.02-07.47.05:435][  0]LogAudio: Display: AudioInfo: 'OPUS' Registered
+[2024.08.02-07.47.05:435][  0]LogAudio: Display: Audio Device Manager Initialized
+[2024.08.02-07.47.05:435][  0]LogAudio: Display: Creating Audio Device:                 Id: 1, Scope: Shared, Realtime: True
+[2024.08.02-07.47.05:435][  0]LogAudioMixer: Display: Audio Mixer Platform Settings:
+[2024.08.02-07.47.05:435][  0]LogAudioMixer: Display: 	Sample Rate:						  48000
+[2024.08.02-07.47.05:435][  0]LogAudioMixer: Display: 	Callback Buffer Frame Size Requested: 1024
+[2024.08.02-07.47.05:435][  0]LogAudioMixer: Display: 	Callback Buffer Frame Size To Use:	  1024
+[2024.08.02-07.47.05:435][  0]LogAudioMixer: Display: 	Number of buffers to queue:			  1
+[2024.08.02-07.47.05:435][  0]LogAudioMixer: Display: 	Max Channels (voices):				  32
+[2024.08.02-07.47.05:435][  0]LogAudioMixer: Display: 	Number of Async Source Workers:		  4
+[2024.08.02-07.47.05:435][  0]LogAudio: Display: AudioDevice MaxSources: 32
+[2024.08.02-07.47.05:436][  0]LogAudio: Display: Audio Spatialization Plugin: None (built-in).
+[2024.08.02-07.47.05:436][  0]LogAudio: Display: Audio Reverb Plugin: None (built-in).
+[2024.08.02-07.47.05:436][  0]LogAudio: Display: Audio Occlusion Plugin: None (built-in).
+[2024.08.02-07.47.05:448][  0]LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded.
+[2024.08.02-07.47.05:449][  0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2'
+[2024.08.02-07.47.05:525][  0]LogAudioMixer: Display: Using Audio Hardware Device Lautsprecher (3- Realtek USB2.0 Audio)
+[2024.08.02-07.47.05:525][  0]LogAudioMixer: Display: Initializing Sound Submixes...
+[2024.08.02-07.47.05:526][  0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault'
+[2024.08.02-07.47.05:526][  0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault'
+[2024.08.02-07.47.05:528][  0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1
+[2024.08.02-07.47.05:528][  0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1
+[2024.08.02-07.47.05:528][  0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1
+[2024.08.02-07.47.05:528][  0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1
+[2024.08.02-07.47.05:528][  0]LogInit: FAudioDevice initialized with ID 1.
+[2024.08.02-07.47.05:528][  0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1
+[2024.08.02-07.47.05:529][  0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1"
+[2024.08.02-07.47.05:530][  0]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created!
+[2024.08.02-07.47.05:530][  0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
+[2024.08.02-07.47.05:532][  0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'.
+[2024.08.02-07.47.05:532][  0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
+[2024.08.02-07.47.05:532][  0]LogInit: Display: Game Engine Initialized.
+[2024.08.02-07.47.05:534][  0]LogWindows: Attached monitors:
+[2024.08.02-07.47.05:534][  0]LogWindows:     resolution: 1920x1080, work area: (1920, 0) -> (3840, 1040), device: '\\.\DISPLAY2'
+[2024.08.02-07.47.05:534][  0]LogWindows:     resolution: 1920x1080, work area: (0, 0) -> (1920, 1040), device: '\\.\DISPLAY1' [PRIMARY]
+[2024.08.02-07.47.05:534][  0]LogWindows: Found 2 attached monitors.
+[2024.08.02-07.47.05:534][  0]LogWindows: Gathering driver information using Windows Setup API
+[2024.08.02-07.47.05:534][  0]LogInit: Display: Starting Game.
+[2024.08.02-07.47.05:534][  0]LogNet: Browse: /Game/Maps/Login?Name=Player
+[2024.08.02-07.47.05:534][  0]LogLoad: LoadMap: /Game/Maps/Login?Name=Player
+[2024.08.02-07.47.05:534][  0]LogWorld: BeginTearingDown for /Temp/Untitled_0
+[2024.08.02-07.47.05:534][  0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true
+[2024.08.02-07.47.05:535][  0]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.47.05:539][  0]LogRHI: Display: Encountered a new compute PSO: 108100765
+[2024.08.02-07.47.05:541][  0]LogRHI: Display: Encountered a new compute PSO: 3044213281
+[2024.08.02-07.47.05:542][  0]LogRHI: Display: Encountered a new compute PSO: 3441300143
+[2024.08.02-07.47.05:551][  0]LogStreaming: Display: 0.001 ms for processing 44 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 0 (163->163) packages and 0 (167->167) public exports.
+[2024.08.02-07.47.05:551][  0]LogAudio: Display: Audio Device unregistered from world 'None'.
+[2024.08.02-07.47.05:553][  0]LogUObjectHash: Compacting FUObjectHashTables data took   0.60ms
+[2024.08.02-07.47.05:589][  0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Login'.
+[2024.08.02-07.47.05:589][  0]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created!
+[2024.08.02-07.47.05:589][  0]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
+[2024.08.02-07.47.05:590][  0]LogAIModule: Creating AISystem for world Login
+[2024.08.02-07.47.05:608][  0]LogRHI: Display: Encountered a new compute PSO: 1624740199
+[2024.08.02-07.47.05:608][  0]LogRHI: Display: Encountered a new compute PSO: 3081443093
+[2024.08.02-07.47.05:609][  0]LogRHI: Display: Encountered a new compute PSO: 434897211
+[2024.08.02-07.47.05:612][  0]LogLoad: Game class is 'VRGameMode_C'
+[2024.08.02-07.47.05:613][  0]LogWorld: Bringing World /Game/Maps/Login.Login up for play (max tick rate 0) at 2024.08.02-09.47.05
+[2024.08.02-07.47.05:613][  0]LogWorld: Bringing up level for play took: 0.001225
+[2024.08.02-07.47.05:614][  0]LogGameMode: FindPlayerStart: PATHS NOT DEFINED or NO PLAYERSTART with positive rating
+[2024.08.02-07.47.05:618][  0]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1
+[2024.08.02-07.47.05:618][  0]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.47.05:621][  0]LogSlate: Took 0.000531 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoRegular.ufont' (155K)
+[2024.08.02-07.47.05:622][  0]vr.PixelDensity = "1"
+[2024.08.02-07.47.05:622][  0]LogLoad: Took 0.087527 seconds to LoadMap(/Game/Maps/Login)
+[2024.08.02-07.47.05:622][  0]LogSlate: Took 0.000418 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/RobotoBold.ufont' (160K)
+[2024.08.02-07.47.05:623][  0]LogViewport: Scene viewport resized to 1920x1080, mode WindowedFullscreen.
+[2024.08.02-07.47.05:625][  0]LogHMD: Warning: Requesting 10 bit swapchain, but not supported: fall back to 8bpc
+[2024.08.02-07.47.05:672][  0]LogSlate: Took 0.000410 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K)
+[2024.08.02-07.47.05:672][  0]LogRHI: Display: ShaderPipelineCache: Paused Batching. 1
+[2024.08.02-07.47.05:672][  0]LogPakFile: AllPaks IndexSizes: DirectoryHashSize=193072, PathHashSize=16, EntriesSize=32752, TotalSize=225840
+[2024.08.02-07.47.05:672][  0]LogRHI: Display: ShaderPipelineCache: Resumed Batching. 0
+[2024.08.02-07.47.05:672][  0]LogRHI: Display: ShaderPipelineCache: Batching Resumed.
+[2024.08.02-07.47.05:673][  0]LogRenderer: Warning: Resizing VR buffer to 2656 by 1300
+[2024.08.02-07.47.05:679][  0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init()
+[2024.08.02-07.47.05:679][  0]LogLoad: (Engine Initialization) Total time: 2.92 seconds
+[2024.08.02-07.47.05:681][  0]LogSlate: Took 0.000373 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K)
+[2024.08.02-07.47.05:709][  0]LogRHI: Display: Encountered a new compute PSO: 4084646486
+[2024.08.02-07.47.05:709][  0]LogRHI: Display: Encountered a new compute PSO: 812371551
+[2024.08.02-07.47.05:709][  0]LogRHI: Display: Encountered a new graphics PSO: 438169823
+[2024.08.02-07.47.05:709][  0]LogRHI: Display: Encountered a new graphics PSO: 2996660223
+[2024.08.02-07.47.05:709][  0]LogRHI: Display: Encountered a new compute PSO: 3707458169
+[2024.08.02-07.47.05:709][  0]LogRHI: Display: Encountered a new compute PSO: 1983791817
+[2024.08.02-07.47.05:710][  0]LogRHI: Display: Encountered a new compute PSO: 3071658855
+[2024.08.02-07.47.05:710][  0]LogRHI: Display: Encountered a new graphics PSO: 568850401
+[2024.08.02-07.47.05:710][  0]LogRHI: Display: Encountered a new compute PSO: 1980351999
+[2024.08.02-07.47.05:710][  0]LogRHI: Display: Encountered a new compute PSO: 3265167958
+[2024.08.02-07.47.05:710][  0]LogRHI: Display: Encountered a new graphics PSO: 1857403627
+[2024.08.02-07.47.05:710][  0]LogRHI: Display: Encountered a new graphics PSO: 2789720086
+[2024.08.02-07.47.05:711][  0]LogRHI: Display: Encountered a new graphics PSO: 1680577637
+[2024.08.02-07.47.05:712][  0]LogRHI: Display: Encountered a new graphics PSO: 2141321626
+[2024.08.02-07.47.05:724][  0]LogRHI: Display: Encountered a new graphics PSO: 3396054539
+[2024.08.02-07.47.05:829][  0]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.47.05:832][  0]LogContentStreaming: Texture pool size now 1000 MB
+[2024.08.02-07.47.05:856][  2]LogRHI: Display: Encountered a new compute PSO: 2137981577
+[2024.08.02-07.47.05:856][  2]LogRHI: Display: Encountered a new graphics PSO: 2989811062
+[2024.08.02-07.47.05:856][  2]LogRHI: Display: Encountered a new compute PSO: 36000004
+[2024.08.02-07.47.05:857][  2]LogRHI: Display: Encountered a new compute PSO: 3156736644
+[2024.08.02-07.47.05:857][  2]LogRHI: Display: Encountered a new compute PSO: 1496384869
+[2024.08.02-07.47.05:857][  2]LogRHI: Display: Encountered a new compute PSO: 2377609249
+[2024.08.02-07.47.05:857][  2]LogRHI: Display: Encountered a new compute PSO: 3916353388
+[2024.08.02-07.47.05:857][  2]LogRHI: Display: Encountered a new compute PSO: 2607838988
+[2024.08.02-07.47.05:857][  2]LogRHI: Display: Encountered a new compute PSO: 1481873912
+[2024.08.02-07.47.05:857][  2]LogRHI: Display: Encountered a new compute PSO: 3560210858
+[2024.08.02-07.47.05:857][  2]LogRHI: Display: Encountered a new compute PSO: 2045927908
+[2024.08.02-07.47.05:857][  2]LogRHI: Display: Encountered a new compute PSO: 1213868836
+[2024.08.02-07.47.05:857][  2]LogRHI: Display: Encountered a new compute PSO: 309180451
+[2024.08.02-07.47.05:857][  2]LogRHI: Display: Encountered a new compute PSO: 1838702928
+[2024.08.02-07.47.05:857][  2]LogRHI: Display: Encountered a new compute PSO: 3415796330
+[2024.08.02-07.47.05:857][  2]LogRHI: Display: Encountered a new compute PSO: 2399646039
+[2024.08.02-07.47.05:857][  2]LogRHI: Display: Encountered a new compute PSO: 3137437172
+[2024.08.02-07.47.05:857][  2]LogRHI: Display: Encountered a new compute PSO: 3509667929
+[2024.08.02-07.47.05:857][  2]LogRHI: Display: Encountered a new compute PSO: 3360497970
+[2024.08.02-07.47.05:858][  2]LogRHI: Display: Encountered a new compute PSO: 3810519787
+[2024.08.02-07.47.05:858][  2]LogRHI: Display: Encountered a new graphics PSO: 2274179198
+[2024.08.02-07.47.05:858][  2]LogRHI: Display: Encountered a new compute PSO: 831929746
+[2024.08.02-07.47.05:858][  2]LogRHI: Display: Encountered a new compute PSO: 676159369
+[2024.08.02-07.47.05:858][  2]LogRHI: Display: Encountered a new graphics PSO: 3670865199
+[2024.08.02-07.47.05:858][  2]LogRHI: Display: Encountered a new compute PSO: 724033258
+[2024.08.02-07.47.05:859][  2]LogRHI: Display: Encountered a new compute PSO: 4090296402
+[2024.08.02-07.47.05:859][  2]LogRHI: Display: Encountered a new compute PSO: 2077624189
+[2024.08.02-07.47.05:859][  2]LogRHI: Display: Encountered a new graphics PSO: 1044072120
+[2024.08.02-07.47.05:859][  2]LogRHI: Display: Encountered a new graphics PSO: 3377188663
+[2024.08.02-07.47.05:859][  2]LogRHI: Display: Encountered a new graphics PSO: 977987442
+[2024.08.02-07.47.05:860][  2]LogRHI: Display: Encountered a new graphics PSO: 4210484662
+[2024.08.02-07.47.05:860][  2]LogRHI: Display: Encountered a new graphics PSO: 392357091
+[2024.08.02-07.47.05:861][  2]LogRHI: Display: Encountered a new compute PSO: 710140861
+[2024.08.02-07.47.05:862][  2]LogRHI: Display: Encountered a new graphics PSO: 1487777183
+[2024.08.02-07.47.05:862][  2]LogRHI: Display: Encountered a new compute PSO: 3886170959
+[2024.08.02-07.47.05:863][  2]LogRHI: Display: Encountered a new graphics PSO: 3898165938
+[2024.08.02-07.47.05:863][  2]LogRHI: Display: Encountered a new graphics PSO: 2376581795
+[2024.08.02-07.47.05:863][  2]LogRHI: Display: Encountered a new graphics PSO: 3776468594
+[2024.08.02-07.47.05:863][  2]LogRHI: Display: Encountered a new graphics PSO: 3126438517
+[2024.08.02-07.47.05:864][  2]LogRHI: Display: Encountered a new compute PSO: 349008682
+[2024.08.02-07.47.06:107][  2]LogD3D12RHI: Cannot end block when stack is empty
+[2024.08.02-07.47.06:109][  2]LogRHI: Display: Encountered a new graphics PSO: 1601640264
+[2024.08.02-07.47.06:109][  2]LogRHI: Display: Encountered a new graphics PSO: 2881236056
+[2024.08.02-07.47.06:122][  3]LogHMD: SetSpectatorScreenMode(7).
+[2024.08.02-07.47.06:130][  4]LogRHI: Display: Encountered a new graphics PSO: 1324910427
+[2024.08.02-07.47.06:130][  4]LogRHI: Display: Encountered a new graphics PSO: 1796231892
+[2024.08.02-07.47.11:777][513]LogBlueprintUserMessages: [LoginManager_C_1] 55
+[2024.08.02-07.47.11:779][513]LogTemp: Initialized Participant ID: 55
+[2024.08.02-07.47.11:798][514]LogProfilingDebugging: Allocated a 1024 x 1024 texture for HMD canvas layer
+[2024.08.02-07.47.11:799][514]LogRHI: Display: Encountered a new graphics PSO: 1502675884
+[2024.08.02-07.47.11:811][516]LogRHI: Display: Encountered a new graphics PSO: 4069790606
+[2024.08.02-07.47.11:976][530]LogHMD: SetSpectatorScreenMode(7).
+[2024.08.02-07.47.11:976][530]LogBlueprintUserMessages: [LoginManager_C_1] Initialized!
+[2024.08.02-07.47.16:387][927]LogBlueprintUserMessages: [LoginManager_C_1] Starting Condition: MagicWand
+[2024.08.02-07.47.21:376][376]LogBlueprintUserMessages: [LoginManager_C_1] LOADING CONDITION!
+[2024.08.02-07.47.21:376][376]LogTemp: Loading level: /Game/Maps/MagicWandMap.MagicWandMap
+[2024.08.02-07.47.21:378][377]LogNet: Browse: /Game/Maps/MagicWandMap.MagicWandMap
+[2024.08.02-07.47.21:378][377]LogLoad: LoadMap: /Game/Maps/MagicWandMap.MagicWandMap
+[2024.08.02-07.47.21:378][377]LogWorld: BeginTearingDown for /Game/Maps/Login
+[2024.08.02-07.47.21:379][377]LogWorld: UWorld::CleanupWorld for Login, bSessionEnded=true, bCleanupResources=true
+[2024.08.02-07.47.21:379][377]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.47.21:397][377]LogHMD: Error: Unexpected error on xrBeginFrame. Error code was XR_ERROR_CALL_ORDER_INVALID.
+[2024.08.02-07.47.21:430][377]LogStreaming: Display: 0.015 ms for processing 532 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 63 (265->202) packages and 221 (437->216) public exports.
+[2024.08.02-07.47.21:430][377]LogAudio: Display: Audio Device unregistered from world 'None'.
+[2024.08.02-07.47.21:432][377]LogSlate: Slate User Unregistered.  User Index 8
+[2024.08.02-07.47.21:432][377]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.47.21:433][377]LogUObjectHash: Compacting FUObjectHashTables data took   0.61ms
+[2024.08.02-07.47.21:436][377]LogStreaming: Display: FlushAsyncLoading(103): 1 QueuedPackages, 0 AsyncPackages
+[2024.08.02-07.47.21:464][377]LogPackageName: Warning: TryConvertFilenameToLongPackageName was passed an ObjectPath (/Game/Maps/MagicWandMap.MagicWandMap) rather than a PackageName or FilePath; it will be converted to the PackageName. Accepting ObjectPaths is deprecated behavior and will be removed in a future release; TryConvertFilenameToLongPackageName will fail on ObjectPaths.
+[2024.08.02-07.47.21:492][377]LogAudio: Display: Audio Device (ID: 1) registered with world 'MagicWandMap'.
+[2024.08.02-07.47.21:492][377]LogWorldSubsystemInput: UEnhancedInputDeveloperSettings::bEnableWorldSubsystem is false, the world subsystem will not be created!
+[2024.08.02-07.47.21:493][377]LogChaos: FPhysicsSolverBase::AsyncDt:-1.000000
+[2024.08.02-07.47.21:494][377]LogAIModule: Creating AISystem for world MagicWandMap
+[2024.08.02-07.47.21:494][377]LogLoad: Game class is 'VRGameMode_C'
+[2024.08.02-07.47.21:495][377]LogWorld: Bringing World /Game/Maps/MagicWandMap.MagicWandMap up for play (max tick rate 0) at 2024.08.02-09.47.21
+[2024.08.02-07.47.21:495][377]LogSlate: New Slate User Created. Platform User Id 8, User Index 8, Is Virtual User: 1
+[2024.08.02-07.47.21:495][377]LogSlate: Slate User Registered.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.47.21:496][377]LogWorld: Bringing up level for play took: 0.001322
+[2024.08.02-07.47.21:496][377]LogGameMode: FindPlayerStart: PATHS NOT DEFINED or NO PLAYERSTART with positive rating
+[2024.08.02-07.47.21:497][377]LogTemp: Point Cloud Folder: ../../../MetaCastBachelor/Content/Data/data
+[2024.08.02-07.47.21:497][377]LogTemp: Flag Folder: ../../../MetaCastBachelor/Content/Data/flags
+[2024.08.02-07.47.21:499][377]LogTemp: Total Point Cloud Files: 24
+[2024.08.02-07.47.21:499][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/ball_hemisphere
+[2024.08.02-07.47.21:499][377]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/ball_hemisphere_flags
+[2024.08.02-07.47.21:499][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/disk
+[2024.08.02-07.47.21:499][377]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/disk_flags
+[2024.08.02-07.47.21:499][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/fiveellipsolds
+[2024.08.02-07.47.21:499][377]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/fiveellipsolds_flags_1
+[2024.08.02-07.47.21:499][377]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/fiveellipsolds_flags_2
+[2024.08.02-07.47.21:499][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube1
+[2024.08.02-07.47.21:499][377]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube1_flags_1
+[2024.08.02-07.47.21:499][377]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube1_flags_2
+[2024.08.02-07.47.21:499][377]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube1_flags_3
+[2024.08.02-07.47.21:499][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube2
+[2024.08.02-07.47.21:499][377]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube2_flags
+[2024.08.02-07.47.21:499][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube3
+[2024.08.02-07.47.21:499][377]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/Flocculentcube3_flags
+[2024.08.02-07.47.21:499][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/galaxy
+[2024.08.02-07.47.21:499][377]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/galaxy
+[2024.08.02-07.47.21:499][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/multiEllipsolds
+[2024.08.02-07.47.21:499][377]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/multiEllipsolds
+[2024.08.02-07.47.21:500][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/nbody1
+[2024.08.02-07.47.21:500][377]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/nbody1_flags
+[2024.08.02-07.47.21:500][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/nbody2
+[2024.08.02-07.47.21:500][377]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/nbody2_flags
+[2024.08.02-07.47.21:500][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/snap_animation
+[2024.08.02-07.47.21:500][377]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/snap_animation_flags
+[2024.08.02-07.47.21:500][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/stringf
+[2024.08.02-07.47.21:500][377]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/stringf
+[2024.08.02-07.47.21:500][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/stringf1
+[2024.08.02-07.47.21:500][377]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/stringf1
+[2024.08.02-07.47.21:500][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/strings
+[2024.08.02-07.47.21:500][377]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/strings
+[2024.08.02-07.47.21:500][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/three_rings
+[2024.08.02-07.47.21:500][377]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/three_rings_flags
+[2024.08.02-07.47.21:500][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_cylinder
+[2024.08.02-07.47.21:500][377]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_cylinder_flags
+[2024.08.02-07.47.21:500][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_cylinder_2
+[2024.08.02-07.47.21:500][377]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/training_cylinder_2
+[2024.08.02-07.47.21:500][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_pyramid
+[2024.08.02-07.47.21:500][377]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_pyramid_flags
+[2024.08.02-07.47.21:500][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_pyramid_2
+[2024.08.02-07.47.21:500][377]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/training_pyramid_2
+[2024.08.02-07.47.21:500][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_sphere
+[2024.08.02-07.47.21:500][377]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_sphere_flags
+[2024.08.02-07.47.21:500][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_sphere_2
+[2024.08.02-07.47.21:500][377]LogTemp: Error: No matching flag file found for point cloud: ../../../MetaCastBachelor/Content/Data/data/training_sphere_2
+[2024.08.02-07.47.21:500][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/training_torus
+[2024.08.02-07.47.21:500][377]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/training_torus_flags
+[2024.08.02-07.47.21:500][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/uniform_Lines
+[2024.08.02-07.47.21:500][377]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/uniform_Lines_flags
+[2024.08.02-07.47.21:500][377]LogTemp: Point Cloud File: ../../../MetaCastBachelor/Content/Data/data/ununiform_Lines
+[2024.08.02-07.47.21:500][377]LogTemp:     Matching Flag File: ../../../MetaCastBachelor/Content/Data/flags/ununiform_Lines_flags
+[2024.08.02-07.47.21:500][377]LogTemp: Point Cloud Files with No Matching Flags:
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/galaxy
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/multiEllipsolds
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/stringf
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/stringf1
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/strings
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_cylinder_2
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_pyramid_2
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_sphere_2
+[2024.08.02-07.47.21:500][377]LogTemp: Valid Point Cloud Files with Matching Flags:
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/ball_hemisphere
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/disk
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/fiveellipsolds
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube1
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube2
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/Flocculentcube3
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/nbody1
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/nbody2
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/snap_animation
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/three_rings
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_cylinder
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_pyramid
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_sphere
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/training_torus
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/uniform_Lines
+[2024.08.02-07.47.21:500][377]LogTemp: ../../../MetaCastBachelor/Content/Data/data/ununiform_Lines
+[2024.08.02-07.47.21:517][377]LogTemp: Warning: Loaded 146578 points and flags
+[2024.08.02-07.47.21:520][377]LogTemp: Warning: Minimum: X=0.000 Y=0.000 Z=0.000 ; Maximum: X=100.000 Y=100.000 Z=100.000
+[2024.08.02-07.47.21:577][377]LogTemp: Initializing DensityField!
+[2024.08.02-07.47.21:692][377]LogTemp: Starting density calculation.
+[2024.08.02-07.47.21:698][377]LogTemp: Cleared previous densities.
+[2024.08.02-07.47.21:809][377]LogTemp: Maximum density found: 5.575187
+[2024.08.02-07.47.21:809][377]LogTemp: Minimum density found: 0.000000
+[2024.08.02-07.47.21:809][377]LogTemp: Average density found: 0.129851
+[2024.08.02-07.47.21:809][377]LogTemp: Density calculation completed in 0.117324 seconds.
+[2024.08.02-07.47.21:809][377]LogTemp: Starting gradient calculation.
+[2024.08.02-07.47.21:827][377]LogTemp: Gradient calculation completed.
+[2024.08.02-07.47.21:867][377]LogLoad: Took 0.490140 seconds to LoadMap(/Game/Maps/MagicWandMap.MagicWandMap)
+[2024.08.02-07.47.21:876][377]LogRHI: Display: Encountered a new graphics PSO: 1980780655
+[2024.08.02-07.47.21:877][377]LogRHI: Display: Encountered a new graphics PSO: 3450231069
+[2024.08.02-07.47.21:878][377]LogUObjectGlobals: Warning: Gamethread hitch waiting for resource cleanup on a UObject (PointCloudMeshComponent /Game/Maps/MagicWandMap.MagicWandMap:PersistentLevel.BP_PointCloud_C_1.GPUPointCloudRenderer.PointCloud Mesh) overwrite took   8.51ms. Fix the higher level code so that this does not happen.
+[2024.08.02-07.47.21:993][379]LogRHI: Display: Encountered a new graphics PSO: 1099305870
+[2024.08.02-07.47.23:486][513]LogRHI: Display: Encountered a new graphics PSO: 909860731
+[2024.08.02-07.47.27:220][849]LogRHI: Display: Encountered a new graphics PSO: 4228879312
+[2024.08.02-07.47.27:220][849]LogRHI: Display: Encountered a new graphics PSO: 1361913955
+[2024.08.02-07.47.27:220][849]LogRHI: Display: Encountered a new graphics PSO: 3242259045
+[2024.08.02-07.47.36:037][642]LogXRDeviceVisualizationComponent: Error: CreateRenderComponent returned a NULL UPrimitiveComponent*. Setting a NULL StaticMesh.
+[2024.08.02-07.47.36:069][644]LogStreaming: Display: FlushAsyncLoading(106): 1 QueuedPackages, 0 AsyncPackages
+[2024.08.02-07.47.37:535][776]LogRHI: Display: Encountered a new graphics PSO: 3243850598
+[2024.08.02-07.47.44:674][324]LogAudioMixer: Display: Audio Buffer Underrun (starvation) detected. InstanceID=1
+[2024.08.02-07.48.07:039][488]LogStreaming: Display: 2.966 ms for processing 74 objects in RemoveUnreachableObjects(Queued=0, Async=0). Removed 0 (325->325) packages and 66 (883->817) public exports.
+[2024.08.02-07.48.25:451][836]LogAudioMixer: Display: Audio Buffer Underrun (starvation) detected. InstanceID=1
+[2024.08.02-07.48.39:852][402]LogAudioMixer: Display: Audio Buffer Underrun (starvation) detected. InstanceID=1
+[2024.08.02-07.48.51:526][969]LogWindowsDesktop: Alt-F4 pressed!
+[2024.08.02-07.48.51:526][969]LogSlate: Request Window 'MetaCastBachelor (64-bit Development PCD3D_SM6) ' being destroyed
+[2024.08.02-07.48.51:546][969]LogSlate: Window 'MetaCastBachelor (64-bit Development PCD3D_SM6) ' being destroyed
+[2024.08.02-07.48.51:547][969]LogWindowsTextInputMethodSystem: Activated input method: German (Germany) - (Keyboard).
+[2024.08.02-07.48.51:561][969]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
+[2024.08.02-07.48.51:561][969]LogEngine: All Windows Closed
+[2024.08.02-07.48.51:561][969]LogWindows: FPlatformMisc::RequestExit(0, UGameEngine::Tick.ViewportClosed)
+[2024.08.02-07.48.51:561][969]LogWindows: FPlatformMisc::RequestExitWithStatus(0, 0, UGameEngine::Tick.ViewportClosed)
+[2024.08.02-07.48.51:561][969]LogCore: Engine exit requested (reason: Win RequestExit)
+[2024.08.02-07.48.51:561][970]LogCore: Engine exit requested (reason: EngineExit() was called; note: exit was already requested)
+[2024.08.02-07.48.51:561][970]LogInit: Display: PreExit Game.
+[2024.08.02-07.48.51:563][970]LogWorld: BeginTearingDown for /Game/Maps/MagicWandMap
+[2024.08.02-07.48.51:563][970]LogWorld: UWorld::CleanupWorld for MagicWandMap, bSessionEnded=true, bCleanupResources=true
+[2024.08.02-07.48.51:563][970]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
+[2024.08.02-07.48.51:733][970]LogAudio: Display: Beginning Audio Device Manager Shutdown (Module: AudioMixerXAudio2)...
+[2024.08.02-07.48.51:733][970]LogAudio: Display: Destroying 1 Remaining Audio Device(s)...
+[2024.08.02-07.48.51:734][970]LogAudio: Display: Audio Device unregistered from world 'MagicWandMap'.
+[2024.08.02-07.48.51:734][970]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 1
+[2024.08.02-07.48.51:768][970]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1
+[2024.08.02-07.48.51:769][970]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1
+[2024.08.02-07.48.51:777][970]LogAudio: Display: Audio Device Manager Shutdown
+[2024.08.02-07.48.51:780][970]LogExit: Preparing to exit.
+[2024.08.02-07.48.51:780][970]LogMoviePlayer: Shutting down movie player
+[2024.08.02-07.48.51:785][970]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
+[2024.08.02-07.48.51:796][970]LogDemo: Cleaned up 0 splitscreen connections, owner deletion: enabled
+[2024.08.02-07.48.51:800][970]LogExit: Game engine shut down
+[2024.08.02-07.48.51:841][970]LogExit: Object subsystem successfully closed.
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module AutomationController (496)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module AutomationWorker (494)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module Voice (492)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module AIModule (490)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module GameplayDebugger (489)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module NavigationSystem (487)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module OpenXRInput (484)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module WmfMediaFactory (482)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module WebMMediaFactory (480)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module WebMMedia (478)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module OpenExrWrapper (476)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module ImgMediaFactory (474)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module AvfMediaFactory (472)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module FractureEngine (470)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module CharacterAI (468)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module SessionServices (466)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module MovieSceneTracks (464)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module MovieScene (462)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module StreamingPauseRendering (460)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module BinkAudioDecoder (458)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module AudioMixerXAudio2 (456)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module AudioMixer (455)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module AudioMixerCore (454)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module TypedElementRuntime (450)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module TypedElementFramework (448)
+[2024.08.02-07.48.51:866][970]LogModuleManager: Shutting down and abandoning module ProfilerService (446)
+[2024.08.02-07.48.51:938][970]LogModuleManager: Shutting down and abandoning module ProfileVisualizer (444)
+[2024.08.02-07.48.51:938][970]LogModuleManager: Shutting down and abandoning module RWTHVRToolkit (442)
+[2024.08.02-07.48.51:938][970]LogModuleManager: Shutting down and abandoning module RWTHVRCluster (440)
+[2024.08.02-07.48.51:938][970]LogModuleManager: Shutting down and abandoning module GPUPointCloudRendererEditor (438)
+[2024.08.02-07.48.51:938][970]LogModuleManager: Shutting down and abandoning module TakeMovieScene (436)
+[2024.08.02-07.48.51:938][970]LogModuleManager: Shutting down and abandoning module RemoteControlInterception (434)
+[2024.08.02-07.48.51:938][970]LogModuleManager: Shutting down and abandoning module CameraCalibrationCoreMovieScene (432)
+[2024.08.02-07.48.51:938][970]LogModuleManager: Shutting down and abandoning module TraceUtilities (430)
+[2024.08.02-07.48.51:938][970]LogModuleManager: Shutting down and abandoning module DisplayClusterReplication (428)
+[2024.08.02-07.48.51:938][970]LogModuleManager: Shutting down and abandoning module SharedMemoryMedia (426)
+[2024.08.02-07.48.51:938][970]LogSharedMemoryMedia: Shutting down module SharedMemoryMedia'...
+[2024.08.02-07.48.51:938][970]LogModuleManager: Shutting down and abandoning module DisplayClusterMedia (424)
+[2024.08.02-07.48.51:938][970]LogDisplayClusterMedia: Shutting down module 'DisplayClusterMedia'...
+[2024.08.02-07.48.51:938][970]LogModuleManager: Shutting down and abandoning module DisplayClusterRemoteControlInterceptor (422)
+[2024.08.02-07.48.51:938][970]LogDisplayClusterRemoteControlInterceptor: DisplayClusterRemoteControlInterceptor has been unregistered
+[2024.08.02-07.48.51:938][970]LogModuleManager: Shutting down and abandoning module DisplayClusterStageMonitoring (420)
+[2024.08.02-07.48.51:938][970]LogModuleManager: Shutting down and abandoning module DisplayClusterScenePreview (418)
+[2024.08.02-07.48.51:938][970]LogModuleManager: Shutting down and abandoning module DisplayClusterMessageInterception (416)
+[2024.08.02-07.48.51:938][970]LogModuleManager: Shutting down and abandoning module DisplayClusterProjection (414)
+[2024.08.02-07.48.51:938][970]LogDisplayClusterProjection: Projection module shutdown
+[2024.08.02-07.48.51:938][970]LogDisplayClusterProjection: Un-registering <camera> projection factory...
+[2024.08.02-07.48.51:938][970]LogDisplayClusterRender: Unregistering factory for projection policy: camera
+[2024.08.02-07.48.51:938][970]LogDisplayClusterRender: Unregistered factory for projection policy: camera
+[2024.08.02-07.48.51:938][970]LogDisplayClusterProjection: Un-registering <domeprojection> projection factory...
+[2024.08.02-07.48.51:938][970]LogDisplayClusterRender: Unregistering factory for projection policy: domeprojection
+[2024.08.02-07.48.51:938][970]LogDisplayClusterRender: Unregistered factory for projection policy: domeprojection
+[2024.08.02-07.48.51:938][970]LogDisplayClusterProjection: Un-registering <easyblend> projection factory...
+[2024.08.02-07.48.51:938][970]LogDisplayClusterRender: Unregistering factory for projection policy: easyblend
+[2024.08.02-07.48.51:938][970]LogDisplayClusterRender: Unregistered factory for projection policy: easyblend
+[2024.08.02-07.48.51:938][970]LogDisplayClusterProjection: Un-registering <link> projection factory...
+[2024.08.02-07.48.51:938][970]LogDisplayClusterRender: Unregistering factory for projection policy: link
+[2024.08.02-07.48.51:938][970]LogDisplayClusterRender: Unregistered factory for projection policy: link
+[2024.08.02-07.48.51:938][970]LogDisplayClusterProjection: Un-registering <manual> projection factory...
+[2024.08.02-07.48.51:938][970]LogDisplayClusterRender: Unregistering factory for projection policy: manual
+[2024.08.02-07.48.51:938][970]LogDisplayClusterRender: Unregistered factory for projection policy: manual
+[2024.08.02-07.48.51:938][970]LogDisplayClusterProjection: Un-registering <mpcdi> projection factory...
+[2024.08.02-07.48.51:938][970]LogDisplayClusterRender: Unregistering factory for projection policy: mpcdi
+[2024.08.02-07.48.51:938][970]LogDisplayClusterRender: Unregistered factory for projection policy: mpcdi
+[2024.08.02-07.48.51:938][970]LogDisplayClusterProjection: Un-registering <mesh> projection factory...
+[2024.08.02-07.48.51:938][970]LogDisplayClusterRender: Unregistering factory for projection policy: mesh
+[2024.08.02-07.48.51:938][970]LogDisplayClusterRender: Unregistered factory for projection policy: mesh
+[2024.08.02-07.48.51:938][970]LogDisplayClusterProjection: Un-registering <simple> projection factory...
+[2024.08.02-07.48.51:938][970]LogDisplayClusterRender: Unregistering factory for projection policy: simple
+[2024.08.02-07.48.51:938][970]LogDisplayClusterRender: Unregistered factory for projection policy: simple
+[2024.08.02-07.48.51:938][970]LogDisplayClusterProjection: Un-registering <vioso> projection factory...
+[2024.08.02-07.48.51:938][970]LogDisplayClusterRender: Unregistering factory for projection policy: vioso
+[2024.08.02-07.48.51:939][970]LogDisplayClusterRender: Unregistered factory for projection policy: vioso
+[2024.08.02-07.48.51:939][970]LogDisplayClusterProjection: Projection module has been destroyed
+[2024.08.02-07.48.51:939][970]LogDisplayClusterProjectionVIOSO: VIOSO API released.
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module DisplayCluster (412)
+[2024.08.02-07.48.51:939][970]LogDisplayClusterModule: Cleaning up internals...
+[2024.08.02-07.48.51:939][970]LogDisplayClusterCluster: Releasing cluster manager...
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module DisplayClusterLightCardExtender (410)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module XRBase (408)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module ResonanceAudio (406)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module OSC (404)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module MobilePatchingUtils (402)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module LiveLinkOverNDisplay (400)
+[2024.08.02-07.48.51:939][970]LogNDisplayLiveLinkSubjectReplicator: Unregistering sync object.
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module InputDebugging (398)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module GooglePAD (396)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module DynamicMesh (394)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module GeometryAlgorithms (392)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module GeometryCacheTracks (390)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module GeometryCache (388)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module AudioWidgets (386)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module AdvancedWidgets (385)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module AudioCapture (382)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module AudioCaptureWasapi (381)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module AssetTags (378)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module ArchVisCharacter (376)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module AppleImageUtils (374)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module AndroidPermission (372)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module ActorLayerUtilities (370)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module TemplateSequence (366)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module SequencerScripting (364)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module UEOpenExrRTTI (362)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineRenderPasses (360)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineSettings (358)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module MovieRenderPipelineCore (356)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module MediaPlate (354)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module MediaCompositing (352)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module ImgMedia (350)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module InterchangeCommonParser (348)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module InterchangeDispatcher (346)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module InterchangeExport (344)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module InterchangeMessages (342)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module GLTFCore (340)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module VPSettings (338)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module VPRoles (336)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module StructUtilsEngine (334)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module OpenImageDenoise (332)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module LocalizableMessageBlueprint (330)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module LocalizableMessage (328)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module GeometryCollectionNodes (326)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module GeometryCollectionTracks (324)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module DataflowNodes (322)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module DataflowEnginePlugin (320)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module ChaosUserDataPT (318)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module ChaosNiagara (316)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module BackChannel (314)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module AutomationUtils (312)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module ConsoleVariablesEditorRuntime (310)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module UObjectPlugin (308)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module DumpGPUServices (306)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module MultiUserClientLibrary (304)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module OodleNetworkHandlerComponent (302)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module Composure (300)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module LiveLinkMovieScene (298)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module LiveLinkComponents (296)
+[2024.08.02-07.48.51:939][970]LogModuleManager: Shutting down and abandoning module LiveLink (294)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module ControlRigSpline (292)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module MetaCastBachelor (290)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module UniversalLogging (288)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module Synthesis (286)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module SoundFields (284)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module SignificanceManager (282)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module RigVM (280)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module ProceduralMeshComponent (278)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module MsQuicRuntime (276)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module MetasoundEngineTest (274)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module MetasoundEngine (272)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module WaveTable (271)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module AudioCodecEngine (269)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module MetasoundStandardNodes (266)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module MetasoundFrontend (264)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module MetasoundGenerator (262)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module MetasoundGraphCore (260)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module LocationServicesBPLibrary (258)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module SQLiteCore (256)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module CustomMeshComponent (254)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module CableComponent (252)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module AudioSynesthesia (250)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module AudioAnalyzer (249)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module AudioSynesthesiaCore (246)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module ActorSequence (244)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module UdpMessaging (242)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module TcpMessaging (240)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module ImgMediaEngine (238)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module InterchangePipelines (236)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module InterchangeImport (234)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module InterchangeFactoryNodes (232)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module InterchangeNodes (230)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module NiagaraAnimNotifies (228)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module Niagara (226)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module SignalProcessing (225)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module NiagaraCore (222)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module StructUtils (220)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module PBIK (218)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module FullBodyIK (216)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module ChaosCaching (214)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module EnhancedInput (212)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module FacialAnimation (210)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module AnimationSharing (208)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module GameplayCameras (206)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module IKRig (204)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module ControlRig (202)
+[2024.08.02-07.48.52:259][970]LogModuleManager: Shutting down and abandoning module Constraints (201)
+[2024.08.02-07.48.52:260][970]LogModuleManager: Shutting down and abandoning module LevelSequence (199)
+[2024.08.02-07.48.52:260][970]LogModuleManager: Shutting down and abandoning module Paper2D (196)
+[2024.08.02-07.48.52:260][970]LogModuleManager: Shutting down and abandoning module Kdtree (194)
+[2024.08.02-07.48.52:260][970]LogModuleManager: Shutting down and abandoning module WindowsMoviePlayer (192)
+[2024.08.02-07.48.52:260][970]LogModuleManager: Shutting down and abandoning module WebMMoviePlayer (190)
+[2024.08.02-07.48.52:260][970]LogModuleManager: Shutting down and abandoning module AndroidFileServer (188)
+[2024.08.02-07.48.52:260][970]LogModuleManager: Shutting down and abandoning module NetworkReplayStreaming (186)
+[2024.08.02-07.48.52:260][970]LogModuleManager: Shutting down and abandoning module PacketHandler (184)
+[2024.08.02-07.48.52:260][970]LogModuleManager: Shutting down and abandoning module ClothingSystemRuntimeNv (182)
+[2024.08.02-07.48.52:260][970]LogModuleManager: Shutting down and abandoning module MediaAssets (180)
+[2024.08.02-07.48.52:260][970]LogModuleManager: Shutting down and abandoning module Overlay (178)
+[2024.08.02-07.48.52:260][970]LogModuleManager: Shutting down and abandoning module FunctionalTesting (176)
+[2024.08.02-07.48.52:260][970]LogModuleManager: Shutting down and abandoning module MessageLog (174)
+[2024.08.02-07.48.52:260][970]LogModuleManager: Shutting down and abandoning module UMG (172)
+[2024.08.02-07.48.52:260][970]LogModuleManager: Shutting down and abandoning module SlateReflector (170)
+[2024.08.02-07.48.52:260][970]LogModuleManager: Shutting down and abandoning module Slate (168)
+[2024.08.02-07.48.52:260][970]LogModuleManager: Shutting down and abandoning module SlateCore (166)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module MRMesh (164)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module Messaging (162)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module HeadMountedDisplay (160)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module LiveCoding (158)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module Networking (156)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module Core (154)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module ImageWriteQueue (152)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module GPUPointCloudRenderer (150)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module TelemetryUtils (147)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module ImageWrapper (144)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module InputCore (142)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module Settings (140)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module ChaosSolverEngine (138)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module FieldSystemEngine (137)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module Chaos (134)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module GeometryCore (133)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module WindowsPlatformFeatures (130)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module GameplayMediaEncoder (129)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module AVEncoder (128)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module D3D12RHI (124)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module CameraCalibrationCore (122)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module DisplayClusterLightCardEditorShaders (120)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module DisplayClusterConfiguration (118)
+[2024.08.02-07.48.52:261][970]LogModuleManager: Shutting down and abandoning module DisplayClusterShaders (116)
+[2024.08.02-07.48.52:262][970]LogModuleManager: Shutting down and abandoning module WindowsDeviceProfileSelector (114)
+[2024.08.02-07.48.52:262][970]LogModuleManager: Shutting down and abandoning module OpenXRAR (112)
+[2024.08.02-07.48.52:262][970]LogModuleManager: Shutting down and abandoning module AugmentedReality (111)
+[2024.08.02-07.48.52:262][970]LogModuleManager: Shutting down and abandoning module OpenXRHandTracking (108)
+[2024.08.02-07.48.52:262][970]LogSlate: Slate User Destroyed.  User Index 0, Is Virtual User: 0
+[2024.08.02-07.48.52:262][970]LogSlate: Slate User Destroyed.  User Index 8, Is Virtual User: 1
+[2024.08.02-07.48.52:262][970]LogModuleManager: Shutting down and abandoning module OpenXRHMD (107)
+[2024.08.02-07.48.52:264][970]LogModuleManager: Shutting down and abandoning module OpenXREyeTracker (104)
+[2024.08.02-07.48.52:264][970]LogModuleManager: Shutting down and abandoning module OpenCVHelper (102)
+[2024.08.02-07.48.52:264][970]LogModuleManager: Shutting down and abandoning module HPMotionController (100)
+[2024.08.02-07.48.52:264][970]LogModuleManager: Shutting down and abandoning module ExampleDeviceProfileSelector (98)
+[2024.08.02-07.48.52:264][970]LogModuleManager: Shutting down and abandoning module ChunkDownloader (96)
+[2024.08.02-07.48.52:264][970]LogModuleManager: Shutting down and abandoning module LauncherChunkInstaller (94)
+[2024.08.02-07.48.52:264][970]LogModuleManager: Shutting down and abandoning module OnlineSubsystem (92)
+[2024.08.02-07.48.52:264][970]LogModuleManager: Shutting down and abandoning module HTTP (87)
+[2024.08.02-07.48.52:288][970]LogModuleManager: Shutting down and abandoning module SSL (86)
+[2024.08.02-07.48.52:288][970]LogModuleManager: Shutting down and abandoning module OnlineSubsystemUtils (82)
+[2024.08.02-07.48.52:288][970]LogModuleManager: Shutting down and abandoning module OnlineServicesCommonEngineUtils (80)
+[2024.08.02-07.48.52:288][970]LogModuleManager: Shutting down and abandoning module OnlineServicesCommon (78)
+[2024.08.02-07.48.52:288][970]LogModuleManager: Shutting down and abandoning module OnlineServicesInterface (76)
+[2024.08.02-07.48.52:288][970]LogModuleManager: Shutting down and abandoning module WmfMedia (74)
+[2024.08.02-07.48.52:289][970]LogModuleManager: Shutting down and abandoning module Media (73)
+[2024.08.02-07.48.52:289][970]LogModuleManager: Shutting down and abandoning module GPUTextureTransfer (70)
+[2024.08.02-07.48.52:289][970]LogModuleManager: Shutting down and abandoning module MediaIOCore (68)
+[2024.08.02-07.48.52:289][970]LogModuleManager: Shutting down and abandoning module ExrReaderGpu (66)
+[2024.08.02-07.48.52:289][970]LogModuleManager: Shutting down and abandoning module NiagaraVertexFactories (64)
+[2024.08.02-07.48.52:289][970]LogModuleManager: Shutting down and abandoning module NiagaraShader (62)
+[2024.08.02-07.48.52:289][970]LogModuleManager: Shutting down and abandoning module VPUtilities (60)
+[2024.08.02-07.48.52:289][970]LogModuleManager: Shutting down and abandoning module ColorCorrectRegions (58)
+[2024.08.02-07.48.52:289][970]LogModuleManager: Shutting down and abandoning module ChaosCloth (56)
+[2024.08.02-07.48.52:289][970]LogModuleManager: Shutting down and abandoning module VariantManagerContent (54)
+[2024.08.02-07.48.52:289][970]LogModuleManager: Shutting down and abandoning module GLTFExporter (52)
+[2024.08.02-07.48.52:289][970]LogModuleManager: Shutting down and abandoning module DatasmithContent (50)
+[2024.08.02-07.48.52:289][970]LogModuleManager: Shutting down and abandoning module RenderDocPlugin (48)
+[2024.08.02-07.48.52:289][970]RenderDocPlugin: plugin has been unloaded.
+[2024.08.02-07.48.52:289][970]LogModuleManager: Shutting down and abandoning module PixWinPlugin (46)
+[2024.08.02-07.48.52:289][970]LogModuleManager: Shutting down and abandoning module OpenColorIO (44)
+[2024.08.02-07.48.52:289][970]LogModuleManager: Shutting down and abandoning module ACLPlugin (42)
+[2024.08.02-07.48.52:290][970]LogModuleManager: Shutting down and abandoning module AISupportModule (40)
+[2024.08.02-07.48.52:290][970]LogModuleManager: Shutting down and abandoning module PythonScriptPluginPreload (38)
+[2024.08.02-07.48.52:290][970]LogModuleManager: Shutting down and abandoning module PlatformCryptoOpenSSL (36)
+[2024.08.02-07.48.52:290][970]LogModuleManager: Shutting down and abandoning module PlatformCryptoTypes (34)
+[2024.08.02-07.48.52:290][970]LogModuleManager: Shutting down and abandoning module PlatformCrypto (32)
+[2024.08.02-07.48.52:290][970]LogModuleManager: Shutting down and abandoning module IoStoreOnDemand (30)
+[2024.08.02-07.48.52:290][970]LogModuleManager: Shutting down and abandoning module RenderCore (28)
+[2024.08.02-07.48.52:290][970]LogModuleManager: Shutting down and abandoning module Landscape (26)
+[2024.08.02-07.48.52:290][970]LogModuleManager: Shutting down and abandoning module SlateRHIRenderer (24)
+[2024.08.02-07.48.52:290][970]LogModuleManager: Shutting down and abandoning module AnimGraphRuntime (22)
+[2024.08.02-07.48.52:290][970]LogModuleManager: Shutting down and abandoning module Renderer (20)
+[2024.08.02-07.48.52:290][970]LogModuleManager: Shutting down and abandoning module Engine (18)
+[2024.08.02-07.48.52:290][970]LogModuleManager: Shutting down and abandoning module CoreUObject (16)
+[2024.08.02-07.48.52:290][970]LogModuleManager: Shutting down and abandoning module SandboxFile (14)
+[2024.08.02-07.48.52:290][970]LogModuleManager: Shutting down and abandoning module PakFile (12)
+[2024.08.02-07.48.52:290][970]LogPakFile: Destroying PakPlatformFile
+[2024.08.02-07.48.52:291][970]LogModuleManager: Shutting down and abandoning module RSA (11)
+[2024.08.02-07.48.52:291][970]LogModuleManager: Shutting down and abandoning module NetworkFile (8)
+[2024.08.02-07.48.52:291][970]LogModuleManager: Shutting down and abandoning module StreamingFile (6)
+[2024.08.02-07.48.52:291][970]LogModuleManager: Shutting down and abandoning module CookOnTheFly (4)
+[2024.08.02-07.48.52:291][970]LogModuleManager: Shutting down and abandoning module StorageServerClient (2)
+[2024.08.02-07.48.52:339][970]LogD3D12RHI: ~FD3D12DynamicRHI
+[2024.08.02-07.48.52:360][970]LogExit: Exiting.
+[2024.08.02-07.48.52:400][970]Log file closed, 08/02/24 09:48:52
diff --git a/Builds/Windows/MetaCastBachelor/Saved/Logs/UniversalLogging.log b/Builds/Windows/MetaCastBachelor/Saved/Logs/UniversalLogging.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/Config/DefaultGame.ini b/Config/DefaultGame.ini
index 4efce7f96f3715cde1dbb11b7175199e57555349..d7c21e1b76e732bf514074d7670e8b929d5e4578 100644
--- a/Config/DefaultGame.ini
+++ b/Config/DefaultGame.ini
@@ -2,3 +2,93 @@
 ProjectID = C3478D604957FB486F00AFAFA232A81C
 bStartInVR = True
 
+[/Script/UnrealEd.ProjectPackagingSettings]
+Build=IfProjectHasCode
+BuildConfiguration=PPBC_Development
+BuildTarget=
+FullRebuild=False
+ForDistribution=False
+IncludeDebugFiles=False
+BlueprintNativizationMethod=Disabled
+bIncludeNativizedAssetsInProjectGeneration=False
+bExcludeMonolithicEngineHeadersInNativizedCode=False
+UsePakFile=True
+bUseIoStore=True
+bUseZenStore=False
+bMakeBinaryConfig=False
+bGenerateChunks=False
+bGenerateNoChunks=False
+bChunkHardReferencesOnly=False
+bForceOneChunkPerFile=False
+MaxChunkSize=0
+bBuildHttpChunkInstallData=False
+HttpChunkInstallDataDirectory=(Path="")
+WriteBackMetadataToAssetRegistry=Disabled
+bCompressed=True
+PackageCompressionFormat=Oodle
+bForceUseProjectCompressionFormatIgnoreHardwareOverride=False
+PackageAdditionalCompressionOptions=
+PackageCompressionMethod=Kraken
+PackageCompressionLevel_DebugDevelopment=4
+PackageCompressionLevel_TestShipping=5
+PackageCompressionLevel_Distribution=7
+PackageCompressionMinBytesSaved=1024
+PackageCompressionMinPercentSaved=5
+bPackageCompressionEnableDDC=False
+PackageCompressionMinSizeToConsiderDDC=0
+HttpChunkInstallDataVersion=
+IncludePrerequisites=True
+IncludeAppLocalPrerequisites=False
+bShareMaterialShaderCode=True
+bDeterministicShaderCodeOrder=False
+bSharedMaterialNativeLibraries=True
+ApplocalPrerequisitesDirectory=(Path="")
+IncludeCrashReporter=False
+InternationalizationPreset=English
+-CulturesToStage=en
++CulturesToStage=en
+LocalizationTargetCatchAllChunkId=0
+bCookAll=False
+bCookMapsOnly=False
+bSkipEditorContent=False
+bSkipMovies=False
+-IniKeyDenylist=KeyStorePassword
+-IniKeyDenylist=KeyPassword
+-IniKeyDenylist=rsa.privateexp
+-IniKeyDenylist=rsa.modulus
+-IniKeyDenylist=rsa.publicexp
+-IniKeyDenylist=aes.key
+-IniKeyDenylist=SigningPublicExponent
+-IniKeyDenylist=SigningModulus
+-IniKeyDenylist=SigningPrivateExponent
+-IniKeyDenylist=EncryptionKey
+-IniKeyDenylist=DevCenterUsername
+-IniKeyDenylist=DevCenterPassword
+-IniKeyDenylist=IOSTeamID
+-IniKeyDenylist=SigningCertificate
+-IniKeyDenylist=MobileProvision
+-IniKeyDenylist=IniKeyDenylist
+-IniKeyDenylist=IniSectionDenylist
++IniKeyDenylist=KeyStorePassword
++IniKeyDenylist=KeyPassword
++IniKeyDenylist=rsa.privateexp
++IniKeyDenylist=rsa.modulus
++IniKeyDenylist=rsa.publicexp
++IniKeyDenylist=aes.key
++IniKeyDenylist=SigningPublicExponent
++IniKeyDenylist=SigningModulus
++IniKeyDenylist=SigningPrivateExponent
++IniKeyDenylist=EncryptionKey
++IniKeyDenylist=DevCenterUsername
++IniKeyDenylist=DevCenterPassword
++IniKeyDenylist=IOSTeamID
++IniKeyDenylist=SigningCertificate
++IniKeyDenylist=MobileProvision
++IniKeyDenylist=IniKeyDenylist
++IniKeyDenylist=IniSectionDenylist
+-IniSectionDenylist=HordeStorageServers
+-IniSectionDenylist=StorageServers
++IniSectionDenylist=HordeStorageServers
++IniSectionDenylist=StorageServers
++DirectoriesToAlwaysStageAsUFS=(Path="Data")
+
diff --git a/Content/BP/BP_PointCloud.uasset b/Content/BP/BP_PointCloud.uasset
index 389b994af26df9155700d1c43c65ac11d26ea93e..25ae0b7d6c918d2006e9cf87ad0fdbfd7affc376 100644
Binary files a/Content/BP/BP_PointCloud.uasset and b/Content/BP/BP_PointCloud.uasset differ
diff --git a/Content/BP/BP_StudyManager.uasset b/Content/BP/BP_StudyManager.uasset
index a07f987d1db03273f19c8f57160b3f2eb70784d5..75cd6675998d76a417fd1d630b7054a7d5c27fe1 100644
Binary files a/Content/BP/BP_StudyManager.uasset and b/Content/BP/BP_StudyManager.uasset differ
diff --git a/Content/BP/BaselinePawn.uasset b/Content/BP/BaselinePawn.uasset
index e20d50d04d7a33265dd67dd8abd7d26399308ed5..98056688eb3bdf0c1675483e9c838c68a0933782 100644
Binary files a/Content/BP/BaselinePawn.uasset and b/Content/BP/BaselinePawn.uasset differ
diff --git a/Content/BP/MagicWandPawn.uasset b/Content/BP/MagicWandPawn.uasset
index 4dc9451d67cd3053d60fc8aa38349cffc33a9853..db5ad688590658c62e810eeeeee38e586cd0cf3c 100644
Binary files a/Content/BP/MagicWandPawn.uasset and b/Content/BP/MagicWandPawn.uasset differ
diff --git a/Content/BP/MetaCastPawn.uasset b/Content/BP/MetaCastPawn.uasset
index 579d6539b7bbe28470f4fd3d933d98e324cec825..fb9a9e203201a42996fefe9460c22cf19dd4d89b 100644
Binary files a/Content/BP/MetaCastPawn.uasset and b/Content/BP/MetaCastPawn.uasset differ
diff --git a/Content/Data/data/Flocculentcube1 b/Content/Data/data/Flocculentcube1_A
similarity index 100%
rename from Content/Data/data/Flocculentcube1
rename to Content/Data/data/Flocculentcube1_A
diff --git a/Content/Data/data/Flocculentcube1_B b/Content/Data/data/Flocculentcube1_B
new file mode 100644
index 0000000000000000000000000000000000000000..719740a29b8579401d5f2d6d06c699be1f675a70
Binary files /dev/null and b/Content/Data/data/Flocculentcube1_B differ
diff --git a/Content/Data/data/Flocculentcube1_C b/Content/Data/data/Flocculentcube1_C
new file mode 100644
index 0000000000000000000000000000000000000000..719740a29b8579401d5f2d6d06c699be1f675a70
Binary files /dev/null and b/Content/Data/data/Flocculentcube1_C differ
diff --git a/Content/Data/data/fiveellipsolds b/Content/Data/data/fiveellipsolds_A
similarity index 100%
rename from Content/Data/data/fiveellipsolds
rename to Content/Data/data/fiveellipsolds_A
diff --git a/Content/Data/data/fiveellipsolds_B b/Content/Data/data/fiveellipsolds_B
new file mode 100644
index 0000000000000000000000000000000000000000..f0a518a4d0529dd3e8257772adae4f5004c57d82
Binary files /dev/null and b/Content/Data/data/fiveellipsolds_B differ
diff --git a/Content/Data/flags/Flocculentcube1_flags_1 b/Content/Data/flags/Flocculentcube1_A_flags
similarity index 100%
rename from Content/Data/flags/Flocculentcube1_flags_1
rename to Content/Data/flags/Flocculentcube1_A_flags
diff --git a/Content/Data/flags/Flocculentcube1_flags_2 b/Content/Data/flags/Flocculentcube1_B_flags
similarity index 100%
rename from Content/Data/flags/Flocculentcube1_flags_2
rename to Content/Data/flags/Flocculentcube1_B_flags
diff --git a/Content/Data/flags/Flocculentcube1_flags_3 b/Content/Data/flags/Flocculentcube1_C_flags
similarity index 100%
rename from Content/Data/flags/Flocculentcube1_flags_3
rename to Content/Data/flags/Flocculentcube1_C_flags
diff --git a/Content/Data/flags/fiveellipsolds_flags_2 b/Content/Data/flags/fiveellipsolds_A_flags
similarity index 100%
rename from Content/Data/flags/fiveellipsolds_flags_2
rename to Content/Data/flags/fiveellipsolds_A_flags
diff --git a/Content/Data/flags/fiveellipsolds_flags_1 b/Content/Data/flags/fiveellipsolds_B_flags
similarity index 100%
rename from Content/Data/flags/fiveellipsolds_flags_1
rename to Content/Data/flags/fiveellipsolds_B_flags
diff --git a/Content/Input/ConfirmSelection.uasset b/Content/Input/ConfirmSelection.uasset
new file mode 100644
index 0000000000000000000000000000000000000000..37163fc148ce63d580db24e8d2b9300e8b1debf3
Binary files /dev/null and b/Content/Input/ConfirmSelection.uasset differ
diff --git a/Content/Input/MetaCast_Config.uasset b/Content/Input/MetaCast_Config.uasset
index c7c5d74a6bbf84c316c0ec6412c7bae48519142d..40e70f9d1f58779b95d92092b75bc2bf28f0df52 100644
Binary files a/Content/Input/MetaCast_Config.uasset and b/Content/Input/MetaCast_Config.uasset differ
diff --git a/Content/Input/StartStudyMode.uasset b/Content/Input/StartStudyMode.uasset
new file mode 100644
index 0000000000000000000000000000000000000000..6a2c8f9a2898fe1f7ed17f8c2481a9a50596b06a
Binary files /dev/null and b/Content/Input/StartStudyMode.uasset differ
diff --git a/Content/Maps/Login.umap b/Content/Maps/Login.umap
index 479d8b96867054bc46dc0d0eda4a2eef84b30eee..62888f5e290de3bf089910f131cd47a75dfcd4b0 100644
Binary files a/Content/Maps/Login.umap and b/Content/Maps/Login.umap differ
diff --git a/Content/Sounds/confirm.uasset b/Content/Sounds/confirm.uasset
new file mode 100644
index 0000000000000000000000000000000000000000..f7fb4577e7203138637465a7d6b55c799ec42921
Binary files /dev/null and b/Content/Sounds/confirm.uasset differ
diff --git a/Content/UI/LoginManager.uasset b/Content/UI/LoginManager.uasset
index a5434726cafe58959fd6142bc9f83110340f7234..b1b768ba1acc2668d81e328572248ec9224bc911 100644
Binary files a/Content/UI/LoginManager.uasset and b/Content/UI/LoginManager.uasset differ
diff --git a/Content/UI/StudyInfo.uasset b/Content/UI/StudyInfo.uasset
new file mode 100644
index 0000000000000000000000000000000000000000..231e92866f651d05dada1ec2396d8dcef7d00121
Binary files /dev/null and b/Content/UI/StudyInfo.uasset differ
diff --git a/Content/UI/StudyLogin.uasset b/Content/UI/StudyLogin.uasset
index 37e96ed50571d750579d2b20272d6d6afbc3aed9..18a6a8d223887541f50270858e68d6b683de868d 100644
Binary files a/Content/UI/StudyLogin.uasset and b/Content/UI/StudyLogin.uasset differ
diff --git a/ParticipantLogs/Participant_22/PlayInEditor_08-02-24_18-55-31/22_0_1722617737.csv b/ParticipantLogs/Participant_22/PlayInEditor_08-02-24_18-55-31/22_0_1722617737.csv
new file mode 100644
index 0000000000000000000000000000000000000000..06fd0b8a21a7c395b36783722402e5cb4455f49d
--- /dev/null
+++ b/ParticipantLogs/Participant_22/PlayInEditor_08-02-24_18-55-31/22_0_1722617737.csv
@@ -0,0 +1,17 @@
+sep=,
+ParticipantId,Condition,TrialId,SelectionDuration,InitDuration,NumberOfUndos,NumberOfRedos,Correctness,FalsePositives,FalseNegatives,NumberOfPoints,ControllerMovementDeltaSumL,ControllerRotationDeltaSumL,ControllerMovementDeltaSumR,ControllerRotationDeltaSumR
+22,Brush,0,66.405647,-1.000000,0,0,27938,56,8359,102000,83.258499,523.878662,83.258499,523.878662
+22,Brush,1,6.217079,0.000000,0,0,8372,18,1870,48350,18.527472,76.350372,18.527472,76.350372
+22,Brush,2,8.529503,0.000000,0,0,24725,4172,10661,100000,28.252308,140.422897,28.252308,140.422897
+22,Brush,3,6.832428,0.000000,0,0,5782,1708,600,219604,20.773771,69.138535,20.773771,69.138535
+22,Brush,4,5.314774,0.000000,0,0,46042,684,10624,76884,16.445362,60.148403,16.445362,60.148403
+22,Brush,5,6.883400,0.000000,0,0,10376,2969,1452,442079,25.332155,81.563560,25.332155,81.563560
+22,Brush,6,7.092995,0.000000,0,0,114421,9833,1488,164525,31.137712,63.762012,31.137712,63.762012
+22,Brush,7,8.127098,0.000000,0,0,10519,3415,207,442079,30.535780,111.181107,30.535780,111.181107
+22,Brush,8,7.421082,0.000000,0,0,16408,4273,1219,184384,48.294510,186.310852,48.294510,186.310852
+22,Brush,9,4.881645,0.000000,0,0,18049,220,2313,180000,24.182035,67.127136,24.182035,67.127136
+22,Brush,10,4.006783,0.000000,0,0,162404,4544,0,200000,13.161320,48.386547,13.161320,48.386547
+22,Brush,11,6.901337,0.000000,0,0,9405,5358,680,442079,23.534765,78.444916,23.534765,78.444916
+22,Brush,12,8.539749,0.000000,0,0,39426,763,41274,146578,34.802883,205.449692,34.802883,205.449692
+22,Brush,13,8.623703,0.000000,0,0,175274,1134,66250,369017,25.109783,72.361580,25.109783,72.361580
+22,Brush,14,8.165741,0.000000,0,0,42024,1014,18425,180000,34.499352,106.883904,34.499352,106.883904
\ No newline at end of file
diff --git a/ParticipantLogs/Participant_22/PlayInEditor_08-02-24_19-01-59/22_0_1722618125.csv b/ParticipantLogs/Participant_22/PlayInEditor_08-02-24_19-01-59/22_0_1722618125.csv
new file mode 100644
index 0000000000000000000000000000000000000000..c6db63f415fac6f5e118b4f29ef7b75c00855c29
--- /dev/null
+++ b/ParticipantLogs/Participant_22/PlayInEditor_08-02-24_19-01-59/22_0_1722618125.csv
@@ -0,0 +1,17 @@
+sep=,
+ParticipantId,Condition,TrialId,SelectionDuration,InitDuration,NumberOfUndos,NumberOfRedos,Correctness,FalsePositives,FalseNegatives,NumberOfPoints,ControllerMovementDeltaSumL,ControllerRotationDeltaSumL,ControllerMovementDeltaSumR,ControllerRotationDeltaSumR
+22,MagicWand,0,49.289768,-1.000000,0,0,10223,7,19,48350,151.414124,623.953979,425.264160,1540.879028
+22,MagicWand,1,3.053661,0.000000,0,0,0,0,35386,100000,11.946115,41.754967,17.964380,89.791473
+22,MagicWand,2,3.363247,0.000000,0,0,0,0,6382,219604,14.007499,60.382793,34.809868,108.994507
+22,MagicWand,3,5.301796,0.000000,0,0,20362,159638,0,180000,26.039272,130.816193,158.358704,377.945068
+22,MagicWand,4,4.752987,0.000000,0,0,10085,431994,0,442079,26.667606,141.186447,148.823746,359.391296
+22,MagicWand,5,4.944084,0.000000,0,0,55293,5525,1373,76884,25.193750,88.308907,115.723885,338.354797
+22,MagicWand,6,4.451790,0.000000,0,0,11136,166860,692,442079,15.636705,36.020729,119.875114,300.019348
+22,MagicWand,7,4.527931,0.000000,0,0,241203,75804,321,369017,10.173052,31.477270,64.750984,252.611420
+22,MagicWand,8,4.604195,0.000000,0,0,115892,22622,17,164525,13.610723,44.587154,172.813736,462.262970
+22,MagicWand,9,3.041245,0.000000,0,0,0,0,162404,200000,4.895485,15.515758,7.971580,25.419287
+22,MagicWand,10,3.213333,0.000000,0,0,0,0,17627,184384,6.184259,19.198984,5.364115,4.161320
+22,MagicWand,11,3.071724,0.000000,0,0,0,0,10726,442079,4.266028,15.013531,3.947251,2.829496
+22,MagicWand,12,3.261223,0.000000,0,0,0,0,60449,180000,7.132989,38.549740,5.592680,3.489734
+22,MagicWand,13,4.658905,0.000000,0,0,0,0,80700,146578,8.871463,31.820374,33.137611,67.688362
+22,MagicWand,14,3.811348,0.000000,0,0,0,0,36297,102000,14.722054,77.422829,56.078011,157.540863
\ No newline at end of file
diff --git a/ParticipantLogs/Participant_22/PlayInEditor_08-02-24_19-10-16/22_0_1722618622.csv b/ParticipantLogs/Participant_22/PlayInEditor_08-02-24_19-10-16/22_0_1722618622.csv
new file mode 100644
index 0000000000000000000000000000000000000000..389539a1b1a954e5d484799ff26b3e515f0a2085
--- /dev/null
+++ b/ParticipantLogs/Participant_22/PlayInEditor_08-02-24_19-10-16/22_0_1722618622.csv
@@ -0,0 +1,17 @@
+sep=,
+ParticipantId,Condition,TrialId,SelectionDuration,InitDuration,NumberOfUndos,NumberOfRedos,Correctness,FalsePositives,FalseNegatives,NumberOfPoints,ControllerMovementDeltaSumL,ControllerRotationDeltaSumL,ControllerMovementDeltaSumR,ControllerRotationDeltaSumR
+22,MetaPoint,0,5.931007,0.679726,0,0,20362,201,0,180000,38.302246,134.238525,0.000000,0.000000
+22,MetaPoint,1,14.911892,0.000000,6,0,229273,177,12251,369017,36.453590,137.696808,0.000000,0.000000
+22,MetaPoint,2,2.934853,0.000000,0,0,0,0,60449,180000,828.016418,99.874504,0.000000,0.000000
+22,MetaPoint,3,3.062843,0.000000,0,0,0,0,35386,100000,6.972543,27.331812,0.000000,0.000000
+22,MetaPoint,4,2.931389,0.000000,0,0,0,0,6382,219604,8.809179,33.957024,0.000000,0.000000
+22,MetaPoint,5,2.891571,0.000000,0,0,0,0,10085,442079,6.611887,51.812572,0.000000,0.000000
+22,MetaPoint,6,3.122841,0.000000,0,0,0,0,10242,48350,4.396231,20.044922,0.000000,0.000000
+22,MetaPoint,7,5.241692,0.000000,0,0,162404,36577,0,200000,22.511133,129.080872,0.000000,0.000000
+22,MetaPoint,8,4.438736,0.000000,0,0,11734,307600,94,442079,7.901199,27.494295,0.000000,0.000000
+22,MetaPoint,9,3.129112,0.000000,0,0,0,0,56666,76884,3.114630,10.421172,0.000000,0.000000
+22,MetaPoint,10,7.319748,0.000000,0,0,13057,11338,23240,102000,10.168749,40.628536,0.000000,0.000000
+22,MetaPoint,11,3.088768,0.000000,0,0,0,0,115909,164525,3.586389,14.156151,0.000000,0.000000
+22,MetaPoint,12,2.980354,0.000000,0,0,0,0,17627,184384,2.006846,8.311061,0.000000,0.000000
+22,MetaPoint,13,4.346992,0.000000,0,0,72670,314,8030,146578,6.799451,29.390976,0.000000,0.000000
+22,MetaPoint,14,5.098320,0.000000,0,0,10691,308455,35,442079,9.233177,20.976006,0.000000,0.000000
\ No newline at end of file
diff --git a/ParticipantLogs/Participant_32/PlayInEditor_08-01-24_18-53-23/32_1722531215.log b/ParticipantLogs/Participant_32/PlayInEditor_08-01-24_18-53-23/32_1722531215.log
deleted file mode 100644
index 05e9bac09ad4ed9b956e36c57ddb0f207137d5d4..0000000000000000000000000000000000000000
--- a/ParticipantLogs/Participant_32/PlayInEditor_08-01-24_18-53-23/32_1722531215.log
+++ /dev/null
@@ -1 +0,0 @@
-Initializing session for participant ID: 32 at Timestamp: 1722531215
\ No newline at end of file
diff --git a/ParticipantLogs/Participant_32/PlayInEditor_08-01-24_18-54-31/32_1722531290.log b/ParticipantLogs/Participant_32/PlayInEditor_08-01-24_18-54-31/32_1722531290.log
deleted file mode 100644
index ee6c8ea758de653342d3d0da9851f481357b5753..0000000000000000000000000000000000000000
--- a/ParticipantLogs/Participant_32/PlayInEditor_08-01-24_18-54-31/32_1722531290.log
+++ /dev/null
@@ -1 +0,0 @@
-Initializing session for participant ID: 32 at Timestamp: 1722531290
\ No newline at end of file
diff --git a/ParticipantLogs/Participant_33/PlayInEditor_08-02-24_19-19-19/33_0_1722619165.csv b/ParticipantLogs/Participant_33/PlayInEditor_08-02-24_19-19-19/33_0_1722619165.csv
new file mode 100644
index 0000000000000000000000000000000000000000..5297d4d6615c774fe7cbe106a7d34749096a0e11
--- /dev/null
+++ b/ParticipantLogs/Participant_33/PlayInEditor_08-02-24_19-19-19/33_0_1722619165.csv
@@ -0,0 +1,4 @@
+sep=,
+ParticipantId,Condition,TrialId,SelectionDuration,InitDuration,NumberOfUndos,NumberOfRedos,Correctness,FalsePositives,FalseNegatives,NumberOfPoints,ControllerMovementDeltaSumL,ControllerRotationDeltaSumL,ControllerMovementDeltaSumR,ControllerRotationDeltaSumR
+33,Brush,0,2.843294,0.000000,0,0,0,0,17627,184384,14.897712,138.379120,16.051794,36.110638
+33,Brush,1,2.337376,0.000000,0,0,0,0,60449,180000,11.761449,59.744629,11.673991,13.920630
\ No newline at end of file
diff --git a/Source/MetaCastBachelor/PointStorage/DensityField.cpp b/Source/MetaCastBachelor/PointStorage/DensityField.cpp
index 6cba753fa34dce1515356753719a0487f182bd48..0230451ac8a4d6651fe3e3633ab8547519478ce1 100644
--- a/Source/MetaCastBachelor/PointStorage/DensityField.cpp
+++ b/Source/MetaCastBachelor/PointStorage/DensityField.cpp
@@ -124,7 +124,7 @@ void FDensityField::CalculateVoxelDensitiesSimple(const APointCloud* PointCloud,
         return;
 
     const double StartTime = FPlatformTime::Seconds();  // Start timing
-    UE_LOG(LogTemp, Log, TEXT("Starting density calculation."));
+    //UE_LOG(LogTemp, Log, TEXT("Starting density calculation."));
 
     // Clear existing densities
     for (auto& Node : VoxelList)
@@ -132,7 +132,7 @@ void FDensityField::CalculateVoxelDensitiesSimple(const APointCloud* PointCloud,
         Node.SetVoxelDensity(0.0);  // Reset the density counter
     }
 
-    UE_LOG(LogTemp, Log, TEXT("Cleared previous densities."));
+    //UE_LOG(LogTemp, Log, TEXT("Cleared previous densities."));
 
     // Iterate over each particle
     for (const FVector& ParticlePosition : PointCloud->GetPositionVectors())
@@ -181,9 +181,9 @@ void FDensityField::CalculateVoxelDensitiesSimple(const APointCloud* PointCloud,
     }
 	AvgDensity /= VoxelList.Num();
 	
-	UE_LOG(LogTemp, Log, TEXT("Maximum density found: %f"), MaxDensity);
-	UE_LOG(LogTemp, Log, TEXT("Minimum density found: %f"), MinDensity);
-	UE_LOG(LogTemp, Log, TEXT("Average density found: %f"), AvgDensity);
+	//UE_LOG(LogTemp, Log, TEXT("Maximum density found: %f"), MaxDensity);
+	//UE_LOG(LogTemp, Log, TEXT("Minimum density found: %f"), MinDensity);
+	//UE_LOG(LogTemp, Log, TEXT("Average density found: %f"), AvgDensity);
 
 	const double EndTime = FPlatformTime::Seconds();  // End timing
 	const double ElapsedTime = EndTime - StartTime;  // Calculate elapsed time
@@ -383,7 +383,7 @@ void FDensityField::CalculateVoxelDensities_2(const APointCloud* PointCloud, con
 
 void FDensityField::CalculateAndStoreGradients()
 {
-	UE_LOG(LogTemp, Log, TEXT("Starting gradient calculation."));
+	//UE_LOG(LogTemp, Log, TEXT("Starting gradient calculation."));
 
 	for (int32 Z = 0; Z < ZNum; Z++)
 	{
@@ -414,7 +414,7 @@ void FDensityField::CalculateAndStoreGradients()
 		}
 	}
 
-	UE_LOG(LogTemp, Log, TEXT("Gradient calculation completed."));
+	//UE_LOG(LogTemp, Log, TEXT("Gradient calculation completed."));
 }
 
 //	DEBUG FUNCTIONS
diff --git a/Source/MetaCastBachelor/PointStorage/PointCloud.cpp b/Source/MetaCastBachelor/PointStorage/PointCloud.cpp
index afa6bdd137b3a4bab7c89e503e56ab6a76a3c291..a13bb1ea074c17df393608ebaff1e010733f5c84 100644
--- a/Source/MetaCastBachelor/PointStorage/PointCloud.cpp
+++ b/Source/MetaCastBachelor/PointStorage/PointCloud.cpp
@@ -1,8 +1,10 @@
 #include "PointCloud.h"
 #include "KdtreeBPLibrary.h"
 #include "PointCloudDataReader.h"
+#include "Kismet/KismetSystemLibrary.h"
+
+//	INITIALIZATION
 
-// Sets default values
 APointCloud::APointCloud()
 	: CurrentPointCloudIndex(0), CurrentPointCloudFlagIndex(0), MyKdTree(), PointCloudVisualizer(nullptr), MyDensityField(nullptr), SelectedMaterial(nullptr), UnselectedMaterial(nullptr)
 {
@@ -11,7 +13,6 @@ APointCloud::APointCloud()
 	MyDensityField = new FDensityField();
 }
 
-// Called when the game starts or when spawned
 void APointCloud::BeginPlay()
 {
 	Super::BeginPlay();
@@ -26,12 +27,11 @@ void APointCloud::BeginPlay()
 	UE_LOG(LogTemp, Log, TEXT("Flag Folder: %s"), *SPointFlagFolder);
 
 	InitPointCloudAndFlagFiles(FFilePath(SPointCloudFolder), FFilePath(SPointFlagFolder));
-
-	ResetPointCloudData();
 	
-	//UKdtreeBPLibrary::BuildKdtree(MyKdTree, PositionVectors);
-	//UKdtreeBPLibrary::DumpKdtreeToConsole(MyKdTree);
-	//UKdtreeBPLibrary::ValidateKdtree(MyKdTree);
+	// Initialize the statistics instance
+	MySelectionStatistics = FSelectionStatistics();
+	
+	ResetPointCloudData();
 }
 
 void APointCloud::InitPointCloudAndFlagFiles(const FFilePath& PointInputData, const FFilePath& FlagInputData)
@@ -46,18 +46,18 @@ void APointCloud::InitPointCloudAndFlagFiles(const FFilePath& PointInputData, co
 
 	for (int32 i = 0; i < NumPointCloudFiles; ++i)
 	{
-		FString PointCloudFilePath = MyFileManager.GetPointCloudFilePath(i);
-		UE_LOG(LogTemp, Log, TEXT("Point Cloud File: %s"), *PointCloudFilePath);
-
+		FPointCloudData PointCloudFilePath = MyFileManager.GetPointCloudFilePath(i);
+		UE_LOG(LogTemp, Log, TEXT("Point Cloud File: %s"), *PointCloudFilePath.PointCloudFilePath);
+		
 		const int32 NumFlagFiles = MyFileManager.GetNumberOfFlagFiles(i);
 		if (NumFlagFiles == 0)
 		{
-			UE_LOG(LogTemp, Error, TEXT("No matching flag file found for point cloud: %s"), *PointCloudFilePath);
-			PointCloudsNoFlags.Add(FFilePath{PointCloudFilePath});
+			UE_LOG(LogTemp, Error, TEXT("No matching flag file found for point cloud: %s"), *PointCloudFilePath.PointCloudFilePath);
+			PointCloudsNoFlags.Add(PointCloudFilePath);
 		}
 		else
 		{
-			ValidPointClouds.Add(FFilePath{PointCloudFilePath});
+			ValidPointClouds.Add(PointCloudFilePath);
 			for (int32 j = 0; j < NumFlagFiles; ++j)
 			{
 				FString FlagFilePath = MyFileManager.GetFlagFilePath(i, j);
@@ -66,18 +66,97 @@ void APointCloud::InitPointCloudAndFlagFiles(const FFilePath& PointInputData, co
 		}
 	}
 
-	// Log the contents of PointCloudsNoFlags array
-	UE_LOG(LogTemp, Log, TEXT("Point Cloud Files with No Matching Flags:"));
-	for (const auto& [FilePath] : PointCloudsNoFlags)
+	// Iterate over the ValidPointClouds array to find and extract entries containing "training"
+	for (int32 i = ValidPointClouds.Num() - 1; i >= 0; --i)
 	{
-		UE_LOG(LogTemp, Log, TEXT("%s"), *FilePath);
+		if (ValidPointClouds[i].PointCloudFilePath.Contains(TEXT("training"), ESearchCase::IgnoreCase))
+		{
+			// If "training" is found in the file path, add it to the TrainingData array
+			TrainingData.Add(ValidPointClouds[i]);
+			// Remove it from the ValidPointClouds array
+			ValidPointClouds.RemoveAt(i);
+		}
 	}
 
+	FRandomStream RandomStream;
+	RandomStream.GenerateNewSeed();
+	ValidPointClouds.Sort([&RandomStream](const FPointCloudData&, const FPointCloudData&)
+	{
+		return RandomStream.FRand() < 0.5f;
+	});
+	
+	// Log the training data files
+	UE_LOG(LogTemp, Warning, TEXT("Found Training Point Cloud Files:"));
+	for (const FPointCloudData& Data : TrainingData)
+	{
+		UE_LOG(LogTemp, Log, TEXT("%s"), *Data.PointCloudFilePath);
+	}
+	
 	// Log the contents of ValidPointClouds array
-	UE_LOG(LogTemp, Log, TEXT("Valid Point Cloud Files with Matching Flags:"));
-	for (const FFilePath& ValidFile : ValidPointClouds)
+	UE_LOG(LogTemp, Warning, TEXT("Found Study Point Cloud Files with Matching Flags:"));
+	for (const FPointCloudData& Data : ValidPointClouds)
+	{
+		UE_LOG(LogTemp, Log, TEXT("%s"), *Data.PointCloudFilePath);
+	}
+
+	// Log the contents of PointCloudsNoFlags array
+	UE_LOG(LogTemp, Warning, TEXT("Found Point Cloud Files with No Matching Flags:"));
+	for (const FPointCloudData& Data : PointCloudsNoFlags)
+	{
+		UE_LOG(LogTemp, Log, TEXT("%s"), *Data.PointCloudFilePath);
+	}
+}
+
+void APointCloud::InitPointCloudVisualizer()
+{
+	TArray<UGPUPointCloudRendererComponent*> Components;
+	GetComponents<UGPUPointCloudRendererComponent>(Components);
+
+	if (Components.Num() > 0)
+	{
+		PointCloudVisualizer = Components[0];
+		PointCloudVisualizer->ResetPointCloudRenderer();
+		PointCloudVisualizer->SetInputAndConvert2(PositionVectors, PointColors);
+		PointCloudVisualizer->SetDynamicProperties(FLinearColor::White, 1.0f, SplatSize * 0.1, 1000.f, false);
+	}
+	else
+	{
+		UE_LOG(LogTemp, Warning, TEXT("No PointCloud Visualizer component found on this actor."));
+	}
+}
+
+void APointCloud::UpdateBounds()
+{
+	if (PositionVectors.Num() == 0)
+		return;
+
+	MinBounds = PositionVectors[0];
+	MaxBounds = PositionVectors[0];
+
+	for (const FVector& Pos : PositionVectors)
 	{
-		UE_LOG(LogTemp, Log, TEXT("%s"), *ValidFile.FilePath);
+		MinBounds = MinBounds.ComponentMin(Pos);
+		MaxBounds = MaxBounds.ComponentMax(Pos);
+	}
+}
+
+void APointCloud::SetupDensityFieldFromPointCloud() const
+{
+	//UE_LOG(LogTemp, Log, TEXT("Initializing DensityField!"));
+
+	const FIntVector AxisNumbers(100, 100, 100);
+	MyDensityField->InitializeDensityField(this, MinBounds, MaxBounds, AxisNumbers);
+}
+
+//	FILE READING
+
+
+void APointCloud::StartStudyMode()
+{
+	if(IsInTraining)
+	{
+		IsInTraining = false;
+		ReadPointCloudFromIndex(0);
 	}
 }
 
@@ -86,22 +165,51 @@ void APointCloud::ReadPointCloudFromIndex(const int Index)
 	CurrentPointCloudIndex = Index;
 	CurrentPointCloudFlagIndex = 0;
 
-	UE_LOG(LogTemp, Log, TEXT("Resetting to index %i"), Index);
+	if(IsInTraining)
+	{
+		UE_LOG(LogTemp, Log, TEXT("Loading Training Cloud with index %i"), Index);
+
+		CurrentPointCloudIndex = CurrentPointCloudIndex % TrainingData.Num();
+	}else
+	{
+		UE_LOG(LogTemp, Log, TEXT("Loading Study Cloud with index %i"), Index);
+		
+		if(CurrentPointCloudIndex >= ValidPointClouds.Num())
+		{
+			UE_LOG(LogTemp, Error, TEXT("Invalid index %d"), CurrentPointCloudIndex);
+			//UKismetSystemLibrary::QuitGame(GetWorld(), nullptr, EQuitPreference::Quit, false);
+			return;
+		}
+	}
+
 
 	ResetPointCloudData();
+
+	MySelectionStatistics = FSelectionStatistics();
+	MySelectionStatistics.InitSelection(GetWorld()->TimeSeconds);
 }
 
 void APointCloud::ResetPointCloudData()
 {
-	if(!ValidPointClouds.IsValidIndex(CurrentPointCloudIndex)) return;
+	FPointCloudData MyCloud;
 	
-	const FFilePath PointDataFile = ValidPointClouds[CurrentPointCloudIndex];
-	TArray<FString> PointFlagFiles = MyFileManager.GetFlagFilesForPointCloud(PointDataFile.FilePath);
+	if(IsInTraining)
+	{
+		if(!TrainingData.IsValidIndex(CurrentPointCloudIndex)) return;
 
-	if(!PointFlagFiles.IsValidIndex(CurrentPointCloudFlagIndex)) return;
-	const FFilePath FlagFile = FFilePath(PointFlagFiles[CurrentPointCloudFlagIndex]);
+		MyCloud = TrainingData[CurrentPointCloudIndex];
+		
+	}else
+	{
+		if(!ValidPointClouds.IsValidIndex(CurrentPointCloudIndex)) return;
+
+		MyCloud = ValidPointClouds[CurrentPointCloudIndex];
+	}
+
+	const FFilePath PointDataFile = FFilePath(MyCloud.PointCloudFilePath);
+	const FFilePath PointFlagFile = FFilePath(MyCloud.FlagFilePaths[CurrentPointCloudFlagIndex]);
 	
-	ReadPointCloudFromFile(PointDataFile, FlagFile);
+	ReadPointCloudFromFile(PointDataFile, PointFlagFile);
 	InitPointCloudVisualizer();
 	SetupDensityFieldFromPointCloud();
 	MyUndoRedoManager.Clear();
@@ -144,49 +252,10 @@ void APointCloud::ReadPointCloudFromFile(const FFilePath FileNamePoints, const F
 	this->PointColors.Init(FColor::Blue, PositionVectors.Num());
 }
 
-void APointCloud::InitPointCloudVisualizer()
-{
-	TArray<UGPUPointCloudRendererComponent*> Components;
-	GetComponents<UGPUPointCloudRendererComponent>(Components);
-
-	if (Components.Num() > 0)
-	{
-		PointCloudVisualizer = Components[0];
-		PointCloudVisualizer->ResetPointCloudRenderer();
-		PointCloudVisualizer->SetInputAndConvert2(PositionVectors, PointColors);
-		PointCloudVisualizer->SetDynamicProperties(FLinearColor::White, 1.0f, SplatSize * 0.1, 1000.f, false);
-	}
-	else
-	{
-		UE_LOG(LogTemp, Warning, TEXT("No PointCloud Visualizer component found on this actor."));
-	}
-}
-
-void APointCloud::UpdateBounds()
-{
-	if (PositionVectors.Num() == 0)
-		return;
-
-	MinBounds = PositionVectors[0];
-	MaxBounds = PositionVectors[0];
-
-	for (const FVector& Pos : PositionVectors)
-	{
-		MinBounds = MinBounds.ComponentMin(Pos);
-		MaxBounds = MaxBounds.ComponentMax(Pos);
-	}
-}
-
-void APointCloud::SetupDensityFieldFromPointCloud() const
-{
-	UE_LOG(LogTemp, Log, TEXT("Initializing DensityField!"));
-
-	const FIntVector AxisNumbers(100, 100, 100);
-	MyDensityField->InitializeDensityField(this, MinBounds, MaxBounds, AxisNumbers);
-}
+//	SELECTION
 
 void APointCloud::UpdateSelection()
-{
+{	
 	for (int32 i = 0; i < PositionVectors.Num(); i++)
 	{
 		if(DefaultFlags[i])
@@ -231,6 +300,8 @@ void APointCloud::DrawVoxel(const int Index, const float Time) const
 
 void APointCloud::SelectAllPointsInVoxels(const TArray<int32> VoxelIndices)
 {
+	if(IsSelectionFrozen) return;
+	
 	FScopeLock Lock(&DataGuard);
 	if (!MyDensityField)
 	{
@@ -254,6 +325,8 @@ void APointCloud::SelectAllPointsInVoxels(const TArray<int32> VoxelIndices)
 
 void APointCloud::AddToSelection(const TArray<bool>& NewSelection)
 {
+	if(IsSelectionFrozen) return;
+	
 	if (NewSelection.Num() != SelectionFlags.Num())
 	{
 		UE_LOG(LogTemp, Error, TEXT("New selection array size does not match the current selection size."));
@@ -276,6 +349,8 @@ void APointCloud::AddToSelection(const TArray<bool>& NewSelection)
 
 void APointCloud::SubtractFromSelection(const TArray<bool>& NewSelection)
 {
+	if(IsSelectionFrozen) return;
+	
 	if (NewSelection.Num() != SelectionFlags.Num())
 	{
 		UE_LOG(LogTemp, Error, TEXT("New selection array size does not match the current selection size."));
@@ -298,6 +373,8 @@ void APointCloud::SubtractFromSelection(const TArray<bool>& NewSelection)
 
 void APointCloud::SetSelection(const TArray<bool>& NewSelection)
 {
+	if(IsSelectionFrozen) return;
+	
 	if (NewSelection.Num() != SelectionFlags.Num())
 	{
 		UE_LOG(LogTemp, Error, TEXT("New selection array size does not match the current selection size."));
@@ -314,21 +391,29 @@ void APointCloud::SetSelection(const TArray<bool>& NewSelection)
 
 void APointCloud::Undo()
 {
+	if(IsSelectionFrozen) return;
+	
 	TArray<bool> PreviousState;
 	if (MyUndoRedoManager.Undo(PreviousState))
 	{
 		SelectionFlags = PreviousState;
 		UpdateSelection();
+
+		MySelectionStatistics.IncrementUndo();
 	}
 }
 
 void APointCloud::Redo()
 {
+	if(IsSelectionFrozen) return;
+	
 	TArray<bool> NextState;
 	if (MyUndoRedoManager.Redo(NextState))
 	{
 		SelectionFlags = NextState;
 		UpdateSelection();
+
+		MySelectionStatistics.IncrementRedo();
 	}
 }
 
@@ -336,3 +421,52 @@ void APointCloud::Tick(const float DeltaTime)
 {
 	Super::Tick(DeltaTime);
 }
+
+//	Logging
+
+void APointCloud::LogSelectionResults()
+{
+	IsSelectionFrozen = true;
+	MySelectionStatistics.EndSelection(GetWorld()->TimeSeconds);
+
+	int CorrectSelections = 0;
+	int FalsePositives = 0;
+	int FalseNegatives = 0;
+	int TotalSelections = 0;
+	const int TotalPoints = DefaultFlags.Num(); 
+	
+	for (int i = 0; i < DefaultFlags.Num(); i++)
+	{
+		if (DefaultFlags[i] && SelectionFlags[i])
+		{
+			CorrectSelections++;
+		}
+		else if (DefaultFlags[i] && !SelectionFlags[i])
+		{
+			FalseNegatives++;
+		}
+		else if (!DefaultFlags[i] && SelectionFlags[i])
+		{
+			FalsePositives++;
+		}
+
+		if (DefaultFlags[i])
+		{
+			TotalSelections++;
+		}
+	}
+
+	MySelectionStatistics.SetCorrectness(CorrectSelections);
+	MySelectionStatistics.SetFalsePositive(FalsePositives);
+	MySelectionStatistics.SetFalseNegative(FalseNegatives);
+	MySelectionStatistics.SetTotalPointNumber(TotalPoints);
+}
+
+void APointCloud::StartAllowSelectionWithLogging()
+{
+	if(IsSelectionFrozen)
+	{
+		IsSelectionFrozen = false;
+		MySelectionStatistics.StartSelection(GetWorld()->TimeSeconds);
+	}
+}
diff --git a/Source/MetaCastBachelor/PointStorage/PointCloud.h b/Source/MetaCastBachelor/PointStorage/PointCloud.h
index 4bfa3e9add063100cbb4889bf21d7e1fcb9333fc..94de8ad6e8342d95b2b83bcc029a25a6cddc21ab 100644
--- a/Source/MetaCastBachelor/PointStorage/PointCloud.h
+++ b/Source/MetaCastBachelor/PointStorage/PointCloud.h
@@ -6,6 +6,7 @@
 #include "PointCloudFileManager.h"
 #include "UndoRedoManager.h"
 #include "GameFramework/Actor.h"
+#include "MetaCastBachelor/SelectionStatistics.h"
 #include "MetaCastBachelor/PointStorage/DensityField.h"
 #include "PointCloud.generated.h"
 
@@ -17,8 +18,24 @@ class APointCloud : public AActor
 
 	int CurrentPointCloudIndex;
 	int CurrentPointCloudFlagIndex;
-	TArray<FFilePath> PointCloudsNoFlags;
-	TArray<FFilePath> ValidPointClouds;
+	bool IsInTraining = true;
+
+public:
+	bool GetIsInTraining() const
+	{
+		return IsInTraining;
+	}
+
+private:
+	bool IsSelectionFrozen = true;
+
+public:
+	bool GetIsSelectionFrozen() const {return IsSelectionFrozen;}
+
+private:
+	TArray<FPointCloudData> PointCloudsNoFlags;
+	TArray<FPointCloudData> ValidPointClouds;
+	TArray<FPointCloudData> TrainingData;
 	
 	mutable FCriticalSection DataGuard;
 	FVector MinBounds;
@@ -67,15 +84,10 @@ public:
 	void InitPointCloudVisualizer();
 	void UpdateBounds();
 	void SetupDensityFieldFromPointCloud() const;
+	
+	UFUNCTION(BlueprintCallable)
+	void StartStudyMode();
 
-protected:
-	// Called when the game starts or when spawned
-	virtual void BeginPlay() override;
-	void InitPointCloudAndFlagFiles(const FFilePath& PointInputData, const FFilePath& FlagInputData);
-
-	virtual void Tick(float DeltaTime) override;
-
-public:
 	void UpdateSelection();
 	void DrawVoxel(const int Index, float Time) const;
 	void SelectAllPointsInVoxels(const TArray<int32> VoxelIndices);
@@ -84,6 +96,9 @@ public:
 	void SetSelection(const TArray<bool>& NewSelection);
 	void Undo();
 	void Redo();
+	
+	UFUNCTION(BlueprintCallable)
+	void StartAllowSelectionWithLogging();
 
 	const TArray<FVector>& GetPositionVectors() const
 	{
@@ -150,4 +165,17 @@ public:
 	
 	UFUNCTION(BlueprintCallable)
 	void ReadPointCloudFromFile(FFilePath FileNamePoints, FFilePath FileNameFlags);
+
+	UFUNCTION(BlueprintCallable)
+	void LogSelectionResults();
+
+	FSelectionStatistics MySelectionStatistics;
+
+protected:
+	// Called when the game starts or when spawned
+	virtual void BeginPlay() override;
+	void InitPointCloudAndFlagFiles(const FFilePath& PointInputData, const FFilePath& FlagInputData);
+
+	virtual void Tick(float DeltaTime) override;
+	
 };
diff --git a/Source/MetaCastBachelor/PointStorage/PointCloudFileManager.cpp b/Source/MetaCastBachelor/PointStorage/PointCloudFileManager.cpp
index f5c9e3a726426bcdf7a8782f15e2f60ab8ebec42..6771ae0fc9213b079146a12eaf7a7e018f481002 100644
--- a/Source/MetaCastBachelor/PointStorage/PointCloudFileManager.cpp
+++ b/Source/MetaCastBachelor/PointStorage/PointCloudFileManager.cpp
@@ -37,13 +37,13 @@ int32 FUPointCloudFileManager::GetNumberOfPointCloudFiles() const
     return PointCloudDataArray.Num();
 }
 
-FString FUPointCloudFileManager::GetPointCloudFilePath(const int32 Index) const
+FPointCloudData FUPointCloudFileManager::GetPointCloudFilePath(const int32 Index) const
 {
     if (PointCloudDataArray.IsValidIndex(Index))
     {
-        return PointCloudDataArray[Index].PointCloudFilePath;
+        return PointCloudDataArray[Index];
     }
-    return FString();
+    return FPointCloudData();
 }
 
 int32 FUPointCloudFileManager::GetNumberOfFlagFiles(const int32 Index) const
diff --git a/Source/MetaCastBachelor/PointStorage/PointCloudFileManager.h b/Source/MetaCastBachelor/PointStorage/PointCloudFileManager.h
index 446ad628e7934eab9323474cf5c68ffea6e223b6..ce13c46615a0cb4d4d2156eaad08be6835895803 100644
--- a/Source/MetaCastBachelor/PointStorage/PointCloudFileManager.h
+++ b/Source/MetaCastBachelor/PointStorage/PointCloudFileManager.h
@@ -34,7 +34,7 @@ public:
 	int32 GetNumberOfPointCloudFiles() const;
 
 	// Gets the point cloud file path by index
-	FString GetPointCloudFilePath(int32 Index) const;
+	FPointCloudData GetPointCloudFilePath(int32 Index) const;
 
 	// Gets the number of flag files corresponding to a point cloud file by index
 	int32 GetNumberOfFlagFiles(int32 Index) const;
diff --git a/Source/MetaCastBachelor/SelectionMethods/FMagicWandSelectionTask.h b/Source/MetaCastBachelor/SelectionMethods/FMagicWandSelectionTask.h
index 4fd03de9e4e7ac1c5980b4c19870114ad1c17c8a..7992f0715846faeb20f04a9f14fd9715fd84f8c9 100644
--- a/Source/MetaCastBachelor/SelectionMethods/FMagicWandSelectionTask.h
+++ b/Source/MetaCastBachelor/SelectionMethods/FMagicWandSelectionTask.h
@@ -29,7 +29,7 @@ public:
 	{
 		if (!Thread)
 		{
-			Thread = FRunnableThread::Create(this, TEXT("FMagicWandSelectionTask"), 0, TPri_Highest);
+			Thread = FRunnableThread::Create(this, TEXT("FMagicWandSelectionTask"), 0, TPri_AboveNormal);
 		}
 	}
 
diff --git a/Source/MetaCastBachelor/SelectionMethods/MetaCastBaseline.cpp b/Source/MetaCastBachelor/SelectionMethods/MetaCastBaseline.cpp
index af11024d1e391c3895f547482fccddb9336388a5..b8168d257aa91cb5485cf2168c209ce1e82e449e 100644
--- a/Source/MetaCastBachelor/SelectionMethods/MetaCastBaseline.cpp
+++ b/Source/MetaCastBachelor/SelectionMethods/MetaCastBaseline.cpp
@@ -22,6 +22,15 @@ void UMetaCastBaseline::InitLeftHand()
 	}
 }
 
+void UMetaCastBaseline::InitRightHand()
+{
+	if(!RightHandComponent)
+	{
+		UE_LOG(LogTemp, Warning, TEXT("Right Hand not assigned. Please assign in Blueprint => Defaulting to self"));
+		RightHandComponent = this;
+	}
+}
+
 // Called when the game starts
 void UMetaCastBaseline::BeginPlay()
 {
@@ -30,7 +39,10 @@ void UMetaCastBaseline::BeginPlay()
 	InitPointCloudReference();
 	InitInputBindings();
 	InitSelectionObject();
+	
 	InitLeftHand();
+	InitRightHand();
+	
 }
 
 void UMetaCastBaseline::InitPointCloudReference()
@@ -234,6 +246,41 @@ void UMetaCastBaseline::TickComponent(const float DeltaTime, const ELevelTick Ti
 	{
 		AttachToHand(DeltaTime);
 	}
+
+	if(MyPointCloud && !MyPointCloud->GetIsSelectionFrozen())
+	{
+		// Update the positions and rotations
+		const FVector RightHandPosition = RightHandComponent->GetComponentLocation();
+		const FVector LeftHandPosition = LeftHandComponent->GetComponentLocation();
+
+		const FRotator RightHandRotation = RightHandComponent->GetComponentRotation();
+		const FRotator LeftHandRotation = LeftHandComponent->GetComponentRotation();
+
+		// Calculate movement delta
+		const float RightHandMovementDelta = (RightHandPosition - LastRightHandPosition).Size();
+		const float LeftHandMovementDelta = (LeftHandPosition - LastLeftHandPosition).Size();
+
+		// Convert rotations to quaternions before subtraction to handle rotation wrap-around correctly
+		const FQuat RightHandQuat = RightHandRotation.Quaternion();
+		const FQuat LeftHandQuat = LeftHandRotation.Quaternion();
+		const FQuat LastRightHandQuat = LastRightHandRotation.Quaternion();
+		const FQuat LastLeftHandQuat = LastLeftHandRotation.Quaternion();
+
+		// Calculate rotation delta in degrees
+		const float RightHandRotationDelta =  FMath::RadiansToDegrees(LastRightHandQuat.AngularDistance(RightHandQuat));
+		const float LeftHandRotationDelta = FMath::RadiansToDegrees(LastLeftHandQuat.AngularDistance(LeftHandQuat));
+
+		MyPointCloud->MySelectionStatistics.UpdateControllerMovement(LeftHandMovementDelta, RightHandMovementDelta);
+		MyPointCloud->MySelectionStatistics.UpdateControllerRotation(LeftHandRotationDelta, RightHandRotationDelta);
+		
+
+		// Update the last positions and rotations
+		LastRightHandPosition = RightHandPosition;
+		LastLeftHandPosition = LeftHandPosition;
+
+		LastRightHandRotation = RightHandRotation;
+		LastLeftHandRotation = LeftHandRotation;
+	}
 }
 
 void UMetaCastBaseline::SelectParticles(const FVector& InputPosition)
diff --git a/Source/MetaCastBachelor/SelectionMethods/MetaCastBaseline.h b/Source/MetaCastBachelor/SelectionMethods/MetaCastBaseline.h
index 48fc2ba92ab5b3319992e300d246537f617ff9f5..63228e97a3fc0201eef0072a025fd3789376dc8b 100644
--- a/Source/MetaCastBachelor/SelectionMethods/MetaCastBaseline.h
+++ b/Source/MetaCastBachelor/SelectionMethods/MetaCastBaseline.h
@@ -11,6 +11,11 @@ class UMetaCastBaseline : public USceneComponent
 {
 	GENERATED_BODY()
 
+	FVector LastRightHandPosition;
+	FVector LastLeftHandPosition;
+	FRotator LastRightHandRotation;
+	FRotator LastLeftHandRotation;
+	
 public:
 	UPROPERTY(VisibleAnywhere, Category = "Input")
 	bool Select = false;
@@ -54,11 +59,17 @@ public:
 	UPROPERTY(EditAnywhere, Category = "Hand",meta = (AllowPrivateAccess = "true", UseComponentPicker), BlueprintReadWrite)
 	USceneComponent* LeftHandComponent;
 
+	UPROPERTY(EditAnywhere, Category = "Hand",meta = (AllowPrivateAccess = "true", UseComponentPicker), BlueprintReadWrite)
+	USceneComponent* RightHandComponent;
+
 	UPROPERTY(EditAnywhere, Category = "Hand", BlueprintReadWrite)
 	float PositionLerpSpeed = 5.0f;
 
 	UPROPERTY(EditAnywhere, Category = "Hand", BlueprintReadWrite)
 	float RotationLerpSpeed = 5.0f;
+
+	UPROPERTY(EditAnywhere, Category = "Hand", BlueprintReadWrite)
+	bool bIsLeftHanded = false;
 	
 	UPROPERTY(EditAnywhere, BlueprintReadWrite)
 	APointCloud* MyPointCloud;
@@ -82,6 +93,7 @@ public:
 	// Sets default values for this component's properties
 	UMetaCastBaseline();
 	void InitLeftHand();
+	void InitRightHand();
 	void InitInputBindings();
 	
 	void HandleMetaSelectPressed(const FInputActionInstance& Instance);
diff --git a/Source/MetaCastBachelor/SelectionStatistics.cpp b/Source/MetaCastBachelor/SelectionStatistics.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..8184bc39228bb9babcdac4bcf815077ca910ab1c
--- /dev/null
+++ b/Source/MetaCastBachelor/SelectionStatistics.cpp
@@ -0,0 +1,89 @@
+#include "SelectionStatistics.h"
+
+FSelectionStatistics::FSelectionStatistics()
+	: InitTimeWorld(-1), StartTimeWorld(-1.0f), EndTimeWorld(-1.0f), SelectionDuration(-1.0f),
+InitDuration(-1.0f), NumberOfUndos(0), NumberOfRedos(0), CorrectSelections(-1.0f), FalsePositiveSelections(0 - 1.0f),
+FalseNegativeSelections(-1.0f), NumberOfPoints(0), ControllerMovementDeltaSumL(0), ControllerRotationDeltaSumL(0),
+ControllerMovementDeltaSumR(0), ControllerRotationDeltaSumR(0)
+{
+}
+
+void FSelectionStatistics::InitSelection(const float InitTime)
+{
+	InitTimeWorld = InitTime;
+}
+
+void FSelectionStatistics::StartSelection(const float StartTime)
+{
+	StartTimeWorld = StartTime;
+
+	InitDuration = StartTimeWorld - InitTimeWorld;
+}
+
+void FSelectionStatistics::Reset()
+{
+	InitTimeWorld = -1;
+	StartTimeWorld = -1.0f;
+	EndTimeWorld = -1.0f;
+	SelectionDuration = -1.0f;
+	InitDuration = -1.0f;
+	NumberOfUndos = 0;
+	NumberOfRedos = 0;
+	CorrectSelections = -1.0f;
+	FalsePositiveSelections = -1.0f;
+	FalseNegativeSelections = -1.0f;
+	NumberOfPoints = 0;
+	ControllerMovementDeltaSumL = 0;
+	ControllerRotationDeltaSumL = 0;
+	ControllerMovementDeltaSumR = 0;
+	ControllerRotationDeltaSumR = 0;
+}
+
+void FSelectionStatistics::EndSelection(const float EndTime)
+{
+	EndTimeWorld = EndTime;
+
+	SelectionDuration = EndTimeWorld - StartTimeWorld;
+}
+
+void FSelectionStatistics::IncrementUndo()
+{ 
+	NumberOfUndos++;
+}
+
+void FSelectionStatistics::IncrementRedo()
+{
+	NumberOfRedos++;
+}
+
+void FSelectionStatistics::UpdateControllerMovement(const float DeltaL, const float DeltaR)
+{
+	ControllerMovementDeltaSumL += DeltaL;
+	ControllerMovementDeltaSumR += DeltaR;
+}
+
+void FSelectionStatistics::UpdateControllerRotation(const float DeltaL, const float DeltaR)
+{
+	ControllerRotationDeltaSumL += DeltaL;
+	ControllerRotationDeltaSumR += DeltaR;
+}
+
+void FSelectionStatistics::SetCorrectness(const float Correct)
+{
+	CorrectSelections = Correct;
+}
+
+void FSelectionStatistics::SetFalsePositive(const float FalsePositives)
+{
+	FalsePositiveSelections = FalsePositives;
+}
+
+void FSelectionStatistics::SetFalseNegative(const float FalseNegatives)
+{
+	FalseNegativeSelections = FalseNegatives;
+}
+
+void FSelectionStatistics::SetTotalPointNumber(const int Number)
+{
+	NumberOfPoints = Number;
+}
diff --git a/Source/MetaCastBachelor/SelectionStatistics.h b/Source/MetaCastBachelor/SelectionStatistics.h
new file mode 100644
index 0000000000000000000000000000000000000000..303eec074cedb6b620db9eb1919c4264f674f2cf
--- /dev/null
+++ b/Source/MetaCastBachelor/SelectionStatistics.h
@@ -0,0 +1,64 @@
+#pragma once
+
+#include "CoreMinimal.h"
+
+class FSelectionStatistics
+{
+	float InitTimeWorld;
+	float StartTimeWorld;
+	float EndTimeWorld;
+	
+public:
+	FSelectionStatistics();
+
+	// Properties
+		
+	float SelectionDuration;
+	
+	float InitDuration;
+
+	int32 NumberOfUndos;
+
+	int32 NumberOfRedos;
+
+	float CorrectSelections;
+
+	float FalsePositiveSelections;
+
+	float FalseNegativeSelections;
+
+	int NumberOfPoints;
+
+	float ControllerMovementDeltaSumL;
+
+	float ControllerRotationDeltaSumL;
+
+	float ControllerMovementDeltaSumR;
+
+	float ControllerRotationDeltaSumR;
+
+	// Methods
+	void InitSelection(float InitTime);
+	
+	void StartSelection(float StartTime);
+	
+	void EndSelection(float EndTime);
+
+	void IncrementUndo();
+
+	void IncrementRedo();
+
+	void UpdateControllerMovement(const float DeltaL, const float DeltaR);
+
+	void UpdateControllerRotation(const float DeltaL, const float DeltaR);
+
+	void SetCorrectness(const float Correct);
+
+	void SetFalsePositive(const float FalsePositives);
+
+	void SetFalseNegative(const float FalseNegatives);
+
+	void SetTotalPointNumber(int Number);
+
+	void Reset();
+};
diff --git a/Source/MetaCastBachelor/StudyManager.cpp b/Source/MetaCastBachelor/StudyManager.cpp
index 2b4f4e867aafd6c61080f2dda2582052289e49a3..4e06ae0d09952e26fd1451bf5880209bb1f23b29 100644
--- a/Source/MetaCastBachelor/StudyManager.cpp
+++ b/Source/MetaCastBachelor/StudyManager.cpp
@@ -1,39 +1,55 @@
 #include "StudyManager.h"
-
+#include "Engine/LevelStreamingDynamic.h"
 #include "Kismet/GameplayStatics.h"
 
-void UStudyManager::InitializeParticipant(const int32 ParticipantID)
+void UStudyManager::InitCSVLog() const
 {
-	CurrentParticipantID = ParticipantID;
-
-	// Generate a log stream name based on the participant ID
-	const FString StreamName = FString::Printf(TEXT("Participant_%d"), ParticipantID);
+	// Generate a log stream name and a filename with timestamp
+	const FString StreamName = FString::Printf(TEXT("Participant_%d"), CurrentParticipantID);
 
 	// Generate a folder name for each participant based on their ID
-	const FString FolderName = FString::Printf(TEXT("ParticipantLogs/Participant_%d"), ParticipantID);
+	const FString FolderName = FString::Printf(TEXT("ParticipantLogs/Participant_%d"), CurrentParticipantID);
 
 	// Get the current Unix timestamp
-	int64 Timestamp = FDateTime::UtcNow().ToUnixTimestamp();
-	const FString Filename = FString::Printf(TEXT("%d_%lld.log"), ParticipantID, Timestamp);
+	const int64 Timestamp = FDateTime::UtcNow().ToUnixTimestamp();
+	
+	const FString Filename = FString::Printf(TEXT("%d_%d_%lld.csv"), CurrentParticipantID, CurrentState, Timestamp);
 
-	// Create a new log stream for this participant with a new folder and timestamped filename
-	ILogStream* ParticipantLogStream = UniLog.NewLogStream(StreamName, FolderName, Filename, true);
+	// Create the log stream for trial results
+	ILogStream* TrialResultsLogStream = UniLog.NewLogStream(StreamName, FolderName, Filename, true);
 
-	if (ParticipantLogStream && ParticipantLogStream->GetIsValid())
+	if (TrialResultsLogStream && TrialResultsLogStream->GetIsValid())
 	{
-		// Log the initialization message
-		UniLog.LogF(StreamName, TEXT("Initializing session for participant ID: %d at Timestamp: %lld"), ParticipantID, Timestamp);
+		// Write CSV headers
+		UniLog.LogF(StreamName, TEXT("sep=,\n"));
+		UniLog.LogF(StreamName, TEXT("ParticipantId,Condition,TrialId,SelectionDuration,InitDuration,NumberOfUndos,NumberOfRedos,Correctness,FalsePositives,FalseNegatives,NumberOfPoints,ControllerMovementDeltaSumL,ControllerRotationDeltaSumL,ControllerMovementDeltaSumR,ControllerRotationDeltaSumR"));
 	}
 	else
 	{
-		// If stream creation failed, log this to the default log
-		UE_LOG(LogTemp, Error, TEXT("Failed to create log stream for participant %d"), ParticipantID);
+		UE_LOG(LogTemp, Error, TEXT("Failed to create or validate log stream for participant %d"), CurrentParticipantID);
 	}
+}
+
+void UStudyManager::InitializeParticipant(const int32 ParticipantID)
+{
+	CurrentParticipantID = ParticipantID;
+
+	InitCSVLog();
 
 	UE_LOG(LogTemp, Log, TEXT("Initialized Participant ID: %d"), ParticipantID);
 
 }
 
+void UStudyManager::InitConditionID(const int32 ConditionID)
+{
+	CurrentConditionID = ConditionID;
+}
+
+void UStudyManager::InitTrialID(const int32 TrialId)
+{
+	CurrentTrialId = TrialId;
+}
+
 void UStudyManager::SetNewStateAndLoadMap(const EStudyState NewState)
 {
 	CurrentState = NewState;
@@ -58,6 +74,8 @@ void UStudyManager::SetNewStateAndLoadMap(const EStudyState NewState)
 	if (!MapToLoad.IsEmpty())
 	{
 		UE_LOG(LogTemp, Log, TEXT("Loading level: %s"), *MapToLoad);
+
+		GEngine->ForceGarbageCollection(true);
 		UGameplayStatics::OpenLevel(this, FName(*MapToLoad));
 	}
 	else
@@ -68,3 +86,53 @@ void UStudyManager::SetNewStateAndLoadMap(const EStudyState NewState)
 
 EStudyState UStudyManager::GetCurrentState() const
 { return CurrentState; }
+
+void UStudyManager::LogTrialResultsFromPointCloud()
+{
+	if(!CurrentPointCloud || CurrentPointCloud->GetIsInTraining())
+	{
+		UE_LOG(LogTemp, Warning, TEXT("Current Point Cloud is not set or is in training mode."));
+		return;
+	}
+	const FSelectionStatistics Stats = CurrentPointCloud->MySelectionStatistics;  
+
+	// Now we pass all needed values from Stats to LogTrialResults
+	LogTrialResults(
+		Stats.SelectionDuration,
+		Stats.InitDuration,
+		Stats.NumberOfUndos,
+		Stats.NumberOfRedos,
+		Stats.CorrectSelections,
+		Stats.FalsePositiveSelections,
+		Stats.FalseNegativeSelections,
+		Stats.NumberOfPoints,
+		Stats.ControllerMovementDeltaSumL,
+		Stats.ControllerRotationDeltaSumL,
+		Stats.ControllerMovementDeltaSumR,
+		Stats.ControllerRotationDeltaSumR
+	);
+}
+
+void UStudyManager::LogTrialResults(const float Duration,
+	const float InitDuration, const int Undos, const int Redos, const int Correctness,
+	const int FalsePositives, const int FalseNegatives, const int PointsCount, const float MovementL,
+	const float RotationL, const float MovementR, const float RotationR)
+{
+	const FString StreamName = FString::Printf(TEXT("Participant_%d"), CurrentParticipantID);
+
+	const FString Condition = GetEnumAsText(CurrentState);
+	
+	// Format the data as a CSV line
+	const FString CSVLine = FString::Printf(TEXT("%d,%s,%d,%f,%f,%d,%d,%d,%d,%d,%d,%f,%f,%f,%f"),
+											CurrentParticipantID, *Condition, CurrentTrialId,
+	                                        Duration, InitDuration, Undos, Redos, Correctness,
+	                                        FalsePositives, FalseNegatives, PointsCount,
+	                                        MovementL, RotationL, MovementR, RotationR);
+
+	// Log the data line to the file
+	UniLog.LogF(StreamName, TEXT("\n%s"), *CSVLine);
+	UE_LOG(LogTemp, Log, TEXT("Logged trial results for participant %d, condition %s and trial %d"), CurrentParticipantID, *Condition, CurrentTrialId);
+
+	CurrentTrialId++;
+}
+
diff --git a/Source/MetaCastBachelor/StudyManager.h b/Source/MetaCastBachelor/StudyManager.h
index 26653e09f277271ef42822b0de33bbd0a586215f..b3a524680b9f82cc05ddc01d90bf529c9e3685c1 100644
--- a/Source/MetaCastBachelor/StudyManager.h
+++ b/Source/MetaCastBachelor/StudyManager.h
@@ -3,52 +3,15 @@
 #include "CoreMinimal.h"
 #include "Engine/GameInstance.h"
 #include "IUniversalLogging.h"
+#include "PointStorage/PointCloud.h"
 #include "StudyManager.generated.h"
 
 UENUM(BlueprintType)
 enum class EStudyState : uint8
 {
-	Tutorial,
 	Brush,
 	MagicWand,
-	MetaPoint,
-	Final
-};
-
-/**
- * Helper struct to manage Latin square method for 3 methods.
- */
-USTRUCT(BlueprintType)
-struct FLatinSquare
-{
-	GENERATED_BODY()
-
-	UPROPERTY(EditAnywhere, BlueprintReadWrite)
-	TArray<EStudyState> Order;
-
-	FLatinSquare()
-	{
-		// Default order
-		Order = { EStudyState::Brush, EStudyState::MagicWand, EStudyState::MetaPoint };
-	}
-
-	/**
-	 * Get order based on participant ID.
-	 */
-	TArray<EStudyState> GetOrder(const int32 ParticipantID) const
-	{
-		const int32 Index = ParticipantID % 3;
-		TArray<EStudyState> RotatedOrder = Order;
-
-		// Rotate the array according to the index
-		for (int32 i = 0; i < Index; ++i)
-		{
-			EStudyState First = RotatedOrder[0];
-			RotatedOrder.RemoveAt(0);
-			RotatedOrder.Add(First);
-		}
-		return RotatedOrder;
-	}
+	MetaPoint
 };
 
 /**
@@ -62,25 +25,57 @@ class UStudyManager : public UGameInstance
 public:
 	UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Study Maps")
 	FString MapForBrush;
-	
 	UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Study Maps")
 	FString MapForMagicWand;
-
 	UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Study Maps")
 	FString MapForMetaPoint;
-	
+
+	UPROPERTY(BlueprintReadWrite)
+	APointCloud* CurrentPointCloud;
+
+	void InitCSVLog() const;
 	UFUNCTION(BlueprintCallable)
 	void InitializeParticipant(int32 ParticipantID);
 
 	UFUNCTION(BlueprintCallable)
-	void SetNewStateAndLoadMap(EStudyState NewState);
+	void InitConditionID(int32 ConditionID);
 	
+	UFUNCTION(BlueprintCallable)
+	void InitTrialID(int32 TrialId);
+
+	UFUNCTION(BlueprintCallable)
+	void SetNewStateAndLoadMap(EStudyState NewState);
+
 	UFUNCTION(BlueprintCallable)
 	EStudyState GetCurrentState() const;
 
+	UFUNCTION(BlueprintCallable)
+	void LogTrialResultsFromPointCloud();
+
+	UFUNCTION(BlueprintCallable)
+	void LogTrialResults(const float Duration, const float InitDuration, const int Undos, const int Redos, const int Correctness, const int FalsePositives, const int FalseNegatives, const int PointsCount, const float MovementL, const float RotationL, const float MovementR, const float RotationR);
+
+	static FString GetEnumAsText(const EStudyState EnumVal)
+	{
+		switch (EnumVal)
+		{
+			case EStudyState::Brush:
+				return FString("Brush");
+			case EStudyState::MagicWand:
+				return FString("MagicWand");
+			case EStudyState::MetaPoint:
+				return FString("MetaPoint");
+			default:
+				return FString("Invalid");
+		}
+	}
+
+
 private:
 	int32 CurrentParticipantID;
-	TArray<EStudyState> StudyOrder;
+	int CurrentConditionID;
+	int CurrentTrialId;
+	
 	EStudyState CurrentState;
 };