Hello guys,
I have an old project that uses Java3D. It is a java app that renders some 3D graphics. I have built it with the jars for 1.6 from: https://gouessej.wordpress.com/2012/08/01/java-3d-est-de-retour-java-3d-is-back/#download It works fine from my laptop with Linux Mint. But when I start it on my Raspberry PI 4 with OS Raspbian I get this error: WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by javax.media.j3d.JoglPipeline (file:/home/albin/H%c3%a4mtningar/object3Dcreator-app-1.0.0-jar-with-dependencies.jar) to method sun.awt.AppContext.getAppContext() WARNING: Please consider reporting this to the maintainers of javax.media.j3d.JoglPipeline WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations WARNING: All illegal access operations will be denied in a future release Exception in thread "AWT-EventQueue-0" java.lang.InternalError: Available GLVersions not set for EGLGraphicsDevice[type .egl, v1.4.0, connection decon, unitID 0, handle 0x7b3030, owner true, NullToolkitLock[obj 0x1a66d50]] at com.jogamp.opengl.GLProfile.initProfilesForDeviceCritical(GLProfile.java:1952) at com.jogamp.opengl.GLProfile.initProfilesForDevice(GLProfile.java:1875) at com.jogamp.opengl.GLProfile.initProfilesForDefaultDevices(GLProfile.java:1842) at com.jogamp.opengl.GLProfile.access$000(GLProfile.java:80) at com.jogamp.opengl.GLProfile$1.run(GLProfile.java:230) at java.base/java.security.AccessController.doPrivileged(Native Method) Do you guys have any clue why this occur on the PI? Could the solution be that I should move to Java3D 1.7? Best regards Fredrik |
Administrator
|
Hello
Maybe Xerxes knows what to do, he has some experience with the Raspberry PI. Please note that JOGL works correctly with the Raspberry PI 2 and 3 as far as I know. Supporting the Raspberry PI 4 is a work in progress: http://forum.jogamp.org/JOGL-support-for-VideoCore-6-with-Raspberry-PI-4-td4040046.html
Julien Gouesse | Personal blog | Website
|
This post was updated on .
In reply to this post by fredand44
To use JOGL on Raspberry Pi 4 you need to use the latest build:
https://jogamp.org/deployment/archive/master/?C=M;O=D <- list of all latest jogl builds https://jogamp.org/deployment/archive/master/gluegen_916-joal_642-jogl_1483-jocl_1122/fat/jogamp-fat.jar Older builds such as the 2.3.2 release only work if you remove the broadcom drivers from the system. You can try: mv /opt/vc /opt/vc-removed Raspberry PI 4 behave as a generic Linux X11 system with Mesa3D drivers. We had to refine autodetect logic to disable use of the Broadcom specific driver initialization. By removing /opt/vc then old jogamp builds will think it is on a generic Linux X11 system. The latest Jogl build can fingure that out by itself. When I test on Raspberry Pi 4 then my /boot/config.txt contains [pi4] dtoverlay=vc4-fkms-v3d max_framebuffers=2 [all] dtoverlay=vc4-fkms-v3dThese config lines configure the board and enable the Mesa3D OpenGL drivers to be present for the dynamic linker when using Raspbian Xerxes |
Hello Xerxes,
Thanks alot!
I can confirm it works when I followed your instructions.
There was one execption but I think that might be a bug in my app. I will look into that.
How ever there were a couple of warningas as well at start up:
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by javax.media.j3d.JoglPipeline (file:/home/albin/H%c3%a4mtningar/object3Dcreator-app-1.0.0-jar-with-dependencies.jar) to method sun.awt.AppContext.getAppContext()
WARNING: Please consider reporting this to the maintainers of
javax.media.j3d.JoglPipeline
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
How ever the best solution is probably to upgrade. I will try it out asap.
Best regards
Fredrik
Skaffa Outlook för Android
From: Xerxes Rånby [via jogamp] <ml+[hidden email]>
Sent: Wednesday, October 23, 2019 3:22:09 PM To: fredand44 <[hidden email]> Subject: Re: Available GLVersions not set for EGLGraphicsDevic To use JOGL on Raspberry Pi 4 you need to use the latest build:
https://jogamp.org/deployment/archive/master/?C=M;O=D https://jogamp.org/deployment/archive/master/gluegen_916-joal_642-jogl_1483-jocl_1122/fat/jogamp-fat.jar Older builds such as the current release only work if you remove the broadcom drivers from the system. You can try: mv /opt/vc /opt/vc-removed Xerxes If you reply to this email, your message will be added to the discussion below:
http://forum.jogamp.org/Available-GLVersions-not-set-for-EGLGraphicsDevic-tp4040111p4040116.html
|
This warning is produced by java11. Future java versions may remove the posibility to use this kind of reflection access that jogl and java3d depend on for AWT interoperability. Java3D needs some fixes for java11 to get rid of those warnings in j3d.JoglPipeline. Possibly a rewrite to switch window toolkit from AWT (AWT depend on functionality inside the jdk) to NEWT (NEWT only depent on functionality provided by jogamp) We have a source code branch for jogl under testing that adress similar java11 issues http://forum.jogamp.org/java11-release-progress-thread-also-review-td4039948.html There is no build yet with those java11 patches in place. |
I have a similar problem, hoping someone can help.
When using the 2.3.2 release, I would get the "Available GLVersions not set for EGLGraphicsDevice" error. So I switched to the pre-release version at https://jogamp.org/deployment/archive/master/gluegen_916-joal_642-jogl_1483-jocl_1122/fat/jogamp-fat.jar Now the JVM crashes. Some information about my system: -Raspberry Pi 4 with 4GB RAM -Using the official "2019-09-26-raspbian-buster-full" image. -Installed all updates as of 2019-12-21 (sudo apt-get update && sudo apt-get upgrade) -Installed mesa-utils (sudo apt-get install mesa-utils) -No other changes made. The default /boot/config.txt ends with: But the JVM also crashes if I uncomment that last line to match what Xerxes mentioned. I do not know what driver is used by default. I tried "mv /opt/vc /opt/vc-removed" but that did not help, and it made the desktop glitchy. OpenGL seems to work, because: Here's is what glxinfo shows: This is the version of Java I'm using (it's the latest one in the normal Raspbian repo) Here is what happens when I try to run my Java/JOGL program: Is there something I need to do to switch to the Mesa driver, assuming that is my problem? I was hoping it would work with a normal Raspbian install. Thanks, -Farrell |
Administrator
|
In reply to this post by fredand44
Please rather use Java3D 1.7 and contact Phil if you still get some warnings. Those warnings won't get fixed in Java3D 1.6.
Julien Gouesse | Personal blog | Website
|
Oh, I didn't realize this thread was originally about Java3D. I'm just using JOGL, not the Java3D stuff.
It looks like the JVM crashes when this code of mine runs: -Farrell |
Administrator
|
In reply to this post by farrellf
As I currently finish up the android builds,
I will double check on this annoying issue for 2.4.0 Notable: > # JRE version: OpenJDK Runtime Environment (11.0.5+10) (build > 11.0.5+10-post-Raspbian-1deb10u1) > # Java VM: OpenJDK Server VM (11.0.5+10-post-Raspbian-1deb10u1, mixed > mode, g1 gc, linux-) > # Problematic frame: > # C [ld-linux-armhf.so.3+0x9ab0] > # <snip/> > > --------------- S U M M A R Y ------------ > > Command Line: Downloads/TelemetryViewer.jar > > Host: rev 3 (v7l), 4 cores, 3G, Raspbian GNU/Linux 10 (buster) > Time: Sun Dec 22 16:31:10 2019 PST elapsed time: 4 seconds (0d 0h 0m 4s) > > --------------- T H R E A D --------------- > > Current thread (0xb5f0d400): JavaThread "main" [_thread_in_native, > id=2399, stack(0xb606b000,0xb60bb000)] > > Stack: [0xb606b000,0xb60bb000], sp=0xb60b7b70, free space=306k > Native frames: (J=compiled Java code, A=aot compiled Java code, > j=interpreted, Vv=VM code, C=native code) > C [ld-linux-armhf.so.3+0x9ab0] > > Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) > j java.lang.ClassLoader$NativeLibrary.findEntry(Ljava/lang/String;)J+0 > java.base@11.0.5 > j > > java.base@11.0.5 > v ~StubRoutines::call_stub > j jogamp.common.os.UnixDynamicLinkerImpl.dlopen(Ljava/lang/String;I)J+0 > j > We also had another ld.so issue on Ubuntu and I will validate those. ~Sven On 12/23/19 3:04 AM, farrellf [via jogamp] wrote: > I have a similar problem, hoping someone can help. > > When using the 2.3.2 release, I would get the "Available GLVersions not set > for EGLGraphicsDevice" error. > > So I switched to the pre-release version at > https://jogamp.org/deployment/archive/master/gluegen_916-joal_642-jogl_1483-jocl_1122/fat/jogamp-fat.jar > > Now the JVM crashes. > > Some information about my system: > -Raspberry Pi 4 with 4GB RAM > -Using the official "2019-09-26-raspbian-buster-full" image. > -Installed all updates as of 2019-12-21 (sudo apt-get update && sudo apt-get > upgrade) > -Installed mesa-utils (sudo apt-get install mesa-utils) > -No other changes made. > > The default /boot/config.txt ends with: > > [pi4] > # Enable DRM VC4 V3D driver on top of the dispmanx display stack > dtoverlay=vc4-fkms-v3d > max_framebuffers=2 > > [all] > #dtoverlay=vc4-fkms-v3d > > But the JVM also crashes if I uncomment that last line to match what Xerxes > mentioned. > > I do not know what driver is used by default. I tried "mv /opt/vc > /opt/vc-removed" but that did not help, and it made the desktop glitchy. > > OpenGL seems to work, because: > > pi@raspberrypi:~ $ glxgears -fullscreen > Running synchronized to the vertical refresh. The framerate should be > approximately the same as the monitor refresh rate. > 187 frames in 5.0 seconds = 37.283 FPS > 177 frames in 5.0 seconds = 35.221 FPS > 177 frames in 5.0 seconds = 35.212 FPS > 177 frames in 5.0 seconds = 35.229 FPS > 177 frames in 5.0 seconds = 35.234 FPS > ... > > Here's is what glxinfo shows: > > pi@raspberrypi:~ $ glxinfo > name of display: :0.0 > display: :0 screen: 0 > direct rendering: Yes > server glx vendor string: SGI > server glx version string: 1.4 > server glx extensions: > GLX_ARB_create_context, GLX_ARB_create_context_no_error, > GLX_ARB_create_context_profile, GLX_ARB_fbconfig_float, > GLX_ARB_framebuffer_sRGB, GLX_ARB_multisample, > GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile, > GLX_EXT_fbconfig_packed_float, GLX_EXT_framebuffer_sRGB, > GLX_EXT_import_context, GLX_EXT_libglvnd, GLX_EXT_no_config_context, > GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, GLX_EXT_visual_rating, > GLX_INTEL_swap_event, GLX_MESA_copy_sub_buffer, GLX_OML_swap_method, > GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, > GLX_SGIX_visual_select_group, GLX_SGI_make_current_read, > GLX_SGI_swap_control > client glx vendor string: Mesa Project and SGI > client glx version string: 1.4 > client glx extensions: > GLX_ARB_context_flush_control, GLX_ARB_create_context, > GLX_ARB_create_context_no_error, GLX_ARB_create_context_profile, > GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float, > GLX_ARB_framebuffer_sRGB, GLX_ARB_get_proc_address, GLX_ARB_multisample, > GLX_EXT_buffer_age, GLX_EXT_create_context_es2_profile, > GLX_EXT_create_context_es_profile, GLX_EXT_fbconfig_packed_float, > GLX_EXT_framebuffer_sRGB, GLX_EXT_import_context, > GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, GLX_EXT_visual_rating, > GLX_INTEL_swap_event, GLX_MESA_copy_sub_buffer, > GLX_MESA_multithread_makecurrent, GLX_MESA_query_renderer, > GLX_MESA_swap_control, GLX_OML_swap_method, GLX_OML_sync_control, > GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, > GLX_SGIX_visual_select_group, GLX_SGI_make_current_read, > GLX_SGI_swap_control, GLX_SGI_video_sync > GLX version: 1.4 > GLX extensions: > GLX_ARB_create_context, GLX_ARB_create_context_no_error, > GLX_ARB_create_context_profile, GLX_ARB_fbconfig_float, > GLX_ARB_framebuffer_sRGB, GLX_ARB_get_proc_address, GLX_ARB_multisample, > GLX_EXT_buffer_age, GLX_EXT_create_context_es2_profile, > GLX_EXT_create_context_es_profile, GLX_EXT_fbconfig_packed_float, > GLX_EXT_framebuffer_sRGB, GLX_EXT_import_context, > GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, GLX_EXT_visual_rating, > GLX_INTEL_swap_event, GLX_MESA_copy_sub_buffer, GLX_MESA_query_renderer, > GLX_MESA_swap_control, GLX_OML_swap_method, GLX_OML_sync_control, > GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, > GLX_SGIX_visual_select_group, GLX_SGI_make_current_read, > GLX_SGI_swap_control, GLX_SGI_video_sync > Extended renderer info (GLX_MESA_query_renderer): > Vendor: Broadcom (0x14e4) > Device: V3D 4.2 (0xffffffff) > Version: 19.2.0 > Accelerated: yes > Video memory: 3906MB > Unified memory: yes > Preferred profile: compat (0x2) > Max core profile version: 0.0 > Max compat profile version: 2.1 > Max GLES1 profile version: 1.1 > Max GLES[23] profile version: 3.0 > OpenGL vendor string: Broadcom > OpenGL renderer string: V3D 4.2 > OpenGL version string: 2.1 Mesa 19.2.0-rc1 > OpenGL shading language version string: 1.20 > OpenGL extensions: > GL_AMD_conservative_depth, GL_AMD_multi_draw_indirect, > GL_AMD_shader_trinary_minmax, GL_AMD_texture_texture4, > GL_APPLE_packed_pixels, GL_ARB_ES2_compatibility, > GL_ARB_ES3_compatibility, GL_ARB_arrays_of_arrays, GL_ARB_base_instance, > GL_ARB_buffer_storage, GL_ARB_clear_buffer_object, > GL_ARB_color_buffer_float, GL_ARB_compressed_texture_pixel_storage, > GL_ARB_conservative_depth, GL_ARB_copy_buffer, GL_ARB_debug_output, > GL_ARB_depth_buffer_float, GL_ARB_depth_texture, GL_ARB_draw_buffers, > GL_ARB_draw_elements_base_vertex, GL_ARB_draw_indirect, > GL_ARB_draw_instanced, GL_ARB_explicit_attrib_location, > GL_ARB_explicit_uniform_location, GL_ARB_fragment_coord_conventions, > GL_ARB_fragment_program, GL_ARB_fragment_program_shadow, > GL_ARB_fragment_shader, GL_ARB_framebuffer_no_attachments, > GL_ARB_framebuffer_object, GL_ARB_framebuffer_sRGB, > GL_ARB_get_program_binary, GL_ARB_get_texture_sub_image, > GL_ARB_half_float_pixel, GL_ARB_half_float_vertex, > GL_ARB_instanced_arrays, GL_ARB_internalformat_query, > GL_ARB_internalformat_query2, GL_ARB_invalidate_subdata, > GL_ARB_map_buffer_alignment, GL_ARB_map_buffer_range, GL_ARB_multi_bind, > GL_ARB_multi_draw_indirect, GL_ARB_multisample, GL_ARB_multitexture, > GL_ARB_occlusion_query, GL_ARB_occlusion_query2, > GL_ARB_parallel_shader_compile, GL_ARB_pixel_buffer_object, > GL_ARB_point_parameters, GL_ARB_point_sprite, > GL_ARB_program_interface_query, GL_ARB_provoking_vertex, > GL_ARB_robustness, GL_ARB_sampler_objects, > GL_ARB_separate_shader_objects, > GL_ARB_shader_atomic_counter_ops, GL_ARB_shader_atomic_counters, > GL_ARB_shader_bit_encoding, GL_ARB_shader_image_load_store, > GL_ARB_shader_image_size, GL_ARB_shader_objects, > GL_ARB_shader_storage_buffer_object, GL_ARB_shader_texture_lod, > GL_ARB_shading_language_100, GL_ARB_shading_language_420pack, > GL_ARB_shading_language_packing, GL_ARB_shadow, GL_ARB_stencil_texturing, > GL_ARB_sync, GL_ARB_texture_border_clamp, GL_ARB_texture_compression, > GL_ARB_texture_cube_map, GL_ARB_texture_env_add, > GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar, > GL_ARB_texture_env_dot3, GL_ARB_texture_float, GL_ARB_texture_gather, > GL_ARB_texture_mirrored_repeat, GL_ARB_texture_multisample, > GL_ARB_texture_non_power_of_two, GL_ARB_texture_query_levels, > GL_ARB_texture_query_lod, GL_ARB_texture_rectangle, GL_ARB_texture_rg, > GL_ARB_texture_rgb10_a2ui, GL_ARB_texture_stencil8, > GL_ARB_texture_storage, GL_ARB_texture_storage_multisample, > GL_ARB_texture_swizzle, GL_ARB_transform_feedback2, > GL_ARB_transform_feedback_instanced, GL_ARB_transpose_matrix, > GL_ARB_uniform_buffer_object, GL_ARB_vertex_array_object, > GL_ARB_vertex_attrib_binding, GL_ARB_vertex_buffer_object, > GL_ARB_vertex_program, GL_ARB_vertex_shader, > GL_ARB_vertex_type_2_10_10_10_rev, GL_ARB_window_pos, > GL_ATI_blend_equation_separate, GL_ATI_draw_buffers, > GL_ATI_fragment_shader, GL_ATI_separate_stencil, > GL_ATI_texture_env_combine3, GL_ATI_texture_float, GL_EXT_abgr, > GL_EXT_bgra, GL_EXT_blend_color, GL_EXT_blend_equation_separate, > GL_EXT_blend_func_separate, GL_EXT_blend_minmax, GL_EXT_blend_subtract, > GL_EXT_compiled_vertex_array, GL_EXT_copy_texture, GL_EXT_draw_buffers2, > GL_EXT_draw_instanced, GL_EXT_draw_range_elements, GL_EXT_fog_coord, > GL_EXT_framebuffer_blit, GL_EXT_framebuffer_multisample, > GL_EXT_framebuffer_multisample_blit_scaled, GL_EXT_framebuffer_object, > GL_EXT_framebuffer_sRGB, GL_EXT_gpu_program_parameters, > GL_EXT_gpu_shader4, GL_EXT_multi_draw_arrays, > GL_EXT_packed_depth_stencil, > GL_EXT_packed_float, GL_EXT_packed_pixels, GL_EXT_pixel_buffer_object, > GL_EXT_point_parameters, GL_EXT_provoking_vertex, GL_EXT_rescale_normal, > GL_EXT_secondary_color, GL_EXT_separate_specular_color, > GL_EXT_shader_integer_mix, GL_EXT_shadow_funcs, GL_EXT_stencil_two_side, > GL_EXT_stencil_wrap, GL_EXT_subtexture, GL_EXT_texture, GL_EXT_texture3D, > GL_EXT_texture_array, GL_EXT_texture_buffer_object, > GL_EXT_texture_cube_map, GL_EXT_texture_edge_clamp, > GL_EXT_texture_env_add, GL_EXT_texture_env_combine, > GL_EXT_texture_env_dot3, GL_EXT_texture_integer, GL_EXT_texture_lod_bias, > GL_EXT_texture_object, GL_EXT_texture_rectangle, GL_EXT_texture_sRGB, > GL_EXT_texture_sRGB_decode, GL_EXT_texture_shared_exponent, > GL_EXT_texture_snorm, GL_EXT_texture_swizzle, GL_EXT_transform_feedback, > GL_EXT_vertex_array, GL_IBM_multimode_draw_arrays, GL_IBM_rasterpos_clip, > GL_IBM_texture_mirrored_repeat, GL_INGR_blend_func_separate, > GL_KHR_context_flush_control, GL_KHR_debug, GL_KHR_no_error, > GL_KHR_parallel_shader_compile, GL_KHR_texture_compression_astc_ldr, > GL_KHR_texture_compression_astc_sliced_3d, GL_MESA_pack_invert, > GL_MESA_shader_integer_functions, GL_MESA_texture_signed_rgba, > GL_MESA_window_pos, GL_NV_blend_square, GL_NV_fog_distance, > GL_NV_light_max_exponent, GL_NV_packed_depth_stencil, > GL_NV_primitive_restart, GL_NV_texgen_reflection, > GL_NV_texture_env_combine4, GL_NV_texture_rectangle, GL_OES_EGL_image, > GL_OES_read_format, GL_SGIS_generate_mipmap, > GL_SGIS_texture_border_clamp, > GL_SGIS_texture_edge_clamp, GL_SGIS_texture_lod, GL_SUN_multi_draw_arrays > > OpenGL ES profile version string: OpenGL ES 3.0 Mesa 19.2.0-rc1 > OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.00 > OpenGL ES profile extensions: > GL_APPLE_texture_max_level, GL_EXT_base_instance, GL_EXT_blend_minmax, > GL_EXT_color_buffer_float, GL_EXT_compressed_ETC1_RGB8_sub_texture, > GL_EXT_discard_framebuffer, GL_EXT_draw_buffers, > GL_EXT_draw_elements_base_vertex, GL_EXT_float_blend, GL_EXT_frag_depth, > GL_EXT_map_buffer_range, GL_EXT_multi_draw_arrays, > GL_EXT_occlusion_query_boolean, GL_EXT_read_format_bgra, > GL_EXT_sRGB_write_control, GL_EXT_separate_shader_objects, > GL_EXT_shader_integer_mix, GL_EXT_texture_border_clamp, > GL_EXT_texture_format_BGRA8888, GL_EXT_texture_query_lod, > GL_EXT_texture_rg, GL_EXT_texture_sRGB_decode, > GL_EXT_texture_type_2_10_10_10_REV, GL_EXT_unpack_subimage, > GL_KHR_context_flush_control, GL_KHR_debug, GL_KHR_no_error, > GL_KHR_parallel_shader_compile, GL_KHR_texture_compression_astc_ldr, > GL_KHR_texture_compression_astc_sliced_3d, > GL_MESA_shader_integer_functions, GL_NV_draw_buffers, > GL_NV_fbo_color_attachments, GL_NV_read_buffer, GL_NV_read_depth, > GL_NV_read_depth_stencil, GL_NV_read_stencil, GL_OES_EGL_image, > GL_OES_EGL_image_external, GL_OES_EGL_image_external_essl3, > GL_OES_EGL_sync, GL_OES_compressed_ETC1_RGB8_texture, GL_OES_depth24, > GL_OES_depth_texture, GL_OES_depth_texture_cube_map, > GL_OES_draw_elements_base_vertex, GL_OES_element_index_uint, > GL_OES_fbo_render_mipmap, GL_OES_get_program_binary, GL_OES_mapbuffer, > GL_OES_packed_depth_stencil, GL_OES_required_internalformat, > GL_OES_rgb8_rgba8, GL_OES_standard_derivatives, GL_OES_stencil8, > GL_OES_surfaceless_context, GL_OES_texture_3D, > GL_OES_texture_border_clamp, GL_OES_texture_float, > GL_OES_texture_half_float, GL_OES_texture_half_float_linear, > GL_OES_texture_npot, GL_OES_texture_stencil8, GL_OES_vertex_array_object, > GL_OES_vertex_half_float > > 312 GLX Visuals > visual x bf lv rg d st colorbuffer sr ax dp st accumbuffer ms cav > id dep cl sp sz l ci b ro r g b a F gb bf th cl r g b a ns b eat > ---------------------------------------------------------------------------- > 0x021 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x022 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x248 24 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x249 24 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x24a 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x24b 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x24c 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x24d 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x24e 24 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x24f 24 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x250 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x251 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x252 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x253 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x254 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x255 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x256 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x257 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x258 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x259 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x25a 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x25b 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x25c 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x25d 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x25e 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x25f 24 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 4 1 None > 0x260 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 4 1 None > 0x261 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 4 1 None > 0x262 24 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 4 1 None > 0x263 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 4 1 None > 0x264 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 4 1 None > 0x265 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 4 1 None > 0x266 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 4 1 None > 0x267 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 4 1 None > 0x268 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 4 1 None > 0x269 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 4 1 None > 0x26a 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 4 1 None > 0x26b 24 tc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x26c 24 tc 0 24 0 r . . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x26d 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x26e 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x26f 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x270 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x271 24 tc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x272 24 tc 0 24 0 r . . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x273 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x274 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x275 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x276 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x277 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x278 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x279 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x27a 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x27b 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x27c 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x27d 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x27e 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x27f 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x280 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x281 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x282 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x283 24 tc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 4 1 None > 0x284 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 4 1 None > 0x285 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 4 1 None > 0x286 24 tc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 4 1 None > 0x287 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 4 1 None > 0x288 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 4 1 None > 0x289 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 4 1 None > 0x28a 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 4 1 None > 0x28b 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 4 1 None > 0x28c 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 4 1 None > 0x28d 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 4 1 None > 0x28e 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 4 1 None > 0x28f 24 tc 0 32 0 r . . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x290 24 tc 0 32 0 r . . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x291 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x292 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x293 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x294 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x295 24 tc 0 32 0 r . . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x296 24 tc 0 32 0 r . . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x297 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x298 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x299 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x29a 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x29b 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x29c 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x29d 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x29e 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x29f 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x2a0 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x2a1 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x2a2 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x2a3 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x2a4 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x2a5 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x2a6 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x2a7 24 tc 0 32 0 r . . 8 8 8 8 . s 0 0 0 0 0 0 0 4 1 None > 0x2a8 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 4 1 None > 0x2a9 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 4 1 None > 0x2aa 24 tc 0 32 0 r . . 8 8 8 8 . s 0 16 0 0 0 0 0 4 1 None > 0x2ab 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 4 1 None > 0x2ac 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 4 1 None > 0x2ad 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 0 0 0 0 0 4 1 None > 0x2ae 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 4 1 None > 0x2af 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 4 1 None > 0x2b0 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 8 0 0 0 0 4 1 None > 0x2b1 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 4 1 None > 0x2b2 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 4 1 None > 0x2b3 24 tc 0 24 0 r . . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x2b4 24 tc 0 24 0 r . . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x2b5 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x2b6 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x2b7 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x2b8 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x2b9 24 tc 0 24 0 r . . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x2ba 24 tc 0 24 0 r . . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x2bb 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x2bc 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x2bd 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x2be 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x2bf 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x2c0 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x2c1 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x2c2 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x2c3 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x2c4 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x2c5 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x2c6 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x2c7 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x2c8 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x2c9 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x2ca 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x2cb 24 tc 0 24 0 r . . 8 8 8 0 . s 0 0 0 0 0 0 0 4 1 None > 0x2cc 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 4 1 None > 0x2cd 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 4 1 None > 0x2ce 24 tc 0 24 0 r . . 8 8 8 0 . s 0 16 0 0 0 0 0 4 1 None > 0x2cf 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 4 1 None > 0x2d0 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 4 1 None > 0x2d1 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 0 0 0 0 0 4 1 None > 0x2d2 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 4 1 None > 0x2d3 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 4 1 None > 0x2d4 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 8 0 0 0 0 4 1 None > 0x2d5 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 4 1 None > 0x2d6 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 4 1 None > 0x2d7 24 dc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x2d8 24 dc 0 32 0 r . . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x2d9 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x2da 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x2db 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x2dc 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x2dd 24 dc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x2de 24 dc 0 32 0 r . . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x2df 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x2e0 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x2e1 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x2e2 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x2e3 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x2e4 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x2e5 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x2e6 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x2e7 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x2e8 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x2e9 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x2ea 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x2eb 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x2ec 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x2ed 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x2ee 24 dc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 4 1 None > 0x2ef 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 4 1 None > 0x2f0 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 4 1 None > 0x2f1 24 dc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 4 1 None > 0x2f2 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 4 1 None > 0x2f3 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 4 1 None > 0x2f4 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 4 1 None > 0x2f5 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 4 1 None > 0x2f6 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 4 1 None > 0x2f7 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 4 1 None > 0x2f8 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 4 1 None > 0x2f9 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 4 1 None > 0x2fa 24 dc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x2fb 24 dc 0 24 0 r . . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x2fc 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x2fd 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x2fe 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x2ff 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x300 24 dc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x301 24 dc 0 24 0 r . . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x302 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x303 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x304 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x305 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x306 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x307 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x308 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x309 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x30a 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x30b 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x30c 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x30d 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x30e 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x30f 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x310 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x311 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x312 24 dc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 4 1 None > 0x313 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 4 1 None > 0x314 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 4 1 None > 0x315 24 dc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 4 1 None > 0x316 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 4 1 None > 0x317 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 4 1 None > 0x318 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 4 1 None > 0x319 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 4 1 None > 0x31a 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 4 1 None > 0x31b 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 4 1 None > 0x31c 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 4 1 None > 0x31d 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 4 1 None > 0x31e 24 dc 0 32 0 r . . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x31f 24 dc 0 32 0 r . . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x320 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x321 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x322 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x323 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x324 24 dc 0 32 0 r . . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x325 24 dc 0 32 0 r . . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x326 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x327 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x328 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x329 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x32a 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x32b 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x32c 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x32d 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x32e 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x32f 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x330 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x331 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x332 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x333 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x334 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x335 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x336 24 dc 0 32 0 r . . 8 8 8 8 . s 0 0 0 0 0 0 0 4 1 None > 0x337 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 4 1 None > 0x338 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 4 1 None > 0x339 24 dc 0 32 0 r . . 8 8 8 8 . s 0 16 0 0 0 0 0 4 1 None > 0x33a 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 4 1 None > 0x33b 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 4 1 None > 0x33c 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 0 0 0 0 0 4 1 None > 0x33d 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 4 1 None > 0x33e 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 4 1 None > 0x33f 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 8 0 0 0 0 4 1 None > 0x340 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 4 1 None > 0x341 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 4 1 None > 0x342 24 dc 0 24 0 r . . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x343 24 dc 0 24 0 r . . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x344 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x345 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x346 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x347 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x348 24 dc 0 24 0 r . . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x349 24 dc 0 24 0 r . . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x34a 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x34b 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x34c 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x34d 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x34e 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x34f 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x350 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x351 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x352 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x353 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x354 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x355 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x356 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x357 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x358 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x359 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x35a 24 dc 0 24 0 r . . 8 8 8 0 . s 0 0 0 0 0 0 0 4 1 None > 0x35b 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 4 1 None > 0x35c 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 4 1 None > 0x35d 24 dc 0 24 0 r . . 8 8 8 0 . s 0 16 0 0 0 0 0 4 1 None > 0x35e 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 4 1 None > 0x35f 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 4 1 None > 0x360 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 0 0 0 0 0 4 1 None > 0x361 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 4 1 None > 0x362 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 4 1 None > 0x363 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 8 0 0 0 0 4 1 None > 0x364 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 4 1 None > 0x365 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 4 1 None > 0x07f 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x366 32 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x367 32 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x368 32 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x369 32 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x36a 32 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x36b 32 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x36c 32 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x36d 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x36e 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x36f 32 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x370 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x371 32 tc 0 32 0 r . . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x372 32 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x373 32 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x374 32 tc 0 32 0 r . . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x375 32 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x376 32 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x377 32 tc 0 32 0 r . . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x378 32 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x379 32 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x37a 32 tc 0 32 0 r . . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x37b 32 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x37c 32 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > > 456 GLXFBConfigs: > visual x bf lv rg d st colorbuffer sr ax dp st accumbuffer ms cav > id dep cl sp sz l ci b ro r g b a F gb bf th cl r g b a ns b eat > ---------------------------------------------------------------------------- > 0x080 0 tc 0 32 0 r . . 10 10 10 2 . . 0 0 0 0 0 0 0 0 0 None > 0x081 0 tc 0 32 0 r . . 10 10 10 2 . . 0 0 0 16 16 16 16 0 0 Slow > 0x082 0 tc 0 32 0 r y . 10 10 10 2 . . 0 0 0 0 0 0 0 0 0 None > 0x083 0 tc 0 32 0 r y . 10 10 10 2 . . 0 0 0 16 16 16 16 0 0 Slow > 0x084 0 tc 0 32 0 r y . 10 10 10 2 . . 0 0 0 0 0 0 0 0 0 None > 0x085 0 tc 0 32 0 r y . 10 10 10 2 . . 0 0 0 16 16 16 16 0 0 Slow > 0x086 0 tc 0 32 0 r . . 10 10 10 2 . . 0 16 0 0 0 0 0 0 0 None > 0x087 0 tc 0 32 0 r . . 10 10 10 2 . . 0 16 0 16 16 16 16 0 0 Slow > 0x088 0 tc 0 32 0 r y . 10 10 10 2 . . 0 16 0 0 0 0 0 0 0 None > 0x089 0 tc 0 32 0 r y . 10 10 10 2 . . 0 16 0 16 16 16 16 0 0 Slow > 0x08a 0 tc 0 32 0 r y . 10 10 10 2 . . 0 16 0 0 0 0 0 0 0 None > 0x08b 0 tc 0 32 0 r y . 10 10 10 2 . . 0 16 0 16 16 16 16 0 0 Slow > 0x08c 0 tc 0 32 0 r . . 10 10 10 2 . . 0 24 0 0 0 0 0 0 0 None > 0x08d 0 tc 0 32 0 r . . 10 10 10 2 . . 0 24 0 16 16 16 16 0 0 Slow > 0x08e 0 tc 0 32 0 r y . 10 10 10 2 . . 0 24 0 0 0 0 0 0 0 None > 0x08f 0 tc 0 32 0 r y . 10 10 10 2 . . 0 24 0 16 16 16 16 0 0 Slow > 0x090 0 tc 0 32 0 r y . 10 10 10 2 . . 0 24 0 0 0 0 0 0 0 None > 0x091 0 tc 0 32 0 r y . 10 10 10 2 . . 0 24 0 16 16 16 16 0 0 Slow > 0x092 0 tc 0 32 0 r . . 10 10 10 2 . . 0 24 8 0 0 0 0 0 0 None > 0x093 0 tc 0 32 0 r . . 10 10 10 2 . . 0 24 8 16 16 16 16 0 0 Slow > 0x094 0 tc 0 32 0 r y . 10 10 10 2 . . 0 24 8 0 0 0 0 0 0 None > 0x095 0 tc 0 32 0 r y . 10 10 10 2 . . 0 24 8 16 16 16 16 0 0 Slow > 0x096 0 tc 0 32 0 r y . 10 10 10 2 . . 0 24 8 0 0 0 0 0 0 None > 0x097 0 tc 0 32 0 r y . 10 10 10 2 . . 0 24 8 16 16 16 16 0 0 Slow > 0x098 0 tc 0 32 0 r . . 10 10 10 2 . . 0 0 0 0 0 0 0 4 1 None > 0x099 0 tc 0 32 0 r y . 10 10 10 2 . . 0 0 0 0 0 0 0 4 1 None > 0x09a 0 tc 0 32 0 r y . 10 10 10 2 . . 0 0 0 0 0 0 0 4 1 None > 0x09b 0 tc 0 32 0 r . . 10 10 10 2 . . 0 16 0 0 0 0 0 4 1 None > 0x09c 0 tc 0 32 0 r y . 10 10 10 2 . . 0 16 0 0 0 0 0 4 1 None > 0x09d 0 tc 0 32 0 r y . 10 10 10 2 . . 0 16 0 0 0 0 0 4 1 None > 0x09e 0 tc 0 32 0 r . . 10 10 10 2 . . 0 24 0 0 0 0 0 4 1 None > 0x09f 0 tc 0 32 0 r y . 10 10 10 2 . . 0 24 0 0 0 0 0 4 1 None > 0x0a0 0 tc 0 32 0 r y . 10 10 10 2 . . 0 24 0 0 0 0 0 4 1 None > 0x0a1 0 tc 0 32 0 r . . 10 10 10 2 . . 0 24 8 0 0 0 0 4 1 None > 0x0a2 0 tc 0 32 0 r y . 10 10 10 2 . . 0 24 8 0 0 0 0 4 1 None > 0x0a3 0 tc 0 32 0 r y . 10 10 10 2 . . 0 24 8 0 0 0 0 4 1 None > 0x0a4 24 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x0a5 24 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x0a6 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x0a7 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x0a8 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x0a9 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x0aa 24 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x0ab 24 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x0ac 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x0ad 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x0ae 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x0af 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x0b0 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x0b1 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x0b2 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x0b3 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x0b4 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x0b5 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x0b6 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x0b7 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x0b8 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x0b9 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x0ba 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x0bb 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x0bc 24 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 4 1 None > 0x0bd 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 4 1 None > 0x0be 24 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 4 1 None > 0x0bf 24 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 4 1 None > 0x0c0 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 4 1 None > 0x0c1 24 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 4 1 None > 0x0c2 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 4 1 None > 0x0c3 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 4 1 None > 0x0c4 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 4 1 None > 0x0c5 24 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 4 1 None > 0x0c6 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 4 1 None > 0x0c7 24 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 4 1 None > 0x0c8 24 tc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x0c9 24 tc 0 24 0 r . . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x0ca 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x0cb 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x0cc 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x0cd 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x0ce 24 tc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x0cf 24 tc 0 24 0 r . . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x0d0 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x0d1 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x0d2 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x0d3 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x0d4 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x0d5 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x0d6 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x0d7 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x0d8 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x0d9 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x0da 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x0db 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x0dc 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x0dd 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x0de 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x0df 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x0e0 24 tc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 4 1 None > 0x0e1 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 4 1 None > 0x0e2 24 tc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 4 1 None > 0x0e3 24 tc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 4 1 None > 0x0e4 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 4 1 None > 0x0e5 24 tc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 4 1 None > 0x0e6 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 4 1 None > 0x0e7 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 4 1 None > 0x0e8 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 4 1 None > 0x0e9 24 tc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 4 1 None > 0x0ea 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 4 1 None > 0x0eb 24 tc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 4 1 None > 0x0ec 24 tc 0 32 0 r . . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x0ed 24 tc 0 32 0 r . . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x0ee 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x0ef 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x0f0 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x0f1 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x0f2 24 tc 0 32 0 r . . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x0f3 24 tc 0 32 0 r . . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x0f4 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x0f5 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x0f6 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x0f7 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x0f8 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x0f9 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x0fa 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x0fb 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x0fc 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x0fd 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x0fe 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x0ff 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x100 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x101 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x102 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x103 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x104 24 tc 0 32 0 r . . 8 8 8 8 . s 0 0 0 0 0 0 0 4 1 None > 0x105 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 4 1 None > 0x106 24 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 4 1 None > 0x107 24 tc 0 32 0 r . . 8 8 8 8 . s 0 16 0 0 0 0 0 4 1 None > 0x108 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 4 1 None > 0x109 24 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 4 1 None > 0x10a 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 0 0 0 0 0 4 1 None > 0x10b 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 4 1 None > 0x10c 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 4 1 None > 0x10d 24 tc 0 32 0 r . . 8 8 8 8 . s 0 24 8 0 0 0 0 4 1 None > 0x10e 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 4 1 None > 0x10f 24 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 4 1 None > 0x110 24 tc 0 24 0 r . . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x111 24 tc 0 24 0 r . . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x112 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x113 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x114 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x115 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x116 24 tc 0 24 0 r . . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x117 24 tc 0 24 0 r . . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x118 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x119 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x11a 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x11b 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x11c 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x11d 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x11e 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x11f 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x120 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x121 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x122 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x123 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x124 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x125 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x126 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x127 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x128 24 tc 0 24 0 r . . 8 8 8 0 . s 0 0 0 0 0 0 0 4 1 None > 0x129 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 4 1 None > 0x12a 24 tc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 4 1 None > 0x12b 24 tc 0 24 0 r . . 8 8 8 0 . s 0 16 0 0 0 0 0 4 1 None > 0x12c 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 4 1 None > 0x12d 24 tc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 4 1 None > 0x12e 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 0 0 0 0 0 4 1 None > 0x12f 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 4 1 None > 0x130 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 4 1 None > 0x131 24 tc 0 24 0 r . . 8 8 8 0 . s 0 24 8 0 0 0 0 4 1 None > 0x132 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 4 1 None > 0x133 24 tc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 4 1 None > 0x134 0 tc 0 16 0 r . . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 None > 0x135 0 tc 0 16 0 r . . 5 6 5 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x136 0 tc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 None > 0x137 0 tc 0 16 0 r y . 5 6 5 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x138 0 tc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 None > 0x139 0 tc 0 16 0 r y . 5 6 5 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x13a 0 tc 0 16 0 r . . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None > 0x13b 0 tc 0 16 0 r . . 5 6 5 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x13c 0 tc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None > 0x13d 0 tc 0 16 0 r y . 5 6 5 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x13e 0 tc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None > 0x13f 0 tc 0 16 0 r y . 5 6 5 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x140 0 tc 0 16 0 r . . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 None > 0x141 0 tc 0 16 0 r . . 5 6 5 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x142 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 None > 0x143 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x144 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 None > 0x145 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x146 0 tc 0 16 0 r . . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 None > 0x147 0 tc 0 16 0 r . . 5 6 5 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x148 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 None > 0x149 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x14a 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 None > 0x14b 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x14c 0 tc 0 16 0 r . . 5 6 5 0 . . 0 0 0 0 0 0 0 4 1 None > 0x14d 0 tc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 4 1 None > 0x14e 0 tc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 4 1 None > 0x14f 0 tc 0 16 0 r . . 5 6 5 0 . . 0 16 0 0 0 0 0 4 1 None > 0x150 0 tc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 4 1 None > 0x151 0 tc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 4 1 None > 0x152 0 tc 0 16 0 r . . 5 6 5 0 . . 0 24 0 0 0 0 0 4 1 None > 0x153 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 0 0 0 0 0 4 1 None > 0x154 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 0 0 0 0 0 4 1 None > 0x155 0 tc 0 16 0 r . . 5 6 5 0 . . 0 24 8 0 0 0 0 4 1 None > 0x156 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 8 0 0 0 0 4 1 None > 0x157 0 tc 0 16 0 r y . 5 6 5 0 . . 0 24 8 0 0 0 0 4 1 None > 0x158 0 dc 0 32 0 r . . 10 10 10 2 . . 0 0 0 0 0 0 0 0 0 None > 0x159 0 dc 0 32 0 r . . 10 10 10 2 . . 0 0 0 16 16 16 16 0 0 Slow > 0x15a 0 dc 0 32 0 r y . 10 10 10 2 . . 0 0 0 0 0 0 0 0 0 None > 0x15b 0 dc 0 32 0 r y . 10 10 10 2 . . 0 0 0 16 16 16 16 0 0 Slow > 0x15c 0 dc 0 32 0 r y . 10 10 10 2 . . 0 0 0 0 0 0 0 0 0 None > 0x15d 0 dc 0 32 0 r y . 10 10 10 2 . . 0 0 0 16 16 16 16 0 0 Slow > 0x15e 0 dc 0 32 0 r . . 10 10 10 2 . . 0 16 0 0 0 0 0 0 0 None > 0x15f 0 dc 0 32 0 r . . 10 10 10 2 . . 0 16 0 16 16 16 16 0 0 Slow > 0x160 0 dc 0 32 0 r y . 10 10 10 2 . . 0 16 0 0 0 0 0 0 0 None > 0x161 0 dc 0 32 0 r y . 10 10 10 2 . . 0 16 0 16 16 16 16 0 0 Slow > 0x162 0 dc 0 32 0 r y . 10 10 10 2 . . 0 16 0 0 0 0 0 0 0 None > 0x163 0 dc 0 32 0 r y . 10 10 10 2 . . 0 16 0 16 16 16 16 0 0 Slow > 0x164 0 dc 0 32 0 r . . 10 10 10 2 . . 0 24 0 0 0 0 0 0 0 None > 0x165 0 dc 0 32 0 r . . 10 10 10 2 . . 0 24 0 16 16 16 16 0 0 Slow > 0x166 0 dc 0 32 0 r y . 10 10 10 2 . . 0 24 0 0 0 0 0 0 0 None > 0x167 0 dc 0 32 0 r y . 10 10 10 2 . . 0 24 0 16 16 16 16 0 0 Slow > 0x168 0 dc 0 32 0 r y . 10 10 10 2 . . 0 24 0 0 0 0 0 0 0 None > 0x169 0 dc 0 32 0 r y . 10 10 10 2 . . 0 24 0 16 16 16 16 0 0 Slow > 0x16a 0 dc 0 32 0 r . . 10 10 10 2 . . 0 24 8 0 0 0 0 0 0 None > 0x16b 0 dc 0 32 0 r . . 10 10 10 2 . . 0 24 8 16 16 16 16 0 0 Slow > 0x16c 0 dc 0 32 0 r y . 10 10 10 2 . . 0 24 8 0 0 0 0 0 0 None > 0x16d 0 dc 0 32 0 r y . 10 10 10 2 . . 0 24 8 16 16 16 16 0 0 Slow > 0x16e 0 dc 0 32 0 r y . 10 10 10 2 . . 0 24 8 0 0 0 0 0 0 None > 0x16f 0 dc 0 32 0 r y . 10 10 10 2 . . 0 24 8 16 16 16 16 0 0 Slow > 0x170 0 dc 0 32 0 r . . 10 10 10 2 . . 0 0 0 0 0 0 0 4 1 None > 0x171 0 dc 0 32 0 r y . 10 10 10 2 . . 0 0 0 0 0 0 0 4 1 None > 0x172 0 dc 0 32 0 r y . 10 10 10 2 . . 0 0 0 0 0 0 0 4 1 None > 0x173 0 dc 0 32 0 r . . 10 10 10 2 . . 0 16 0 0 0 0 0 4 1 None > 0x174 0 dc 0 32 0 r y . 10 10 10 2 . . 0 16 0 0 0 0 0 4 1 None > 0x175 0 dc 0 32 0 r y . 10 10 10 2 . . 0 16 0 0 0 0 0 4 1 None > 0x176 0 dc 0 32 0 r . . 10 10 10 2 . . 0 24 0 0 0 0 0 4 1 None > 0x177 0 dc 0 32 0 r y . 10 10 10 2 . . 0 24 0 0 0 0 0 4 1 None > 0x178 0 dc 0 32 0 r y . 10 10 10 2 . . 0 24 0 0 0 0 0 4 1 None > 0x179 0 dc 0 32 0 r . . 10 10 10 2 . . 0 24 8 0 0 0 0 4 1 None > 0x17a 0 dc 0 32 0 r y . 10 10 10 2 . . 0 24 8 0 0 0 0 4 1 None > 0x17b 0 dc 0 32 0 r y . 10 10 10 2 . . 0 24 8 0 0 0 0 4 1 None > 0x17c 24 dc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x17d 24 dc 0 32 0 r . . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x17e 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x17f 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x180 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x181 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 16 16 16 16 0 0 Slow > 0x182 24 dc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x183 24 dc 0 32 0 r . . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x184 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x185 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x186 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x187 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 16 16 16 16 0 0 Slow > 0x188 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x189 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x18a 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x18b 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x18c 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x18d 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 16 16 16 16 0 0 Slow > 0x18e 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x18f 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x190 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x191 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x192 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x193 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 16 16 16 16 0 0 Slow > 0x194 24 dc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 4 1 None > 0x195 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 4 1 None > 0x196 24 dc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 4 1 None > 0x197 24 dc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 4 1 None > 0x198 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 4 1 None > 0x199 24 dc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 4 1 None > 0x19a 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 4 1 None > 0x19b 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 4 1 None > 0x19c 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 4 1 None > 0x19d 24 dc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 4 1 None > 0x19e 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 4 1 None > 0x19f 24 dc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 4 1 None > 0x1a0 24 dc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x1a1 24 dc 0 24 0 r . . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x1a2 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x1a3 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x1a4 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 0 0 None > 0x1a5 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x1a6 24 dc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x1a7 24 dc 0 24 0 r . . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x1a8 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x1a9 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x1aa 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 0 0 None > 0x1ab 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x1ac 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x1ad 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x1ae 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x1af 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x1b0 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 0 0 None > 0x1b1 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x1b2 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x1b3 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x1b4 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x1b5 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x1b6 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 0 0 None > 0x1b7 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x1b8 24 dc 0 24 0 r . . 8 8 8 0 . . 0 0 0 0 0 0 0 4 1 None > 0x1b9 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 4 1 None > 0x1ba 24 dc 0 24 0 r y . 8 8 8 0 . . 0 0 0 0 0 0 0 4 1 None > 0x1bb 24 dc 0 24 0 r . . 8 8 8 0 . . 0 16 0 0 0 0 0 4 1 None > 0x1bc 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 4 1 None > 0x1bd 24 dc 0 24 0 r y . 8 8 8 0 . . 0 16 0 0 0 0 0 4 1 None > 0x1be 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 0 0 0 0 0 4 1 None > 0x1bf 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 4 1 None > 0x1c0 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 0 0 0 0 0 4 1 None > 0x1c1 24 dc 0 24 0 r . . 8 8 8 0 . . 0 24 8 0 0 0 0 4 1 None > 0x1c2 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 4 1 None > 0x1c3 24 dc 0 24 0 r y . 8 8 8 0 . . 0 24 8 0 0 0 0 4 1 None > 0x1c4 24 dc 0 32 0 r . . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x1c5 24 dc 0 32 0 r . . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x1c6 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x1c7 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x1c8 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x1c9 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 16 16 16 16 0 0 Slow > 0x1ca 24 dc 0 32 0 r . . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x1cb 24 dc 0 32 0 r . . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x1cc 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x1cd 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x1ce 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x1cf 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 16 16 16 16 0 0 Slow > 0x1d0 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x1d1 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x1d2 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x1d3 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x1d4 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x1d5 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 16 16 16 16 0 0 Slow > 0x1d6 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x1d7 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x1d8 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x1d9 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x1da 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x1db 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 16 16 16 16 0 0 Slow > 0x1dc 24 dc 0 32 0 r . . 8 8 8 8 . s 0 0 0 0 0 0 0 4 1 None > 0x1dd 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 4 1 None > 0x1de 24 dc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 4 1 None > 0x1df 24 dc 0 32 0 r . . 8 8 8 8 . s 0 16 0 0 0 0 0 4 1 None > 0x1e0 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 4 1 None > 0x1e1 24 dc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 4 1 None > 0x1e2 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 0 0 0 0 0 4 1 None > 0x1e3 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 4 1 None > 0x1e4 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 4 1 None > 0x1e5 24 dc 0 32 0 r . . 8 8 8 8 . s 0 24 8 0 0 0 0 4 1 None > 0x1e6 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 4 1 None > 0x1e7 24 dc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 4 1 None > 0x1e8 24 dc 0 24 0 r . . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x1e9 24 dc 0 24 0 r . . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x1ea 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x1eb 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x1ec 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 0 0 None > 0x1ed 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 16 16 16 0 0 0 Slow > 0x1ee 24 dc 0 24 0 r . . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x1ef 24 dc 0 24 0 r . . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x1f0 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x1f1 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x1f2 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 0 0 None > 0x1f3 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 16 16 16 0 0 0 Slow > 0x1f4 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x1f5 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x1f6 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x1f7 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x1f8 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 0 0 None > 0x1f9 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 16 16 16 0 0 0 Slow > 0x1fa 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x1fb 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x1fc 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x1fd 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x1fe 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 0 0 None > 0x1ff 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 16 16 16 0 0 0 Slow > 0x200 24 dc 0 24 0 r . . 8 8 8 0 . s 0 0 0 0 0 0 0 4 1 None > 0x201 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 4 1 None > 0x202 24 dc 0 24 0 r y . 8 8 8 0 . s 0 0 0 0 0 0 0 4 1 None > 0x203 24 dc 0 24 0 r . . 8 8 8 0 . s 0 16 0 0 0 0 0 4 1 None > 0x204 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 4 1 None > 0x205 24 dc 0 24 0 r y . 8 8 8 0 . s 0 16 0 0 0 0 0 4 1 None > 0x206 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 0 0 0 0 0 4 1 None > 0x207 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 4 1 None > 0x208 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 0 0 0 0 0 4 1 None > 0x209 24 dc 0 24 0 r . . 8 8 8 0 . s 0 24 8 0 0 0 0 4 1 None > 0x20a 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 4 1 None > 0x20b 24 dc 0 24 0 r y . 8 8 8 0 . s 0 24 8 0 0 0 0 4 1 None > 0x20c 0 dc 0 16 0 r . . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 None > 0x20d 0 dc 0 16 0 r . . 5 6 5 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x20e 0 dc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 None > 0x20f 0 dc 0 16 0 r y . 5 6 5 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x210 0 dc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 0 0 None > 0x211 0 dc 0 16 0 r y . 5 6 5 0 . . 0 0 0 16 16 16 0 0 0 Slow > 0x212 0 dc 0 16 0 r . . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None > 0x213 0 dc 0 16 0 r . . 5 6 5 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x214 0 dc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None > 0x215 0 dc 0 16 0 r y . 5 6 5 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x216 0 dc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 0 0 None > 0x217 0 dc 0 16 0 r y . 5 6 5 0 . . 0 16 0 16 16 16 0 0 0 Slow > 0x218 0 dc 0 16 0 r . . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 None > 0x219 0 dc 0 16 0 r . . 5 6 5 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x21a 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 None > 0x21b 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x21c 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 0 0 0 0 0 0 0 None > 0x21d 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 0 16 16 16 0 0 0 Slow > 0x21e 0 dc 0 16 0 r . . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 None > 0x21f 0 dc 0 16 0 r . . 5 6 5 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x220 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 None > 0x221 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x222 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 8 0 0 0 0 0 0 None > 0x223 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 8 16 16 16 0 0 0 Slow > 0x224 0 dc 0 16 0 r . . 5 6 5 0 . . 0 0 0 0 0 0 0 4 1 None > 0x225 0 dc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 4 1 None > 0x226 0 dc 0 16 0 r y . 5 6 5 0 . . 0 0 0 0 0 0 0 4 1 None > 0x227 0 dc 0 16 0 r . . 5 6 5 0 . . 0 16 0 0 0 0 0 4 1 None > 0x228 0 dc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 4 1 None > 0x229 0 dc 0 16 0 r y . 5 6 5 0 . . 0 16 0 0 0 0 0 4 1 None > 0x22a 0 dc 0 16 0 r . . 5 6 5 0 . . 0 24 0 0 0 0 0 4 1 None > 0x22b 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 0 0 0 0 0 4 1 None > 0x22c 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 0 0 0 0 0 4 1 None > 0x22d 0 dc 0 16 0 r . . 5 6 5 0 . . 0 24 8 0 0 0 0 4 1 None > 0x22e 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 8 0 0 0 0 4 1 None > 0x22f 0 dc 0 16 0 r y . 5 6 5 0 . . 0 24 8 0 0 0 0 4 1 None > 0x230 32 tc 0 32 0 r . . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x231 32 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x232 32 tc 0 32 0 r y . 8 8 8 8 . . 0 0 0 0 0 0 0 0 0 None > 0x233 32 tc 0 32 0 r . . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x234 32 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x235 32 tc 0 32 0 r y . 8 8 8 8 . . 0 16 0 0 0 0 0 0 0 None > 0x236 32 tc 0 32 0 r . . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x237 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x238 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 0 0 0 0 0 0 0 None > 0x239 32 tc 0 32 0 r . . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x23a 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x23b 32 tc 0 32 0 r y . 8 8 8 8 . . 0 24 8 0 0 0 0 0 0 None > 0x23c 32 tc 0 32 0 r . . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x23d 32 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x23e 32 tc 0 32 0 r y . 8 8 8 8 . s 0 0 0 0 0 0 0 0 0 None > 0x23f 32 tc 0 32 0 r . . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x240 32 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x241 32 tc 0 32 0 r y . 8 8 8 8 . s 0 16 0 0 0 0 0 0 0 None > 0x242 32 tc 0 32 0 r . . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x243 32 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x244 32 tc 0 32 0 r y . 8 8 8 8 . s 0 24 0 0 0 0 0 0 0 None > 0x245 32 tc 0 32 0 r . . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x246 32 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > 0x247 32 tc 0 32 0 r y . 8 8 8 8 . s 0 24 8 0 0 0 0 0 0 None > > This is the version of Java I'm using (it's the latest one in the normal > Raspbian repo) > > pi@raspberrypi:~ $ java --version > openjdk 11.0.5 2019-10-15 > OpenJDK Runtime Environment (build 11.0.5+10-post-Raspbian-1deb10u1) > OpenJDK Server VM (build 11.0.5+10-post-Raspbian-1deb10u1, mixed mode) > > Here is what happens when I try to run my Java/JOGL program: > > pi@raspberrypi:~ $ java -jar Downloads/TelemetryViewer.jar > WARNING: An illegal reflective access operation has occurred > WARNING: Illegal reflective access by com.jogamp.common.os.NativeLibrary$3 > (rsrc:jogamp-fat.jar) to method > java.lang.ClassLoader.findLibrary(java.lang.String) > WARNING: Please consider reporting this to the maintainers of > com.jogamp.common.os.NativeLibrary$3 > WARNING: Use --illegal-access=warn to enable warnings of further illegal > reflective access operations > WARNING: All illegal access operations will be denied in a future release > # > # A fatal error has been detected by the Java Runtime Environment: > # > # SIGSEGV (0xb) at pc=0xb6f86ab0, pid=2398, tid=2399 > # > # JRE version: OpenJDK Runtime Environment (11.0.5+10) (build > 11.0.5+10-post-Raspbian-1deb10u1) > # Java VM: OpenJDK Server VM (11.0.5+10-post-Raspbian-1deb10u1, mixed > mode, g1 gc, linux-) > # Problematic frame: > # C [ld-linux-armhf.so.3+0x9ab0] > # > # No core dump will be written. Core dumps have been disabled. To enable > core dumping, try "ulimit -c unlimited" before starting Java again > # > # An error report file with more information is saved as: > # /home/pi/hs_err_pid2398.log > # > # If you would like to submit a bug report, please visit: > # Unknown > # The crash happened outside the Java Virtual Machine in native code. > # See problematic frame for where to report the bug. > # > Aborted > pi@raspberrypi:~ $ cat hs_err_pid2398.log > # > # A fatal error has been detected by the Java Runtime Environment: > # > # SIGSEGV (0xb) at pc=0xb6f86ab0, pid=2398, tid=2399 > # > # JRE version: OpenJDK Runtime Environment (11.0.5+10) (build > 11.0.5+10-post-Raspbian-1deb10u1) > # Java VM: OpenJDK Server VM (11.0.5+10-post-Raspbian-1deb10u1, mixed > mode, g1 gc, linux-) > # Problematic frame: > # C [ld-linux-armhf.so.3+0x9ab0] > # > # No core dump will be written. Core dumps have been disabled. To enable > core dumping, try "ulimit -c unlimited" before starting Java again > # > # If you would like to submit a bug report, please visit: > # Unknown > # The crash happened outside the Java Virtual Machine in native code. > # See problematic frame for where to report the bug. > # > > --------------- S U M M A R Y ------------ > > Command Line: Downloads/TelemetryViewer.jar > > Host: rev 3 (v7l), 4 cores, 3G, Raspbian GNU/Linux 10 (buster) > Time: Sun Dec 22 16:31:10 2019 PST elapsed time: 4 seconds (0d 0h 0m 4s) > > --------------- T H R E A D --------------- > > Current thread (0xb5f0d400): JavaThread "main" [_thread_in_native, > id=2399, stack(0xb606b000,0xb60bb000)] > > Stack: [0xb606b000,0xb60bb000], sp=0xb60b7b70, free space=306k > Native frames: (J=compiled Java code, A=aot compiled Java code, > j=interpreted, Vv=VM code, C=native code) > C [ld-linux-armhf.so.3+0x9ab0] > > Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) > j java.lang.ClassLoader$NativeLibrary.findEntry(Ljava/lang/String;)J+0 > java.base@11.0.5 > j > java.lang.ClassLoader.findNative(Ljava/lang/ClassLoader;Ljava/lang/String;)J+61 > java.base@11.0.5 > v ~StubRoutines::call_stub > j jogamp.common.os.UnixDynamicLinkerImpl.dlopen(Ljava/lang/String;I)J+0 > j > jogamp.common.os.PosixDynamicLinkerImpl.openLibraryGlobalImpl(Ljava/lang/String;)J+4 > > j > jogamp.common.os.DynamicLinkerImpl.openLibraryGlobal(Ljava/lang/String;Z)J+7 > j > com.jogamp.common.os.NativeLibrary.open(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZLjava/lang/ClassLoader;Z)Lcom/jogamp/common/os/NativeLibrary;+206 > > j > com.jogamp.common.os.NativeLibrary.open(Ljava/lang/String;ZZLjava/lang/ClassLoader;Z)Lcom/jogamp/common/os/NativeLibrary;+8 > > j > com.jogamp.common.os.DynamicLibraryBundle.loadFirstAvailable(Ljava/util/List;ZZLjava/lang/ClassLoader;Z)Lcom/jogamp/common/os/NativeLibrary;+30 > > j > com.jogamp.common.os.DynamicLibraryBundle.loadLibraries()Lcom/jogamp/common/os/DynamicLinker;+97 > > j com.jogamp.common.os.DynamicLibraryBundle$1.run()V+9 > j > com.jogamp.common.util.RunnableExecutor$CurrentThreadExecutor.invoke(ZLjava/lang/Runnable;)V+1 > > j > com.jogamp.common.os.DynamicLibraryBundle.<init>(Lcom/jogamp/common/os/DynamicLibraryBundleInfo;)V+260 > > j > jogamp.opengl.GLDynamicLookupHelper.<init>(Ljogamp/opengl/GLDynamicLibraryBundleInfo;)V+2 > > j > jogamp.opengl.DesktopGLDynamicLookupHelper.<init>(Ljogamp/opengl/DesktopGLDynamicLibraryBundleInfo;)V+2 > > j > jogamp.opengl.x11.glx.X11GLXDrawableFactory$1.run()Ljogamp/opengl/DesktopGLDynamicLookupHelper;+11 > > j jogamp.opengl.x11.glx.X11GLXDrawableFactory$1.run()Ljava/lang/Object;+1 > v ~StubRoutines::call_stub > j > java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;)Ljava/lang/Object;+0 > java.base@11.0.5 > j jogamp.opengl.x11.glx.X11GLXDrawableFactory.<init>()V+24 > v ~StubRoutines::call_stub > j > jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Ljava/lang/reflect/Constructor;[Ljava/lang/Object;)Ljava/lang/Object;+0 > java.base@11.0.5 > j > jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance([Ljava/lang/Object;)Ljava/lang/Object;+85 > java.base@11.0.5 > j > jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance([Ljava/lang/Object;)Ljava/lang/Object;+5 > java.base@11.0.5 > j > java.lang.reflect.Constructor.newInstance([Ljava/lang/Object;)Ljava/lang/Object;+68 > java.base@11.0.5 > j > com.jogamp.common.util.ReflectionUtil.createInstance(Ljava/lang/reflect/Constructor;[Ljava/lang/Object;)Ljava/lang/Object;+2 > > j > com.jogamp.common.util.ReflectionUtil.createInstance(Ljava/lang/Class;[Ljava/lang/Class;[Ljava/lang/Object;)Ljava/lang/Object;+6 > > j > com.jogamp.common.util.ReflectionUtil.createInstance(Ljava/lang/String;[Ljava/lang/Class;[Ljava/lang/Object;Ljava/lang/ClassLoader;)Ljava/lang/Object;+8 > > j > com.jogamp.common.util.ReflectionUtil.createInstance(Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/lang/Object;+4 > > j com.jogamp.opengl.GLDrawableFactory.initSingletonImpl()V+176 > j com.jogamp.opengl.GLDrawableFactory.initSingleton()V+21 > j com.jogamp.opengl.GLProfile.initProfilesForDefaultDevices()V+107 > j com.jogamp.opengl.GLProfile.access$000()V+0 > j com.jogamp.opengl.GLProfile$1.run()Ljava/lang/Object;+59 > v ~StubRoutines::call_stub > j > java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;)Ljava/lang/Object;+0 > java.base@11.0.5 > j com.jogamp.opengl.GLProfile.initSingleton()V+78 > j > com.jogamp.opengl.GLProfile.getProfileMap(Lcom/jogamp/nativewindow/AbstractGraphicsDevice;Z)Ljava/util/HashMap;+0 > > j > com.jogamp.opengl.GLProfile.get(Lcom/jogamp/nativewindow/AbstractGraphicsDevice;Ljava/lang/String;)Lcom/jogamp/opengl/GLProfile;+16 > > j > com.jogamp.opengl.GLProfile.get(Ljava/lang/String;)Lcom/jogamp/opengl/GLProfile;+4 > > j OpenGLChartsRegion.<init>(LSettingsView;LControlsRegion;)V+134 > j Main.main([Ljava/lang/String;)V+53 > v ~StubRoutines::call_stub > j > jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 > java.base@11.0.5 > j > jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+100 > java.base@11.0.5 > j > jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 > java.base@11.0.5 > j > java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+59 > java.base@11.0.5 > j > org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader.main([Ljava/lang/String;)V+197 > > v ~StubRoutines::call_stub > > siginfo: si_signo: 11 (SIGSEGV), si_code: 1 (SEGV_MAPERR), si_addr: > 0x000003a4 > > Register to memory mapping: > > r0 = 0x6f810948 > 0x6f810948 points into unknown readable memory: 4a 61 76 61 > > r1 = 0x00000000 > 0x0 is NULL > > r2 = 0x00000000 > 0x0 is NULL > > r3 = 0x00000002 > 0x00000002 is an unknown value > > r4 = 0x6fdf0fe0 > 0x6fdf0fe0 points into unknown readable memory: 00 50 85 70 > > r5 = 0x000003a0 > 0x000003a0 is an unknown value > > r6 = 0x6fdf0fe0 > 0x6fdf0fe0 points into unknown readable memory: 00 50 85 70 > > r7 = 0x3c887d4d > 0x3c887d4d is an unknown value > > r8 = 0xb60b7be0 > 0xb60b7be0 is pointing into the stack for thread: 0xb5f0d400 > > r9 = 0x00000000 > 0x0 is NULL > > r10 = 0xb60b7be4 > 0xb60b7be4 is pointing into the stack for thread: 0xb5f0d400 > > fp = 0x6f810948 > 0x6f810948 points into unknown readable memory: 4a 61 76 61 > > r12 = 0x708551b4 > > [error occurred during error reporting (printing register info), id 0xb, > SIGSEGV (0xb) at pc=0xb6e91530] > > Registers: > r0 = 0x6f810948 > r1 = 0x00000000 > r2 = 0x00000000 > r3 = 0x00000002 > r4 = 0x6fdf0fe0 > r5 = 0x000003a0 > r6 = 0x6fdf0fe0 > r7 = 0x3c887d4d > r8 = 0xb60b7be0 > r9 = 0x00000000 > r10 = 0xb60b7be4 > fp = 0x6f810948 > r12 = 0x708551b4 > sp = 0xb60b7b70 > lr = 0xb6f87000 > pc = 0xb6f86ab0 > cpsr = 0x60000010 > > Top of Stack: (sp=0xb60b7b70) > 0xb60b7b70: 6fdf0fe0 70855248 00000012 3c887d4d > 0xb60b7b80: b60b7be0 b6f87000 00000000 000003a0 > 0xb60b7b90: 00000012 00000490 6fdf0fe0 b60b7be4 > 0xb60b7ba0: b60b7be0 b6ec7000 00000077 00000000 > 0xb60b7bb0: 00000490 00000280 3c887d4d 01e443ea > 0xb60b7bc0: 6f810948 00000000 b60b7c54 b6fad970 > 0xb60b7bd0: b6fae000 6fdf1348 00000001 b6fad970 > 0xb60b7be0: 00000000 00000000 00000000 3c887d4d > > Instructions: (pc=0xb6f86ab0) > 0xb6f869b0: e59f90e0 e1a04000 e08f9009 e1a0800d > 0xb6f869c0: ea000005 e1a00008 e1a0100c ebfff965 > 0xb6f869d0: e5944170 e3540000 0a00000d e594c19c > 0xb6f869e0: e37c0001 0afffff9 e35c0000 e2841f67 > 0xb6f869f0: e1a03009 e3a0200f e1a00004 1afffff0 > 0xb6f86a00: ebfffb92 e3500000 0afffff0 e594c19c > 0xb6f86a10: eaffffeb e5963018 e3530000 1affffbc > 0xb6f86a20: e59f3074 e79f4003 e3540000 0affffb8 > 0xb6f86a30: e5d43198 e2033003 e3530002 11560004 > 0xb6f86a40: 0affffb3 e594119c e3710001 0affffb0 > 0xb6f86a50: e3510000 0a000002 e1a00008 ebfff941 > 0xb6f86a60: eaffffab e59f3034 e3a0200f e08f3003 > 0xb6f86a70: e2841f67 e1a00004 ebfffb74 e3500000 > 0xb6f86a80: 0affffa3 e594119c eafffff2 00027204 > 0xb6f86a90: 0001496c 00027180 00014934 00027634 > 0xb6f86aa0: 00014880 e92d41f0 e59d501c e59d6028 > 0xb6f86ab0: e595e004 e5d5c00c e35e0000 e1d5e0be > 0xb6f86ac0: e20cc00f 0a000046 e59d4018 e35e0000 > 0xb6f86ad0: 13a04000 02044001 e3540000 e1a0e004 > 0xb6f86ae0: 1a000043 e59fe164 e1a0cc5e e31c0001 > 0xb6f86af0: 0a00003f e1a04002 e1a02001 e1550002 > 0xb6f86b00: e1a07003 e1a01000 0a000005 e59d3024 > 0xb6f86b10: e5950000 e0830000 eb0042bf e3500000 > 0xb6f86b20: 1a000033 e3540000 e59631a8 0a000013 > 0xb6f86b30: e3530000 0a000036 e59d2020 e1a01082 > 0xb6f86b40: e5962174 e19370b1 e5941004 e1a03887 > 0xb6f86b50: e1a038a3 e0820203 e5906004 e1560001 > 0xb6f86b60: 0a000025 e5943008 e1963003 1a000020 > 0xb6f86b70: e3170902 1a00001e e1a00005 e8bd81f0 > 0xb6f86b80: e3530000 0afffffb e59d2020 e3170002 > 0xb6f86b90: 13a01002 e1a02082 03a01003 e19320b2 > 0xb6f86ba0: e1a03882 e1a038a3 e1530001 bafffff1 > > > Stack slot to memory mapping: > stack at sp + 0 slots: 0x6fdf0fe0 points into unknown readable memory: 00 > 50 85 70 > stack at sp + 1 slots: > [error occurred during error reporting (inspecting top of stack), id 0xb, > SIGSEGV (0xb) at pc=0xb6e91530] > > > --------------- P R O C E S S --------------- > > Threads class SMR info: > _java_thread_list=0x0026f458, length=13, elements={ > 0xb5f0d400, 0x73832800, 0x73836000, 0x7383ec00, > 0x73840400, 0x73842c00, 0x73889400, 0x7388e800, > 0x70713800, 0x70716000, 0x6fdb2800, 0x6f805c00, > 0x6f806400 > } > > Java Threads: ( => current thread ) > =>0xb5f0d400 JavaThread "main" [_thread_in_native, id=2399, > stack(0xb606b000,0xb60bb000)] > 0x73832800 JavaThread "Reference Handler" daemon [_thread_blocked, > id=2406, stack(0x73f2e000,0x73f7e000)] > 0x73836000 JavaThread "Finalizer" daemon [_thread_blocked, id=2407, > stack(0x737b0000,0x73800000)] > 0x7383ec00 JavaThread "Signal Dispatcher" daemon [_thread_blocked, > id=2408, stack(0x73760000,0x737b0000)] > 0x73840400 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, > id=2409, stack(0x73106000,0x73186000)] > 0x73842c00 JavaThread "Sweeper thread" daemon [_thread_blocked, id=2410, > stack(0x73710000,0x73760000)] > 0x73889400 JavaThread "Service Thread" daemon [_thread_blocked, id=2411, > stack(0x730b6000,0x73106000)] > 0x7388e800 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=2413, > stack(0x72fe4000,0x73034000)] > 0x70713800 JavaThread "Java2D Disposer" daemon [_thread_blocked, > id=2421, stack(0x706b0000,0x70700000)] > 0x70716000 JavaThread "AWT-XAWT" daemon [_thread_in_native, id=2422, > stack(0x70660000,0x706b0000)] > 0x6fdb2800 JavaThread "process reaper" daemon [_thread_blocked, id=2432, > stack(0x70803000,0x70823000)] > 0x6f805c00 JavaThread "AWT-Shutdown" [_thread_blocked, id=2435, > stack(0x6fe2e000,0x6fe7e000)] > 0x6f806400 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=2436, > stack(0x70410000,0x70460000)] > > Other Threads: > 0x7382c400 VMThread "VM Thread" [stack: 0x73934000,0x739b4000] [id=2405] > 0x7388ac00 WatcherThread [stack: 0x73036000,0x730b6000] [id=2412] > 0xb5f21c00 GCTaskThread "GC Thread#0" [stack: 0xb3c9e000,0xb3d1e000] > [id=2400] > 0x73600c00 GCTaskThread "GC Thread#1" [stack: 0x6fe80000,0x6ff00000] > [id=2423] > 0x73602c00 GCTaskThread "GC Thread#2" [stack: 0x6fb80000,0x6fc00000] > [id=2429] > 0x73603c00 GCTaskThread "GC Thread#3" [stack: 0x6fafe000,0x6fb7e000] > [id=2430] > 0xb5f76400 ConcurrentGCThread "G1 Main Marker" [stack: > 0xb3c0b000,0xb3c8b000] [id=2401] > 0xb5f77800 ConcurrentGCThread "G1 Conc#0" [stack: 0xb3a80000,0xb3b00000] > [id=2402] > 0xb5fddc00 ConcurrentGCThread "G1 Refine#0" [stack: > 0x74335000,0x743b5000] [id=2403] > 0xb5fdf400 ConcurrentGCThread "G1 Young RemSet Sampling" [stack: > 0x73f80000,0x74000000] [id=2404] > > Threads with active compile tasks: > > VM state:not at safepoint (normal execution) > > VM Mutex/Monitor currently owned by a thread: None > > Heap: > garbage-first heap total 63488K, used 19749K [0x76800000, 0xb3a00000) > region size 1024K, 17 young (17408K), 1 survivors (1024K) > Metaspace used 15254K, capacity 15503K, committed 15640K, reserved > 15664K > Heap Regions: E=young(eden), S=young(survivor), O=old, > HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, > A=archive, TAMS=top-at-mark-start (previous, next) > | 0|0x76800000, 0x76900000, 0x76900000|100%| O| |TAMS 0x76800000, > 0x76800000| Untracked > | 1|0x76900000, 0x76a00000, 0x76a00000|100%| O| |TAMS 0x76900000, > 0x76900000| Untracked > | 2|0x76a00000, 0x76b00000, 0x76b00000|100%| O| |TAMS 0x76a00000, > 0x76a00000| Untracked > | 3|0x76b00000, 0x76b49600, 0x76c00000| 28%| O| |TAMS 0x76b00000, > 0x76b00000| Untracked > | 4|0x76c00000, 0x76d00000, 0x76d00000|100%|HS| |TAMS 0x76c00000, > 0x76c00000| Complete > | 5|0x76d00000, 0x76d00000, 0x76e00000| 0%| F| |TAMS 0x76d00000, > 0x76d00000| Untracked > | 6|0x76e00000, 0x76e00000, 0x76f00000| 0%| F| |TAMS 0x76e00000, > 0x76e00000| Untracked > | 7|0x76f00000, 0x76f00000, 0x77000000| 0%| F| |TAMS 0x76f00000, > 0x76f00000| Untracked > | 8|0x77000000, 0x77000000, 0x77100000| 0%| F| |TAMS 0x77000000, > 0x77000000| Untracked > | 9|0x77100000, 0x77100000, 0x77200000| 0%| F| |TAMS 0x77100000, > 0x77100000| Untracked > | 10|0x77200000, 0x77200000, 0x77300000| 0%| F| |TAMS 0x77200000, > 0x77200000| Untracked > | 11|0x77300000, 0x77300000, 0x77400000| 0%| F| |TAMS 0x77300000, > 0x77300000| Untracked > | 12|0x77400000, 0x77400000, 0x77500000| 0%| F| |TAMS 0x77400000, > 0x77400000| Untracked > | 13|0x77500000, 0x77500000, 0x77600000| 0%| F| |TAMS 0x77500000, > 0x77500000| Untracked > | 14|0x77600000, 0x77600000, 0x77700000| 0%| F| |TAMS 0x77600000, > 0x77600000| Untracked > | 15|0x77700000, 0x77700000, 0x77800000| 0%| F| |TAMS 0x77700000, > 0x77700000| Untracked > | 16|0x77800000, 0x77800000, 0x77900000| 0%| F| |TAMS 0x77800000, > 0x77800000| Untracked > | 17|0x77900000, 0x77900000, 0x77a00000| 0%| F| |TAMS 0x77900000, > 0x77900000| Untracked > | 18|0x77a00000, 0x77a00000, 0x77b00000| 0%| F| |TAMS 0x77a00000, > 0x77a00000| Untracked > | 19|0x77b00000, 0x77b00000, 0x77c00000| 0%| F| |TAMS 0x77b00000, > 0x77b00000| Untracked > | 20|0x77c00000, 0x77c00000, 0x77d00000| 0%| F| |TAMS 0x77c00000, > 0x77c00000| Untracked > | 21|0x77d00000, 0x77d00000, 0x77e00000| 0%| F| |TAMS 0x77d00000, > 0x77d00000| Untracked > | 22|0x77e00000, 0x77e00000, 0x77f00000| 0%| F| |TAMS 0x77e00000, > 0x77e00000| Untracked > | 23|0x77f00000, 0x77f00000, 0x78000000| 0%| F| |TAMS 0x77f00000, > 0x77f00000| Untracked > | 24|0x78000000, 0x78000000, 0x78100000| 0%| F| |TAMS 0x78000000, > 0x78000000| Untracked > | 25|0x78100000, 0x78100000, 0x78200000| 0%| F| |TAMS 0x78100000, > 0x78100000| Untracked > | 26|0x78200000, 0x78200000, 0x78300000| 0%| F| |TAMS 0x78200000, > 0x78200000| Untracked > | 27|0x78300000, 0x78300000, 0x78400000| 0%| F| |TAMS 0x78300000, > 0x78300000| Untracked > | 28|0x78400000, 0x78400000, 0x78500000| 0%| F| |TAMS 0x78400000, > 0x78400000| Untracked > | 29|0x78500000, 0x78500000, 0x78600000| 0%| F| |TAMS 0x78500000, > 0x78500000| Untracked > | 30|0x78600000, 0x78600000, 0x78700000| 0%| F| |TAMS 0x78600000, > 0x78600000| Untracked > | 31|0x78700000, 0x78700000, 0x78800000| 0%| F| |TAMS 0x78700000, > 0x78700000| Untracked > | 32|0x78800000, 0x78800000, 0x78900000| 0%| F| |TAMS 0x78800000, > 0x78800000| Untracked > | 33|0x78900000, 0x78900000, 0x78a00000| 0%| F| |TAMS 0x78900000, > 0x78900000| Untracked > | 34|0x78a00000, 0x78a00000, 0x78b00000| 0%| F| |TAMS 0x78a00000, > 0x78a00000| Untracked > | 35|0x78b00000, 0x78b00000, 0x78c00000| 0%| F| |TAMS 0x78b00000, > 0x78b00000| Untracked > | 36|0x78c00000, 0x78c00000, 0x78d00000| 0%| F| |TAMS 0x78c00000, > 0x78c00000| Untracked > | 37|0x78d00000, 0x78d00000, 0x78e00000| 0%| F| |TAMS 0x78d00000, > 0x78d00000| Untracked > | 38|0x78e00000, 0x78e00000, 0x78f00000| 0%| F| |TAMS 0x78e00000, > 0x78e00000| Untracked > | 39|0x78f00000, 0x78f00000, 0x79000000| 0%| F| |TAMS 0x78f00000, > 0x78f00000| Untracked > | 40|0x79000000, 0x79000000, 0x79100000| 0%| F| |TAMS 0x79000000, > 0x79000000| Untracked > | 41|0x79100000, 0x79100000, 0x79200000| 0%| F| |TAMS 0x79100000, > 0x79100000| Untracked > | 42|0x79200000, 0x79200000, 0x79300000| 0%| F| |TAMS 0x79200000, > 0x79200000| Untracked > | 43|0x79300000, 0x79300000, 0x79400000| 0%| F| |TAMS 0x79300000, > 0x79300000| Untracked > | 44|0x79400000, 0x79400000, 0x79500000| 0%| F| |TAMS 0x79400000, > 0x79400000| Untracked > | 45|0x79500000, 0x795f7e10, 0x79600000| 96%| E| |TAMS 0x79500000, > 0x79500000| Complete > | 46|0x79600000, 0x79700000, 0x79700000|100%| E|CS|TAMS 0x79600000, > 0x79600000| Complete > | 47|0x79700000, 0x79800000, 0x79800000|100%| E| |TAMS 0x79700000, > 0x79700000| Complete > | 48|0x79800000, 0x79900000, 0x79900000|100%| E|CS|TAMS 0x79800000, > 0x79800000| Complete > | 49|0x79900000, 0x79a00000, 0x79a00000|100%| E|CS|TAMS 0x79900000, > 0x79900000| Complete > | 50|0x79a00000, 0x79b00000, 0x79b00000|100%| E|CS|TAMS 0x79a00000, > 0x79a00000| Complete > | 51|0x79b00000, 0x79c00000, 0x79c00000|100%| E|CS|TAMS 0x79b00000, > 0x79b00000| Complete > | 52|0x79c00000, 0x79d00000, 0x79d00000|100%| E|CS|TAMS 0x79c00000, > 0x79c00000| Complete > | 53|0x79d00000, 0x79e00000, 0x79e00000|100%| E|CS|TAMS 0x79d00000, > 0x79d00000| Complete > | 54|0x79e00000, 0x79f00000, 0x79f00000|100%| E|CS|TAMS 0x79e00000, > 0x79e00000| Complete > | 55|0x79f00000, 0x7a000000, 0x7a000000|100%| E|CS|TAMS 0x79f00000, > 0x79f00000| Complete > | 56|0x7a000000, 0x7a100000, 0x7a100000|100%| E|CS|TAMS 0x7a000000, > 0x7a000000| Complete > | 57|0x7a100000, 0x7a200000, 0x7a200000|100%| S|CS|TAMS 0x7a100000, > 0x7a100000| Complete > | 58|0x7a200000, 0x7a300000, 0x7a300000|100%| E|CS|TAMS 0x7a200000, > 0x7a200000| Complete > | 59|0x7a300000, 0x7a400000, 0x7a400000|100%| E|CS|TAMS 0x7a300000, > 0x7a300000| Complete > | 60|0x7a400000, 0x7a500000, 0x7a500000|100%| E|CS|TAMS 0x7a400000, > 0x7a400000| Complete > | 61|0x7a500000, 0x7a600000, 0x7a600000|100%| E|CS|TAMS 0x7a500000, > 0x7a500000| Complete > > Card table byte_map: [0x7642e000,0x76617000] _byte_map_base: 0x7607a000 > > Marking Bits (Prev, Next): (CMBitMap*) 0xb5f73a64, (CMBitMap*) 0xb5f73a80 > Prev Bits: [0x752fd000, 0x76245000) > Next Bits: [0x743b5000, 0x752fd000) > > Polling page: 0xb6fa8000 > > Metaspace: > > Usage: > 15.14 MB capacity, 14.90 MB ( 98%) used, 171.30 KB ( 1%) > free+waste, 77.42 KB ( <1%) overhead. > > Virtual space: > 15.30 MB reserved, 15.27 MB (>99%) committed > > Chunk freelists: > 117.00 KB > > MaxMetaspaceSize: unlimited > > > CodeCache: size=32768Kb used=742Kb max_used=753Kb free=32026Kb > bounds [0xb3d5e000, 0xb3ede000, 0xb5d5e000] > total_blobs=1224 nmethods=380 adapters=345 > compilation: enabled > stopped_count=0, restarted_count=0 > full_count=0 > > Compilation events (20 events): > Event: 3.763 Thread 0x74186000 371 > java.util.HashMap$Node::<init> (26 bytes) > Event: 3.769 Thread 0x74186000 nmethod 371 0xb3e04008 code [0xb3e04100, > 0xb3e043fc] > Event: 3.795 Thread 0x73840400 372 java.util.HashMap::getNode > (148 bytes) > Event: 3.812 Thread 0x73840400 nmethod 372 0xb3df1888 code [0xb3df1990, > 0xb3df1b7c] > Event: 3.837 Thread 0x74186000 373 > java.util.zip.ZipFile$Source::getEntryPos (206 bytes) > Event: 3.853 Thread 0x73840400 374 ! > java.net.URLDecoder::decode (306 bytes) > Event: 3.878 Thread 0x74186000 nmethod 373 0xb3e0e608 code [0xb3e0e740, > 0xb3e0f17c] > Event: 3.878 Thread 0x74186000 375 > java.lang.AbstractStringBuilder::<init> (39 bytes) > Event: 3.878 Thread 0x73840400 nmethod 374 0xb3e09408 code [0xb3e09540, > 0xb3e09c68] > Event: 3.882 Thread 0x74186000 nmethod 375 0xb3df0e88 code [0xb3df0f90, > 0xb3df118c] > Event: 4.194 Thread 0x73840400 376 > java.nio.ByteBuffer::rewind (7 bytes) > Event: 4.195 Thread 0x73840400 nmethod 376 0xb3e19708 code [0xb3e19800, > 0xb3e1985c] > Event: 4.203 Thread 0x73840400 377 > java.util.LinkedHashMap$LinkedHashIterator::hasNext (13 bytes) > Event: 4.204 Thread 0x73840400 nmethod 377 0xb3e19908 code [0xb3e19a00, > 0xb3e19a5c] > Event: 4.213 Thread 0x73840400 378 java.lang.String::toString > (2 bytes) > Event: 4.213 Thread 0x73840400 nmethod 378 0xb3e19b08 code [0xb3e19c00, > 0xb3e19c4c] > Event: 4.216 Thread 0x73840400 379 > java.lang.StringBuilder::toString (35 bytes) > Event: 4.223 Thread 0x73840400 nmethod 379 0xb3e17b08 code [0xb3e17c20, > 0xb3e17f5c] > Event: 4.239 Thread 0x73840400 380 > java.util.jar.Attributes$Name::hashCode (5 bytes) > Event: 4.240 Thread 0x73840400 nmethod 380 0xb3e17908 code [0xb3e17a00, > 0xb3e17a5c] > > GC Heap History (4 events): > Event: 2.178 GC heap before > {Heap before GC invocations=0 (full 0): > garbage-first heap total 63488K, used 14336K [0x76800000, 0xb3a00000) > region size 1024K, 14 young (14336K), 0 survivors (0K) > Metaspace used 10329K, capacity 10527K, committed 10648K, reserved > 11568K > } > Event: 2.214 GC heap after > {Heap after GC invocations=1 (full 0): > garbage-first heap total 63488K, used 3163K [0x76800000, 0xb3a00000) > region size 1024K, 2 young (2048K), 2 survivors (2048K) > Metaspace used 10329K, capacity 10527K, committed 10648K, reserved > 11568K > } > Event: 2.903 GC heap before > {Heap before GC invocations=1 (full 0): > garbage-first heap total 63488K, used 7259K [0x76800000, 0xb3a00000) > region size 1024K, 6 young (6144K), 2 survivors (2048K) > Metaspace used 11659K, capacity 11869K, committed 11928K, reserved > 12592K > } > Event: 2.915 GC heap after > {Heap after GC invocations=2 (full 0): > garbage-first heap total 63488K, used 4389K [0x76800000, 0xb3a00000) > region size 1024K, 1 young (1024K), 1 survivors (1024K) > Metaspace used 11659K, capacity 11869K, committed 11928K, reserved > 12592K > } > > Deoptimization events (20 events): > Event: 3.482 Thread 0xb5f0d400 Uncommon trap: trap_request=0xffffff4d > fr.pc=0xb3dee958 relative=0x00000148 > Event: 3.482 Thread 0xb5f0d400 Uncommon trap: reason=unstable_if > action=reinterpret pc=0xb3dee958 > method=java.util.regex.Pattern.lambda$Single$8(II)Z @ 2 c2 > Event: 3.482 Thread 0xb5f0d400 DEOPT PACKING pc=0xb3dee958 sp=0xb60b8ec0 > Event: 3.482 Thread 0xb5f0d400 DEOPT UNPACKING pc=0xb3d73604 sp=0xb60b8e54 > mode 2 > Event: 3.482 Thread 0xb5f0d400 Uncommon trap: trap_request=0xffffff7e > fr.pc=0xb3df44c8 relative=0x00000328 > Event: 3.482 Thread 0xb5f0d400 Uncommon trap: reason=predicate > action=maybe_recompile pc=0xb3df44c8 > method=java.util.regex.Pattern$Start.match(Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z > @ 34 c2 > Event: 3.482 Thread 0xb5f0d400 DEOPT PACKING pc=0xb3df44c8 sp=0xb60b8ef8 > Event: 3.482 Thread 0xb5f0d400 DEOPT UNPACKING pc=0xb3d73604 sp=0xb60b8ef8 > mode 2 > Event: 3.482 Thread 0xb5f0d400 Uncommon trap: trap_request=0xffffff4d > fr.pc=0xb3ded0d8 relative=0x00000058 > Event: 3.482 Thread 0xb5f0d400 Uncommon trap: reason=unstable_if > action=reinterpret pc=0xb3ded0d8 > method=java.util.regex.Pattern.lambda$Single$8(II)Z @ 2 c2 > Event: 3.482 Thread 0xb5f0d400 DEOPT PACKING pc=0xb3ded0d8 sp=0xb60b8ea8 > Event: 3.482 Thread 0xb5f0d400 DEOPT UNPACKING pc=0xb3d73604 sp=0xb60b8e50 > mode 2 > Event: 3.482 Thread 0xb5f0d400 Uncommon trap: trap_request=0xffffff4d > fr.pc=0xb3df3544 relative=0x00000044 > Event: 3.482 Thread 0xb5f0d400 Uncommon trap: reason=unstable_if > action=reinterpret pc=0xb3df3544 > method=java.util.regex.Pattern.lambda$Single$8(II)Z @ 2 c2 > Event: 3.482 Thread 0xb5f0d400 DEOPT PACKING pc=0xb3df3544 sp=0xb60b8e08 > Event: 3.482 Thread 0xb5f0d400 DEOPT UNPACKING pc=0xb3d73604 sp=0xb60b8de4 > mode 2 > Event: 4.235 Thread 0xb5f0d400 Uncommon trap: trap_request=0xffffff4d > fr.pc=0xb3dda494 relative=0x00000284 > Event: 4.235 Thread 0xb5f0d400 Uncommon trap: reason=unstable_if > action=reinterpret pc=0xb3dda494 > method=java.util.StringTokenizer.scanToken(I)I @ 42 c2 > Event: 4.235 Thread 0xb5f0d400 DEOPT PACKING pc=0xb3dda494 sp=0xb60b83e8 > Event: 4.235 Thread 0xb5f0d400 DEOPT UNPACKING pc=0xb3d73604 sp=0xb60b83c8 > mode 2 > > Classes redefined (0 events): > No events > > Internal exceptions (20 events): > Event: 1.772 Thread 0xb5f0d400 Exception (0x > Event: 1.841 Thread 0xb5f0d400 Exception (0x79bc8960) thrown > Event: 1.885 Thread 0xb5f0d400 Exception (0x7 > Event: 1.886 Thread 0xb5f0d400 Exception (0x79a366a0) thrown a > Event: 2.023 Thread 0xb5f0d400 Exception (0x7a350778) thrown at > [/build/openjdk-11-bOQXtr/openjdk-11-11.0.5+10/src/hotspot/share/prims/jni.cpp, > line 615] > Event: 3.023 Thread 0xb5f0d400 Exception (0x7a445900) thrown at > [/build/openjdk-11-bOQXtr/openjdk-11-11.0.5+10/src/hotspot/share/int > Event: 3.201 Thread 0xb5f0d400 Exception (0x7a244968) thrown at > [/build/openjdk-11-bOQXtr/openjdk-11 > Event: 3.203 Thread 0xb5f0d400 Exception (0x7a24a970) thrown at > [/build/openjdk-11-bOQXtr/openjdk-11-11.0.5+10/src/hotspot > Event: 3.205 Thread 0xb5f0d400 Exception (0x7a250bd0) thrown at > [/build/openjdk-11-bOQXtr/openjdk-11-11.0.5+10/src/hotspot/sha > Event: 3.213 Thread 0xb5f0d400 Exception (0x7a257650) thrown at > [/build/openjdk-11-bOQXtr/openjdk-11-11.0 > Event: 3.214 Thread 0xb5f0d400 Exception (0x7a25b0a0) thrown at > [/build/openjdk-11-bOQ > Event: 3.215 Thread 0xb5f0d400 Exception (0x7a25e038) thrown at > [/build/openjdk-11-bOQXtr/openjdk-11-11.0.5+1 > > Events (20 events): > Event: 4.224 loading class com/jogamp/common/os/DynamicLibraryBundleInfo > Event: 4.224 loading class com/jogamp/common/os/DynamicLibraryBundleInfo done > Event: 4.225 loading class > jogamp/opengl/x11/glx/X11GLXDynamicLibraryBundleInfo > Event: 4.225 loading class > jogamp/opengl/x11/glx/X11GLXDynamicLibraryBundleInfo done > Event: 4.228 loading class com/jogamp/common/util/RunnableExecutor > Event: 4.228 loading class com/jogamp/common/util/RunnableExecutor done > Event: 4.230 loading class > com/jogamp/common/util/RunnableExecutor$CurrentThreadExecutor > Event: 4.230 loading class > com/jogamp/common/util/RunnableExecutor$CurrentThreadExecutor done > Event: 4.231 loading class com/jogamp/common/os/DynamicLibraryBundle$1 > Event: 4.231 loading class com/jogamp/common/os/DynamicLibraryBundle$1 done > Event: 4.233 loading class com/jogamp/common/os/NativeLibrary$1 > Event: 4.233 loading class com/jogamp/common/os/NativeLibrary$1 done > Event: 4.235 loading class com/jogamp/common/os/NativeLibrary$2 > Event: 4.235 loading class com/jogamp/common/os/NativeLibrary$2 done > Event: 4.237 loading class jogamp/common/os/PosixDynamicLinkerImpl > Event: 4.237 loading class jogamp/common/os/PosixDynamicLinkerImpl done > Event: 4.238 loading class jogamp/common/os/UnixDynamicLinkerImpl > Event: 4.238 loading class jogamp/common/os/UnixDynamicLinkerImpl done > Event: 4.240 loading class jogamp/common/os/DynamicLinkerImpl > Event: 4.240 loading class jogamp/common/os/DynamicLinkerImpl done > > > Dynamic libraries: > 00010000-00011000 r-xp 00000000 b3:02 619 > /usr/lib/jvm/java-11-openjdk-armhf/bin/java > 00020000-00021000 r--p 00000000 b3:02 619 > /usr/lib/jvm/java-11-openjdk-armhf/bin/java > 00021000-00022000 rw-p 00001000 b3:02 619 > /usr/lib/jvm/java-11-openjdk-armhf/bin/java > 00221000-003c4000 rw-p 00000000 00:00 0 [heap] > 6f535000-6f635000 rw-p 00000000 00:00 0 > 6f700000-6f800000 rw-p 00000000 00:00 0 > 6f800000-6f8e5000 rw-p 00000000 00:00 0 > 6f8e5000-6f900000 ---p 00000000 00:00 0 > 6f980000-6f984000 r-xp 00000000 b3:02 272365 > /usr/lib/arm-linux-gnueabihf/libXxf86vm.so.1.0.0 > 6f984000-6f993000 ---p 00004000 b3:02 272365 > /usr/lib/arm-linux-gnueabihf/libXxf86vm.so.1.0.0 > 6f993000-6f994000 r--p 00003000 b3:02 272365 > /usr/lib/arm-linux-gnueabihf/libXxf86vm.so.1.0.0 > 6f994000-6f995000 rw-p 00004000 b3:02 272365 > /usr/lib/arm-linux-gnueabihf/libXxf86vm.so.1.0.0 > 6f995000-6f99b000 r-xp 00000000 b3:02 524156 > /tmp/jogamp_0000/file_cache/jln13837528879696697562/jln4505961390641977543/natives/linux-armv6hf/libnativewindow_x11.so > > 6f99b000-6f9aa000 ---p 00006000 b3:02 524156 > /tmp/jogamp_0000/file_cache/jln13837528879696697562/jln4505961390641977543/natives/linux-armv6hf/libnativewindow_x11.so > > 6f9aa000-6f9ab000 r--p 00005000 b3:02 524156 > /tmp/jogamp_0000/file_cache/jln13837528879696697562/jln4505961390641977543/natives/linux-armv6hf/libnativewindow_x11.so > > 6f9ab000-6f9ac000 rw-p 00006000 b3:02 524156 > /tmp/jogamp_0000/file_cache/jln13837528879696697562/jln4505961390641977543/natives/linux-armv6hf/libnativewindow_x11.so > > 6f9ac000-6f9af000 ---p 00000000 00:00 0 > 6f9af000-6fafc000 rw-p 00000000 00:00 0 > 6fafc000-6fafd000 ---p 00000000 00:00 0 > 6fafd000-6fb7e000 rw-p 00000000 00:00 0 > 6fb7e000-6fb7f000 ---p 00000000 00:00 0 > 6fb7f000-6fd00000 rw-p 00000000 00:00 0 > 6fd00000-6fe00000 rw-p 00000000 00:00 0 > 6fe0a000-6fe0b000 r-xp 00000000 b3:02 524142 > /tmp/jogamp_0000/file_cache/jln13837528879696697562/jln4505961390641977543/natives/linux-armv6hf/libnativewindow_awt.so > > 6fe0b000-6fe1a000 ---p 00001000 b3:02 524142 > /tmp/jogamp_0000/file_cache/jln13837528879696697562/jln4505961390641977543/natives/linux-armv6hf/libnativewindow_awt.so > > 6fe1a000-6fe1b000 r--p 00000000 b3:02 524142 > /tmp/jogamp_0000/file_cache/jln13837528879696697562/jln4505961390641977543/natives/linux-armv6hf/libnativewindow_awt.so > > 6fe1b000-6fe1c000 rw-p 00001000 b3:02 524142 > /tmp/jogamp_0000/file_cache/jln13837528879696697562/jln4505961390641977543/natives/linux-armv6hf/libnativewindow_awt.so > > 6fe1c000-6fe1d000 r-xp 00000000 b3:02 682 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libjawt.so > 6fe1d000-6fe2c000 ---p 00001000 b3:02 682 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libjawt.so > 6fe2c000-6fe2d000 r--p 00000000 b3:02 682 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libjawt.so > 6fe2d000-6fe2e000 rw-p 00001000 b3:02 682 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libjawt.so > 6fe2e000-6fe31000 ---p 00000000 00:00 0 > 6fe31000-6fe7e000 rw-p 00000000 00:00 0 > 6fe7e000-6fe7f000 ---p 00000000 00:00 0 > 6fe7f000-70000000 rw-p 00000000 00:00 0 > 70000000-700e5000 rw-p 00000000 00:00 0 > 700e5000-70100000 ---p 00000000 00:00 0 > 70100000-701fd000 rw-p 00000000 00:00 0 > 701fd000-70200000 ---p 00000000 00:00 0 > 70200000-70300000 rw-p 00000000 00:00 0 > 70300000-70400000 rw-p 00000000 00:00 0 > 70410000-70413000 ---p 00000000 00:00 0 > 70413000-70560000 rw-p 00000000 00:00 0 > 70560000-70660000 rw-p 00000000 00:00 0 > 70660000-70663000 ---p 00000000 00:00 0 > 70663000-706b0000 rw-p 00000000 00:00 0 > 706b0000-706b3000 ---p 00000000 00:00 0 > 706b3000-70700000 rw-p 00000000 00:00 0 > 70700000-707ff000 rw-p 00000000 00:00 0 > 707ff000-70800000 ---p 00000000 00:00 0 > 70803000-70806000 ---p 00000000 00:00 0 > 70806000-70823000 rw-p 00000000 00:00 0 > 70823000-70827000 r-xp 00000000 b3:02 272349 > /usr/lib/arm-linux-gnueabihf/libXfixes.so.3.1.0 > 70827000-70836000 ---p 00004000 b3:02 272349 > /usr/lib/arm-linux-gnueabihf/libXfixes.so.3.1.0 > 70836000-70837000 r--p 00003000 b3:02 272349 > /usr/lib/arm-linux-gnueabihf/libXfixes.so.3.1.0 > 70837000-70838000 rw-p 00004000 b3:02 272349 > /usr/lib/arm-linux-gnueabihf/libXfixes.so.3.1.0 > 70838000-70840000 r-xp 00000000 b3:02 272344 > /usr/lib/arm-linux-gnueabihf/libXcursor.so.1.0.2 > 70840000-7084f000 ---p 00008000 b3:02 272344 > /usr/lib/arm-linux-gnueabihf/libXcursor.so.1.0.2 > 7084f000-70850000 r--p 00007000 b3:02 272344 > /usr/lib/arm-linux-gnueabihf/libXcursor.so.1.0.2 > 70850000-70851000 rw-p 00008000 b3:02 272344 > /usr/lib/arm-linux-gnueabihf/libXcursor.so.1.0.2 > 70855000-70857000 r-xp 00000000 b3:02 524154 > /tmp/jogamp_0000/file_cache/jln13837528879696697562/jln4505961390641977543/natives/linux-armv6hf/libgluegen-rt.so > > 70857000-70866000 ---p 00002000 b3:02 524154 > /tmp/jogamp_0000/file_cache/jln13837528879696697562/jln4505961390641977543/natives/linux-armv6hf/libgluegen-rt.so > > 70866000-70867000 r--p 00001000 b3:02 524154 > /tmp/jogamp_0000/file_cache/jln13837528879696697562/jln4505961390641977543/natives/linux-armv6hf/libgluegen-rt.so > > 70867000-70868000 rw-p 00002000 b3:02 524154 > /tmp/jogamp_0000/file_cache/jln13837528879696697562/jln4505961390641977543/natives/linux-armv6hf/libgluegen-rt.so > > 70868000-70869000 ---p 00000000 00:00 0 > 70869000-71069000 rw-p 00000000 00:00 0 > 71069000-7106a000 ---p 00000000 00:00 0 > 7106a000-7186a000 rw-p 00000000 00:00 0 > 7186a000-7186b000 ---p 00000000 00:00 0 > 7186b000-7206b000 rw-p 00000000 00:00 0 > 7206b000-72075000 r-xp 00000000 b3:02 10121 > /usr/lib/arm-linux-gnueabihf/gio/modules/libdconfsettings.so > 72075000-72085000 ---p 0000a000 b3:02 10121 > /usr/lib/arm-linux-gnueabihf/gio/modules/libdconfsettings.so > 72085000-72086000 r--p 0000a000 b3:02 10121 > /usr/lib/arm-linux-gnueabihf/gio/modules/libdconfsettings.so > 72086000-72087000 rw-p 0000b000 b3:02 10121 > /usr/lib/arm-linux-gnueabihf/gio/modules/libdconfsettings.so > 72087000-7208d000 r-xp 00000000 b3:02 261782 > /lib/arm-linux-gnueabihf/libuuid.so.1.3.0 > 7208d000-7209c000 ---p 00006000 b3:02 261782 > /lib/arm-linux-gnueabihf/libuuid.so.1.3.0 > 7209c000-7209d000 r--p 00005000 b3:02 261782 > /lib/arm-linux-gnueabihf/libuuid.so.1.3.0 > 7209d000-7209e000 rw-p 00006000 b3:02 261782 > /lib/arm-linux-gnueabihf/libuuid.so.1.3.0 > 7209e000-720e2000 r-xp 00000000 b3:02 261689 > /lib/arm-linux-gnueabihf/libblkid.so.1.1.0 > 720e2000-720f2000 ---p 00044000 b3:02 261689 > /lib/arm-linux-gnueabihf/libblkid.so.1.1.0 > 720f2000-720f5000 r--p 00044000 b3:02 261689 > /lib/arm-linux-gnueabihf/libblkid.so.1.1.0 > 720f5000-720f6000 rw-p 00047000 b3:02 261689 > /lib/arm-linux-gnueabihf/libblkid.so.1.1.0 > 720f6000-720fc000 r-xp 00000000 b3:02 272525 > /usr/lib/arm-linux-gnueabihf/libffi.so.6.0.4 > 720fc000-7210c000 ---p 00006000 b3:02 272525 > /usr/lib/arm-linux-gnueabihf/libffi.so.6.0.4 > 7210c000-7210d000 r--p 00006000 b3:02 272525 > /usr/lib/arm-linux-gnueabihf/libffi.so.6.0.4 > 7210d000-7210e000 rw-p 00007000 b3:02 272525 > /usr/lib/arm-linux-gnueabihf/libffi.so.6.0.4 > 7210e000-72174000 r-xp 00000000 b3:02 261754 > /lib/arm-linux-gnueabihf/libpcre.so.3.13.3 > 72174000-72183000 ---p 00066000 b3:02 261754 > /lib/arm-linux-gnueabihf/libpcre.so.3.13.3 > 72183000-72184000 r--p 00065000 b3:02 261754 > /lib/arm-linux-gnueabihf/libpcre.so.3.13.3 > 72184000-72185000 rw-p 00066000 b3:02 261754 > /lib/arm-linux-gnueabihf/libpcre.so.3.13.3 > 72185000-72196000 r-xp 00000000 b3:02 261764 > /lib/arm-linux-gnueabihf/libresolv-2.28.so > 72196000-721a5000 ---p 00011000 b3:02 261764 > /lib/arm-linux-gnueabihf/libresolv-2.28.so > 721a5000-721a6000 r--p 00010000 b3:02 261764 > /lib/arm-linux-gnueabihf/libresolv-2.28.so > 721a6000-721a7000 rw-p 00011000 b3:02 261764 > /lib/arm-linux-gnueabihf/libresolv-2.28.so > 721a7000-721a9000 rw-p 00000000 00:00 0 > 721a9000-721c9000 r-xp 00000000 b3:02 261766 > /lib/arm-linux-gnueabihf/libselinux.so.1 > 721c9000-721d8000 ---p 00020000 b3:02 261766 > /lib/arm-linux-gnueabihf/libselinux.so.1 > 721d8000-721d9000 r--p 0001f000 b3:02 261766 > /lib/arm-linux-gnueabihf/libselinux.so.1 > 721d9000-721da000 rw-p 00020000 b3:02 261766 > /lib/arm-linux-gnueabihf/libselinux.so.1 > 721da000-721db000 rw-p 00000000 00:00 0 > 721db000-72229000 r-xp 00000000 b3:02 261725 > /lib/arm-linux-gnueabihf/libmount.so.1.1.0 > 72229000-72239000 ---p 0004e000 b3:02 261725 > /lib/arm-linux-gnueabihf/libmount.so.1.1.0 > 72239000-7223b000 r--p 0004e000 b3:02 261725 > /lib/arm-linux-gnueabihf/libmount.so.1.1.0 > 7223b000-7223c000 rw-p 00050000 b3:02 261725 > /lib/arm-linux-gnueabihf/libmount.so.1.1.0 > 7223c000-72288000 r-xp 00000000 b3:02 261874 > /usr/lib/arm-linux-gnueabihf/libgobject-2.0.so.0.5800.3 > 72288000-72297000 ---p 0004c000 b3:02 261874 > /usr/lib/arm-linux-gnueabihf/libgobject-2.0.so.0.5800.3 > 72297000-72298000 r--p 0004b000 b3:02 261874 > /usr/lib/arm-linux-gnueabihf/libgobject-2.0.so.0.5800.3 > 72298000-72299000 rw-p 0004c000 b3:02 261874 > /usr/lib/arm-linux-gnueabihf/libgobject-2.0.so.0.5800.3 > 72299000-72398000 r-xp 00000000 b3:02 261602 > /usr/lib/arm-linux-gnueabihf/libglib-2.0.so.0.5800.3 > 72398000-723a7000 ---p 000ff000 b3:02 261602 > /usr/lib/arm-linux-gnueabihf/libglib-2.0.so.0.5800.3 > 723a7000-723a8000 r--p 000fe000 b3:02 261602 > /usr/lib/arm-linux-gnueabihf/libglib-2.0.so.0.5800.3 > 723a8000-723a9000 rw-p 000ff000 b3:02 261602 > /usr/lib/arm-linux-gnueabihf/libglib-2.0.so.0.5800.3 > 723a9000-7250f000 r-xp 00000000 b3:02 261600 > /usr/lib/arm-linux-gnueabihf/libgio-2.0.so.0.5800.3 > 7250f000-7251f000 ---p 00166000 b3:02 261600 > /usr/lib/arm-linux-gnueabihf/libgio-2.0.so.0.5800.3 > 7251f000-72523000 r--p 00166000 b3:02 261600 > /usr/lib/arm-linux-gnueabihf/libgio-2.0.so.0.5800.3 > 72523000-72524000 rw-p 0016a000 b3:02 261600 > /usr/lib/arm-linux-gnueabihf/libgio-2.0.so.0.5800.3 > 72524000-72525000 rw-p 00000000 00:00 0 > 72525000-7252d000 r-xp 00000000 b3:02 272357 > /usr/lib/arm-linux-gnueabihf/libXrandr.so.2.2.0 > 7252d000-7253c000 ---p 00008000 b3:02 272357 > /usr/lib/arm-linux-gnueabihf/libXrandr.so.2.2.0 > 7253c000-7253d000 r--p 00007000 b3:02 272357 > /usr/lib/arm-linux-gnueabihf/libXrandr.so.2.2.0 > 7253d000-7253e000 rw-p 00008000 b3:02 272357 > /usr/lib/arm-linux-gnueabihf/libXrandr.so.2.2.0 > 7253e000-7263e000 rw-p 00000000 00:00 0 > 7263e000-72669000 r-xp 00000000 b3:02 272833 > /usr/lib/arm-linux-gnueabihf/libpng16.so.16.36.0 > 72669000-72678000 ---p 0002b000 b3:02 272833 > /usr/lib/arm-linux-gnueabihf/libpng16.so.16.36.0 > 72678000-72679000 r--p 0002a000 b3:02 272833 > /usr/lib/arm-linux-gnueabihf/libpng16.so.16.36.0 > 72679000-7267a000 rw-p 0002b000 b3:02 272833 > /usr/lib/arm-linux-gnueabihf/libpng16.so.16.36.0 > 7267a000-72709000 r-xp 00000000 b3:02 261588 > /usr/lib/arm-linux-gnueabihf/libfreetype.so.6.16.1 > 72709000-72718000 ---p 0008f000 b3:02 261588 > /usr/lib/arm-linux-gnueabihf/libfreetype.so.6.16.1 > 72718000-7271c000 r--p 0008e000 b3:02 261588 > /usr/lib/arm-linux-gnueabihf/libfreetype.so.6.16.1 > 7271c000-7271d000 rw-p 00092000 b3:02 261588 > /usr/lib/arm-linux-gnueabihf/libfreetype.so.6.16.1 > 7271d000-72839000 r-xp 00000000 b3:02 674 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libfontmanager.so > 72839000-72848000 ---p 0011c000 b3:02 674 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libfontmanager.so > 72848000-72849000 r--p 0011b000 b3:02 674 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libfontmanager.so > 72849000-7284a000 rw-p 0011c000 b3:02 674 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libfontmanager.so > 7284a000-7294d000 rw-p 00000000 00:00 0 > 7294d000-72964000 r-xp 00000000 b3:02 272435 > /usr/lib/arm-linux-gnueabihf/libbsd.so.0.9.1 > 72964000-72973000 ---p 00017000 b3:02 272435 > /usr/lib/arm-linux-gnueabihf/libbsd.so.0.9.1 > 72973000-72974000 r--p 00016000 b3:02 272435 > /usr/lib/arm-linux-gnueabihf/libbsd.so.0.9.1 > 72974000-72975000 rw-p 00017000 b3:02 272435 > /usr/lib/arm-linux-gnueabihf/libbsd.so.0.9.1 > 72975000-72a83000 r-xp 00000000 b3:02 272338 > /usr/lib/arm-linux-gnueabihf/libX11.so.6.3.0 > 72a83000-72a93000 ---p 0010e000 b3:02 272338 > /usr/lib/arm-linux-gnueabihf/libX11.so.6.3.0 > 72a93000-72a94000 r--p 0010e000 b3:02 272338 > /usr/lib/arm-linux-gnueabihf/libX11.so.6.3.0 > 72a94000-72a97000 rw-p 0010f000 b3:02 272338 > /usr/lib/arm-linux-gnueabihf/libX11.so.6.3.0 > 72a97000-72aec000 r-xp 00000000 b3:02 671 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libawt_xawt.so > 72aec000-72afb000 ---p 00055000 b3:02 671 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libawt_xawt.so > 72afb000-72afc000 r--p 00054000 b3:02 671 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libawt_xawt.so > 72afc000-72afe000 rw-p 00055000 b3:02 671 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libawt_xawt.so > 72afe000-72b00000 rw-p 00000000 00:00 0 > 72b00000-72bef000 rw-p 00000000 00:00 0 > 72bef000-72c00000 ---p 00000000 00:00 0 > 72c0a000-72c0e000 r-xp 00000000 b3:02 272347 > /usr/lib/arm-linux-gnueabihf/libXdmcp.so.6.0.0 > 72c0e000-72c1d000 ---p 00004000 b3:02 272347 > /usr/lib/arm-linux-gnueabihf/libXdmcp.so.6.0.0 > 72c1d000-72c1e000 r--p 00003000 b3:02 272347 > /usr/lib/arm-linux-gnueabihf/libXdmcp.so.6.0.0 > 72c1e000-72c1f000 rw-p 00004000 b3:02 272347 > /usr/lib/arm-linux-gnueabihf/libXdmcp.so.6.0.0 > 72c1f000-72c3d000 r-xp 00000000 b3:02 273021 > /usr/lib/arm-linux-gnueabihf/libxcb.so.1.1.0 > 72c3d000-72c4c000 ---p 0001e000 b3:02 273021 > /usr/lib/arm-linux-gnueabihf/libxcb.so.1.1.0 > 72c4c000-72c4d000 r--p 0001d000 b3:02 273021 > /usr/lib/arm-linux-gnueabihf/libxcb.so.1.1.0 > 72c4d000-72c4e000 rw-p 0001e000 b3:02 273021 > /usr/lib/arm-linux-gnueabihf/libxcb.so.1.1.0 > 72c4e000-72cc5000 r-xp 00000000 b3:02 669 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libawt.so > 72cc5000-72cd4000 ---p 00077000 b3:02 669 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libawt.so > 72cd4000-72cd5000 r--p 00076000 b3:02 669 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libawt.so > 72cd5000-72cdc000 rw-p 00077000 b3:02 669 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libawt.so > 72cdc000-72e00000 rw-p 00000000 00:00 0 > 72e00000-72f00000 rw-p 00000000 00:00 0 > 72f00000-72f02000 r-xp 00000000 b3:02 261603 > /usr/lib/arm-linux-gnueabihf/libgmodule-2.0.so.0.5800.3 > 72f02000-72f12000 ---p 00002000 b3:02 261603 > /usr/lib/arm-linux-gnueabihf/libgmodule-2.0.so.0.5800.3 > 72f12000-72f13000 r--p 00002000 b3:02 261603 > /usr/lib/arm-linux-gnueabihf/libgmodule-2.0.so.0.5800.3 > 72f13000-72f14000 rw-p 00003000 b3:02 261603 > /usr/lib/arm-linux-gnueabihf/libgmodule-2.0.so.0.5800.3 > 72f14000-72f16000 r-xp 00000000 b3:02 272341 > /usr/lib/arm-linux-gnueabihf/libXau.so.6.0.0 > 72f16000-72f25000 ---p 00002000 b3:02 272341 > /usr/lib/arm-linux-gnueabihf/libXau.so.6.0.0 > 72f25000-72f26000 r--p 00001000 b3:02 272341 > /usr/lib/arm-linux-gnueabihf/libXau.so.6.0.0 > 72f26000-72f27000 rw-p 00002000 b3:02 272341 > /usr/lib/arm-linux-gnueabihf/libXau.so.6.0.0 > 72f27000-72f34000 r-xp 00000000 b3:02 272352 > /usr/lib/arm-linux-gnueabihf/libXi.so.6.1.0 > 72f34000-72f43000 ---p 0000d000 b3:02 272352 > /usr/lib/arm-linux-gnueabihf/libXi.so.6.1.0 > 72f43000-72f44000 r--p 0000c000 b3:02 272352 > /usr/lib/arm-linux-gnueabihf/libXi.so.6.1.0 > 72f44000-72f45000 rw-p 0000d000 b3:02 272352 > /usr/lib/arm-linux-gnueabihf/libXi.so.6.1.0 > 72f45000-72f53000 r-xp 00000000 b3:02 272348 > /usr/lib/arm-linux-gnueabihf/libXext.so.6.4.0 > 72f53000-72f62000 ---p 0000e000 b3:02 272348 > /usr/lib/arm-linux-gnueabihf/libXext.so.6.4.0 > 72f62000-72f63000 r--p 0000d000 b3:02 272348 > /usr/lib/arm-linux-gnueabihf/libXext.so.6.4.0 > 72f63000-72f64000 rw-p 0000e000 b3:02 272348 > /usr/lib/arm-linux-gnueabihf/libXext.so.6.4.0 > 72f64000-72f67000 ---p 00000000 00:00 0 > 72f67000-72fe4000 rw-p 00000000 00:00 0 > 72fe4000-72fe7000 ---p 00000000 00:00 0 > 72fe7000-73034000 rw-p 00000000 00:00 0 > 73034000-73035000 ---p 00000000 00:00 0 > 73035000-730b6000 rw-p 00000000 00:00 0 > 730b6000-730b9000 ---p 00000000 00:00 0 > 730b9000-73106000 rw-p 00000000 00:00 0 > 73106000-73109000 ---p 00000000 00:00 0 > 73109000-73186000 rw-p 00000000 00:00 0 > 73186000-73400000 r--p 0006b000 b3:02 283372 > /usr/lib/locale/locale-archive > 73400000-73600000 r--p 00000000 b3:02 283372 > /usr/lib/locale/locale-archive > 73600000-73621000 rw-p 00000000 00:00 0 > 73621000-73700000 ---p 00000000 00:00 0 > 73710000-73713000 ---p 00000000 00:00 0 > 73713000-73760000 rw-p 00000000 00:00 0 > 73760000-73763000 ---p 00000000 00:00 0 > 73763000-737b0000 rw-p 00000000 00:00 0 > 737b0000-737b3000 ---p 00000000 00:00 0 > 737b3000-73800000 rw-p 00000000 00:00 0 > 73800000-73900000 rw-p 00000000 00:00 0 > 73902000-7390a000 r-xp 00000000 b3:02 272358 > /usr/lib/arm-linux-gnueabihf/libXrender.so.1.3.0 > 7390a000-73919000 ---p 00008000 b3:02 272358 > /usr/lib/arm-linux-gnueabihf/libXrender.so.1.3.0 > 73919000-7391a000 r--p 00007000 b3:02 272358 > /usr/lib/arm-linux-gnueabihf/libXrender.so.1.3.0 > 7391a000-7391b000 rw-p 00008000 b3:02 272358 > /usr/lib/arm-linux-gnueabihf/libXrender.so.1.3.0 > 7391b000-7391f000 r-xp 00000000 b3:02 266904 > /tmp/1577061068472-libjSerialComm.so > 7391f000-73926000 ---p 00004000 b3:02 266904 > /tmp/1577061068472-libjSerialComm.so > 73926000-73927000 rw-p 00003000 b3:02 266904 > /tmp/1577061068472-libjSerialComm.so > 73927000-73932000 r--p 00000000 b3:02 270225 > /usr/share/glib-2.0/schemas/gschemas.compiled > 73932000-73933000 ---p 00000000 00:00 0 > 73933000-73dfa000 rw-p 00000000 00:00 0 > 73dfa000-73e00000 ---p 00000000 00:00 0 > 73e00000-73e21000 rw-p 00000000 00:00 0 > 73e21000-73f00000 ---p 00000000 00:00 0 > 73f09000-73f1d000 r-xp 00000000 b3:02 692 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libnet.so > 73f1d000-73f2c000 ---p 00014000 b3:02 692 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libnet.so > 73f2c000-73f2d000 r--p 00013000 b3:02 692 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libnet.so > 73f2d000-73f2e000 rw-p 00014000 b3:02 692 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libnet.so > 73f2e000-73f31000 ---p 00000000 00:00 0 > 73f31000-73f7e000 rw-p 00000000 00:00 0 > 73f7e000-73f7f000 ---p 00000000 00:00 0 > 73f7f000-74000000 rw-p 00000000 00:00 0 > 74000000-74021000 rw-p 00000000 00:00 0 > 74021000-74100000 ---p 00000000 00:00 0 > 74100000-741fc000 rw-p 00000000 00:00 0 > 741fc000-74200000 ---p 00000000 00:00 0 > 74200000-74221000 rw-p 00000000 00:00 0 > 74221000-74300000 ---p 00000000 00:00 0 > 74300000-74304000 r-xp 00000000 b3:02 272362 > /usr/lib/arm-linux-gnueabihf/libXtst.so.6.1.0 > 74304000-74313000 ---p 00004000 b3:02 272362 > /usr/lib/arm-linux-gnueabihf/libXtst.so.6.1.0 > 74313000-74314000 r--p 00003000 b3:02 272362 > /usr/lib/arm-linux-gnueabihf/libXtst.so.6.1.0 > 74314000-74315000 rw-p 00004000 b3:02 272362 > /usr/lib/arm-linux-gnueabihf/libXtst.so.6.1.0 > 74315000-74321000 r-xp 00000000 b3:02 693 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libnio.so > 74321000-74331000 ---p 0000c000 b3:02 693 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libnio.so > 74331000-74332000 r--p 0000c000 b3:02 693 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libnio.so > 74332000-74333000 rw-p 0000d000 b3:02 693 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libnio.so > 74333000-74334000 ---p 00000000 00:00 0 > 74334000-744ad000 rw-p 00000000 00:00 0 > 744ad000-752fd000 ---p 00000000 00:00 0 > 752fd000-753f5000 rw-p 00000000 00:00 0 > 753f5000-76245000 ---p 00000000 00:00 0 > 76245000-76264000 rw-p 00000000 00:00 0 > 76264000-7642e000 ---p 00000000 00:00 0 > 7642e000-7644d000 rw-p 00000000 00:00 0 > 7644d000-76617000 ---p 00000000 00:00 0 > 76617000-76636000 rw-p 00000000 00:00 0 > 76636000-76800000 ---p 00000000 00:00 0 > 76800000-7a600000 rw-p 00000000 00:00 0 > 7a600000-b3a00000 ---p 00000000 00:00 0 > b3a03000-b3a7e000 rw-p 00000000 00:00 0 > b3a7e000-b3a7f000 ---p 00000000 00:00 0 > b3a7f000-b3b00000 rw-p 00000000 00:00 0 > b3b00000-b3b21000 rw-p 00000000 00:00 0 > b3b21000-b3c00000 ---p 00000000 00:00 0 > b3c09000-b3c0a000 ---p 00000000 00:00 0 > b3c0a000-b3c9c000 rw-p 00000000 00:00 0 > b3c9c000-b3c9d000 ---p 00000000 00:00 0 > b3c9d000-b3d21000 rw-p 00000000 00:00 0 > b3d21000-b3d5e000 ---p 00000000 00:00 0 > b3d5e000-b3ede000 rwxp 00000000 00:00 0 > b3ede000-b5d5e000 ---p 00000000 00:00 0 > b5d5e000-b5eca000 r--s 00000000 b3:02 702 > /usr/lib/jvm/java-11-openjdk-armhf/lib/modules > b5eca000-b5ece000 r-xp 00000000 b3:02 684 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libjimage.so > b5ece000-b5edd000 ---p 00004000 b3:02 684 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libjimage.so > b5edd000-b5ede000 r--p 00003000 b3:02 684 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libjimage.so > b5ede000-b5edf000 rw-p 00004000 b3:02 684 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libjimage.so > b5edf000-b5ee8000 r-xp 00000000 b3:02 261736 > /lib/arm-linux-gnueabihf/libnss_files-2.28.so > b5ee8000-b5ef8000 ---p 00009000 b3:02 261736 > /lib/arm-linux-gnueabihf/libnss_files-2.28.so > b5ef8000-b5ef9000 r--p 00009000 b3:02 261736 > /lib/arm-linux-gnueabihf/libnss_files-2.28.so > b5ef9000-b5efa000 rw-p 0000a000 b3:02 261736 > /lib/arm-linux-gnueabihf/libnss_files-2.28.so > b5efa000-b5f00000 rw-p 00000000 00:00 0 > b5f00000-b6000000 rw-p 00000000 00:00 0 > b6009000-b600a000 r--p 00000000 00:00 0 > b600a000-b6028000 r-xp 00000000 b3:02 680 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libjava.so > b6028000-b6037000 ---p 0001e000 b3:02 680 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libjava.so > b6037000-b6038000 r--p 0001d000 b3:02 680 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libjava.so > b6038000-b6039000 rw-p 0001e000 b3:02 680 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libjava.so > b6039000-b6043000 r-xp 00000000 b3:02 700 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libverify.so > b6043000-b6052000 ---p 0000a000 b3:02 700 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libverify.so > b6052000-b6053000 r--p 00009000 b3:02 700 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libverify.so > b6053000-b6054000 rw-p 0000a000 b3:02 700 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libverify.so > b6054000-b605a000 r-xp 00000000 b3:02 261765 > /lib/arm-linux-gnueabihf/librt-2.28.so > b605a000-b6069000 ---p 00006000 b3:02 261765 > /lib/arm-linux-gnueabihf/librt-2.28.so > b6069000-b606a000 r--p 00005000 b3:02 261765 > /lib/arm-linux-gnueabihf/librt-2.28.so > b606a000-b606b000 rw-p 00006000 b3:02 261765 > /lib/arm-linux-gnueabihf/librt-2.28.so > b606b000-b606e000 ---p 00000000 00:00 0 > b606e000-b60bb000 rw-p 00000000 00:00 0 > b60bb000-b60d7000 r-xp 00000000 b3:02 261712 > /lib/arm-linux-gnueabihf/libgcc_s.so.1 > b60d7000-b60e6000 ---p 0001c000 b3:02 261712 > /lib/arm-linux-gnueabihf/libgcc_s.so.1 > b60e6000-b60e7000 r--p 0001b000 b3:02 261712 > /lib/arm-linux-gnueabihf/libgcc_s.so.1 > b60e7000-b60e8000 rw-p 0001c000 b3:02 261712 > /lib/arm-linux-gnueabihf/libgcc_s.so.1 > b60e8000-b6159000 r-xp 00000000 b3:02 261722 > /lib/arm-linux-gnueabihf/libm-2.28.so > b6159000-b6168000 ---p 00071000 b3:02 261722 > /lib/arm-linux-gnueabihf/libm-2.28.so > b6168000-b6169000 r--p 00070000 b3:02 261722 > /lib/arm-linux-gnueabihf/libm-2.28.so > b6169000-b616a000 rw-p 00071000 b3:02 261722 > /lib/arm-linux-gnueabihf/libm-2.28.so > b616a000-b6298000 r-xp 00000000 b3:02 272920 > /usr/lib/arm-linux-gnueabihf/libstdc++.so.6.0.25 > b6298000-b62a8000 ---p 0012e000 b3:02 272920 > /usr/lib/arm-linux-gnueabihf/libstdc++.so.6.0.25 > b62a8000-b62ad000 r--p 0012e000 b3:02 272920 > /usr/lib/arm-linux-gnueabihf/libstdc++.so.6.0.25 > b62ad000-b62af000 rw-p 00133000 b3:02 272920 > /usr/lib/arm-linux-gnueabihf/libstdc++.so.6.0.25 > b62af000-b62b1000 rw-p 00000000 00:00 0 > b62b1000-b6ce9000 r-xp 00000000 b3:02 705 > /usr/lib/jvm/java-11-openjdk-armhf/lib/server/libjvm.so > b6ce9000-b6cf9000 ---p 00a38000 b3:02 705 > /usr/lib/jvm/java-11-openjdk-armhf/lib/server/libjvm.so > b6cf9000-b6d33000 r--p 00a38000 b3:02 705 > /usr/lib/jvm/java-11-openjdk-armhf/lib/server/libjvm.so > b6d33000-b6d53000 rw-p 00a72000 b3:02 705 > /usr/lib/jvm/java-11-openjdk-armhf/lib/server/libjvm.so > b6d53000-b6d7d000 rw-p 00000000 00:00 0 > b6d7d000-b6eb5000 r-xp 00000000 b3:02 261697 > /lib/arm-linux-gnueabihf/libc-2.28.so > b6eb5000-b6ec5000 ---p 00138000 b3:02 261697 > /lib/arm-linux-gnueabihf/libc-2.28.so > b6ec5000-b6ec7000 r--p 00138000 b3:02 261697 > /lib/arm-linux-gnueabihf/libc-2.28.so > b6ec7000-b6ec8000 rw-p 0013a000 b3:02 261697 > /lib/arm-linux-gnueabihf/libc-2.28.so > b6ec8000-b6ecb000 rw-p 00000000 00:00 0 > b6ecb000-b6ecd000 r-xp 00000000 b3:02 261705 > /lib/arm-linux-gnueabihf/libdl-2.28.so > b6ecd000-b6edc000 ---p 00002000 b3:02 261705 > /lib/arm-linux-gnueabihf/libdl-2.28.so > b6edc000-b6edd000 r--p 00001000 b3:02 261705 > /lib/arm-linux-gnueabihf/libdl-2.28.so > b6edd000-b6ede000 rw-p 00002000 b3:02 261705 > /lib/arm-linux-gnueabihf/libdl-2.28.so > b6ede000-b6eeb000 r-xp 00000000 b3:02 664 > /usr/lib/jvm/java-11-openjdk-armhf/lib/jli/libjli.so > b6eeb000-b6efa000 ---p 0000d000 b3:02 664 > /usr/lib/jvm/java-11-openjdk-armhf/lib/jli/libjli.so > b6efa000-b6efb000 r--p 0000c000 b3:02 664 > /usr/lib/jvm/java-11-openjdk-armhf/lib/jli/libjli.so > b6efb000-b6efc000 rw-p 0000d000 b3:02 664 > /usr/lib/jvm/java-11-openjdk-armhf/lib/jli/libjli.so > b6efc000-b6f13000 r-xp 00000000 b3:02 261761 > /lib/arm-linux-gnueabihf/libpthread-2.28.so > b6f13000-b6f22000 ---p 00017000 b3:02 261761 > /lib/arm-linux-gnueabihf/libpthread-2.28.so > b6f22000-b6f23000 r--p 00016000 b3:02 261761 > /lib/arm-linux-gnueabihf/libpthread-2.28.so > b6f23000-b6f24000 rw-p 00017000 b3:02 261761 > /lib/arm-linux-gnueabihf/libpthread-2.28.so > b6f24000-b6f26000 rw-p 00000000 00:00 0 > b6f26000-b6f40000 r-xp 00000000 b3:02 261784 > /lib/arm-linux-gnueabihf/libz.so.1.2.11 > b6f40000-b6f4f000 ---p 0001a000 b3:02 261784 > /lib/arm-linux-gnueabihf/libz.so.1.2.11 > b6f4f000-b6f50000 r--p 00019000 b3:02 261784 > /lib/arm-linux-gnueabihf/libz.so.1.2.11 > b6f50000-b6f51000 rw-p 0001a000 b3:02 261784 > /lib/arm-linux-gnueabihf/libz.so.1.2.11 > b6f51000-b6f57000 r-xp 00000000 b3:02 701 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libzip.so > b6f57000-b6f66000 ---p 00006000 b3:02 701 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libzip.so > b6f66000-b6f67000 r--p 00005000 b3:02 701 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libzip.so > b6f67000-b6f68000 rw-p 00006000 b3:02 701 > /usr/lib/jvm/java-11-openjdk-armhf/lib/libzip.so > b6f68000-b6f6c000 r-xp 00000000 b3:02 272380 > /usr/lib/arm-linux-gnueabihf/libarmmem-v7l.so > b6f6c000-b6f7b000 ---p 00004000 b3:02 272380 > /usr/lib/arm-linux-gnueabihf/libarmmem-v7l.so > b6f7b000-b6f7c000 r--p 00003000 b3:02 272380 > /usr/lib/arm-linux-gnueabihf/libarmmem-v7l.so > b6f7c000-b6f7d000 rw-p 00004000 b3:02 272380 > /usr/lib/arm-linux-gnueabihf/libarmmem-v7l.so > b6f7d000-b6f9d000 r-xp 00000000 b3:02 261615 > /lib/arm-linux-gnueabihf/ld-2.28.so > b6f9d000-b6f9e000 r--s 00000000 00:24 21486 /run/user/1000/dconf/user > b6f9e000-b6fa0000 r--s 00007000 b3:02 162059 > /usr/share/java/java-atk-wrapper.jar > b6fa0000-b6fa8000 rw-s 00000000 b3:02 523475 /tmp/hsperfdata_pi/2398 > b6fa8000-b6fa9000 r--p 00000000 00:00 0 > b6fa9000-b6fad000 rw-p 00000000 00:00 0 > b6fad000-b6fae000 r--p 00020000 b3:02 261615 > /lib/arm-linux-gnueabihf/ld-2.28.so > b6fae000-b6faf000 rw-p 00021000 b3:02 261615 > /lib/arm-linux-gnueabihf/ld-2.28.so > bebca000-bebeb000 rw-p 00000000 00:00 0 [stack] > bef83000-bef84000 r-xp 00000000 00:00 0 [sigpage] > bef84000-bef85000 r--p 00000000 00:00 0 [vvar] > bef85000-bef86000 r-xp 00000000 00:00 0 [vdso] > ffff0000-ffff1000 r-xp 00000000 00:00 0 [vectors] > > > VM Arguments: > java_command: Downloads/TelemetryViewer.jar > java_class_path (initial): Downloads/TelemetryViewer.jar > Launcher Type: SUN_STANDARD > > [Global flags] > uint ConcGCThreads = 1 > {product} {ergonomic} > uint G1ConcRefinementThreads = 4 > {product} {ergonomic} > size_t G1HeapRegionSize = 1048576 > {product} {ergonomic} > uintx GCDrainStackTargetSize = 64 > {product} {ergonomic} > size_t InitialHeapSize = 65011712 > {product} {ergonomic} > size_t MarkStackSize = 32768 > {product} {ergonomic} > size_t MaxHeapSize = 1025507328 > {product} {ergonomic} > size_t MaxNewSize = 614465536 > {product} {ergonomic} > size_t MinHeapDeltaBytes = 1048576 > {product} {ergonomic} > uintx NonProfiledCodeHeapSize = 0 > {pd product} {ergonomic} > uintx ProfiledCodeHeapSize = 0 > {pd product} {ergonomic} > bool UseAOT = false > {product} {ergonomic} > bool UseG1GC = true > {product} {ergonomic} > > Logging: > Log output configuration: > #0: stdout all=warning uptime,level,tags > #1: stderr all=off uptime,level,tags > > Environment Variables: > PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games > > SHELL=/bin/bash > DISPLAY=:0.0 > > Signal Handlers: > SIGSEGV: [libjvm.so+0x992f20], > sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO > SIGBUS: [libjvm.so+0x992f20], sa_mask[0]=11111111011111111101111111111110, > sa_flags=SA_RESTART|SA_SIGINFO > SIGFPE: [libjvm.so+0x992f20], sa_mask[0]=11111111011111111101111111111110, > sa_flags=SA_RESTART|SA_SIGINFO > SIGPIPE: SIG_IGN, sa_mask[0]=00000000000010000000000000000000, > sa_flags=SA_RESTART > SIGXFSZ: [libjvm.so+0x7b7c98], > sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO > SIGILL: [libjvm.so+0x992f20], sa_mask[0]=11111111011111111101111111111110, > sa_flags=SA_RESTART|SA_SIGINFO > SIGUSR2: [libjvm.so+0x7b7b30], > sa_mask[0]=00000000000000000000000000000000, sa_flags=SA_RESTART|SA_SIGINFO > SIGHUP: [libjvm.so+0x7b84e8], sa_mask[0]=11111111011111111101111111111110, > sa_flags=SA_RESTART|SA_SIGINFO > SIGINT: [libjvm.so+0x7b84e8], sa_mask[0]=11111111011111111101111111111110, > sa_flags=SA_RESTART|SA_SIGINFO > SIGTERM: [libjvm.so+0x7b84e8], > sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO > SIGQUIT: [libjvm.so+0x7b84e8], > sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO > > > --------------- S Y S T E M --------------- > > OS:PRETTY_NAME="Raspbian GNU/Linux 10 (buster)" > NAME="Raspbian GNU/Linux" > VERSION_ID="10" > VERSION="10 (buster)" > VERSION_CODENAME=buster > ID=raspbian > ID_LIKE=debian > HOME_URL="http://www.raspbian.org/" > SUPPORT_URL="http://www.raspbian.org/RaspbianForums" > BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs" > uname:Linux 4.19.75-v7l+ #1270 SMP Tue Sep 24 18:51:41 BST 2019 armv7l > libc:glibc 2.28 NPTL 2.28 > rlimit: STACK 8192k, CORE 0k, NPROC 29184, NOFILE 1048576, AS infinity, > DATA infinity, FSIZE infinity > load average:0.30 0.24 0.15 > > /proc/meminfo: > MemTotal: 3999784 kB > MemFree: 3468684 kB > MemAvailable: 3590936 kB > Buffers: 27440 kB > Cached: 261444 kB > SwapCached: 0 kB > Active: 254180 kB > Inactive: 155496 kB > Active(anon): 121216 kB > Inactive(anon): 61572 kB > Active(file): 132964 kB > Inactive(file): 93924 kB > Unevictable: 16 kB > Mlocked: 16 kB > HighTotal: 3264512 kB > HighFree: 2871476 kB > LowTotal: 735272 kB > LowFree: 597208 kB > SwapTotal: 102396 kB > SwapFree: 102396 kB > Dirty: 11528 kB > Writeback: 0 kB > AnonPages: 120912 kB > Mapped: 92884 kB > Shmem: 62000 kB > Slab: 45744 kB > SReclaimable: 17600 kB > SUnreclaim: 28144 kB > KernelStack: 1736 kB > PageTables: 3336 kB > NFS_Unstable: 0 kB > Bounce: 0 kB > WritebackTmp: 0 kB > CommitLimit: 2102288 kB > Committed_AS: 900816 kB > VmallocTotal: 245760 kB > VmallocUsed: 0 kB > VmallocChunk: 0 kB > Percpu: 608 kB > CmaTotal: 262144 kB > CmaFree: 206576 kB > > > /proc/sys/kernel/threads-max (system-wide limit on the number of threads): > 58368 > > > /proc/sys/vm/max_map_count (maximum number of memory map areas a process > may have): > 65530 > > > /proc/sys/kernel/pid_max (system-wide limit on number of process > identifiers): > 32768 > > > > /etc/ld.so.preload: > /usr/lib/arm-linux-gnueabihf/libarmmem-${PLATFORM}.so > > container (cgroup) information: > container_type: cgroupv1 > cpu_cpuset_cpus: 0-3 > cpu_memory_nodes: 0 > active_processor_count: 4 > cpu_quota: -2 > cpu_period: -2 > cpu_shares: -1 > memory_limit_in_bytes: -1 > memory_and_swap_limit_in_bytes: -2 > memory_soft_limit_in_bytes: -1 > memory_usage_in_bytes: 199000064 > memory_max_usage_in_bytes: 199000064 > > Steal ticks since vm start: 0 > Steal ticks percentage since vm start: 0.000 > > CPU:total 4 (initial active 4) (ARMv7), vfp, vfp3-32, simd > > /proc/cpuinfo: > processor : 0 > model name : ARMv7 Processor rev 3 (v7l) > BogoMIPS : 270.00 > Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva > idivt vfpd32 lpae evtstrm crc32 > CPU implementer : 0x41 > CPU architecture: 7 > CPU variant : 0x0 > CPU part : 0xd08 > CPU revision : 3 > > processor : 1 > model name : ARMv7 Processor rev 3 (v7l) > BogoMIPS : 270.00 > Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva > idivt vfpd32 lpae evtstrm crc32 > CPU implementer : 0x41 > CPU architecture: 7 > CPU variant : 0x0 > CPU part : 0xd08 > CPU revision : 3 > > processor : 2 > model name : ARMv7 Processor rev 3 (v7l) > BogoMIPS : 270.00 > Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva > idivt vfpd32 lpae evtstrm crc32 > CPU implementer : 0x41 > CPU architecture: 7 > CPU variant : 0x0 > CPU part : 0xd08 > CPU revision : 3 > > processor : 3 > model name : ARMv7 Processor rev 3 (v7l) > BogoMIPS : 270.00 > Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva > idivt vfpd32 lpae evtstrm crc32 > CPU implementer : 0x41 > CPU architecture: 7 > CPU variant : 0x0 > CPU part : 0xd08 > CPU revision : 3 > > Hardware : BCM2835 > Revision : c03111 > Serial : 1000000041dccb5c > Model : Raspberry Pi 4 Model B Rev 1.1 > > Memory: 4k page, physical 3999784k(3468684k free), swap 102396k(102396k free) > > vm_info: OpenJDK Server VM (11.0.5+10-post-Raspbian-1deb10u1) for linux- > JRE (11.0.5+10-post-Raspbian-1deb10u1), built on Oct 18 2019 18:28:52 by > "buildd" with gcc 8.3.0 > > END. > > Is there something I need to do to switch to the Mesa driver, assuming that is > my problem? I was hoping it would work with a normal Raspbian install. > > Thanks, > -Farrell > > ------------------------------------------------------------------------------ > If you reply to this email, your message will be added to the discussion below: > http://forum.jogamp.org/Available-GLVersions-not-set-for-EGLGraphicsDevic-tp4040111p4040193.html > > To start a new topic under jogl, email [hidden email] > To unsubscribe from jogl, click here > < > NAML > <http://forum.jogamp.org/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml> > -- health & wealth mailto:[hidden email] ; http://jausoft.com land : +49 (471) 4707742 ; fax : +49 (471) 4707741 Timezone CET: PST+9, EST+6, UTC+1 |
In reply to this post by fredand44
Hello
I finally manage to free some time and compile my Java3D project with the Jogamp Java3D 1.7.0, Jogamp-fat 2.4.0 and run it with Java 8 and Java 11. So now I can run it on my Raspberry PI 4. (Before I experienced: Available GLVersions not set for EGLGraphicsDevice) Thanks a lot to the Jogamp-team! This is what I needed to do. Jogamp-fat 2.4.0 for 1.7.0 Downloaded from: https://jogamp.org/deployment/archive/master/gluegen_937-joal_660-jogl_1506-jocl_1147/fat/ (at https://gouessej.wordpress.com/2012/08/01/java-3d-est-de-retour-java-3d-is-back/ it still points to 2.3.2) Installed the jar into my local repo mvn install:install-file -Dfile=/home/fredrik/Desktop/java3d-1.7/jogamp-fat.jar -DgroupId=com.jogamp -DartifactId=jogamp-fat -Dversion=2.4.0 -Dpackaging=jar This gave my the possible dependency to use in my project: <dependency> <groupId>com.jogamp</groupId> <artifactId>jogamp-fat</artifactId> <version>2.4.0</version> </dependency> Java3D 1.7.0 Downloaded from http://jogamp.org/deployment/java3d/1.7.0-pre1/jogamp-java3d.7z Installed the jars into my local repo mvn install:install-file -Dfile=/home/fredrik/Desktop/java3d-1.7/j3dcore.jar -DgroupId=org.jogamp.java3d -DartifactId=j3dcore -Dversion=1.7.0 -Dpackaging=jar mvn install:install-file -Dfile=/home/fredrik/Desktop/java3d-1.7/j3dutils.jar -DgroupId=org.jogamp.java3d -DartifactId=j3dutils -Dversion=1.7.0 -Dpackaging=jar mvn install:install-file -Dfile=/home/fredrik/Desktop/java3d-1.7/vecmath.jar -DgroupId=org.jogamp.java3d -DartifactId=vecmath -Dversion=1.7.0 -Dpackaging=jar This gave my the possible dependencies to use in my project: <dependency> <groupId>org.jogamp.java3d</groupId> <artifactId>j3dcore</artifactId> <version>1.7.0</version> </dependency> <dependency> <groupId>org.jogamp.java3d</groupId> <artifactId>j3dutils</artifactId> <version>1.7.0</version> </dependency> <dependency> <groupId>org.jogamp.java3d</groupId> <artifactId>vecmath</artifactId> <version>1.7.0</version> </dependency> After this I changed all my imports in my code. Then I could compile my project and run it from my PI 4. Below is a link to a short clip: https://youtu.be/T64xZATQk2E Hope this help's someone else. Best regards Fredrik |
Administrator
|
Hello
Thank you for the feedback. Would you like to use our Maven development repository? It's not doable yet as it doesn't contain the release candidate but if it can help, let us know.
Julien Gouesse | Personal blog | Website
|
re: "Hello
Thank you for the feedback. Would you like to use our Maven development repository? It's not doable yet as it doesn't contain the release candidate but if it can help, let us know." ==> Hello Julien Gouesse. I have read the last thread. In I also trying to upgrade my osoftware to a more moderne approch ( using MAVEN, using latest java JDK, using your java3D 1.7 that uses JOGL) I am at last almost there. But if I use MAVEN to get version7 with this POM under, then I get this error : "Could not find artifact org.jogamp.java3d:j3dcore:pom:1.7.0 in central (https://repo.maven.apache.org/maven2)" <dependency> <groupId>org.jogamp.java3d</groupId> <artifactId>j3dcore</artifactId> <version>1.7.0</version> </dependency> <dependency> <groupId>org.jogamp.java3d</groupId> <artifactId>j3dutils</artifactId> <version>1.7.0</version> </dependency> <dependency> <groupId>org.jogamp.java3d</groupId> <artifactId>vecmath</artifactId> <version>1.7.0</version> </dependency> If I could use a dependency to load the java3D 1.7, I would love it. |
Hello,
Correct me if I am wrong but the dependencis you are looking for are still not available in maven central. Could you do as I did if you look at my previuos post? Best regards Fredrik |
Thank you Frederik for your answer. I will do as you wrote in your Post.
I must say that in my project (free-visit) I have so many dependent stuffs to include, that, I prefer, when it is availlable, pointing to a Maven dependecy. I now understand there is none for the java3D1.7+jogl . Sad. I wil try tomorow (or when I have a bit of free time) to install the jars "manually" as you nicely explained in your Post. I will tell you if I succeded. Thanks Thierry |
Administrator
|
Phil takes care of Java3D, especially the version 1.7. In my humble opinion, you shouldn't be forced to use only libraries from Maven Central. The latest Java3D build is here:
https://jogamp.org/deployment/java3d/1.7.1-build-20200222/ Can you use Gradle in the meantime?
Julien Gouesse | Personal blog | Website
|
- Use Graddle ?
Well I must say, many of my other java APIs do have a Maven library available. So I think I will, for the moment, stick to Maven for now. At least until my software works back again (i also moved to the latest java JDK, meaning some old code has to be upgrades ... ) - java3D 1.7 & the JOGL surprise : By the way java3D 1.7[.1] I am coming from java3D from Sun and I did use the DirectX target. What I did not see coming, When I decided to migrate to java3D 1.7 [jogamp version) is that I also had to use jogl [and OpenGl]. I had some problem with native file from JOGL. It seems to be ok now, but being on windows, it is not super exciting [bad opengl drivers I was told from Microsoft ). Or is it ? Anyway thank you for your support Thierry |
Administrator
|
Hello
Gradle allows to mix both libraries coming from Maven Central and libraries not coming from Maven Central and not packaged for Maven. Reread my sentence, I wrote "in the meantime", I have never told you that we don't want to have a Maven library and by the way, Martin is comfortable with Maven and already pushed some stuff into Maven Central. Nobody is claiming that we won't provide a Maven library. However, I mentioned Gradle because it's less constraining and useful in the current situation when there is not even a snapshot available in Maven Central or in our development repository. Imagine that you are concerned about a particular bug and that you'd like to ensure that a nightly build really fixes it, you obviously don't expect from us that we'll put all nightly builds into Maven Central, being able to use libraries not coming from a Maven repository is important in my humble opinion even though many Java APIs have Maven libraries. Stick to whatever you want in your own project, it was only a question. Which surprise? I removed the half broken DirectX native renderer in Java3D 1.6 many years ago (about ten?), it's not specific to Java3D 1.7 but it's specific to JogAmp Java3D continuation for sure, including Java3D 1.6 from JogAmp. Yes I understand your situation and let me know what still bothers you, maybe there are a few things to do to mitigate some problems but please, keep in mind that the native DirectX renderer was buggy, don't believe that it would be awesome to resurrect it because it's plain wrong even with "good" Direct3D drivers. On the long term, WebGPU might be interesting (in my humble opinion) as it would use the Direct3D drivers when available under the hood but relying on Direct3D even under Windows isn't inherently safer or more reliable than relying on OpenGL despite crappy Microsoft drivers. It's a common problem, the end users must have working drivers whatever APIs you use, WebGL, WebGPU, Vulkan, OpenGL, Direct3D, Metal, etc.
Julien Gouesse | Personal blog | Website
|
In reply to this post by thierryMilard
Hi Thierry,
If you are looking for Maven artifacts, you can get one of the most recent version here. It is not an official one but it works :) About JOGL on windows : I gathered all workarounds and issues on JOGL in a convenient sheet available here. You'll find links pointing toward several tickets indicating what to do to circumvent a bug. Hope this helps Martin |
Administrator
|
I did a maven deployment on our jogamp.org server:
version 2.4.0-rc-20230123 server http://www.jogamp.org/deployment/maven/ |
This is great, thank you!
Then Thierry forget about the link I sent and rather use this latest release. |
Free forum by Nabble | Edit this page |